Upgraded drupal core with security updates
[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' => '',
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 ->execute();
1946
1947 $connection->schema()->createTable('config', array(
1948   'fields' => array(
1949     'collection' => array(
1950       'type' => 'varchar',
1951       'not null' => TRUE,
1952       'length' => '255',
1953       'default' => '',
1954     ),
1955     'name' => array(
1956       'type' => 'varchar',
1957       'not null' => TRUE,
1958       'length' => '255',
1959       'default' => '',
1960     ),
1961     'data' => array(
1962       'type' => 'blob',
1963       'not null' => FALSE,
1964       'size' => 'normal',
1965     ),
1966   ),
1967   'primary key' => array(
1968     'collection',
1969     'name',
1970   ),
1971   'mysql_character_set' => 'utf8',
1972 ));
1973
1974 $connection->insert('config')
1975 ->fields(array(
1976   'collection',
1977   'name',
1978   'data',
1979 ))
1980 ->values(array(
1981   'collection' => '',
1982   'name' => 'system.file',
1983   'data' => 'a:1:{s:4:"path";a:1:{s:9:"temporary";s:4:"/tmp";}}',
1984 ))
1985 ->execute();
1986
1987 $connection->schema()->createTable('contact', array(
1988   'fields' => array(
1989     'cid' => array(
1990       'type' => 'serial',
1991       'not null' => TRUE,
1992       'size' => 'normal',
1993       'unsigned' => TRUE,
1994     ),
1995     'category' => array(
1996       'type' => 'varchar',
1997       'not null' => TRUE,
1998       'length' => '255',
1999       'default' => '',
2000     ),
2001     'recipients' => array(
2002       'type' => 'text',
2003       'not null' => TRUE,
2004       'size' => 'normal',
2005     ),
2006     'reply' => array(
2007       'type' => 'text',
2008       'not null' => TRUE,
2009       'size' => 'normal',
2010     ),
2011     'weight' => array(
2012       'type' => 'int',
2013       'not null' => TRUE,
2014       'size' => 'normal',
2015       'default' => '0',
2016     ),
2017     'selected' => array(
2018       'type' => 'int',
2019       'not null' => TRUE,
2020       'size' => 'normal',
2021       'default' => '0',
2022     ),
2023   ),
2024   'primary key' => array(
2025     'cid',
2026   ),
2027   'mysql_character_set' => 'utf8',
2028 ));
2029
2030 $connection->insert('contact')
2031 ->fields(array(
2032   'cid',
2033   'category',
2034   'recipients',
2035   'reply',
2036   'weight',
2037   'selected',
2038 ))
2039 ->values(array(
2040   'cid' => '1',
2041   'category' => 'Website feedback',
2042   'recipients' => 'admin@example.com',
2043   'reply' => '',
2044   'weight' => '0',
2045   'selected' => '0',
2046 ))
2047 ->values(array(
2048   'cid' => '2',
2049   'category' => 'Some other category',
2050   'recipients' => 'test@example.com',
2051   'reply' => 'Thanks for contacting us, we will reply ASAP!',
2052   'weight' => '1',
2053   'selected' => '1',
2054 ))
2055 ->values(array(
2056   'cid' => '3',
2057   'category' => 'A category much longer than thirty two characters',
2058   'recipients' => 'fortyninechars@example.com',
2059   'reply' => '',
2060   'weight' => '2',
2061   'selected' => '0',
2062 ))
2063 ->execute();
2064
2065 $connection->schema()->createTable('content_field_company', array(
2066   'fields' => array(
2067     'vid' => array(
2068       'type' => 'int',
2069       'not null' => TRUE,
2070       'size' => 'normal',
2071       'default' => '0',
2072       'unsigned' => TRUE,
2073     ),
2074     'nid' => array(
2075       'type' => 'int',
2076       'not null' => TRUE,
2077       'size' => 'normal',
2078       'default' => '0',
2079       'unsigned' => TRUE,
2080     ),
2081     'delta' => array(
2082       'type' => 'int',
2083       'not null' => TRUE,
2084       'size' => 'normal',
2085       'default' => '0',
2086       'unsigned' => TRUE,
2087     ),
2088     'field_company_nid' => array(
2089       'type' => 'int',
2090       'not null' => FALSE,
2091       'size' => 'normal',
2092       'unsigned' => TRUE,
2093     ),
2094   ),
2095   'primary key' => array(
2096     'vid',
2097     'delta',
2098   ),
2099   'indexes' => array(
2100     'nid' => array(
2101       'nid',
2102     ),
2103     'field_company_nid' => array(
2104       'field_company_nid',
2105     ),
2106   ),
2107   'mysql_character_set' => 'utf8',
2108 ));
2109
2110 $connection->insert('content_field_company')
2111 ->fields(array(
2112   'vid',
2113   'nid',
2114   'delta',
2115   'field_company_nid',
2116 ))
2117 ->values(array(
2118   'vid' => '21',
2119   'nid' => '18',
2120   'delta' => '0',
2121   'field_company_nid' => '15',
2122 ))
2123 ->values(array(
2124   'vid' => '21',
2125   'nid' => '18',
2126   'delta' => '1',
2127   'field_company_nid' => '16',
2128 ))
2129 ->execute();
2130
2131 $connection->schema()->createTable('content_field_image', array(
2132   'fields' => array(
2133     'vid' => array(
2134       'type' => 'int',
2135       'not null' => TRUE,
2136       'size' => 'normal',
2137       'default' => '0',
2138       'unsigned' => TRUE,
2139     ),
2140     'nid' => array(
2141       'type' => 'int',
2142       'not null' => TRUE,
2143       'size' => 'normal',
2144       'default' => '0',
2145       'unsigned' => TRUE,
2146     ),
2147     'field_image_fid' => array(
2148       'type' => 'int',
2149       'not null' => FALSE,
2150       'size' => 'normal',
2151     ),
2152     'field_image_list' => array(
2153       'type' => 'int',
2154       'not null' => FALSE,
2155       'size' => 'normal',
2156     ),
2157     'field_image_data' => array(
2158       'type' => 'text',
2159       'not null' => FALSE,
2160       'size' => 'normal',
2161     ),
2162   ),
2163   'primary key' => array(
2164     'vid',
2165   ),
2166   'mysql_character_set' => 'utf8',
2167 ));
2168
2169 $connection->insert('content_field_image')
2170 ->fields(array(
2171   'vid',
2172   'nid',
2173   'field_image_fid',
2174   'field_image_list',
2175   'field_image_data',
2176 ))
2177 ->values(array(
2178   'vid' => '1',
2179   'nid' => '1',
2180   'field_image_fid' => '2',
2181   'field_image_list' => '1',
2182   'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
2183 ))
2184 ->values(array(
2185   'vid' => '2',
2186   'nid' => '2',
2187   'field_image_fid' => NULL,
2188   'field_image_list' => NULL,
2189   'field_image_data' => NULL,
2190 ))
2191 ->values(array(
2192   'vid' => '3',
2193   'nid' => '1',
2194   'field_image_fid' => '2',
2195   'field_image_list' => '1',
2196   'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
2197 ))
2198 ->execute();
2199
2200 $connection->schema()->createTable('content_field_multivalue', array(
2201   'fields' => array(
2202     'vid' => array(
2203       'type' => 'int',
2204       'not null' => TRUE,
2205       'size' => 'normal',
2206       'default' => '0',
2207       'unsigned' => TRUE,
2208     ),
2209     'nid' => array(
2210       'type' => 'int',
2211       'not null' => TRUE,
2212       'size' => 'normal',
2213       'default' => '0',
2214       'unsigned' => TRUE,
2215     ),
2216     'field_multivalue_value' => array(
2217       'type' => 'numeric',
2218       'not null' => FALSE,
2219       'precision' => '10',
2220       'scale' => '2',
2221     ),
2222     'delta' => array(
2223       'type' => 'int',
2224       'not null' => TRUE,
2225       'size' => 'normal',
2226       'default' => '0',
2227       'unsigned' => TRUE,
2228     ),
2229   ),
2230   'primary key' => array(
2231     'vid',
2232     'delta',
2233   ),
2234   'indexes' => array(
2235     'nid' => array(
2236       'nid',
2237     ),
2238   ),
2239   'mysql_character_set' => 'utf8',
2240 ));
2241
2242 $connection->insert('content_field_multivalue')
2243 ->fields(array(
2244   'vid',
2245   'nid',
2246   'field_multivalue_value',
2247   'delta',
2248 ))
2249 ->values(array(
2250   'vid' => '4',
2251   'nid' => '3',
2252   'field_multivalue_value' => '33.00',
2253   'delta' => '0',
2254 ))
2255 ->values(array(
2256   'vid' => '4',
2257   'nid' => '3',
2258   'field_multivalue_value' => '44.00',
2259   'delta' => '1',
2260 ))
2261 ->execute();
2262
2263 $connection->schema()->createTable('content_field_test', array(
2264   'fields' => array(
2265     'vid' => array(
2266       'type' => 'int',
2267       'not null' => TRUE,
2268       'size' => 'normal',
2269       'default' => '0',
2270       'unsigned' => TRUE,
2271     ),
2272     'nid' => array(
2273       'type' => 'int',
2274       'not null' => TRUE,
2275       'size' => 'normal',
2276       'default' => '0',
2277       'unsigned' => TRUE,
2278     ),
2279     'field_test_value' => array(
2280       'type' => 'text',
2281       'not null' => FALSE,
2282       'size' => 'normal',
2283     ),
2284     'field_test_format' => array(
2285       'type' => 'int',
2286       'not null' => FALSE,
2287       'size' => 'normal',
2288       'unsigned' => TRUE,
2289     ),
2290   ),
2291   'primary key' => array(
2292     'vid',
2293   ),
2294   'indexes' => array(
2295     'nid' => array(
2296       'nid',
2297     ),
2298   ),
2299   'mysql_character_set' => 'utf8',
2300 ));
2301
2302 $connection->insert('content_field_test')
2303 ->fields(array(
2304   'vid',
2305   'nid',
2306   'field_test_value',
2307   'field_test_format',
2308 ))
2309 ->values(array(
2310   'vid' => '1',
2311   'nid' => '1',
2312   'field_test_value' => 'This is a shared text field',
2313   'field_test_format' => '1',
2314 ))
2315 ->values(array(
2316   'vid' => '2',
2317   'nid' => '1',
2318   'field_test_value' => 'This is a shared text field',
2319   'field_test_format' => '1',
2320 ))
2321 ->values(array(
2322   'vid' => '3',
2323   'nid' => '2',
2324   'field_test_value' => NULL,
2325   'field_test_format' => NULL,
2326 ))
2327 ->values(array(
2328   'vid' => '5',
2329   'nid' => '2',
2330   'field_test_value' => NULL,
2331   'field_test_format' => NULL,
2332 ))
2333 ->values(array(
2334   'vid' => '12',
2335   'nid' => '9',
2336   'field_test_value' => 'text for default value',
2337   'field_test_format' => '1',
2338 ))
2339 ->execute();
2340
2341 $connection->schema()->createTable('content_field_test_text_single_checkbox', array(
2342   'fields' => array(
2343     'vid' => array(
2344       'type' => 'int',
2345       'not null' => TRUE,
2346       'size' => 'normal',
2347       'default' => '0',
2348       'unsigned' => TRUE,
2349     ),
2350     'nid' => array(
2351       'type' => 'int',
2352       'not null' => TRUE,
2353       'size' => 'normal',
2354       'default' => '0',
2355       'unsigned' => TRUE,
2356     ),
2357     'field_test_text_single_checkbox_value' => array(
2358       'type' => 'text',
2359       'not null' => FALSE,
2360       'size' => 'normal',
2361     ),
2362   ),
2363   'primary key' => array(
2364     'vid',
2365   ),
2366   'indexes' => array(
2367     'nid' => array(
2368       'nid',
2369     ),
2370   ),
2371   'mysql_character_set' => 'utf8',
2372 ));
2373
2374 $connection->insert('content_field_test_text_single_checkbox')
2375 ->fields(array(
2376   'vid',
2377   'nid',
2378   'field_test_text_single_checkbox_value',
2379 ))
2380 ->values(array(
2381   'vid' => '1',
2382   'nid' => '1',
2383   'field_test_text_single_checkbox_value' => '0',
2384 ))
2385 ->values(array(
2386   'vid' => '2',
2387   'nid' => '1',
2388   'field_test_text_single_checkbox_value' => NULL,
2389 ))
2390 ->values(array(
2391   'vid' => '3',
2392   'nid' => '2',
2393   'field_test_text_single_checkbox_value' => NULL,
2394 ))
2395 ->values(array(
2396   'vid' => '5',
2397   'nid' => '2',
2398   'field_test_text_single_checkbox_value' => NULL,
2399 ))
2400 ->values(array(
2401   'vid' => '12',
2402   'nid' => '9',
2403   'field_test_text_single_checkbox_value' => '0',
2404 ))
2405 ->execute();
2406
2407 $connection->schema()->createTable('content_field_test_two', array(
2408   'fields' => array(
2409     'vid' => array(
2410       'type' => 'int',
2411       'not null' => TRUE,
2412       'size' => 'normal',
2413       'default' => '0',
2414       'unsigned' => TRUE,
2415     ),
2416     'nid' => array(
2417       'type' => 'int',
2418       'not null' => TRUE,
2419       'size' => 'normal',
2420       'default' => '0',
2421       'unsigned' => TRUE,
2422     ),
2423     'delta' => array(
2424       'type' => 'int',
2425       'not null' => TRUE,
2426       'size' => 'normal',
2427       'default' => '0',
2428       'unsigned' => TRUE,
2429     ),
2430     'field_test_two_value' => array(
2431       'type' => 'int',
2432       'not null' => FALSE,
2433       'size' => 'normal',
2434     ),
2435   ),
2436   'primary key' => array(
2437     'vid',
2438     'delta',
2439   ),
2440   'indexes' => array(
2441     'nid' => array(
2442       'nid',
2443     ),
2444   ),
2445   'mysql_character_set' => 'utf8',
2446 ));
2447
2448 $connection->insert('content_field_test_two')
2449 ->fields(array(
2450   'vid',
2451   'nid',
2452   'delta',
2453   'field_test_two_value',
2454 ))
2455 ->values(array(
2456   'vid' => '1',
2457   'nid' => '1',
2458   'delta' => '0',
2459   'field_test_two_value' => '10',
2460 ))
2461 ->values(array(
2462   'vid' => '2',
2463   'nid' => '1',
2464   'delta' => '0',
2465   'field_test_two_value' => NULL,
2466 ))
2467 ->values(array(
2468   'vid' => '3',
2469   'nid' => '2',
2470   'delta' => '0',
2471   'field_test_two_value' => NULL,
2472 ))
2473 ->values(array(
2474   'vid' => '5',
2475   'nid' => '2',
2476   'delta' => '0',
2477   'field_test_two_value' => NULL,
2478 ))
2479 ->values(array(
2480   'vid' => '12',
2481   'nid' => '9',
2482   'delta' => '0',
2483   'field_test_two_value' => NULL,
2484 ))
2485 ->values(array(
2486   'vid' => '1',
2487   'nid' => '1',
2488   'delta' => '1',
2489   'field_test_two_value' => '20',
2490 ))
2491 ->execute();
2492
2493 $connection->schema()->createTable('content_group', array(
2494   'fields' => array(
2495     'group_type' => array(
2496       'type' => 'varchar',
2497       'not null' => TRUE,
2498       'length' => '32',
2499       'default' => 'standard',
2500     ),
2501     'type_name' => array(
2502       'type' => 'varchar',
2503       'not null' => TRUE,
2504       'length' => '32',
2505       'default' => '',
2506     ),
2507     'group_name' => array(
2508       'type' => 'varchar',
2509       'not null' => TRUE,
2510       'length' => '32',
2511       'default' => '',
2512     ),
2513     'label' => array(
2514       'type' => 'varchar',
2515       'not null' => TRUE,
2516       'length' => '255',
2517       'default' => '',
2518     ),
2519     'settings' => array(
2520       'type' => 'text',
2521       'not null' => TRUE,
2522       'size' => 'normal',
2523     ),
2524     'weight' => array(
2525       'type' => 'int',
2526       'not null' => TRUE,
2527       'size' => 'normal',
2528       'default' => '0',
2529     ),
2530   ),
2531   'primary key' => array(
2532     'type_name',
2533     'group_name',
2534   ),
2535   'mysql_character_set' => 'utf8',
2536 ));
2537
2538 $connection->schema()->createTable('content_group_fields', array(
2539   'fields' => array(
2540     'type_name' => array(
2541       'type' => 'varchar',
2542       'not null' => TRUE,
2543       'length' => '32',
2544       'default' => '',
2545     ),
2546     'group_name' => array(
2547       'type' => 'varchar',
2548       'not null' => TRUE,
2549       'length' => '32',
2550       'default' => '',
2551     ),
2552     'field_name' => array(
2553       'type' => 'varchar',
2554       'not null' => TRUE,
2555       'length' => '32',
2556       'default' => '',
2557     ),
2558   ),
2559   'primary key' => array(
2560     'type_name',
2561     'group_name',
2562     'field_name',
2563   ),
2564   'mysql_character_set' => 'utf8',
2565 ));
2566
2567 $connection->schema()->createTable('content_node_field', array(
2568   'fields' => array(
2569     'field_name' => array(
2570       'type' => 'varchar',
2571       'not null' => TRUE,
2572       'length' => '32',
2573       'default' => '',
2574     ),
2575     'type' => array(
2576       'type' => 'varchar',
2577       'not null' => TRUE,
2578       'length' => '127',
2579       'default' => '',
2580     ),
2581     'global_settings' => array(
2582       'type' => 'text',
2583       'not null' => TRUE,
2584       'size' => 'normal',
2585     ),
2586     'required' => array(
2587       'type' => 'int',
2588       'not null' => TRUE,
2589       'size' => 'normal',
2590       'default' => '0',
2591     ),
2592     'multiple' => array(
2593       'type' => 'int',
2594       'not null' => TRUE,
2595       'size' => 'normal',
2596       'default' => '0',
2597     ),
2598     'db_storage' => array(
2599       'type' => 'int',
2600       'not null' => TRUE,
2601       'size' => 'normal',
2602       'default' => '1',
2603     ),
2604     'module' => array(
2605       'type' => 'varchar',
2606       'not null' => TRUE,
2607       'length' => '127',
2608       'default' => '',
2609     ),
2610     'db_columns' => array(
2611       'type' => 'text',
2612       'not null' => TRUE,
2613       'size' => 'normal',
2614     ),
2615     'active' => array(
2616       'type' => 'int',
2617       'not null' => TRUE,
2618       'size' => 'normal',
2619       'default' => '0',
2620     ),
2621     'locked' => array(
2622       'type' => 'int',
2623       'not null' => TRUE,
2624       'size' => 'tiny',
2625       'default' => '0',
2626     ),
2627   ),
2628   'primary key' => array(
2629     'field_name',
2630   ),
2631   'mysql_character_set' => 'utf8',
2632 ));
2633
2634 $connection->insert('content_node_field')
2635 ->fields(array(
2636   'field_name',
2637   'type',
2638   'global_settings',
2639   'required',
2640   'multiple',
2641   'db_storage',
2642   'module',
2643   'db_columns',
2644   'active',
2645   'locked',
2646 ))
2647 ->values(array(
2648   'field_name' => 'field_commander',
2649   'type' => 'userreference',
2650   '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:"";}',
2651   'required' => '0',
2652   'multiple' => '0',
2653   'db_storage' => '1',
2654   'module' => 'userreference',
2655   '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;}}',
2656   'active' => '1',
2657   'locked' => '0',
2658 ))
2659 ->values(array(
2660   'field_name' => 'field_company',
2661   'type' => 'nodereference',
2662   '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;}}',
2663   'required' => '0',
2664   'multiple' => '1',
2665   'db_storage' => '0',
2666   'module' => 'nodereference',
2667   '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;}}',
2668   'active' => '1',
2669   'locked' => '0',
2670 ))
2671 ->values(array(
2672   'field_name' => 'field_multivalue',
2673   'type' => 'number_decimal',
2674   '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:".";}',
2675   'required' => '0',
2676   'multiple' => '1',
2677   'db_storage' => '0',
2678   'module' => 'number',
2679   '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;}}',
2680   'active' => '1',
2681   'locked' => '0',
2682 ))
2683 ->values(array(
2684   'field_name' => 'field_test',
2685   'type' => 'text',
2686   '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:"";}',
2687   'required' => '0',
2688   'multiple' => '0',
2689   'db_storage' => '0',
2690   'module' => 'text',
2691   '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;}}',
2692   'active' => '1',
2693   'locked' => '0',
2694 ))
2695 ->values(array(
2696   'field_name' => 'field_test_date',
2697   'type' => 'date',
2698   '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";}',
2699   'required' => '0',
2700   'multiple' => '0',
2701   'db_storage' => '1',
2702   'module' => 'date',
2703   '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;}}',
2704   'active' => '1',
2705   'locked' => '0',
2706 ))
2707 ->values(array(
2708   'field_name' => 'field_test_datestamp',
2709   'type' => 'datestamp',
2710   '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:"";}',
2711   'required' => '0',
2712   'multiple' => '0',
2713   'db_storage' => '1',
2714   'module' => 'date',
2715   '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;}}',
2716   'active' => '1',
2717   'locked' => '0',
2718 ))
2719 ->values(array(
2720   'field_name' => 'field_test_datetime',
2721   'type' => 'datetime',
2722   '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:"";}',
2723   'required' => '0',
2724   'multiple' => '0',
2725   'db_storage' => '1',
2726   'module' => 'date',
2727   '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;}}',
2728   'active' => '1',
2729   'locked' => '0',
2730 ))
2731 ->values(array(
2732   'field_name' => 'field_test_decimal_radio_buttons',
2733   'type' => 'number_decimal',
2734   '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:\".\";}",
2735   'required' => '0',
2736   'multiple' => '0',
2737   'db_storage' => '1',
2738   'module' => 'number',
2739   '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;}}',
2740   'active' => '1',
2741   'locked' => '0',
2742 ))
2743 ->values(array(
2744   'field_name' => 'field_test_email',
2745   'type' => 'email',
2746   'global_settings' => 'a:0:{}',
2747   'required' => '0',
2748   'multiple' => '0',
2749   'db_storage' => '1',
2750   'module' => 'email',
2751   '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;}}',
2752   'active' => '1',
2753   'locked' => '0',
2754 ))
2755 ->values(array(
2756   'field_name' => 'field_test_exclude_unset',
2757   'type' => 'text',
2758   '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:"";}',
2759   'required' => '0',
2760   'multiple' => '0',
2761   'db_storage' => '1',
2762   'module' => 'text',
2763   '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;}}',
2764   'active' => '1',
2765   'locked' => '0',
2766 ))
2767 ->values(array(
2768   'field_name' => 'field_test_filefield',
2769   'type' => 'filefield',
2770   'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"1";}',
2771   'required' => '0',
2772   'multiple' => '0',
2773   'db_storage' => '1',
2774   'module' => 'filefield',
2775   '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;}}',
2776   'active' => '1',
2777   'locked' => '0',
2778 ))
2779 ->values(array(
2780   'field_name' => 'field_test_float_single_checkbox',
2781   'type' => 'number_float',
2782   '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:\"\";}",
2783   'required' => '0',
2784   'multiple' => '0',
2785   'db_storage' => '1',
2786   'module' => 'number',
2787   '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;}}',
2788   'active' => '1',
2789   'locked' => '0',
2790 ))
2791 ->values(array(
2792   'field_name' => 'field_test_four',
2793   'type' => 'number_float',
2794   '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:"";}',
2795   'required' => '0',
2796   'multiple' => '0',
2797   'db_storage' => '1',
2798   'module' => 'number',
2799   '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;}}',
2800   'active' => '1',
2801   'locked' => '0',
2802 ))
2803 ->values(array(
2804   'field_name' => 'field_test_identical1',
2805   'type' => 'number_integer',
2806   '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:"";}',
2807   'required' => '0',
2808   'multiple' => '0',
2809   'db_storage' => '1',
2810   'module' => 'number',
2811   '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;}}',
2812   'active' => '1',
2813   'locked' => '0',
2814 ))
2815 ->values(array(
2816   'field_name' => 'field_test_identical2',
2817   'type' => 'number_integer',
2818   '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:"";}',
2819   'required' => '0',
2820   'multiple' => '0',
2821   'db_storage' => '1',
2822   'module' => 'number',
2823   '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;}}',
2824   'active' => '1',
2825   'locked' => '0',
2826 ))
2827 ->values(array(
2828   'field_name' => 'field_test_imagefield',
2829   'type' => 'filefield',
2830   'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"0";}',
2831   'required' => '0',
2832   'multiple' => '0',
2833   'db_storage' => '1',
2834   'module' => 'filefield',
2835   '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;}}',
2836   'active' => '1',
2837   'locked' => '0',
2838 ))
2839 ->values(array(
2840   'field_name' => 'field_test_integer_selectlist',
2841   'type' => 'number_integer',
2842   '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:\"\";}",
2843   'required' => '0',
2844   'multiple' => '0',
2845   'db_storage' => '1',
2846   'module' => 'number',
2847   '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;}}',
2848   'active' => '1',
2849   'locked' => '0',
2850 ))
2851 ->values(array(
2852   'field_name' => 'field_test_link',
2853   'type' => 'link',
2854   '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;}',
2855   'required' => '0',
2856   'multiple' => '0',
2857   'db_storage' => '1',
2858   'module' => 'link',
2859   '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;}}',
2860   'active' => '1',
2861   'locked' => '0',
2862 ))
2863 ->values(array(
2864   'field_name' => 'field_test_phone',
2865   'type' => 'au_phone',
2866   'global_settings' => 'a:1:{s:18:"phone_country_code";i:0;}',
2867   'required' => '0',
2868   'multiple' => '0',
2869   'db_storage' => '1',
2870   'module' => 'phone',
2871   '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;}}',
2872   'active' => '1',
2873   'locked' => '0',
2874 ))
2875 ->values(array(
2876   'field_name' => 'field_test_text_single_checkbox',
2877   'type' => 'text',
2878   '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:\"\";}",
2879   'required' => '0',
2880   'multiple' => '0',
2881   'db_storage' => '0',
2882   'module' => 'text',
2883   '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;}}',
2884   'active' => '1',
2885   'locked' => '0',
2886 ))
2887 ->values(array(
2888   'field_name' => 'field_test_text_single_checkbox2',
2889   'type' => 'text',
2890   '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:\"\";}",
2891   'required' => '0',
2892   'multiple' => '0',
2893   'db_storage' => '1',
2894   'module' => 'text',
2895   '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;}}',
2896   'active' => '1',
2897   'locked' => '0',
2898 ))
2899 ->values(array(
2900   'field_name' => 'field_test_three',
2901   'type' => 'number_decimal',
2902   '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:".";}',
2903   'required' => '0',
2904   'multiple' => '0',
2905   'db_storage' => '1',
2906   'module' => 'number',
2907   '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;}}',
2908   'active' => '1',
2909   'locked' => '0',
2910 ))
2911 ->values(array(
2912   'field_name' => 'field_test_two',
2913   'type' => 'number_integer',
2914   '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:"";}',
2915   'required' => '0',
2916   'multiple' => '1',
2917   'db_storage' => '0',
2918   'module' => 'number',
2919   '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;}}',
2920   'active' => '1',
2921   'locked' => '0',
2922 ))
2923 ->execute();
2924
2925 $connection->schema()->createTable('content_node_field_instance', array(
2926   'fields' => array(
2927     'field_name' => array(
2928       'type' => 'varchar',
2929       'not null' => TRUE,
2930       'length' => '32',
2931       'default' => '',
2932     ),
2933     'type_name' => array(
2934       'type' => 'varchar',
2935       'not null' => TRUE,
2936       'length' => '32',
2937       'default' => '',
2938     ),
2939     'weight' => array(
2940       'type' => 'int',
2941       'not null' => TRUE,
2942       'size' => 'normal',
2943       'default' => '0',
2944     ),
2945     'label' => array(
2946       'type' => 'varchar',
2947       'not null' => TRUE,
2948       'length' => '255',
2949       'default' => '',
2950     ),
2951     'widget_type' => array(
2952       'type' => 'varchar',
2953       'not null' => TRUE,
2954       'length' => '32',
2955       'default' => '',
2956     ),
2957     'widget_settings' => array(
2958       'type' => 'text',
2959       'not null' => TRUE,
2960       'size' => 'normal',
2961     ),
2962     'display_settings' => array(
2963       'type' => 'text',
2964       'not null' => TRUE,
2965       'size' => 'normal',
2966     ),
2967     'description' => array(
2968       'type' => 'text',
2969       'not null' => TRUE,
2970       'size' => 'normal',
2971     ),
2972     'widget_module' => array(
2973       'type' => 'varchar',
2974       'not null' => TRUE,
2975       'length' => '127',
2976       'default' => '',
2977     ),
2978     'widget_active' => array(
2979       'type' => 'int',
2980       'not null' => TRUE,
2981       'size' => 'normal',
2982       'default' => '0',
2983     ),
2984   ),
2985   'primary key' => array(
2986     'field_name',
2987     'type_name',
2988   ),
2989   'mysql_character_set' => 'utf8',
2990 ));
2991
2992 $connection->insert('content_node_field_instance')
2993 ->fields(array(
2994   'field_name',
2995   'type_name',
2996   'weight',
2997   'label',
2998   'widget_type',
2999   'widget_settings',
3000   'display_settings',
3001   'description',
3002   'widget_module',
3003   'widget_active',
3004 ))
3005 ->values(array(
3006   'field_name' => 'field_commander',
3007   'type_name' => 'employee',
3008   'weight' => '32',
3009   'label' => 'Commanding Officer',
3010   'widget_type' => 'userreference_select',
3011   '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;}',
3012   '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;}}',
3013   'description' => '',
3014   'widget_module' => 'userreference',
3015   'widget_active' => '1',
3016 ))
3017 ->values(array(
3018   'field_name' => 'field_company',
3019   'type_name' => 'employee',
3020   'weight' => '31',
3021   'label' => 'Company',
3022   'widget_type' => 'nodereference_select',
3023   '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;}',
3024   '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;}}',
3025   'description' => '',
3026   'widget_module' => 'nodereference',
3027   'widget_active' => '1',
3028 ))
3029 ->values(array(
3030   'field_name' => 'field_multivalue',
3031   'type_name' => 'test_planet',
3032   'weight' => '2',
3033   'label' => 'Decimal Field',
3034   'widget_type' => 'number',
3035   '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;}',
3036   '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;}}',
3037   'description' => 'An example multi-valued decimal field.',
3038   'widget_module' => 'number',
3039   'widget_active' => '1',
3040 ))
3041 ->values(array(
3042   'field_name' => 'field_test',
3043   'type_name' => 'story',
3044   'weight' => '1',
3045   'label' => 'Text Field',
3046   'widget_type' => 'text_textfield',
3047   '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;}',
3048   '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;}}',
3049   'description' => 'An example text field.',
3050   'widget_module' => 'text',
3051   'widget_active' => '1',
3052 ))
3053 ->values(array(
3054   'field_name' => 'field_test',
3055   'type_name' => 'test_page',
3056   'weight' => '35',
3057   'label' => 'Text Field',
3058   'widget_type' => 'text_textfield',
3059   '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;}',
3060   '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;}}',
3061   'description' => 'An example text field.',
3062   'widget_module' => 'text',
3063   'widget_active' => '1',
3064 ))
3065 ->values(array(
3066   'field_name' => 'field_test_date',
3067   'type_name' => 'story',
3068   'weight' => '10',
3069   'label' => 'Date Field',
3070   'widget_type' => 'date_select',
3071   '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";}',
3072   '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;}}',
3073   'description' => 'An example date field.',
3074   'widget_module' => 'date',
3075   'widget_active' => '1',
3076 ))
3077 ->values(array(
3078   'field_name' => 'field_test_datestamp',
3079   'type_name' => 'story',
3080   'weight' => '11',
3081   'label' => 'Date Stamp Field',
3082   'widget_type' => 'date_text',
3083   '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";}',
3084   '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;}}',
3085   'description' => 'An example date stamp field.',
3086   'widget_module' => 'date',
3087   'widget_active' => '1',
3088 ))
3089 ->values(array(
3090   'field_name' => 'field_test_datetime',
3091   'type_name' => 'story',
3092   'weight' => '12',
3093   'label' => 'Datetime Field',
3094   'widget_type' => 'date_popup',
3095   '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";}',
3096   '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;}}',
3097   'description' => 'An example datetime field.',
3098   'widget_module' => 'date',
3099   'widget_active' => '1',
3100 ))
3101 ->values(array(
3102   'field_name' => 'field_test_decimal_radio_buttons',
3103   'type_name' => 'story',
3104   'weight' => '14',
3105   'label' => 'Decimal Radio Buttons Field',
3106   'widget_type' => 'optionwidgets_buttons',
3107   '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;}',
3108   '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;}}',
3109   'description' => 'An example decimal field using radio buttons.',
3110   'widget_module' => 'optionwidgets',
3111   'widget_active' => '1',
3112 ))
3113 ->values(array(
3114   'field_name' => 'field_test_email',
3115   'type_name' => 'story',
3116   'weight' => '6',
3117   'label' => 'Email Field',
3118   'widget_type' => 'email_textfield',
3119   '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;}',
3120   '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;}}',
3121   'description' => 'An example email field.',
3122   'widget_module' => 'email',
3123   'widget_active' => '1',
3124 ))
3125 ->values(array(
3126   'field_name' => 'field_test_exclude_unset',
3127   'type_name' => 'story',
3128   'weight' => '0',
3129   'label' => 'Text Field',
3130   'widget_type' => 'text_textfield',
3131   '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;}',
3132   '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;}}',
3133   'description' => 'An example text field without exclude.',
3134   'widget_module' => 'text',
3135   'widget_active' => '1',
3136 ))
3137 ->values(array(
3138   'field_name' => 'field_test_filefield',
3139   'type_name' => 'story',
3140   'weight' => '8',
3141   'label' => 'File Field',
3142   'widget_type' => 'filefield_widget',
3143   '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";}',
3144   '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;}}',
3145   'description' => 'An example image field.',
3146   'widget_module' => 'filefield',
3147   'widget_active' => '1',
3148 ))
3149 ->values(array(
3150   'field_name' => 'field_test_float_single_checkbox',
3151   'type_name' => 'story',
3152   'weight' => '15',
3153   'label' => 'Float Single Checkbox Field',
3154   'widget_type' => 'optionwidgets_onoff',
3155   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
3156   '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;}}',
3157   'description' => 'An example float field using a single on/off checkbox.',
3158   'widget_module' => 'optionwidgets',
3159   'widget_active' => '1',
3160 ))
3161 ->values(array(
3162   'field_name' => 'field_test_four',
3163   'type_name' => 'story',
3164   'weight' => '3',
3165   'label' => 'Float Field',
3166   'widget_type' => 'number',
3167   '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;}',
3168   '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;}}',
3169   'description' => 'An example float field.',
3170   'widget_module' => 'number',
3171   'widget_active' => '1',
3172 ))
3173 ->values(array(
3174   'field_name' => 'field_test_identical1',
3175   'type_name' => 'story',
3176   'weight' => '4',
3177   'label' => 'Integer Field',
3178   'widget_type' => 'number',
3179   '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;}',
3180   '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;}}',
3181   'description' => 'An example integer field.',
3182   'widget_module' => 'number',
3183   'widget_active' => '1',
3184 ))
3185 ->values(array(
3186   'field_name' => 'field_test_identical2',
3187   'type_name' => 'story',
3188   'weight' => '5',
3189   'label' => 'Integer Field',
3190   'widget_type' => 'number',
3191   '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;}',
3192   '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;}}',
3193   'description' => 'An example integer field.',
3194   'widget_module' => 'number',
3195   'widget_active' => '1',
3196 ))
3197 ->values(array(
3198   'field_name' => 'field_test_imagefield',
3199   'type_name' => 'story',
3200   'weight' => '9',
3201   'label' => 'Image Field',
3202   'widget_type' => 'imagefield_widget',
3203   '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;}',
3204   '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;}}',
3205   'description' => 'An example image field.',
3206   'widget_module' => 'imagefield',
3207   'widget_active' => '1',
3208 ))
3209 ->values(array(
3210   'field_name' => 'field_test_integer_selectlist',
3211   'type_name' => 'story',
3212   'weight' => '16',
3213   'label' => 'Integer Select List Field',
3214   'widget_type' => 'optionwidgets_select',
3215   '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;}',
3216   '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;}}',
3217   'description' => 'An example integer field using a select list.',
3218   'widget_module' => 'optionwidgets',
3219   'widget_active' => '1',
3220 ))
3221 ->values(array(
3222   'field_name' => 'field_test_link',
3223   'type_name' => 'story',
3224   'weight' => '7',
3225   'label' => 'Link Field',
3226   'widget_type' => 'link',
3227   '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;}',
3228   '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;}}',
3229   'description' => 'An example link field.',
3230   'widget_module' => 'link',
3231   'widget_active' => '1',
3232 ))
3233 ->values(array(
3234   'field_name' => 'field_test_phone',
3235   'type_name' => 'story',
3236   'weight' => '13',
3237   'label' => 'Phone Field',
3238   'widget_type' => 'phone_textfield',
3239   '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;}',
3240   '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;}}',
3241   'description' => 'An example phone field.',
3242   'widget_module' => 'phone',
3243   'widget_active' => '1',
3244 ))
3245 ->values(array(
3246   'field_name' => 'field_test_text_single_checkbox',
3247   'type_name' => 'story',
3248   'weight' => '17',
3249   'label' => 'Text Single Checkbox Field',
3250   'widget_type' => 'optionwidgets_onoff',
3251   '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;}',
3252   '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;}}',
3253   'description' => 'An example text field using a single on/off checkbox.',
3254   'widget_module' => 'optionwidgets',
3255   'widget_active' => '1',
3256 ))
3257 ->values(array(
3258   'field_name' => 'field_test_text_single_checkbox',
3259   'type_name' => 'test_planet',
3260   'weight' => '32',
3261   'label' => 'Text Single Checkbox Field',
3262   'widget_type' => 'text_textfield',
3263   '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";}',
3264   '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;}}',
3265   'description' => 'An example text field using a single on/off checkbox.',
3266   'widget_module' => 'text',
3267   'widget_active' => '1',
3268 ))
3269 ->values(array(
3270   'field_name' => 'field_test_text_single_checkbox2',
3271   'type_name' => 'story',
3272   'weight' => '19',
3273   'label' => 'Text Single Checkbox Field 2',
3274   'widget_type' => 'optionwidgets_onoff',
3275   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
3276   '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;}}',
3277   'description' => 'Checkbox that uses keys only and no label.',
3278   'widget_module' => 'optionwidgets',
3279   'widget_active' => '1',
3280 ))
3281 ->values(array(
3282   'field_name' => 'field_test_three',
3283   'type_name' => 'story',
3284   'weight' => '2',
3285   'label' => 'Decimal Field',
3286   'widget_type' => 'number',
3287   '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;}',
3288   '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;}}',
3289   'description' => 'An example decimal field.',
3290   'widget_module' => 'number',
3291   'widget_active' => '1',
3292 ))
3293 ->values(array(
3294   'field_name' => 'field_test_two',
3295   'type_name' => 'story',
3296   'weight' => '1',
3297   'label' => 'Integer Field',
3298   'widget_type' => 'number',
3299   '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;}',
3300   '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;}}',
3301   'description' => 'An example integer field.',
3302   'widget_module' => 'number',
3303   'widget_active' => '1',
3304 ))
3305 ->execute();
3306
3307 $connection->schema()->createTable('content_type_employee', array(
3308   'fields' => array(
3309     'vid' => array(
3310       'type' => 'int',
3311       'not null' => TRUE,
3312       'size' => 'normal',
3313       'default' => '0',
3314       'unsigned' => TRUE,
3315     ),
3316     'nid' => array(
3317       'type' => 'int',
3318       'not null' => TRUE,
3319       'size' => 'normal',
3320       'default' => '0',
3321       'unsigned' => TRUE,
3322     ),
3323     'field_commander_uid' => array(
3324       'type' => 'int',
3325       'not null' => FALSE,
3326       'size' => 'normal',
3327       'unsigned' => TRUE,
3328     ),
3329   ),
3330   'primary key' => array(
3331     'vid',
3332   ),
3333   'indexes' => array(
3334     'nid' => array(
3335       'nid',
3336     ),
3337     'field_commander_uid' => array(
3338       'field_commander_uid',
3339     ),
3340   ),
3341   'mysql_character_set' => 'utf8',
3342 ));
3343
3344 $connection->insert('content_type_employee')
3345 ->fields(array(
3346   'vid',
3347   'nid',
3348   'field_commander_uid',
3349 ))
3350 ->values(array(
3351   'vid' => '21',
3352   'nid' => '18',
3353   'field_commander_uid' => '8',
3354 ))
3355 ->execute();
3356
3357 $connection->schema()->createTable('content_type_page', array(
3358   'fields' => array(
3359     'vid' => array(
3360       'type' => 'int',
3361       'not null' => TRUE,
3362       'size' => 'normal',
3363       'default' => '0',
3364       'unsigned' => TRUE,
3365     ),
3366     'nid' => array(
3367       'type' => 'int',
3368       'not null' => TRUE,
3369       'size' => 'normal',
3370       'default' => '0',
3371       'unsigned' => TRUE,
3372     ),
3373     'field_text_field_value' => array(
3374       'type' => 'text',
3375       'not null' => FALSE,
3376       'size' => 'normal',
3377     ),
3378   ),
3379   'primary key' => array(
3380     'vid',
3381   ),
3382   'mysql_character_set' => 'utf8',
3383 ));
3384
3385 $connection->schema()->createTable('content_type_story', array(
3386   'fields' => array(
3387     'nid' => array(
3388       'type' => 'int',
3389       'not null' => TRUE,
3390       'size' => 'normal',
3391       'default' => '0',
3392       'unsigned' => TRUE,
3393     ),
3394     'vid' => array(
3395       'type' => 'serial',
3396       'not null' => TRUE,
3397       'size' => 'normal',
3398       'unsigned' => TRUE,
3399     ),
3400     'uid' => array(
3401       'type' => 'int',
3402       'not null' => TRUE,
3403       'size' => 'normal',
3404       'unsigned' => TRUE,
3405     ),
3406     'field_test_three_value' => array(
3407       'type' => 'numeric',
3408       'not null' => FALSE,
3409       'precision' => '10',
3410       'scale' => '2',
3411     ),
3412     'field_test_identical1_value' => array(
3413       'type' => 'int',
3414       'not null' => FALSE,
3415       'size' => 'normal',
3416       'unsigned' => TRUE,
3417     ),
3418     'field_test_identical2_value' => array(
3419       'type' => 'int',
3420       'not null' => FALSE,
3421       'size' => 'normal',
3422       'unsigned' => TRUE,
3423     ),
3424     'field_test_link_url' => array(
3425       'type' => 'varchar',
3426       'not null' => FALSE,
3427       'length' => '2048',
3428     ),
3429     'field_test_link_title' => array(
3430       'type' => 'varchar',
3431       'not null' => FALSE,
3432       'length' => '255',
3433     ),
3434     'field_test_link_attributes' => array(
3435       'type' => 'text',
3436       'not null' => FALSE,
3437       'size' => 'normal',
3438     ),
3439     'field_test_date_value' => array(
3440       'type' => 'varchar',
3441       'not null' => FALSE,
3442       'length' => '20',
3443     ),
3444     'field_test_datestamp_value' => array(
3445       'type' => 'int',
3446       'not null' => FALSE,
3447       'size' => 'normal',
3448     ),
3449     'field_test_datetime_value' => array(
3450       'type' => 'varchar',
3451       'not null' => FALSE,
3452       'length' => '100',
3453     ),
3454     'field_test_email_email' => array(
3455       'type' => 'varchar',
3456       'not null' => FALSE,
3457       'length' => '255',
3458     ),
3459     'field_test_filefield_fid' => array(
3460       'type' => 'int',
3461       'not null' => FALSE,
3462       'size' => 'normal',
3463     ),
3464     'field_test_filefield_list' => array(
3465       'type' => 'int',
3466       'not null' => FALSE,
3467       'size' => 'normal',
3468     ),
3469     'field_test_filefield_data' => array(
3470       'type' => 'text',
3471       'not null' => FALSE,
3472       'size' => 'normal',
3473     ),
3474     'field_test_four_value' => array(
3475       'type' => 'numeric',
3476       'not null' => FALSE,
3477       'precision' => '10',
3478       'scale' => '0',
3479     ),
3480     'field_test_integer_selectlist_value' => array(
3481       'type' => 'int',
3482       'not null' => FALSE,
3483       'size' => 'normal',
3484     ),
3485     'field_test_float_single_checkbox_value' => array(
3486       'type' => 'numeric',
3487       'not null' => FALSE,
3488       'precision' => '10',
3489       'scale' => '0',
3490     ),
3491     'field_test_decimal_radio_buttons_value' => array(
3492       'type' => 'numeric',
3493       'not null' => FALSE,
3494       'precision' => '10',
3495       'scale' => '2',
3496     ),
3497     'field_test_phone_value' => array(
3498       'type' => 'varchar',
3499       'not null' => FALSE,
3500       'length' => '255',
3501     ),
3502     'field_test_exclude_unset_value' => array(
3503       'type' => 'text',
3504       'not null' => FALSE,
3505       'size' => 'normal',
3506     ),
3507     'field_test_exclude_unset_format' => array(
3508       'type' => 'int',
3509       'not null' => FALSE,
3510       'size' => 'normal',
3511       'unsigned' => TRUE,
3512     ),
3513     'field_test_imagefield_fid' => array(
3514       'type' => 'int',
3515       'not null' => FALSE,
3516       'size' => 'normal',
3517     ),
3518     'field_test_imagefield_list' => array(
3519       'type' => 'int',
3520       'not null' => FALSE,
3521       'size' => 'normal',
3522     ),
3523     'field_test_imagefield_data' => array(
3524       'type' => 'text',
3525       'not null' => FALSE,
3526       'size' => 'normal',
3527     ),
3528     'field_test_text_single_checkbox2_value' => array(
3529       'type' => 'text',
3530       'not null' => FALSE,
3531       'size' => 'big',
3532     ),
3533     'field_test_datestamp_value2' => array(
3534       'type' => 'int',
3535       'not null' => FALSE,
3536       'size' => 'normal',
3537     ),
3538     'field_test_datetime_value2' => array(
3539       'type' => 'varchar',
3540       'not null' => FALSE,
3541       'length' => '100',
3542     ),
3543   ),
3544   'primary key' => array(
3545     'vid',
3546   ),
3547   'indexes' => array(
3548     'nid' => array(
3549       'nid',
3550     ),
3551   ),
3552   'mysql_character_set' => 'utf8',
3553 ));
3554
3555 $connection->insert('content_type_story')
3556 ->fields(array(
3557   'nid',
3558   'vid',
3559   'uid',
3560   'field_test_three_value',
3561   'field_test_identical1_value',
3562   'field_test_identical2_value',
3563   'field_test_link_url',
3564   'field_test_link_title',
3565   'field_test_link_attributes',
3566   'field_test_date_value',
3567   'field_test_datestamp_value',
3568   'field_test_datetime_value',
3569   'field_test_email_email',
3570   'field_test_filefield_fid',
3571   'field_test_filefield_list',
3572   'field_test_filefield_data',
3573   'field_test_four_value',
3574   'field_test_integer_selectlist_value',
3575   'field_test_float_single_checkbox_value',
3576   'field_test_decimal_radio_buttons_value',
3577   'field_test_phone_value',
3578   'field_test_exclude_unset_value',
3579   'field_test_exclude_unset_format',
3580   'field_test_imagefield_fid',
3581   'field_test_imagefield_list',
3582   'field_test_imagefield_data',
3583   'field_test_text_single_checkbox2_value',
3584   'field_test_datestamp_value2',
3585   'field_test_datetime_value2',
3586 ))
3587 ->values(array(
3588   'nid' => '1',
3589   'vid' => '1',
3590   'uid' => '1',
3591   'field_test_three_value' => '42.42',
3592   'field_test_identical1_value' => '1',
3593   'field_test_identical2_value' => '1',
3594   'field_test_link_url' => 'https://www.drupal.org/project/drupal',
3595   'field_test_link_title' => 'Drupal project page',
3596   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
3597   'field_test_date_value' => '2013-01-02T04:05:00',
3598   'field_test_datestamp_value' => '1391357160',
3599   'field_test_datetime_value' => '2015-03-04 06:07:00',
3600   'field_test_email_email' => 'PrincessRuwenne@example.com',
3601   'field_test_filefield_fid' => '5',
3602   'field_test_filefield_list' => '1',
3603   'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
3604   'field_test_four_value' => NULL,
3605   'field_test_integer_selectlist_value' => '3412',
3606   'field_test_float_single_checkbox_value' => '3',
3607   'field_test_decimal_radio_buttons_value' => NULL,
3608   'field_test_phone_value' => NULL,
3609   'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
3610   'field_test_exclude_unset_format' => '1',
3611   'field_test_imagefield_fid' => NULL,
3612   'field_test_imagefield_list' => NULL,
3613   'field_test_imagefield_data' => NULL,
3614   'field_test_text_single_checkbox2_value' => 'Hello',
3615   'field_test_datestamp_value2' => NULL,
3616   'field_test_datetime_value2' => NULL,
3617 ))
3618 ->values(array(
3619   'nid' => '1',
3620   'vid' => '2',
3621   'uid' => '1',
3622   'field_test_three_value' => '42.42',
3623   'field_test_identical1_value' => '1',
3624   'field_test_identical2_value' => '1',
3625   'field_test_link_url' => 'https://www.drupal.org/project/drupal',
3626   'field_test_link_title' => 'Drupal project page',
3627   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
3628   'field_test_date_value' => '2013-01-02T04:05:00',
3629   'field_test_datestamp_value' => '1391357160',
3630   'field_test_datetime_value' => '2015-03-04 06:07:00',
3631   'field_test_email_email' => 'PrincessRuwenne@example.com',
3632   'field_test_filefield_fid' => NULL,
3633   'field_test_filefield_list' => NULL,
3634   'field_test_filefield_data' => NULL,
3635   'field_test_four_value' => NULL,
3636   'field_test_integer_selectlist_value' => NULL,
3637   'field_test_float_single_checkbox_value' => NULL,
3638   'field_test_decimal_radio_buttons_value' => NULL,
3639   'field_test_phone_value' => NULL,
3640   'field_test_exclude_unset_value' => NULL,
3641   'field_test_exclude_unset_format' => NULL,
3642   'field_test_imagefield_fid' => NULL,
3643   'field_test_imagefield_list' => NULL,
3644   'field_test_imagefield_data' => NULL,
3645   'field_test_text_single_checkbox2_value' => NULL,
3646   'field_test_datestamp_value2' => NULL,
3647   'field_test_datetime_value2' => NULL,
3648 ))
3649 ->values(array(
3650   'nid' => '2',
3651   'vid' => '3',
3652   'uid' => '1',
3653   'field_test_three_value' => '23.20',
3654   'field_test_identical1_value' => '1',
3655   'field_test_identical2_value' => '1',
3656   'field_test_link_url' => 'http://groups.drupal.org/',
3657   'field_test_link_title' => 'Drupal Groups',
3658   'field_test_link_attributes' => 's:6:"a:0:{}";',
3659   'field_test_date_value' => NULL,
3660   'field_test_datestamp_value' => NULL,
3661   'field_test_datetime_value' => NULL,
3662   'field_test_email_email' => NULL,
3663   'field_test_filefield_fid' => NULL,
3664   'field_test_filefield_list' => NULL,
3665   'field_test_filefield_data' => NULL,
3666   'field_test_four_value' => NULL,
3667   'field_test_integer_selectlist_value' => NULL,
3668   'field_test_float_single_checkbox_value' => NULL,
3669   'field_test_decimal_radio_buttons_value' => NULL,
3670   'field_test_phone_value' => NULL,
3671   'field_test_exclude_unset_value' => NULL,
3672   'field_test_exclude_unset_format' => NULL,
3673   'field_test_imagefield_fid' => NULL,
3674   'field_test_imagefield_list' => NULL,
3675   'field_test_imagefield_data' => NULL,
3676   'field_test_text_single_checkbox2_value' => NULL,
3677   'field_test_datestamp_value2' => NULL,
3678   'field_test_datetime_value2' => NULL,
3679 ))
3680 ->values(array(
3681   'nid' => '2',
3682   'vid' => '5',
3683   'uid' => '1',
3684   'field_test_three_value' => '23.20',
3685   'field_test_identical1_value' => '1',
3686   'field_test_identical2_value' => '1',
3687   'field_test_link_url' => 'http://groups.drupal.org/',
3688   'field_test_link_title' => 'Drupal Groups',
3689   'field_test_link_attributes' => 's:6:"a:0:{}";',
3690   'field_test_date_value' => NULL,
3691   'field_test_datestamp_value' => NULL,
3692   'field_test_datetime_value' => NULL,
3693   'field_test_email_email' => NULL,
3694   'field_test_filefield_fid' => NULL,
3695   'field_test_filefield_list' => NULL,
3696   'field_test_filefield_data' => NULL,
3697   'field_test_four_value' => NULL,
3698   'field_test_integer_selectlist_value' => NULL,
3699   'field_test_float_single_checkbox_value' => NULL,
3700   'field_test_decimal_radio_buttons_value' => NULL,
3701   'field_test_phone_value' => NULL,
3702   'field_test_exclude_unset_value' => NULL,
3703   'field_test_exclude_unset_format' => NULL,
3704   'field_test_imagefield_fid' => NULL,
3705   'field_test_imagefield_list' => NULL,
3706   'field_test_imagefield_data' => NULL,
3707   'field_test_text_single_checkbox2_value' => NULL,
3708   'field_test_datestamp_value2' => NULL,
3709   'field_test_datetime_value2' => NULL,
3710 ))
3711 ->values(array(
3712   'nid' => '9',
3713   'vid' => '12',
3714   'uid' => '0',
3715   'field_test_three_value' => '101.00',
3716   'field_test_identical1_value' => NULL,
3717   'field_test_identical2_value' => NULL,
3718   'field_test_link_url' => 'node/10',
3719   'field_test_link_title' => 'Buy it now',
3720   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
3721   'field_test_date_value' => NULL,
3722   'field_test_datestamp_value' => NULL,
3723   'field_test_datetime_value' => NULL,
3724   'field_test_email_email' => NULL,
3725   'field_test_filefield_fid' => NULL,
3726   'field_test_filefield_list' => NULL,
3727   'field_test_filefield_data' => NULL,
3728   'field_test_four_value' => '101',
3729   'field_test_integer_selectlist_value' => NULL,
3730   'field_test_float_single_checkbox_value' => '3',
3731   'field_test_decimal_radio_buttons_value' => NULL,
3732   'field_test_phone_value' => NULL,
3733   'field_test_exclude_unset_value' => 'text for default value',
3734   'field_test_exclude_unset_format' => '1',
3735   'field_test_imagefield_fid' => NULL,
3736   'field_test_imagefield_list' => NULL,
3737   'field_test_imagefield_data' => NULL,
3738   'field_test_text_single_checkbox2_value' => 'Off',
3739   'field_test_datestamp_value2' => '1391357160',
3740   'field_test_datetime_value2' => '2015-03-04 06:07:00',
3741 ))
3742 ->execute();
3743
3744 $connection->schema()->createTable('content_type_test_page', array(
3745   'fields' => array(
3746     'vid' => array(
3747       'type' => 'int',
3748       'not null' => TRUE,
3749       'size' => 'normal',
3750       'default' => '0',
3751       'unsigned' => TRUE,
3752     ),
3753     'nid' => array(
3754       'type' => 'int',
3755       'not null' => TRUE,
3756       'size' => 'normal',
3757       'default' => '0',
3758       'unsigned' => TRUE,
3759     ),
3760     'field_test_value' => array(
3761       'type' => 'text',
3762       'not null' => FALSE,
3763       'size' => 'normal',
3764     ),
3765     'field_test_format' => array(
3766       'type' => 'int',
3767       'not null' => FALSE,
3768       'size' => 'normal',
3769       'unsigned' => TRUE,
3770     ),
3771   ),
3772   'primary key' => array(
3773     'vid',
3774   ),
3775   'mysql_character_set' => 'utf8',
3776 ));
3777
3778 $connection->schema()->createTable('content_type_test_planet', array(
3779   'fields' => array(
3780     'nid' => array(
3781       'type' => 'int',
3782       'not null' => TRUE,
3783       'size' => 'normal',
3784       'default' => '0',
3785       'unsigned' => TRUE,
3786     ),
3787     'vid' => array(
3788       'type' => 'serial',
3789       'not null' => TRUE,
3790       'size' => 'normal',
3791       'unsigned' => TRUE,
3792     ),
3793   ),
3794   'primary key' => array(
3795     'vid',
3796   ),
3797   'mysql_character_set' => 'utf8',
3798 ));
3799
3800 $connection->insert('content_type_test_planet')
3801 ->fields(array(
3802   'nid',
3803   'vid',
3804 ))
3805 ->values(array(
3806   'nid' => '3',
3807   'vid' => '4',
3808 ))
3809 ->values(array(
3810   'nid' => '4',
3811   'vid' => '6',
3812 ))
3813 ->values(array(
3814   'nid' => '5',
3815   'vid' => '7',
3816 ))
3817 ->values(array(
3818   'nid' => '6',
3819   'vid' => '8',
3820 ))
3821 ->values(array(
3822   'nid' => '7',
3823   'vid' => '9',
3824 ))
3825 ->values(array(
3826   'nid' => '8',
3827   'vid' => '10',
3828 ))
3829 ->values(array(
3830   'nid' => '9',
3831   'vid' => '11',
3832 ))
3833 ->execute();
3834
3835 $connection->schema()->createTable('date_format_locale', array(
3836   'fields' => array(
3837     'format' => array(
3838       'type' => 'varchar',
3839       'not null' => TRUE,
3840       'length' => '100',
3841     ),
3842     'type' => array(
3843       'type' => 'varchar',
3844       'not null' => TRUE,
3845       'length' => '200',
3846     ),
3847     'language' => array(
3848       'type' => 'varchar',
3849       'not null' => TRUE,
3850       'length' => '12',
3851     ),
3852   ),
3853   'primary key' => array(
3854     'type',
3855     'language',
3856   ),
3857   'mysql_character_set' => 'utf8',
3858 ));
3859
3860 $connection->schema()->createTable('date_format_types', array(
3861   'fields' => array(
3862     'type' => array(
3863       'type' => 'varchar',
3864       'not null' => TRUE,
3865       'length' => '200',
3866     ),
3867     'title' => array(
3868       'type' => 'varchar',
3869       'not null' => TRUE,
3870       'length' => '255',
3871     ),
3872     'locked' => array(
3873       'type' => 'int',
3874       'not null' => TRUE,
3875       'size' => 'normal',
3876       'default' => '0',
3877     ),
3878   ),
3879   'primary key' => array(
3880     'type',
3881   ),
3882   'mysql_character_set' => 'utf8',
3883 ));
3884
3885 $connection->insert('date_format_types')
3886 ->fields(array(
3887   'type',
3888   'title',
3889   'locked',
3890 ))
3891 ->values(array(
3892   'type' => 'long',
3893   'title' => 'Long',
3894   'locked' => '1',
3895 ))
3896 ->values(array(
3897   'type' => 'medium',
3898   'title' => 'Medium',
3899   'locked' => '1',
3900 ))
3901 ->values(array(
3902   'type' => 'short',
3903   'title' => 'Short',
3904   'locked' => '1',
3905 ))
3906 ->execute();
3907
3908 $connection->schema()->createTable('date_formats', array(
3909   'fields' => array(
3910     'dfid' => array(
3911       'type' => 'serial',
3912       'not null' => TRUE,
3913       'size' => 'normal',
3914       'unsigned' => TRUE,
3915     ),
3916     'format' => array(
3917       'type' => 'varchar',
3918       'not null' => TRUE,
3919       'length' => '100',
3920     ),
3921     'type' => array(
3922       'type' => 'varchar',
3923       'not null' => TRUE,
3924       'length' => '200',
3925     ),
3926     'locked' => array(
3927       'type' => 'int',
3928       'not null' => TRUE,
3929       'size' => 'normal',
3930       'default' => '0',
3931     ),
3932   ),
3933   'primary key' => array(
3934     'dfid',
3935   ),
3936   'mysql_character_set' => 'utf8',
3937 ));
3938
3939 $connection->insert('date_formats')
3940 ->fields(array(
3941   'dfid',
3942   'format',
3943   'type',
3944   'locked',
3945 ))
3946 ->values(array(
3947   'dfid' => '1',
3948   'format' => 'Y-m-d H:i',
3949   'type' => 'short',
3950   'locked' => '1',
3951 ))
3952 ->values(array(
3953   'dfid' => '2',
3954   'format' => 'm/d/Y - H:i',
3955   'type' => 'short',
3956   'locked' => '1',
3957 ))
3958 ->values(array(
3959   'dfid' => '3',
3960   'format' => 'd/m/Y - H:i',
3961   'type' => 'short',
3962   'locked' => '1',
3963 ))
3964 ->values(array(
3965   'dfid' => '4',
3966   'format' => 'Y/m/d - H:i',
3967   'type' => 'short',
3968   'locked' => '1',
3969 ))
3970 ->values(array(
3971   'dfid' => '5',
3972   'format' => 'd.m.Y - H:i',
3973   'type' => 'short',
3974   'locked' => '1',
3975 ))
3976 ->values(array(
3977   'dfid' => '6',
3978   'format' => 'm/d/Y - g:ia',
3979   'type' => 'short',
3980   'locked' => '1',
3981 ))
3982 ->values(array(
3983   'dfid' => '7',
3984   'format' => 'd/m/Y - g:ia',
3985   'type' => 'short',
3986   'locked' => '1',
3987 ))
3988 ->values(array(
3989   'dfid' => '8',
3990   'format' => 'Y/m/d - g:ia',
3991   'type' => 'short',
3992   'locked' => '1',
3993 ))
3994 ->values(array(
3995   'dfid' => '9',
3996   'format' => 'M j Y - H:i',
3997   'type' => 'short',
3998   'locked' => '1',
3999 ))
4000 ->values(array(
4001   'dfid' => '10',
4002   'format' => 'j M Y - H:i',
4003   'type' => 'short',
4004   'locked' => '1',
4005 ))
4006 ->values(array(
4007   'dfid' => '11',
4008   'format' => 'Y M j - H:i',
4009   'type' => 'short',
4010   'locked' => '1',
4011 ))
4012 ->values(array(
4013   'dfid' => '12',
4014   'format' => 'M j Y - g:ia',
4015   'type' => 'short',
4016   'locked' => '1',
4017 ))
4018 ->values(array(
4019   'dfid' => '13',
4020   'format' => 'j M Y - g:ia',
4021   'type' => 'short',
4022   'locked' => '1',
4023 ))
4024 ->values(array(
4025   'dfid' => '14',
4026   'format' => 'Y M j - g:ia',
4027   'type' => 'short',
4028   'locked' => '1',
4029 ))
4030 ->values(array(
4031   'dfid' => '15',
4032   'format' => 'D, Y-m-d H:i',
4033   'type' => 'medium',
4034   'locked' => '1',
4035 ))
4036 ->values(array(
4037   'dfid' => '16',
4038   'format' => 'D, m/d/Y - H:i',
4039   'type' => 'medium',
4040   'locked' => '1',
4041 ))
4042 ->values(array(
4043   'dfid' => '17',
4044   'format' => 'D, d/m/Y - H:i',
4045   'type' => 'medium',
4046   'locked' => '1',
4047 ))
4048 ->values(array(
4049   'dfid' => '18',
4050   'format' => 'D, Y/m/d - H:i',
4051   'type' => 'medium',
4052   'locked' => '1',
4053 ))
4054 ->values(array(
4055   'dfid' => '19',
4056   'format' => 'F j, Y - H:i',
4057   'type' => 'medium',
4058   'locked' => '1',
4059 ))
4060 ->values(array(
4061   'dfid' => '20',
4062   'format' => 'j F, Y - H:i',
4063   'type' => 'medium',
4064   'locked' => '1',
4065 ))
4066 ->values(array(
4067   'dfid' => '21',
4068   'format' => 'Y, F j - H:i',
4069   'type' => 'medium',
4070   'locked' => '1',
4071 ))
4072 ->values(array(
4073   'dfid' => '22',
4074   'format' => 'D, m/d/Y - g:ia',
4075   'type' => 'medium',
4076   'locked' => '1',
4077 ))
4078 ->values(array(
4079   'dfid' => '23',
4080   'format' => 'D, d/m/Y - g:ia',
4081   'type' => 'medium',
4082   'locked' => '1',
4083 ))
4084 ->values(array(
4085   'dfid' => '24',
4086   'format' => 'D, Y/m/d - g:ia',
4087   'type' => 'medium',
4088   'locked' => '1',
4089 ))
4090 ->values(array(
4091   'dfid' => '25',
4092   'format' => 'F j, Y - g:ia',
4093   'type' => 'medium',
4094   'locked' => '1',
4095 ))
4096 ->values(array(
4097   'dfid' => '26',
4098   'format' => 'j F Y - g:ia',
4099   'type' => 'medium',
4100   'locked' => '1',
4101 ))
4102 ->values(array(
4103   'dfid' => '27',
4104   'format' => 'Y, F j - g:ia',
4105   'type' => 'medium',
4106   'locked' => '1',
4107 ))
4108 ->values(array(
4109   'dfid' => '28',
4110   'format' => 'j. F Y - G:i',
4111   'type' => 'medium',
4112   'locked' => '1',
4113 ))
4114 ->values(array(
4115   'dfid' => '29',
4116   'format' => 'l, F j, Y - H:i',
4117   'type' => 'long',
4118   'locked' => '1',
4119 ))
4120 ->values(array(
4121   'dfid' => '30',
4122   'format' => 'l, j F, Y - H:i',
4123   'type' => 'long',
4124   'locked' => '1',
4125 ))
4126 ->values(array(
4127   'dfid' => '31',
4128   'format' => 'l, Y,  F j - H:i',
4129   'type' => 'long',
4130   'locked' => '1',
4131 ))
4132 ->values(array(
4133   'dfid' => '32',
4134   'format' => 'l, F j, Y - g:ia',
4135   'type' => 'long',
4136   'locked' => '1',
4137 ))
4138 ->values(array(
4139   'dfid' => '33',
4140   'format' => 'l, j F Y - g:ia',
4141   'type' => 'long',
4142   'locked' => '1',
4143 ))
4144 ->values(array(
4145   'dfid' => '34',
4146   'format' => 'l, Y,  F j - g:ia',
4147   'type' => 'long',
4148   'locked' => '1',
4149 ))
4150 ->values(array(
4151   'dfid' => '35',
4152   'format' => 'l, j. F Y - G:i',
4153   'type' => 'long',
4154   'locked' => '1',
4155 ))
4156 ->execute();
4157
4158 $connection->schema()->createTable('event', array(
4159   'fields' => array(
4160     'nid' => array(
4161       'type' => 'int',
4162       'not null' => TRUE,
4163       'size' => 'normal',
4164       'default' => '0',
4165       'unsigned' => TRUE,
4166     ),
4167     'event_start' => array(
4168       'type' => 'varchar',
4169       'not null' => TRUE,
4170       'length' => '100',
4171     ),
4172     'event_end' => array(
4173       'type' => 'varchar',
4174       'not null' => TRUE,
4175       'length' => '100',
4176     ),
4177     'timezone' => array(
4178       'type' => 'int',
4179       'not null' => TRUE,
4180       'size' => 'normal',
4181       'default' => '0',
4182     ),
4183     'start_in_dst' => array(
4184       'type' => 'int',
4185       'not null' => TRUE,
4186       'size' => 'normal',
4187       'default' => '0',
4188     ),
4189     'end_in_dst' => array(
4190       'type' => 'int',
4191       'not null' => TRUE,
4192       'size' => 'normal',
4193       'default' => '0',
4194     ),
4195     'has_time' => array(
4196       'type' => 'int',
4197       'not null' => TRUE,
4198       'size' => 'normal',
4199       'default' => '1',
4200     ),
4201     'has_end_date' => array(
4202       'type' => 'int',
4203       'not null' => TRUE,
4204       'size' => 'normal',
4205       'default' => '1',
4206     ),
4207   ),
4208   'primary key' => array(
4209     'nid',
4210   ),
4211   'mysql_character_set' => 'utf8',
4212 ));
4213
4214 $connection->schema()->createTable('event_timezones', array(
4215   'fields' => array(
4216     'timezone' => array(
4217       'type' => 'int',
4218       'not null' => TRUE,
4219       'size' => 'normal',
4220       'default' => '0',
4221     ),
4222     'name' => array(
4223       'type' => 'varchar',
4224       'not null' => TRUE,
4225       'length' => '255',
4226       'default' => '',
4227     ),
4228     'offset' => array(
4229       'type' => 'varchar',
4230       'not null' => TRUE,
4231       'length' => '100',
4232       'default' => '00:00:00',
4233     ),
4234     'offset_dst' => array(
4235       'type' => 'varchar',
4236       'not null' => TRUE,
4237       'length' => '100',
4238       'default' => '00:00:00',
4239     ),
4240     'dst_region' => array(
4241       'type' => 'int',
4242       'not null' => TRUE,
4243       'size' => 'normal',
4244       'default' => '0',
4245     ),
4246     'is_dst' => array(
4247       'type' => 'int',
4248       'not null' => TRUE,
4249       'size' => 'normal',
4250       'default' => '0',
4251     ),
4252   ),
4253   'primary key' => array(
4254     'timezone',
4255   ),
4256   'mysql_character_set' => 'utf8',
4257 ));
4258
4259 $connection->insert('event_timezones')
4260 ->fields(array(
4261   'timezone',
4262   'name',
4263   'offset',
4264   'offset_dst',
4265   'dst_region',
4266   'is_dst',
4267 ))
4268 ->values(array(
4269   'timezone' => '1',
4270   'name' => 'Africa/Addis Ababa',
4271   'offset' => '03:00:00',
4272   'offset_dst' => '03:00:00',
4273   'dst_region' => '0',
4274   'is_dst' => '0',
4275 ))
4276 ->values(array(
4277   'timezone' => '2',
4278   'name' => 'Africa/Algiers',
4279   'offset' => '01:00:00',
4280   'offset_dst' => '01:00:00',
4281   'dst_region' => '0',
4282   'is_dst' => '0',
4283 ))
4284 ->values(array(
4285   'timezone' => '3',
4286   'name' => 'Africa/Asmera',
4287   'offset' => '03:00:00',
4288   'offset_dst' => '03:00:00',
4289   'dst_region' => '0',
4290   'is_dst' => '0',
4291 ))
4292 ->values(array(
4293   'timezone' => '4',
4294   'name' => 'Africa/Bangui',
4295   'offset' => '01:00:00',
4296   'offset_dst' => '01:00:00',
4297   'dst_region' => '0',
4298   'is_dst' => '0',
4299 ))
4300 ->values(array(
4301   'timezone' => '5',
4302   'name' => 'Africa/Blantyre',
4303   'offset' => '02:00:00',
4304   'offset_dst' => '02:00:00',
4305   'dst_region' => '0',
4306   'is_dst' => '0',
4307 ))
4308 ->values(array(
4309   'timezone' => '6',
4310   'name' => 'Africa/Brazzaville',
4311   'offset' => '01:00:00',
4312   'offset_dst' => '01:00:00',
4313   'dst_region' => '0',
4314   'is_dst' => '0',
4315 ))
4316 ->values(array(
4317   'timezone' => '7',
4318   'name' => 'Africa/Bujumbura',
4319   'offset' => '02:00:00',
4320   'offset_dst' => '02:00:00',
4321   'dst_region' => '0',
4322   'is_dst' => '0',
4323 ))
4324 ->values(array(
4325   'timezone' => '8',
4326   'name' => 'Africa/Cairo',
4327   'offset' => '02:00:00',
4328   'offset_dst' => '03:00:00',
4329   'dst_region' => '1',
4330   'is_dst' => '0',
4331 ))
4332 ->values(array(
4333   'timezone' => '9',
4334   'name' => 'Africa/Ceuta',
4335   'offset' => '01:00:00',
4336   'offset_dst' => '02:00:00',
4337   'dst_region' => '1',
4338   'is_dst' => '0',
4339 ))
4340 ->values(array(
4341   'timezone' => '10',
4342   'name' => 'Africa/Dar es Salaam',
4343   'offset' => '03:00:00',
4344   'offset_dst' => '03:00:00',
4345   'dst_region' => '0',
4346   'is_dst' => '0',
4347 ))
4348 ->values(array(
4349   'timezone' => '11',
4350   'name' => 'Africa/Djibouti',
4351   'offset' => '03:00:00',
4352   'offset_dst' => '03:00:00',
4353   'dst_region' => '0',
4354   'is_dst' => '0',
4355 ))
4356 ->values(array(
4357   'timezone' => '12',
4358   'name' => 'Africa/Douala',
4359   'offset' => '01:00:00',
4360   'offset_dst' => '01:00:00',
4361   'dst_region' => '0',
4362   'is_dst' => '0',
4363 ))
4364 ->values(array(
4365   'timezone' => '13',
4366   'name' => 'Africa/Gaborone',
4367   'offset' => '02:00:00',
4368   'offset_dst' => '02:00:00',
4369   'dst_region' => '0',
4370   'is_dst' => '0',
4371 ))
4372 ->values(array(
4373   'timezone' => '14',
4374   'name' => 'Africa/Harare',
4375   'offset' => '02:00:00',
4376   'offset_dst' => '02:00:00',
4377   'dst_region' => '0',
4378   'is_dst' => '0',
4379 ))
4380 ->values(array(
4381   'timezone' => '15',
4382   'name' => 'Africa/Johannesburg',
4383   'offset' => '02:00:00',
4384   'offset_dst' => '02:00:00',
4385   'dst_region' => '0',
4386   'is_dst' => '0',
4387 ))
4388 ->values(array(
4389   'timezone' => '16',
4390   'name' => 'Africa/Kampala',
4391   'offset' => '03:00:00',
4392   'offset_dst' => '03:00:00',
4393   'dst_region' => '0',
4394   'is_dst' => '0',
4395 ))
4396 ->values(array(
4397   'timezone' => '17',
4398   'name' => 'Africa/Khartoum',
4399   'offset' => '03:00:00',
4400   'offset_dst' => '03:00:00',
4401   'dst_region' => '0',
4402   'is_dst' => '0',
4403 ))
4404 ->values(array(
4405   'timezone' => '18',
4406   'name' => 'Africa/Kigali',
4407   'offset' => '02:00:00',
4408   'offset_dst' => '02:00:00',
4409   'dst_region' => '0',
4410   'is_dst' => '0',
4411 ))
4412 ->values(array(
4413   'timezone' => '19',
4414   'name' => 'Africa/Kinshasa',
4415   'offset' => '01:00:00',
4416   'offset_dst' => '01:00:00',
4417   'dst_region' => '0',
4418   'is_dst' => '0',
4419 ))
4420 ->values(array(
4421   'timezone' => '20',
4422   'name' => 'Africa/Lagos',
4423   'offset' => '01:00:00',
4424   'offset_dst' => '01:00:00',
4425   'dst_region' => '0',
4426   'is_dst' => '0',
4427 ))
4428 ->values(array(
4429   'timezone' => '21',
4430   'name' => 'Africa/Libreville',
4431   'offset' => '01:00:00',
4432   'offset_dst' => '01:00:00',
4433   'dst_region' => '0',
4434   'is_dst' => '0',
4435 ))
4436 ->values(array(
4437   'timezone' => '22',
4438   'name' => 'Africa/Luanda',
4439   'offset' => '01:00:00',
4440   'offset_dst' => '01:00:00',
4441   'dst_region' => '0',
4442   'is_dst' => '0',
4443 ))
4444 ->values(array(
4445   'timezone' => '23',
4446   'name' => 'Africa/Lubumbashi',
4447   'offset' => '02:00:00',
4448   'offset_dst' => '02:00:00',
4449   'dst_region' => '0',
4450   'is_dst' => '0',
4451 ))
4452 ->values(array(
4453   'timezone' => '24',
4454   'name' => 'Africa/Lusaka',
4455   'offset' => '02:00:00',
4456   'offset_dst' => '02:00:00',
4457   'dst_region' => '0',
4458   'is_dst' => '0',
4459 ))
4460 ->values(array(
4461   'timezone' => '25',
4462   'name' => 'Africa/Malabo',
4463   'offset' => '01:00:00',
4464   'offset_dst' => '01:00:00',
4465   'dst_region' => '0',
4466   'is_dst' => '0',
4467 ))
4468 ->values(array(
4469   'timezone' => '26',
4470   'name' => 'Africa/Maputo',
4471   'offset' => '02:00:00',
4472   'offset_dst' => '02:00:00',
4473   'dst_region' => '0',
4474   'is_dst' => '0',
4475 ))
4476 ->values(array(
4477   'timezone' => '27',
4478   'name' => 'Africa/Maseru',
4479   'offset' => '02:00:00',
4480   'offset_dst' => '02:00:00',
4481   'dst_region' => '0',
4482   'is_dst' => '0',
4483 ))
4484 ->values(array(
4485   'timezone' => '28',
4486   'name' => 'Africa/Mbabane',
4487   'offset' => '02:00:00',
4488   'offset_dst' => '02:00:00',
4489   'dst_region' => '0',
4490   'is_dst' => '0',
4491 ))
4492 ->values(array(
4493   'timezone' => '29',
4494   'name' => 'Africa/Mogadishu',
4495   'offset' => '03:00:00',
4496   'offset_dst' => '03:00:00',
4497   'dst_region' => '0',
4498   'is_dst' => '0',
4499 ))
4500 ->values(array(
4501   'timezone' => '30',
4502   'name' => 'Africa/Nairobi',
4503   'offset' => '03:00:00',
4504   'offset_dst' => '03:00:00',
4505   'dst_region' => '0',
4506   'is_dst' => '0',
4507 ))
4508 ->values(array(
4509   'timezone' => '31',
4510   'name' => 'Africa/Ndjamena',
4511   'offset' => '01:00:00',
4512   'offset_dst' => '01:00:00',
4513   'dst_region' => '0',
4514   'is_dst' => '0',
4515 ))
4516 ->values(array(
4517   'timezone' => '32',
4518   'name' => 'Africa/Niamey',
4519   'offset' => '01:00:00',
4520   'offset_dst' => '01:00:00',
4521   'dst_region' => '0',
4522   'is_dst' => '0',
4523 ))
4524 ->values(array(
4525   'timezone' => '33',
4526   'name' => 'Africa/Porto-Novo',
4527   'offset' => '01:00:00',
4528   'offset_dst' => '01:00:00',
4529   'dst_region' => '0',
4530   'is_dst' => '0',
4531 ))
4532 ->values(array(
4533   'timezone' => '34',
4534   'name' => 'Africa/Tripoli',
4535   'offset' => '02:00:00',
4536   'offset_dst' => '02:00:00',
4537   'dst_region' => '0',
4538   'is_dst' => '0',
4539 ))
4540 ->values(array(
4541   'timezone' => '35',
4542   'name' => 'Africa/Tunis',
4543   'offset' => '01:00:00',
4544   'offset_dst' => '01:00:00',
4545   'dst_region' => '0',
4546   'is_dst' => '0',
4547 ))
4548 ->values(array(
4549   'timezone' => '36',
4550   'name' => 'Africa/Windhoek',
4551   'offset' => '02:00:00',
4552   'offset_dst' => '01:00:00',
4553   'dst_region' => '2',
4554   'is_dst' => '0',
4555 ))
4556 ->values(array(
4557   'timezone' => '37',
4558   'name' => 'America/Adak',
4559   'offset' => '-10:00:00',
4560   'offset_dst' => '-09:00:00',
4561   'dst_region' => '15',
4562   'is_dst' => '0',
4563 ))
4564 ->values(array(
4565   'timezone' => '38',
4566   'name' => 'America/Anchorage',
4567   'offset' => '-09:00:00',
4568   'offset_dst' => '-08:00:00',
4569   'dst_region' => '15',
4570   'is_dst' => '0',
4571 ))
4572 ->values(array(
4573   'timezone' => '39',
4574   'name' => 'America/Anguilla',
4575   'offset' => '-04:00:00',
4576   'offset_dst' => '-04:00:00',
4577   'dst_region' => '0',
4578   'is_dst' => '0',
4579 ))
4580 ->values(array(
4581   'timezone' => '40',
4582   'name' => 'America/Antigua',
4583   'offset' => '-04:00:00',
4584   'offset_dst' => '-04:00:00',
4585   'dst_region' => '0',
4586   'is_dst' => '0',
4587 ))
4588 ->values(array(
4589   'timezone' => '41',
4590   'name' => 'America/Araguaina',
4591   'offset' => '-02:00:00',
4592   'offset_dst' => '-03:00:00',
4593   'dst_region' => '17',
4594   'is_dst' => '0',
4595 ))
4596 ->values(array(
4597   'timezone' => '42',
4598   'name' => 'America/Aruba',
4599   'offset' => '-04:00:00',
4600   'offset_dst' => '-04:00:00',
4601   'dst_region' => '0',
4602   'is_dst' => '0',
4603 ))
4604 ->values(array(
4605   'timezone' => '43',
4606   'name' => 'America/Asuncion',
4607   'offset' => '-03:00:00',
4608   'offset_dst' => '-04:00:00',
4609   'dst_region' => '20',
4610   'is_dst' => '0',
4611 ))
4612 ->values(array(
4613   'timezone' => '44',
4614   'name' => 'America/Atka',
4615   'offset' => '-10:00:00',
4616   'offset_dst' => '-09:00:00',
4617   'dst_region' => '15',
4618   'is_dst' => '0',
4619 ))
4620 ->values(array(
4621   'timezone' => '45',
4622   'name' => 'America/Barbados',
4623   'offset' => '-04:00:00',
4624   'offset_dst' => '-04:00:00',
4625   'dst_region' => '0',
4626   'is_dst' => '0',
4627 ))
4628 ->values(array(
4629   'timezone' => '46',
4630   'name' => 'America/Belem',
4631   'offset' => '-03:00:00',
4632   'offset_dst' => '-03:00:00',
4633   'dst_region' => '0',
4634   'is_dst' => '0',
4635 ))
4636 ->values(array(
4637   'timezone' => '47',
4638   'name' => 'America/Belize',
4639   'offset' => '-06:00:00',
4640   'offset_dst' => '-06:00:00',
4641   'dst_region' => '0',
4642   'is_dst' => '0',
4643 ))
4644 ->values(array(
4645   'timezone' => '48',
4646   'name' => 'America/Boa Vista',
4647   'offset' => '-04:00:00',
4648   'offset_dst' => '-04:00:00',
4649   'dst_region' => '0',
4650   'is_dst' => '0',
4651 ))
4652 ->values(array(
4653   'timezone' => '49',
4654   'name' => 'America/Bogota',
4655   'offset' => '-05:00:00',
4656   'offset_dst' => '-05:00:00',
4657   'dst_region' => '0',
4658   'is_dst' => '0',
4659 ))
4660 ->values(array(
4661   'timezone' => '50',
4662   'name' => 'America/Boise',
4663   'offset' => '-07:00:00',
4664   'offset_dst' => '-06:00:00',
4665   'dst_region' => '15',
4666   'is_dst' => '0',
4667 ))
4668 ->values(array(
4669   'timezone' => '51',
4670   'name' => 'America/Buenos Aires',
4671   'offset' => '-03:00:00',
4672   'offset_dst' => '-03:00:00',
4673   'dst_region' => '0',
4674   'is_dst' => '0',
4675 ))
4676 ->values(array(
4677   'timezone' => '52',
4678   'name' => 'America/Cambridge Bay',
4679   'offset' => '-07:00:00',
4680   'offset_dst' => '-06:00:00',
4681   'dst_region' => '15',
4682   'is_dst' => '0',
4683 ))
4684 ->values(array(
4685   'timezone' => '53',
4686   'name' => 'America/Cancun',
4687   'offset' => '-06:00:00',
4688   'offset_dst' => '-05:00:00',
4689   'dst_region' => '15',
4690   'is_dst' => '0',
4691 ))
4692 ->values(array(
4693   'timezone' => '54',
4694   'name' => 'America/Caracas',
4695   'offset' => '-04:00:00',
4696   'offset_dst' => '-04:00:00',
4697   'dst_region' => '0',
4698   'is_dst' => '0',
4699 ))
4700 ->values(array(
4701   'timezone' => '55',
4702   'name' => 'America/Catamarca',
4703   'offset' => '-03:00:00',
4704   'offset_dst' => '-03:00:00',
4705   'dst_region' => '0',
4706   'is_dst' => '0',
4707 ))
4708 ->values(array(
4709   'timezone' => '56',
4710   'name' => 'America/Cayenne',
4711   'offset' => '-03:00:00',
4712   'offset_dst' => '-03:00:00',
4713   'dst_region' => '0',
4714   'is_dst' => '0',
4715 ))
4716 ->values(array(
4717   'timezone' => '57',
4718   'name' => 'America/Cayman',
4719   'offset' => '-05:00:00',
4720   'offset_dst' => '-05:00:00',
4721   'dst_region' => '0',
4722   'is_dst' => '0',
4723 ))
4724 ->values(array(
4725   'timezone' => '58',
4726   'name' => 'America/Chicago',
4727   'offset' => '-06:00:00',
4728   'offset_dst' => '-05:00:00',
4729   'dst_region' => '15',
4730   'is_dst' => '0',
4731 ))
4732 ->values(array(
4733   'timezone' => '59',
4734   'name' => 'America/Chihuahua',
4735   'offset' => '-07:00:00',
4736   'offset_dst' => '-06:00:00',
4737   'dst_region' => '15',
4738   'is_dst' => '0',
4739 ))
4740 ->values(array(
4741   'timezone' => '60',
4742   'name' => 'America/Cordoba',
4743   'offset' => '-03:00:00',
4744   'offset_dst' => '-03:00:00',
4745   'dst_region' => '0',
4746   'is_dst' => '0',
4747 ))
4748 ->values(array(
4749   'timezone' => '61',
4750   'name' => 'America/Costa Rica',
4751   'offset' => '-06:00:00',
4752   'offset_dst' => '-06:00:00',
4753   'dst_region' => '0',
4754   'is_dst' => '0',
4755 ))
4756 ->values(array(
4757   'timezone' => '62',
4758   'name' => 'America/Cuiaba',
4759   'offset' => '-03:00:00',
4760   'offset_dst' => '-04:00:00',
4761   'dst_region' => '17',
4762   'is_dst' => '0',
4763 ))
4764 ->values(array(
4765   'timezone' => '63',
4766   'name' => 'America/Curacao',
4767   'offset' => '-04:00:00',
4768   'offset_dst' => '-04:00:00',
4769   'dst_region' => '0',
4770   'is_dst' => '0',
4771 ))
4772 ->values(array(
4773   'timezone' => '64',
4774   'name' => 'America/Dawson',
4775   'offset' => '-08:00:00',
4776   'offset_dst' => '-07:00:00',
4777   'dst_region' => '15',
4778   'is_dst' => '0',
4779 ))
4780 ->values(array(
4781   'timezone' => '65',
4782   'name' => 'America/Dawson Creek',
4783   'offset' => '-07:00:00',
4784   'offset_dst' => '-07:00:00',
4785   'dst_region' => '0',
4786   'is_dst' => '0',
4787 ))
4788 ->values(array(
4789   'timezone' => '66',
4790   'name' => 'America/Denver',
4791   'offset' => '-07:00:00',
4792   'offset_dst' => '-06:00:00',
4793   'dst_region' => '15',
4794   'is_dst' => '0',
4795 ))
4796 ->values(array(
4797   'timezone' => '67',
4798   'name' => 'America/Detroit',
4799   'offset' => '-05:00:00',
4800   'offset_dst' => '-04:00:00',
4801   'dst_region' => '15',
4802   'is_dst' => '0',
4803 ))
4804 ->values(array(
4805   'timezone' => '68',
4806   'name' => 'America/Dominica',
4807   'offset' => '-04:00:00',
4808   'offset_dst' => '-04:00:00',
4809   'dst_region' => '0',
4810   'is_dst' => '0',
4811 ))
4812 ->values(array(
4813   'timezone' => '69',
4814   'name' => 'America/Edmonton',
4815   'offset' => '-07:00:00',
4816   'offset_dst' => '-06:00:00',
4817   'dst_region' => '15',
4818   'is_dst' => '0',
4819 ))
4820 ->values(array(
4821   'timezone' => '70',
4822   'name' => 'America/Eirunepe',
4823   'offset' => '-05:00:00',
4824   'offset_dst' => '-05:00:00',
4825   'dst_region' => '0',
4826   'is_dst' => '0',
4827 ))
4828 ->values(array(
4829   'timezone' => '71',
4830   'name' => 'America/El Salvador',
4831   'offset' => '-06:00:00',
4832   'offset_dst' => '-06:00:00',
4833   'dst_region' => '0',
4834   'is_dst' => '0',
4835 ))
4836 ->values(array(
4837   'timezone' => '72',
4838   'name' => 'America/Ensenada',
4839   'offset' => '-08:00:00',
4840   'offset_dst' => '-07:00:00',
4841   'dst_region' => '15',
4842   'is_dst' => '0',
4843 ))
4844 ->values(array(
4845   'timezone' => '73',
4846   'name' => 'America/Fort Wayne',
4847   'offset' => '-05:00:00',
4848   'offset_dst' => '-05:00:00',
4849   'dst_region' => '0',
4850   'is_dst' => '0',
4851 ))
4852 ->values(array(
4853   'timezone' => '74',
4854   'name' => 'America/Fortaleza',
4855   'offset' => '-03:00:00',
4856   'offset_dst' => '-03:00:00',
4857   'dst_region' => '0',
4858   'is_dst' => '0',
4859 ))
4860 ->values(array(
4861   'timezone' => '75',
4862   'name' => 'America/Glace Bay',
4863   'offset' => '-04:00:00',
4864   'offset_dst' => '-03:00:00',
4865   'dst_region' => '15',
4866   'is_dst' => '0',
4867 ))
4868 ->values(array(
4869   'timezone' => '76',
4870   'name' => 'America/Godthab',
4871   'offset' => '-03:00:00',
4872   'offset_dst' => '-02:00:00',
4873   'dst_region' => '15',
4874   'is_dst' => '0',
4875 ))
4876 ->values(array(
4877   'timezone' => '77',
4878   'name' => 'America/Goose Bay',
4879   'offset' => '-04:00:00',
4880   'offset_dst' => '-03:00:00',
4881   'dst_region' => '15',
4882   'is_dst' => '0',
4883 ))
4884 ->values(array(
4885   'timezone' => '78',
4886   'name' => 'America/Grand Turk',
4887   'offset' => '-05:00:00',
4888   'offset_dst' => '-04:00:00',
4889   'dst_region' => '16',
4890   'is_dst' => '0',
4891 ))
4892 ->values(array(
4893   'timezone' => '79',
4894   'name' => 'America/Grenada',
4895   'offset' => '-04:00:00',
4896   'offset_dst' => '-04:00:00',
4897   'dst_region' => '0',
4898   'is_dst' => '0',
4899 ))
4900 ->values(array(
4901   'timezone' => '80',
4902   'name' => 'America/Guadeloupe',
4903   'offset' => '-04:00:00',
4904   'offset_dst' => '-04:00:00',
4905   'dst_region' => '0',
4906   'is_dst' => '0',
4907 ))
4908 ->values(array(
4909   'timezone' => '81',
4910   'name' => 'America/Guatemala',
4911   'offset' => '-06:00:00',
4912   'offset_dst' => '-06:00:00',
4913   'dst_region' => '0',
4914   'is_dst' => '0',
4915 ))
4916 ->values(array(
4917   'timezone' => '82',
4918   'name' => 'America/Guayaquil',
4919   'offset' => '-05:00:00',
4920   'offset_dst' => '-05:00:00',
4921   'dst_region' => '0',
4922   'is_dst' => '0',
4923 ))
4924 ->values(array(
4925   'timezone' => '83',
4926   'name' => 'America/Guyana',
4927   'offset' => '-04:00:00',
4928   'offset_dst' => '-04:00:00',
4929   'dst_region' => '0',
4930   'is_dst' => '0',
4931 ))
4932 ->values(array(
4933   'timezone' => '84',
4934   'name' => 'America/Halifax',
4935   'offset' => '-04:00:00',
4936   'offset_dst' => '-03:00:00',
4937   'dst_region' => '15',
4938   'is_dst' => '0',
4939 ))
4940 ->values(array(
4941   'timezone' => '85',
4942   'name' => 'America/Havana',
4943   'offset' => '-05:00:00',
4944   'offset_dst' => '-04:00:00',
4945   'dst_region' => '16',
4946   'is_dst' => '0',
4947 ))
4948 ->values(array(
4949   'timezone' => '86',
4950   'name' => 'America/Hermosillo',
4951   'offset' => '-07:00:00',
4952   'offset_dst' => '-07:00:00',
4953   'dst_region' => '0',
4954   'is_dst' => '0',
4955 ))
4956 ->values(array(
4957   'timezone' => '87',
4958   'name' => 'America/Indiana/Indianapolis',
4959   'offset' => '-05:00:00',
4960   'offset_dst' => '-05:00:00',
4961   'dst_region' => '0',
4962   'is_dst' => '0',
4963 ))
4964 ->values(array(
4965   'timezone' => '88',
4966   'name' => 'America/Indiana/Knox',
4967   'offset' => '-05:00:00',
4968   'offset_dst' => '-05:00:00',
4969   'dst_region' => '0',
4970   'is_dst' => '0',
4971 ))
4972 ->values(array(
4973   'timezone' => '89',
4974   'name' => 'America/Indiana/Marengo',
4975   'offset' => '-05:00:00',
4976   'offset_dst' => '-05:00:00',
4977   'dst_region' => '0',
4978   'is_dst' => '0',
4979 ))
4980 ->values(array(
4981   'timezone' => '90',
4982   'name' => 'America/Indiana/Vevay',
4983   'offset' => '-05:00:00',
4984   'offset_dst' => '-05:00:00',
4985   'dst_region' => '0',
4986   'is_dst' => '0',
4987 ))
4988 ->values(array(
4989   'timezone' => '91',
4990   'name' => 'America/Indianapolis',
4991   'offset' => '-05:00:00',
4992   'offset_dst' => '-05:00:00',
4993   'dst_region' => '0',
4994   'is_dst' => '0',
4995 ))
4996 ->values(array(
4997   'timezone' => '92',
4998   'name' => 'America/Inuvik',
4999   'offset' => '-07:00:00',
5000   'offset_dst' => '-06:00:00',
5001   'dst_region' => '15',
5002   'is_dst' => '0',
5003 ))
5004 ->values(array(
5005   'timezone' => '93',
5006   'name' => 'America/Iqaluit',
5007   'offset' => '-05:00:00',
5008   'offset_dst' => '-04:00:00',
5009   'dst_region' => '15',
5010   'is_dst' => '0',
5011 ))
5012 ->values(array(
5013   'timezone' => '94',
5014   'name' => 'America/Jamaica',
5015   'offset' => '-05:00:00',
5016   'offset_dst' => '-05:00:00',
5017   'dst_region' => '0',
5018   'is_dst' => '0',
5019 ))
5020 ->values(array(
5021   'timezone' => '95',
5022   'name' => 'America/Jujuy',
5023   'offset' => '-03:00:00',
5024   'offset_dst' => '-03:00:00',
5025   'dst_region' => '0',
5026   'is_dst' => '0',
5027 ))
5028 ->values(array(
5029   'timezone' => '96',
5030   'name' => 'America/Juneau',
5031   'offset' => '-09:00:00',
5032   'offset_dst' => '-08:00:00',
5033   'dst_region' => '15',
5034   'is_dst' => '0',
5035 ))
5036 ->values(array(
5037   'timezone' => '97',
5038   'name' => 'America/Kentucky/Louisville',
5039   'offset' => '-05:00:00',
5040   'offset_dst' => '-04:00:00',
5041   'dst_region' => '15',
5042   'is_dst' => '0',
5043 ))
5044 ->values(array(
5045   'timezone' => '98',
5046   'name' => 'America/Kentucky/Monticello',
5047   'offset' => '-05:00:00',
5048   'offset_dst' => '-04:00:00',
5049   'dst_region' => '15',
5050   'is_dst' => '0',
5051 ))
5052 ->values(array(
5053   'timezone' => '99',
5054   'name' => 'America/Knox IN',
5055   'offset' => '-05:00:00',
5056   'offset_dst' => '-05:00:00',
5057   'dst_region' => '0',
5058   'is_dst' => '0',
5059 ))
5060 ->values(array(
5061   'timezone' => '100',
5062   'name' => 'America/La Paz',
5063   'offset' => '-04:00:00',
5064   'offset_dst' => '-04:00:00',
5065   'dst_region' => '0',
5066   'is_dst' => '0',
5067 ))
5068 ->values(array(
5069   'timezone' => '101',
5070   'name' => 'America/Lima',
5071   'offset' => '-05:00:00',
5072   'offset_dst' => '-05:00:00',
5073   'dst_region' => '0',
5074   'is_dst' => '0',
5075 ))
5076 ->values(array(
5077   'timezone' => '102',
5078   'name' => 'America/Los Angeles',
5079   'offset' => '-08:00:00',
5080   'offset_dst' => '-07:00:00',
5081   'dst_region' => '15',
5082   'is_dst' => '0',
5083 ))
5084 ->values(array(
5085   'timezone' => '103',
5086   'name' => 'America/Louisville',
5087   'offset' => '-05:00:00',
5088   'offset_dst' => '-04:00:00',
5089   'dst_region' => '15',
5090   'is_dst' => '0',
5091 ))
5092 ->values(array(
5093   'timezone' => '104',
5094   'name' => 'America/Maceio',
5095   'offset' => '-03:00:00',
5096   'offset_dst' => '-03:00:00',
5097   'dst_region' => '0',
5098   'is_dst' => '0',
5099 ))
5100 ->values(array(
5101   'timezone' => '105',
5102   'name' => 'America/Managua',
5103   'offset' => '-06:00:00',
5104   'offset_dst' => '-06:00:00',
5105   'dst_region' => '0',
5106   'is_dst' => '0',
5107 ))
5108 ->values(array(
5109   'timezone' => '106',
5110   'name' => 'America/Manaus',
5111   'offset' => '-04:00:00',
5112   'offset_dst' => '-04:00:00',
5113   'dst_region' => '0',
5114   'is_dst' => '0',
5115 ))
5116 ->values(array(
5117   'timezone' => '107',
5118   'name' => 'America/Martinique',
5119   'offset' => '-04:00:00',
5120   'offset_dst' => '-04:00:00',
5121   'dst_region' => '0',
5122   'is_dst' => '0',
5123 ))
5124 ->values(array(
5125   'timezone' => '108',
5126   'name' => 'America/Mazatlan',
5127   'offset' => '-07:00:00',
5128   'offset_dst' => '-06:00:00',
5129   'dst_region' => '15',
5130   'is_dst' => '0',
5131 ))
5132 ->values(array(
5133   'timezone' => '109',
5134   'name' => 'America/Mendoza',
5135   'offset' => '-03:00:00',
5136   'offset_dst' => '-03:00:00',
5137   'dst_region' => '0',
5138   'is_dst' => '0',
5139 ))
5140 ->values(array(
5141   'timezone' => '110',
5142   'name' => 'America/Menominee',
5143   'offset' => '-06:00:00',
5144   'offset_dst' => '-05:00:00',
5145   'dst_region' => '15',
5146   'is_dst' => '0',
5147 ))
5148 ->values(array(
5149   'timezone' => '111',
5150   'name' => 'America/Merida',
5151   'offset' => '-06:00:00',
5152   'offset_dst' => '-05:00:00',
5153   'dst_region' => '15',
5154   'is_dst' => '0',
5155 ))
5156 ->values(array(
5157   'timezone' => '112',
5158   'name' => 'America/Mexico City',
5159   'offset' => '-06:00:00',
5160   'offset_dst' => '-05:00:00',
5161   'dst_region' => '15',
5162   'is_dst' => '0',
5163 ))
5164 ->values(array(
5165   'timezone' => '113',
5166   'name' => 'America/Miquelon',
5167   'offset' => '-03:00:00',
5168   'offset_dst' => '-02:00:00',
5169   'dst_region' => '15',
5170   'is_dst' => '0',
5171 ))
5172 ->values(array(
5173   'timezone' => '114',
5174   'name' => 'America/Monterrey',
5175   'offset' => '-06:00:00',
5176   'offset_dst' => '-05:00:00',
5177   'dst_region' => '15',
5178   'is_dst' => '0',
5179 ))
5180 ->values(array(
5181   'timezone' => '115',
5182   'name' => 'America/Montevideo',
5183   'offset' => '-03:00:00',
5184   'offset_dst' => '-03:00:00',
5185   'dst_region' => '0',
5186   'is_dst' => '0',
5187 ))
5188 ->values(array(
5189   'timezone' => '116',
5190   'name' => 'America/Montreal',
5191   'offset' => '-05:00:00',
5192   'offset_dst' => '-04:00:00',
5193   'dst_region' => '15',
5194   'is_dst' => '0',
5195 ))
5196 ->values(array(
5197   'timezone' => '117',
5198   'name' => 'America/Montserrat',
5199   'offset' => '-04:00:00',
5200   'offset_dst' => '-04:00:00',
5201   'dst_region' => '0',
5202   'is_dst' => '0',
5203 ))
5204 ->values(array(
5205   'timezone' => '118',
5206   'name' => 'America/Nassau',
5207   'offset' => '-05:00:00',
5208   'offset_dst' => '-04:00:00',
5209   'dst_region' => '15',
5210   'is_dst' => '0',
5211 ))
5212 ->values(array(
5213   'timezone' => '119',
5214   'name' => 'America/New York',
5215   'offset' => '-05:00:00',
5216   'offset_dst' => '-04:00:00',
5217   'dst_region' => '15',
5218   'is_dst' => '0',
5219 ))
5220 ->values(array(
5221   'timezone' => '120',
5222   'name' => 'America/Nipigon',
5223   'offset' => '-05:00:00',
5224   'offset_dst' => '-04:00:00',
5225   'dst_region' => '15',
5226   'is_dst' => '0',
5227 ))
5228 ->values(array(
5229   'timezone' => '121',
5230   'name' => 'America/Nome',
5231   'offset' => '-09:00:00',
5232   'offset_dst' => '-08:00:00',
5233   'dst_region' => '15',
5234   'is_dst' => '0',
5235 ))
5236 ->values(array(
5237   'timezone' => '122',
5238   'name' => 'America/Noronha',
5239   'offset' => '-02:00:00',
5240   'offset_dst' => '-02:00:00',
5241   'dst_region' => '0',
5242   'is_dst' => '0',
5243 ))
5244 ->values(array(
5245   'timezone' => '123',
5246   'name' => 'America/Panama',
5247   'offset' => '-05:00:00',
5248   'offset_dst' => '-05:00:00',
5249   'dst_region' => '0',
5250   'is_dst' => '0',
5251 ))
5252 ->values(array(
5253   'timezone' => '124',
5254   'name' => 'America/Pangnirtung',
5255   'offset' => '-05:00:00',
5256   'offset_dst' => '-04:00:00',
5257   'dst_region' => '15',
5258   'is_dst' => '0',
5259 ))
5260 ->values(array(
5261   'timezone' => '125',
5262   'name' => 'America/Paramaribo',
5263   'offset' => '-03:00:00',
5264   'offset_dst' => '-03:00:00',
5265   'dst_region' => '0',
5266   'is_dst' => '0',
5267 ))
5268 ->values(array(
5269   'timezone' => '126',
5270   'name' => 'America/Phoenix',
5271   'offset' => '-07:00:00',
5272   'offset_dst' => '-07:00:00',
5273   'dst_region' => '0',
5274   'is_dst' => '0',
5275 ))
5276 ->values(array(
5277   'timezone' => '127',
5278   'name' => 'America/Port-au-Prince',
5279   'offset' => '-05:00:00',
5280   'offset_dst' => '-05:00:00',
5281   'dst_region' => '0',
5282   'is_dst' => '0',
5283 ))
5284 ->values(array(
5285   'timezone' => '128',
5286   'name' => 'America/Port of Spain',
5287   'offset' => '-04:00:00',
5288   'offset_dst' => '-04:00:00',
5289   'dst_region' => '0',
5290   'is_dst' => '0',
5291 ))
5292 ->values(array(
5293   'timezone' => '129',
5294   'name' => 'America/Porto Acre',
5295   'offset' => '-05:00:00',
5296   'offset_dst' => '-05:00:00',
5297   'dst_region' => '0',
5298   'is_dst' => '0',
5299 ))
5300 ->values(array(
5301   'timezone' => '130',
5302   'name' => 'America/Porto Velho',
5303   'offset' => '-04:00:00',
5304   'offset_dst' => '-04:00:00',
5305   'dst_region' => '0',
5306   'is_dst' => '0',
5307 ))
5308 ->values(array(
5309   'timezone' => '131',
5310   'name' => 'America/Puerto Rico',
5311   'offset' => '-04:00:00',
5312   'offset_dst' => '-04:00:00',
5313   'dst_region' => '0',
5314   'is_dst' => '0',
5315 ))
5316 ->values(array(
5317   'timezone' => '132',
5318   'name' => 'America/Rainy River',
5319   'offset' => '-06:00:00',
5320   'offset_dst' => '-05:00:00',
5321   'dst_region' => '15',
5322   'is_dst' => '0',
5323 ))
5324 ->values(array(
5325   'timezone' => '133',
5326   'name' => 'America/Rankin Inlet',
5327   'offset' => '-06:00:00',
5328   'offset_dst' => '-05:00:00',
5329   'dst_region' => '15',
5330   'is_dst' => '0',
5331 ))
5332 ->values(array(
5333   'timezone' => '134',
5334   'name' => 'America/Recife',
5335   'offset' => '-03:00:00',
5336   'offset_dst' => '-03:00:00',
5337   'dst_region' => '0',
5338   'is_dst' => '0',
5339 ))
5340 ->values(array(
5341   'timezone' => '135',
5342   'name' => 'America/Regina',
5343   'offset' => '-06:00:00',
5344   'offset_dst' => '-06:00:00',
5345   'dst_region' => '0',
5346   'is_dst' => '0',
5347 ))
5348 ->values(array(
5349   'timezone' => '136',
5350   'name' => 'America/Rio Branco',
5351   'offset' => '-05:00:00',
5352   'offset_dst' => '-05:00:00',
5353   'dst_region' => '0',
5354   'is_dst' => '0',
5355 ))
5356 ->values(array(
5357   'timezone' => '137',
5358   'name' => 'America/Rosario',
5359   'offset' => '-03:00:00',
5360   'offset_dst' => '-03:00:00',
5361   'dst_region' => '0',
5362   'is_dst' => '0',
5363 ))
5364 ->values(array(
5365   'timezone' => '138',
5366   'name' => 'America/Santiago',
5367   'offset' => '-03:00:00',
5368   'offset_dst' => '-04:00:00',
5369   'dst_region' => '15',
5370   'is_dst' => '0',
5371 ))
5372 ->values(array(
5373   'timezone' => '139',
5374   'name' => 'America/Santo Domingo',
5375   'offset' => '-04:00:00',
5376   'offset_dst' => '-04:00:00',
5377   'dst_region' => '0',
5378   'is_dst' => '0',
5379 ))
5380 ->values(array(
5381   'timezone' => '140',
5382   'name' => 'America/Sao Paulo',
5383   'offset' => '-02:00:00',
5384   'offset_dst' => '-03:00:00',
5385   'dst_region' => '15',
5386   'is_dst' => '0',
5387 ))
5388 ->values(array(
5389   'timezone' => '141',
5390   'name' => 'America/Scoresbysund',
5391   'offset' => '-01:00:00',
5392   'offset_dst' => '00:00:00',
5393   'dst_region' => '15',
5394   'is_dst' => '0',
5395 ))
5396 ->values(array(
5397   'timezone' => '142',
5398   'name' => 'America/Shiprock',
5399   'offset' => '-07:00:00',
5400   'offset_dst' => '-06:00:00',
5401   'dst_region' => '15',
5402   'is_dst' => '0',
5403 ))
5404 ->values(array(
5405   'timezone' => '143',
5406   'name' => 'America/St Johns',
5407   'offset' => '-03:30:00',
5408   'offset_dst' => '-02:30:00',
5409   'dst_region' => '15',
5410   'is_dst' => '0',
5411 ))
5412 ->values(array(
5413   'timezone' => '144',
5414   'name' => 'America/St Kitts',
5415   'offset' => '-04:00:00',
5416   'offset_dst' => '-04:00:00',
5417   'dst_region' => '0',
5418   'is_dst' => '0',
5419 ))
5420 ->values(array(
5421   'timezone' => '145',
5422   'name' => 'America/St Lucia',
5423   'offset' => '-04:00:00',
5424   'offset_dst' => '-04:00:00',
5425   'dst_region' => '0',
5426   'is_dst' => '0',
5427 ))
5428 ->values(array(
5429   'timezone' => '146',
5430   'name' => 'America/St Thomas',
5431   'offset' => '-04:00:00',
5432   'offset_dst' => '-04:00:00',
5433   'dst_region' => '0',
5434   'is_dst' => '0',
5435 ))
5436 ->values(array(
5437   'timezone' => '147',
5438   'name' => 'America/St Vincent',
5439   'offset' => '-04:00:00',
5440   'offset_dst' => '-04:00:00',
5441   'dst_region' => '0',
5442   'is_dst' => '0',
5443 ))
5444 ->values(array(
5445   'timezone' => '148',
5446   'name' => 'America/Swift Current',
5447   'offset' => '-06:00:00',
5448   'offset_dst' => '-06:00:00',
5449   'dst_region' => '0',
5450   'is_dst' => '0',
5451 ))
5452 ->values(array(
5453   'timezone' => '149',
5454   'name' => 'America/Tegucigalpa',
5455   'offset' => '-06:00:00',
5456   'offset_dst' => '-06:00:00',
5457   'dst_region' => '0',
5458   'is_dst' => '0',
5459 ))
5460 ->values(array(
5461   'timezone' => '150',
5462   'name' => 'America/Thule',
5463   'offset' => '-04:00:00',
5464   'offset_dst' => '-03:00:00',
5465   'dst_region' => '15',
5466   'is_dst' => '0',
5467 ))
5468 ->values(array(
5469   'timezone' => '151',
5470   'name' => 'America/Thunder Bay',
5471   'offset' => '-05:00:00',
5472   'offset_dst' => '-04:00:00',
5473   'dst_region' => '15',
5474   'is_dst' => '0',
5475 ))
5476 ->values(array(
5477   'timezone' => '152',
5478   'name' => 'America/Tijuana',
5479   'offset' => '-08:00:00',
5480   'offset_dst' => '-07:00:00',
5481   'dst_region' => '15',
5482   'is_dst' => '0',
5483 ))
5484 ->values(array(
5485   'timezone' => '153',
5486   'name' => 'America/Tortola',
5487   'offset' => '-04:00:00',
5488   'offset_dst' => '-04:00:00',
5489   'dst_region' => '0',
5490   'is_dst' => '0',
5491 ))
5492 ->values(array(
5493   'timezone' => '154',
5494   'name' => 'America/Vancouver',
5495   'offset' => '-08:00:00',
5496   'offset_dst' => '-07:00:00',
5497   'dst_region' => '15',
5498   'is_dst' => '0',
5499 ))
5500 ->values(array(
5501   'timezone' => '155',
5502   'name' => 'America/Virgin',
5503   'offset' => '-04:00:00',
5504   'offset_dst' => '-04:00:00',
5505   'dst_region' => '0',
5506   'is_dst' => '0',
5507 ))
5508 ->values(array(
5509   'timezone' => '156',
5510   'name' => 'America/Whitehorse',
5511   'offset' => '-08:00:00',
5512   'offset_dst' => '-07:00:00',
5513   'dst_region' => '15',
5514   'is_dst' => '0',
5515 ))
5516 ->values(array(
5517   'timezone' => '157',
5518   'name' => 'America/Winnipeg',
5519   'offset' => '-06:00:00',
5520   'offset_dst' => '-05:00:00',
5521   'dst_region' => '15',
5522   'is_dst' => '0',
5523 ))
5524 ->values(array(
5525   'timezone' => '158',
5526   'name' => 'America/Yakutat',
5527   'offset' => '-09:00:00',
5528   'offset_dst' => '-08:00:00',
5529   'dst_region' => '15',
5530   'is_dst' => '0',
5531 ))
5532 ->values(array(
5533   'timezone' => '159',
5534   'name' => 'America/Yellowknife',
5535   'offset' => '-07:00:00',
5536   'offset_dst' => '-06:00:00',
5537   'dst_region' => '15',
5538   'is_dst' => '0',
5539 ))
5540 ->values(array(
5541   'timezone' => '160',
5542   'name' => 'Antarctica/Casey',
5543   'offset' => '08:00:00',
5544   'offset_dst' => '08:00:00',
5545   'dst_region' => '0',
5546   'is_dst' => '0',
5547 ))
5548 ->values(array(
5549   'timezone' => '161',
5550   'name' => 'Antarctica/Davis',
5551   'offset' => '07:00:00',
5552   'offset_dst' => '07:00:00',
5553   'dst_region' => '0',
5554   'is_dst' => '0',
5555 ))
5556 ->values(array(
5557   'timezone' => '162',
5558   'name' => 'Antarctica/DumontDUrville',
5559   'offset' => '10:00:00',
5560   'offset_dst' => '10:00:00',
5561   'dst_region' => '0',
5562   'is_dst' => '0',
5563 ))
5564 ->values(array(
5565   'timezone' => '163',
5566   'name' => 'Antarctica/Mawson',
5567   'offset' => '06:00:00',
5568   'offset_dst' => '06:00:00',
5569   'dst_region' => '0',
5570   'is_dst' => '0',
5571 ))
5572 ->values(array(
5573   'timezone' => '164',
5574   'name' => 'Antarctica/McMurdo',
5575   'offset' => '13:00:00',
5576   'offset_dst' => '12:00:00',
5577   'dst_region' => '11',
5578   'is_dst' => '0',
5579 ))
5580 ->values(array(
5581   'timezone' => '165',
5582   'name' => 'Antarctica/Palmer',
5583   'offset' => '-03:00:00',
5584   'offset_dst' => '-04:00:00',
5585   'dst_region' => '18',
5586   'is_dst' => '0',
5587 ))
5588 ->values(array(
5589   'timezone' => '166',
5590   'name' => 'Antarctica/South Pole',
5591   'offset' => '13:00:00',
5592   'offset_dst' => '12:00:00',
5593   'dst_region' => '11',
5594   'is_dst' => '0',
5595 ))
5596 ->values(array(
5597   'timezone' => '167',
5598   'name' => 'Antarctica/Syowa',
5599   'offset' => '03:00:00',
5600   'offset_dst' => '03:00:00',
5601   'dst_region' => '0',
5602   'is_dst' => '0',
5603 ))
5604 ->values(array(
5605   'timezone' => '168',
5606   'name' => 'Antarctica/Vostok',
5607   'offset' => '06:00:00',
5608   'offset_dst' => '06:00:00',
5609   'dst_region' => '0',
5610   'is_dst' => '0',
5611 ))
5612 ->values(array(
5613   'timezone' => '169',
5614   'name' => 'Arctic/Longyearbyen',
5615   'offset' => '01:00:00',
5616   'offset_dst' => '02:00:00',
5617   'dst_region' => '14',
5618   'is_dst' => '0',
5619 ))
5620 ->values(array(
5621   'timezone' => '170',
5622   'name' => 'Asia/Aden',
5623   'offset' => '03:00:00',
5624   'offset_dst' => '03:00:00',
5625   'dst_region' => '0',
5626   'is_dst' => '0',
5627 ))
5628 ->values(array(
5629   'timezone' => '171',
5630   'name' => 'Asia/Almaty',
5631   'offset' => '06:00:00',
5632   'offset_dst' => '06:00:00',
5633   'dst_region' => '0',
5634   'is_dst' => '0',
5635 ))
5636 ->values(array(
5637   'timezone' => '172',
5638   'name' => 'Asia/Amman',
5639   'offset' => '02:00:00',
5640   'offset_dst' => '03:00:00',
5641   'dst_region' => '8',
5642   'is_dst' => '0',
5643 ))
5644 ->values(array(
5645   'timezone' => '173',
5646   'name' => 'Asia/Anadyr',
5647   'offset' => '12:00:00',
5648   'offset_dst' => '13:00:00',
5649   'dst_region' => '3',
5650   'is_dst' => '0',
5651 ))
5652 ->values(array(
5653   'timezone' => '174',
5654   'name' => 'Asia/Aqtau',
5655   'offset' => '04:00:00',
5656   'offset_dst' => '05:00:00',
5657   'dst_region' => '3',
5658   'is_dst' => '0',
5659 ))
5660 ->values(array(
5661   'timezone' => '175',
5662   'name' => 'Asia/Aqtobe',
5663   'offset' => '05:00:00',
5664   'offset_dst' => '06:00:00',
5665   'dst_region' => '3',
5666   'is_dst' => '0',
5667 ))
5668 ->values(array(
5669   'timezone' => '176',
5670   'name' => 'Asia/Ashgabat',
5671   'offset' => '05:00:00',
5672   'offset_dst' => '05:00:00',
5673   'dst_region' => '0',
5674   'is_dst' => '0',
5675 ))
5676 ->values(array(
5677   'timezone' => '177',
5678   'name' => 'Asia/Ashkhabad',
5679   'offset' => '05:00:00',
5680   'offset_dst' => '05:00:00',
5681   'dst_region' => '0',
5682   'is_dst' => '0',
5683 ))
5684 ->values(array(
5685   'timezone' => '178',
5686   'name' => 'Asia/Baghdad',
5687   'offset' => '03:00:00',
5688   'offset_dst' => '04:00:00',
5689   'dst_region' => '4',
5690   'is_dst' => '0',
5691 ))
5692 ->values(array(
5693   'timezone' => '179',
5694   'name' => 'Asia/Bahrain',
5695   'offset' => '03:00:00',
5696   'offset_dst' => '03:00:00',
5697   'dst_region' => '0',
5698   'is_dst' => '0',
5699 ))
5700 ->values(array(
5701   'timezone' => '180',
5702   'name' => 'Asia/Baku',
5703   'offset' => '04:00:00',
5704   'offset_dst' => '05:00:00',
5705   'dst_region' => '3',
5706   'is_dst' => '0',
5707 ))
5708 ->values(array(
5709   'timezone' => '181',
5710   'name' => 'Asia/Bangkok',
5711   'offset' => '07:00:00',
5712   'offset_dst' => '07:00:00',
5713   'dst_region' => '0',
5714   'is_dst' => '0',
5715 ))
5716 ->values(array(
5717   'timezone' => '182',
5718   'name' => 'Asia/Beirut',
5719   'offset' => '02:00:00',
5720   'offset_dst' => '03:00:00',
5721   'dst_region' => '6',
5722   'is_dst' => '0',
5723 ))
5724 ->values(array(
5725   'timezone' => '183',
5726   'name' => 'Asia/Bishkek',
5727   'offset' => '05:00:00',
5728   'offset_dst' => '06:00:00',
5729   'dst_region' => '6',
5730   'is_dst' => '0',
5731 ))
5732 ->values(array(
5733   'timezone' => '184',
5734   'name' => 'Asia/Brunei',
5735   'offset' => '08:00:00',
5736   'offset_dst' => '08:00:00',
5737   'dst_region' => '0',
5738   'is_dst' => '0',
5739 ))
5740 ->values(array(
5741   'timezone' => '185',
5742   'name' => 'Asia/Calcutta',
5743   'offset' => '05:30:00',
5744   'offset_dst' => '05:30:30',
5745   'dst_region' => '0',
5746   'is_dst' => '0',
5747 ))
5748 ->values(array(
5749   'timezone' => '186',
5750   'name' => 'Asia/Chungking',
5751   'offset' => '08:00:00',
5752   'offset_dst' => '08:00:00',
5753   'dst_region' => '0',
5754   'is_dst' => '0',
5755 ))
5756 ->values(array(
5757   'timezone' => '187',
5758   'name' => 'Asia/Colombo',
5759   'offset' => '06:00:00',
5760   'offset_dst' => '06:00:00',
5761   'dst_region' => '0',
5762   'is_dst' => '0',
5763 ))
5764 ->values(array(
5765   'timezone' => '188',
5766   'name' => 'Asia/Dacca',
5767   'offset' => '06:00:00',
5768   'offset_dst' => '06:00:00',
5769   'dst_region' => '0',
5770   'is_dst' => '0',
5771 ))
5772 ->values(array(
5773   'timezone' => '189',
5774   'name' => 'Asia/Damascus',
5775   'offset' => '02:00:00',
5776   'offset_dst' => '03:00:00',
5777   'dst_region' => '4',
5778   'is_dst' => '0',
5779 ))
5780 ->values(array(
5781   'timezone' => '190',
5782   'name' => 'Asia/Dhaka',
5783   'offset' => '06:00:00',
5784   'offset_dst' => '06:00:00',
5785   'dst_region' => '0',
5786   'is_dst' => '0',
5787 ))
5788 ->values(array(
5789   'timezone' => '191',
5790   'name' => 'Asia/Dili',
5791   'offset' => '09:00:00',
5792   'offset_dst' => '09:00:00',
5793   'dst_region' => '0',
5794   'is_dst' => '0',
5795 ))
5796 ->values(array(
5797   'timezone' => '192',
5798   'name' => 'Asia/Dubai',
5799   'offset' => '04:00:00',
5800   'offset_dst' => '04:00:00',
5801   'dst_region' => '0',
5802   'is_dst' => '0',
5803 ))
5804 ->values(array(
5805   'timezone' => '193',
5806   'name' => 'Asia/Dushanbe',
5807   'offset' => '05:00:00',
5808   'offset_dst' => '05:00:00',
5809   'dst_region' => '0',
5810   'is_dst' => '0',
5811 ))
5812 ->values(array(
5813   'timezone' => '194',
5814   'name' => 'Asia/Gaza',
5815   'offset' => '02:00:00',
5816   'offset_dst' => '03:00:00',
5817   'dst_region' => '7',
5818   'is_dst' => '0',
5819 ))
5820 ->values(array(
5821   'timezone' => '195',
5822   'name' => 'Asia/Harbin',
5823   'offset' => '08:00:00',
5824   'offset_dst' => '08:00:00',
5825   'dst_region' => '0',
5826   'is_dst' => '0',
5827 ))
5828 ->values(array(
5829   'timezone' => '196',
5830   'name' => 'Asia/Hong Kong',
5831   'offset' => '08:00:00',
5832   'offset_dst' => '08:00:00',
5833   'dst_region' => '0',
5834   'is_dst' => '0',
5835 ))
5836 ->values(array(
5837   'timezone' => '197',
5838   'name' => 'Asia/Hovd',
5839   'offset' => '07:00:00',
5840   'offset_dst' => '07:00:00',
5841   'dst_region' => '0',
5842   'is_dst' => '0',
5843 ))
5844 ->values(array(
5845   'timezone' => '198',
5846   'name' => 'Asia/Irkutsk',
5847   'offset' => '08:00:00',
5848   'offset_dst' => '09:00:00',
5849   'dst_region' => '3',
5850   'is_dst' => '0',
5851 ))
5852 ->values(array(
5853   'timezone' => '199',
5854   'name' => 'Asia/Istanbul',
5855   'offset' => '02:00:00',
5856   'offset_dst' => '03:00:00',
5857   'dst_region' => '3',
5858   'is_dst' => '0',
5859 ))
5860 ->values(array(
5861   'timezone' => '200',
5862   'name' => 'Asia/Jakarta',
5863   'offset' => '07:00:00',
5864   'offset_dst' => '07:00:00',
5865   'dst_region' => '0',
5866   'is_dst' => '0',
5867 ))
5868 ->values(array(
5869   'timezone' => '201',
5870   'name' => 'Asia/Jayapura',
5871   'offset' => '09:00:00',
5872   'offset_dst' => '09:00:00',
5873   'dst_region' => '0',
5874   'is_dst' => '0',
5875 ))
5876 ->values(array(
5877   'timezone' => '202',
5878   'name' => 'Asia/Jerusalem',
5879   'offset' => '02:00:00',
5880   'offset_dst' => '03:00:00',
5881   'dst_region' => '5',
5882   'is_dst' => '0',
5883 ))
5884 ->values(array(
5885   'timezone' => '203',
5886   'name' => 'Asia/Kabul',
5887   'offset' => '04:30:00',
5888   'offset_dst' => '04:30:00',
5889   'dst_region' => '0',
5890   'is_dst' => '0',
5891 ))
5892 ->values(array(
5893   'timezone' => '204',
5894   'name' => 'Asia/Kamchatka',
5895   'offset' => '12:00:00',
5896   'offset_dst' => '13:00:00',
5897   'dst_region' => '3',
5898   'is_dst' => '0',
5899 ))
5900 ->values(array(
5901   'timezone' => '205',
5902   'name' => 'Asia/Karachi',
5903   'offset' => '05:00:00',
5904   'offset_dst' => '05:00:00',
5905   'dst_region' => '0',
5906   'is_dst' => '0',
5907 ))
5908 ->values(array(
5909   'timezone' => '206',
5910   'name' => 'Asia/Kashgar',
5911   'offset' => '08:00:00',
5912   'offset_dst' => '08:00:00',
5913   'dst_region' => '0',
5914   'is_dst' => '0',
5915 ))
5916 ->values(array(
5917   'timezone' => '207',
5918   'name' => 'Asia/Katmandu',
5919   'offset' => '05:45:00',
5920   'offset_dst' => '05:45:00',
5921   'dst_region' => '0',
5922   'is_dst' => '0',
5923 ))
5924 ->values(array(
5925   'timezone' => '208',
5926   'name' => 'Asia/Krasnoyarsk',
5927   'offset' => '07:00:00',
5928   'offset_dst' => '08:00:00',
5929   'dst_region' => '3',
5930   'is_dst' => '0',
5931 ))
5932 ->values(array(
5933   'timezone' => '209',
5934   'name' => 'Asia/Kuala Lumpur',
5935   'offset' => '08:00:00',
5936   'offset_dst' => '08:00:00',
5937   'dst_region' => '0',
5938   'is_dst' => '0',
5939 ))
5940 ->values(array(
5941   'timezone' => '210',
5942   'name' => 'Asia/Kuching',
5943   'offset' => '08:00:00',
5944   'offset_dst' => '08:00:00',
5945   'dst_region' => '0',
5946   'is_dst' => '0',
5947 ))
5948 ->values(array(
5949   'timezone' => '211',
5950   'name' => 'Asia/Kuwait',
5951   'offset' => '03:00:00',
5952   'offset_dst' => '03:00:00',
5953   'dst_region' => '0',
5954   'is_dst' => '0',
5955 ))
5956 ->values(array(
5957   'timezone' => '212',
5958   'name' => 'Asia/Macao',
5959   'offset' => '08:00:00',
5960   'offset_dst' => '08:00:00',
5961   'dst_region' => '0',
5962   'is_dst' => '0',
5963 ))
5964 ->values(array(
5965   'timezone' => '213',
5966   'name' => 'Asia/Magadan',
5967   'offset' => '11:00:00',
5968   'offset_dst' => '12:00:00',
5969   'dst_region' => '3',
5970   'is_dst' => '0',
5971 ))
5972 ->values(array(
5973   'timezone' => '214',
5974   'name' => 'Asia/Manila',
5975   'offset' => '08:00:00',
5976   'offset_dst' => '08:00:00',
5977   'dst_region' => '0',
5978   'is_dst' => '0',
5979 ))
5980 ->values(array(
5981   'timezone' => '215',
5982   'name' => 'Asia/Muscat',
5983   'offset' => '04:00:00',
5984   'offset_dst' => '04:00:00',
5985   'dst_region' => '0',
5986   'is_dst' => '0',
5987 ))
5988 ->values(array(
5989   'timezone' => '216',
5990   'name' => 'Asia/Nicosia',
5991   'offset' => '02:00:00',
5992   'offset_dst' => '03:00:00',
5993   'dst_region' => '3',
5994   'is_dst' => '0',
5995 ))
5996 ->values(array(
5997   'timezone' => '217',
5998   'name' => 'Asia/Novosibirsk',
5999   'offset' => '06:00:00',
6000   'offset_dst' => '07:00:00',
6001   'dst_region' => '3',
6002   'is_dst' => '0',
6003 ))
6004 ->values(array(
6005   'timezone' => '218',
6006   'name' => 'Asia/Omsk',
6007   'offset' => '06:00:00',
6008   'offset_dst' => '07:00:00',
6009   'dst_region' => '3',
6010   'is_dst' => '0',
6011 ))
6012 ->values(array(
6013   'timezone' => '219',
6014   'name' => 'Asia/Phnom Penh',
6015   'offset' => '07:00:00',
6016   'offset_dst' => '07:00:00',
6017   'dst_region' => '0',
6018   'is_dst' => '0',
6019 ))
6020 ->values(array(
6021   'timezone' => '220',
6022   'name' => 'Asia/Pyongyang',
6023   'offset' => '09:00:00',
6024   'offset_dst' => '09:00:00',
6025   'dst_region' => '0',
6026   'is_dst' => '0',
6027 ))
6028 ->values(array(
6029   'timezone' => '221',
6030   'name' => 'Asia/Qatar',
6031   'offset' => '03:00:00',
6032   'offset_dst' => '03:00:00',
6033   'dst_region' => '0',
6034   'is_dst' => '0',
6035 ))
6036 ->values(array(
6037   'timezone' => '222',
6038   'name' => 'Asia/Rangoon',
6039   'offset' => '06:30:00',
6040   'offset_dst' => '06:30:00',
6041   'dst_region' => '0',
6042   'is_dst' => '0',
6043 ))
6044 ->values(array(
6045   'timezone' => '223',
6046   'name' => 'Asia/Riyadh',
6047   'offset' => '03:00:00',
6048   'offset_dst' => '03:00:00',
6049   'dst_region' => '0',
6050   'is_dst' => '0',
6051 ))
6052 ->values(array(
6053   'timezone' => '224',
6054   'name' => 'Asia/Riyadh87',
6055   'offset' => '03:07:04',
6056   'offset_dst' => '03:07:04',
6057   'dst_region' => '0',
6058   'is_dst' => '0',
6059 ))
6060 ->values(array(
6061   'timezone' => '225',
6062   'name' => 'Asia/Riyadh88',
6063   'offset' => '03:07:04',
6064   'offset_dst' => '03:07:04',
6065   'dst_region' => '0',
6066   'is_dst' => '0',
6067 ))
6068 ->values(array(
6069   'timezone' => '226',
6070   'name' => 'Asia/Riyadh89',
6071   'offset' => '03:07:04',
6072   'offset_dst' => '03:07:04',
6073   'dst_region' => '0',
6074   'is_dst' => '0',
6075 ))
6076 ->values(array(
6077   'timezone' => '227',
6078   'name' => 'Asia/Saigon',
6079   'offset' => '07:00:00',
6080   'offset_dst' => '07:00:00',
6081   'dst_region' => '0',
6082   'is_dst' => '0',
6083 ))
6084 ->values(array(
6085   'timezone' => '228',
6086   'name' => 'Asia/Samarkand',
6087   'offset' => '05:00:00',
6088   'offset_dst' => '05:00:00',
6089   'dst_region' => '0',
6090   'is_dst' => '0',
6091 ))
6092 ->values(array(
6093   'timezone' => '229',
6094   'name' => 'Asia/Seoul',
6095   'offset' => '09:00:00',
6096   'offset_dst' => '09:00:00',
6097   'dst_region' => '0',
6098   'is_dst' => '0',
6099 ))
6100 ->values(array(
6101   'timezone' => '230',
6102   'name' => 'Asia/Shanghai',
6103   'offset' => '08:00:00',
6104   'offset_dst' => '08:00:00',
6105   'dst_region' => '0',
6106   'is_dst' => '0',
6107 ))
6108 ->values(array(
6109   'timezone' => '231',
6110   'name' => 'Asia/Singapore',
6111   'offset' => '08:00:00',
6112   'offset_dst' => '08:00:00',
6113   'dst_region' => '0',
6114   'is_dst' => '0',
6115 ))
6116 ->values(array(
6117   'timezone' => '232',
6118   'name' => 'Asia/Taipei',
6119   'offset' => '08:00:00',
6120   'offset_dst' => '08:00:00',
6121   'dst_region' => '0',
6122   'is_dst' => '0',
6123 ))
6124 ->values(array(
6125   'timezone' => '233',
6126   'name' => 'Asia/Tashkent',
6127   'offset' => '05:00:00',
6128   'offset_dst' => '05:00:00',
6129   'dst_region' => '0',
6130   'is_dst' => '0',
6131 ))
6132 ->values(array(
6133   'timezone' => '234',
6134   'name' => 'Asia/Tbilisi',
6135   'offset' => '04:00:00',
6136   'offset_dst' => '05:00:00',
6137   'dst_region' => '3',
6138   'is_dst' => '0',
6139 ))
6140 ->values(array(
6141   'timezone' => '235',
6142   'name' => 'Asia/Tehran',
6143   'offset' => '03:30:00',
6144   'offset_dst' => '04:30:00',
6145   'dst_region' => '8',
6146   'is_dst' => '0',
6147 ))
6148 ->values(array(
6149   'timezone' => '236',
6150   'name' => 'Asia/Tel Aviv',
6151   'offset' => '02:00:00',
6152   'offset_dst' => '03:00:00',
6153   'dst_region' => '5',
6154   'is_dst' => '0',
6155 ))
6156 ->values(array(
6157   'timezone' => '237',
6158   'name' => 'Asia/Thimbu',
6159   'offset' => '06:00:00',
6160   'offset_dst' => '06:00:00',
6161   'dst_region' => '0',
6162   'is_dst' => '0',
6163 ))
6164 ->values(array(
6165   'timezone' => '238',
6166   'name' => 'Asia/Thimphu',
6167   'offset' => '06:00:00',
6168   'offset_dst' => '06:00:00',
6169   'dst_region' => '0',
6170   'is_dst' => '0',
6171 ))
6172 ->values(array(
6173   'timezone' => '239',
6174   'name' => 'Asia/Tokyo',
6175   'offset' => '09:00:00',
6176   'offset_dst' => '09:00:00',
6177   'dst_region' => '0',
6178   'is_dst' => '0',
6179 ))
6180 ->values(array(
6181   'timezone' => '240',
6182   'name' => 'Asia/Ujung Pandang',
6183   'offset' => '08:00:00',
6184   'offset_dst' => '08:00:00',
6185   'dst_region' => '0',
6186   'is_dst' => '0',
6187 ))
6188 ->values(array(
6189   'timezone' => '241',
6190   'name' => 'Asia/Ulaanbaatar',
6191   'offset' => '08:00:00',
6192   'offset_dst' => '08:00:00',
6193   'dst_region' => '0',
6194   'is_dst' => '0',
6195 ))
6196 ->values(array(
6197   'timezone' => '242',
6198   'name' => 'Asia/Ulan Bator',
6199   'offset' => '08:00:00',
6200   'offset_dst' => '08:00:00',
6201   'dst_region' => '0',
6202   'is_dst' => '0',
6203 ))
6204 ->values(array(
6205   'timezone' => '243',
6206   'name' => 'Asia/Urumqi',
6207   'offset' => '08:00:00',
6208   'offset_dst' => '08:00:00',
6209   'dst_region' => '0',
6210   'is_dst' => '0',
6211 ))
6212 ->values(array(
6213   'timezone' => '244',
6214   'name' => 'Asia/Vientiane',
6215   'offset' => '07:00:00',
6216   'offset_dst' => '07:00:00',
6217   'dst_region' => '0',
6218   'is_dst' => '0',
6219 ))
6220 ->values(array(
6221   'timezone' => '245',
6222   'name' => 'Asia/Vladivostok',
6223   'offset' => '10:00:00',
6224   'offset_dst' => '11:00:00',
6225   'dst_region' => '3',
6226   'is_dst' => '0',
6227 ))
6228 ->values(array(
6229   'timezone' => '246',
6230   'name' => 'Asia/Yakutsk',
6231   'offset' => '09:00:00',
6232   'offset_dst' => '10:00:00',
6233   'dst_region' => '3',
6234   'is_dst' => '0',
6235 ))
6236 ->values(array(
6237   'timezone' => '247',
6238   'name' => 'Asia/Yekaterinburg',
6239   'offset' => '05:00:00',
6240   'offset_dst' => '06:00:00',
6241   'dst_region' => '3',
6242   'is_dst' => '0',
6243 ))
6244 ->values(array(
6245   'timezone' => '248',
6246   'name' => 'Asia/Yerevan',
6247   'offset' => '04:00:00',
6248   'offset_dst' => '05:00:00',
6249   'dst_region' => '3',
6250   'is_dst' => '0',
6251 ))
6252 ->values(array(
6253   'timezone' => '249',
6254   'name' => 'Atlantic/Azores',
6255   'offset' => '-01:00:00',
6256   'offset_dst' => '00:00:00',
6257   'dst_region' => '13',
6258   'is_dst' => '0',
6259 ))
6260 ->values(array(
6261   'timezone' => '250',
6262   'name' => 'Atlantic/Bermuda',
6263   'offset' => '-04:00:00',
6264   'offset_dst' => '-03:00:00',
6265   'dst_region' => '15',
6266   'is_dst' => '0',
6267 ))
6268 ->values(array(
6269   'timezone' => '251',
6270   'name' => 'Atlantic/Canary',
6271   'offset' => '00:00:00',
6272   'offset_dst' => '01:00:00',
6273   'dst_region' => '15',
6274   'is_dst' => '0',
6275 ))
6276 ->values(array(
6277   'timezone' => '252',
6278   'name' => 'Atlantic/Cape Verde',
6279   'offset' => '-01:00:00',
6280   'offset_dst' => '-01:00:00',
6281   'dst_region' => '0',
6282   'is_dst' => '0',
6283 ))
6284 ->values(array(
6285   'timezone' => '253',
6286   'name' => 'Atlantic/Faeroe',
6287   'offset' => '00:00:00',
6288   'offset_dst' => '01:00:00',
6289   'dst_region' => '13',
6290   'is_dst' => '0',
6291 ))
6292 ->values(array(
6293   'timezone' => '254',
6294   'name' => 'Atlantic/Jan Mayen',
6295   'offset' => '-01:00:00',
6296   'offset_dst' => '-01:00:00',
6297   'dst_region' => '0',
6298   'is_dst' => '0',
6299 ))
6300 ->values(array(
6301   'timezone' => '255',
6302   'name' => 'Atlantic/Madeira',
6303   'offset' => '00:00:00',
6304   'offset_dst' => '01:00:00',
6305   'dst_region' => '13',
6306   'is_dst' => '0',
6307 ))
6308 ->values(array(
6309   'timezone' => '256',
6310   'name' => 'Atlantic/South Georgia',
6311   'offset' => '-02:00:00',
6312   'offset_dst' => '-02:00:00',
6313   'dst_region' => '0',
6314   'is_dst' => '0',
6315 ))
6316 ->values(array(
6317   'timezone' => '257',
6318   'name' => 'Atlantic/Stanley',
6319   'offset' => '-03:00:00',
6320   'offset_dst' => '-04:00:00',
6321   'dst_region' => '19',
6322   'is_dst' => '0',
6323 ))
6324 ->values(array(
6325   'timezone' => '258',
6326   'name' => 'Australia/ACT',
6327   'offset' => '10:00:00',
6328   'offset_dst' => '11:00:00',
6329   'dst_region' => '9',
6330   'is_dst' => '0',
6331 ))
6332 ->values(array(
6333   'timezone' => '259',
6334   'name' => 'Australia/Adelaide',
6335   'offset' => '10:30:00',
6336   'offset_dst' => '09:30:00',
6337   'dst_region' => '9',
6338   'is_dst' => '0',
6339 ))
6340 ->values(array(
6341   'timezone' => '260',
6342   'name' => 'Australia/Brisbane',
6343   'offset' => '10:00:00',
6344   'offset_dst' => '10:00:00',
6345   'dst_region' => '0',
6346   'is_dst' => '0',
6347 ))
6348 ->values(array(
6349   'timezone' => '261',
6350   'name' => 'Australia/Broken Hill',
6351   'offset' => '10:30:00',
6352   'offset_dst' => '09:30:00',
6353   'dst_region' => '9',
6354   'is_dst' => '0',
6355 ))
6356 ->values(array(
6357   'timezone' => '262',
6358   'name' => 'Australia/Canberra',
6359   'offset' => '11:00:00',
6360   'offset_dst' => '10:00:00',
6361   'dst_region' => '9',
6362   'is_dst' => '0',
6363 ))
6364 ->values(array(
6365   'timezone' => '263',
6366   'name' => 'Australia/Darwin',
6367   'offset' => '09:30:00',
6368   'offset_dst' => '09:30:00',
6369   'dst_region' => '0',
6370   'is_dst' => '0',
6371 ))
6372 ->values(array(
6373   'timezone' => '264',
6374   'name' => 'Australia/Hobart',
6375   'offset' => '11:00:00',
6376   'offset_dst' => '10:00:00',
6377   'dst_region' => '10',
6378   'is_dst' => '0',
6379 ))
6380 ->values(array(
6381   'timezone' => '265',
6382   'name' => 'Australia/LHI',
6383   'offset' => '11:00:00',
6384   'offset_dst' => '10:30:00',
6385   'dst_region' => '9',
6386   'is_dst' => '0',
6387 ))
6388 ->values(array(
6389   'timezone' => '266',
6390   'name' => 'Australia/Lindeman',
6391   'offset' => '10:00:00',
6392   'offset_dst' => '10:00:00',
6393   'dst_region' => '0',
6394   'is_dst' => '0',
6395 ))
6396 ->values(array(
6397   'timezone' => '267',
6398   'name' => 'Australia/Lord Howe',
6399   'offset' => '11:00:00',
6400   'offset_dst' => '10:30:00',
6401   'dst_region' => '9',
6402   'is_dst' => '0',
6403 ))
6404 ->values(array(
6405   'timezone' => '268',
6406   'name' => 'Australia/Melbourne',
6407   'offset' => '10:00:00',
6408   'offset_dst' => '11:00:00',
6409   'dst_region' => '10',
6410   'is_dst' => '0',
6411 ))
6412 ->values(array(
6413   'timezone' => '269',
6414   'name' => 'Australia/NSW',
6415   'offset' => '10:00:00',
6416   'offset_dst' => '11:00:00',
6417   'dst_region' => '9',
6418   'is_dst' => '0',
6419 ))
6420 ->values(array(
6421   'timezone' => '270',
6422   'name' => 'Australia/North',
6423   'offset' => '09:30:00',
6424   'offset_dst' => '09:30:00',
6425   'dst_region' => '0',
6426   'is_dst' => '0',
6427 ))
6428 ->values(array(
6429   'timezone' => '271',
6430   'name' => 'Australia/Perth',
6431   'offset' => '08:00:00',
6432   'offset_dst' => '08:00:00',
6433   'dst_region' => '0',
6434   'is_dst' => '0',
6435 ))
6436 ->values(array(
6437   'timezone' => '272',
6438   'name' => 'Australia/Queensland',
6439   'offset' => '10:00:00',
6440   'offset_dst' => '10:00:00',
6441   'dst_region' => '0',
6442   'is_dst' => '0',
6443 ))
6444 ->values(array(
6445   'timezone' => '273',
6446   'name' => 'Australia/South',
6447   'offset' => '10:30:00',
6448   'offset_dst' => '09:30:00',
6449   'dst_region' => '9',
6450   'is_dst' => '0',
6451 ))
6452 ->values(array(
6453   'timezone' => '274',
6454   'name' => 'Australia/Sydney',
6455   'offset' => '10:00:00',
6456   'offset_dst' => '11:00:00',
6457   'dst_region' => '10',
6458   'is_dst' => '0',
6459 ))
6460 ->values(array(
6461   'timezone' => '275',
6462   'name' => 'Australia/Tasmania',
6463   'offset' => '10:00:00',
6464   'offset_dst' => '11:00:00',
6465   'dst_region' => '9',
6466   'is_dst' => '0',
6467 ))
6468 ->values(array(
6469   'timezone' => '276',
6470   'name' => 'Australia/Victoria',
6471   'offset' => '10:00:00',
6472   'offset_dst' => '11:00:00',
6473   'dst_region' => '9',
6474   'is_dst' => '0',
6475 ))
6476 ->values(array(
6477   'timezone' => '277',
6478   'name' => 'Australia/West',
6479   'offset' => '08:00:00',
6480   'offset_dst' => '08:00:00',
6481   'dst_region' => '0',
6482   'is_dst' => '0',
6483 ))
6484 ->values(array(
6485   'timezone' => '278',
6486   'name' => 'Australia/Yancowinna',
6487   'offset' => '10:30:00',
6488   'offset_dst' => '09:30:00',
6489   'dst_region' => '10',
6490   'is_dst' => '0',
6491 ))
6492 ->values(array(
6493   'timezone' => '279',
6494   'name' => 'Brazil/Acre',
6495   'offset' => '-05:00:00',
6496   'offset_dst' => '-05:00:00',
6497   'dst_region' => '0',
6498   'is_dst' => '0',
6499 ))
6500 ->values(array(
6501   'timezone' => '280',
6502   'name' => 'Brazil/DeNoronha',
6503   'offset' => '-02:00:00',
6504   'offset_dst' => '-02:00:00',
6505   'dst_region' => '0',
6506   'is_dst' => '0',
6507 ))
6508 ->values(array(
6509   'timezone' => '281',
6510   'name' => 'Brazil/East',
6511   'offset' => '-02:00:00',
6512   'offset_dst' => '-03:00:00',
6513   'dst_region' => '17',
6514   'is_dst' => '0',
6515 ))
6516 ->values(array(
6517   'timezone' => '282',
6518   'name' => 'Brazil/West',
6519   'offset' => '-04:00:00',
6520   'offset_dst' => '-04:00:00',
6521   'dst_region' => '0',
6522   'is_dst' => '0',
6523 ))
6524 ->values(array(
6525   'timezone' => '285',
6526   'name' => 'Canada/Atlantic',
6527   'offset' => '-04:00:00',
6528   'offset_dst' => '-03:00:00',
6529   'dst_region' => '15',
6530   'is_dst' => '0',
6531 ))
6532 ->values(array(
6533   'timezone' => '286',
6534   'name' => 'Canada/Central',
6535   'offset' => '-06:00:00',
6536   'offset_dst' => '-05:00:00',
6537   'dst_region' => '15',
6538   'is_dst' => '0',
6539 ))
6540 ->values(array(
6541   'timezone' => '287',
6542   'name' => 'Canada/Central-Saskatchewan',
6543   'offset' => '-06:00:00',
6544   'offset_dst' => '-06:00:00',
6545   'dst_region' => '0',
6546   'is_dst' => '0',
6547 ))
6548 ->values(array(
6549   'timezone' => '288',
6550   'name' => 'Canada/Eastern',
6551   'offset' => '-05:00:00',
6552   'offset_dst' => '-04:00:00',
6553   'dst_region' => '15',
6554   'is_dst' => '0',
6555 ))
6556 ->values(array(
6557   'timezone' => '289',
6558   'name' => 'Canada/Mountain',
6559   'offset' => '-07:00:00',
6560   'offset_dst' => '-06:00:00',
6561   'dst_region' => '15',
6562   'is_dst' => '0',
6563 ))
6564 ->values(array(
6565   'timezone' => '290',
6566   'name' => 'Canada/Newfoundland',
6567   'offset' => '-03:30:00',
6568   'offset_dst' => '-02:30:00',
6569   'dst_region' => '15',
6570   'is_dst' => '0',
6571 ))
6572 ->values(array(
6573   'timezone' => '291',
6574   'name' => 'Canada/Pacific',
6575   'offset' => '-08:00:00',
6576   'offset_dst' => '-07:00:00',
6577   'dst_region' => '15',
6578   'is_dst' => '0',
6579 ))
6580 ->values(array(
6581   'timezone' => '292',
6582   'name' => 'Canada/Saskatchewan',
6583   'offset' => '-06:00:00',
6584   'offset_dst' => '-06:00:00',
6585   'dst_region' => '0',
6586   'is_dst' => '0',
6587 ))
6588 ->values(array(
6589   'timezone' => '293',
6590   'name' => 'Canada/Yukon',
6591   'offset' => '-08:00:00',
6592   'offset_dst' => '-07:00:00',
6593   'dst_region' => '15',
6594   'is_dst' => '0',
6595 ))
6596 ->values(array(
6597   'timezone' => '294',
6598   'name' => 'Chile/Continental',
6599   'offset' => '-03:00:00',
6600   'offset_dst' => '-04:00:00',
6601   'dst_region' => '18',
6602   'is_dst' => '0',
6603 ))
6604 ->values(array(
6605   'timezone' => '295',
6606   'name' => 'Chile/EasterIsland',
6607   'offset' => '-05:00:00',
6608   'offset_dst' => '-06:00:00',
6609   'dst_region' => '18',
6610   'is_dst' => '0',
6611 ))
6612 ->values(array(
6613   'timezone' => '296',
6614   'name' => 'Cuba',
6615   'offset' => '-05:00:00',
6616   'offset_dst' => '-04:00:00',
6617   'dst_region' => '16',
6618   'is_dst' => '0',
6619 ))
6620 ->values(array(
6621   'timezone' => '298',
6622   'name' => 'EST',
6623   'offset' => '-05:00:00',
6624   'offset_dst' => '-05:00:00',
6625   'dst_region' => '0',
6626   'is_dst' => '0',
6627 ))
6628 ->values(array(
6629   'timezone' => '300',
6630   'name' => 'Egypt',
6631   'offset' => '02:00:00',
6632   'offset_dst' => '03:00:00',
6633   'dst_region' => '1',
6634   'is_dst' => '0',
6635 ))
6636 ->values(array(
6637   'timezone' => '301',
6638   'name' => 'Eire',
6639   'offset' => '00:00:00',
6640   'offset_dst' => '01:00:00',
6641   'dst_region' => '13',
6642   'is_dst' => '0',
6643 ))
6644 ->values(array(
6645   'timezone' => '302',
6646   'name' => 'Etc/GMT-1',
6647   'offset' => '-01:00:00',
6648   'offset_dst' => '-01:00:00',
6649   'dst_region' => '0',
6650   'is_dst' => '0',
6651 ))
6652 ->values(array(
6653   'timezone' => '303',
6654   'name' => 'Etc/GMT-10',
6655   'offset' => '-10:00:00',
6656   'offset_dst' => '-10:00:00',
6657   'dst_region' => '0',
6658   'is_dst' => '0',
6659 ))
6660 ->values(array(
6661   'timezone' => '304',
6662   'name' => 'Etc/GMT-11',
6663   'offset' => '-11:00:00',
6664   'offset_dst' => '-11:00:00',
6665   'dst_region' => '0',
6666   'is_dst' => '0',
6667 ))
6668 ->values(array(
6669   'timezone' => '305',
6670   'name' => 'Etc/GMT-12',
6671   'offset' => '-12:00:00',
6672   'offset_dst' => '-12:00:00',
6673   'dst_region' => '0',
6674   'is_dst' => '0',
6675 ))
6676 ->values(array(
6677   'timezone' => '306',
6678   'name' => 'Etc/GMT-2',
6679   'offset' => '-02:00:00',
6680   'offset_dst' => '-02:00:00',
6681   'dst_region' => '0',
6682   'is_dst' => '0',
6683 ))
6684 ->values(array(
6685   'timezone' => '307',
6686   'name' => 'Etc/GMT-3',
6687   'offset' => '-03:00:00',
6688   'offset_dst' => '-03:00:00',
6689   'dst_region' => '0',
6690   'is_dst' => '0',
6691 ))
6692 ->values(array(
6693   'timezone' => '308',
6694   'name' => 'Etc/GMT-4',
6695   'offset' => '-04:00:00',
6696   'offset_dst' => '-04:00:00',
6697   'dst_region' => '0',
6698   'is_dst' => '0',
6699 ))
6700 ->values(array(
6701   'timezone' => '309',
6702   'name' => 'Etc/GMT-5',
6703   'offset' => '-05:00:00',
6704   'offset_dst' => '-05:00:00',
6705   'dst_region' => '0',
6706   'is_dst' => '0',
6707 ))
6708 ->values(array(
6709   'timezone' => '310',
6710   'name' => 'Etc/GMT-6',
6711   'offset' => '-06:00:00',
6712   'offset_dst' => '-06:00:00',
6713   'dst_region' => '0',
6714   'is_dst' => '0',
6715 ))
6716 ->values(array(
6717   'timezone' => '311',
6718   'name' => 'Etc/GMT-7',
6719   'offset' => '-07:00:00',
6720   'offset_dst' => '-07:00:00',
6721   'dst_region' => '0',
6722   'is_dst' => '0',
6723 ))
6724 ->values(array(
6725   'timezone' => '312',
6726   'name' => 'Etc/GMT-8',
6727   'offset' => '-08:00:00',
6728   'offset_dst' => '-08:00:00',
6729   'dst_region' => '0',
6730   'is_dst' => '0',
6731 ))
6732 ->values(array(
6733   'timezone' => '313',
6734   'name' => 'Etc/GMT-9',
6735   'offset' => '-09:00:00',
6736   'offset_dst' => '-09:00:00',
6737   'dst_region' => '0',
6738   'is_dst' => '0',
6739 ))
6740 ->values(array(
6741   'timezone' => '314',
6742   'name' => 'Etc/GMT+1',
6743   'offset' => '01:00:00',
6744   'offset_dst' => '01:00:00',
6745   'dst_region' => '0',
6746   'is_dst' => '0',
6747 ))
6748 ->values(array(
6749   'timezone' => '315',
6750   'name' => 'Etc/GMT+10',
6751   'offset' => '10:00:00',
6752   'offset_dst' => '10:00:00',
6753   'dst_region' => '0',
6754   'is_dst' => '0',
6755 ))
6756 ->values(array(
6757   'timezone' => '316',
6758   'name' => 'Etc/GMT+11',
6759   'offset' => '11:00:00',
6760   'offset_dst' => '11:00:00',
6761   'dst_region' => '0',
6762   'is_dst' => '0',
6763 ))
6764 ->values(array(
6765   'timezone' => '317',
6766   'name' => 'Etc/GMT+12',
6767   'offset' => '12:00:00',
6768   'offset_dst' => '12:00:00',
6769   'dst_region' => '0',
6770   'is_dst' => '0',
6771 ))
6772 ->values(array(
6773   'timezone' => '318',
6774   'name' => 'Etc/GMT+13',
6775   'offset' => '13:00:00',
6776   'offset_dst' => '13:00:00',
6777   'dst_region' => '0',
6778   'is_dst' => '0',
6779 ))
6780 ->values(array(
6781   'timezone' => '319',
6782   'name' => 'Etc/GMT+14',
6783   'offset' => '14:00:00',
6784   'offset_dst' => '14:00:00',
6785   'dst_region' => '0',
6786   'is_dst' => '0',
6787 ))
6788 ->values(array(
6789   'timezone' => '320',
6790   'name' => 'Etc/GMT+2',
6791   'offset' => '02:00:00',
6792   'offset_dst' => '02:00:00',
6793   'dst_region' => '0',
6794   'is_dst' => '0',
6795 ))
6796 ->values(array(
6797   'timezone' => '321',
6798   'name' => 'Etc/GMT+3',
6799   'offset' => '03:00:00',
6800   'offset_dst' => '03:00:00',
6801   'dst_region' => '0',
6802   'is_dst' => '0',
6803 ))
6804 ->values(array(
6805   'timezone' => '322',
6806   'name' => 'Etc/GMT+4',
6807   'offset' => '04:00:00',
6808   'offset_dst' => '04:00:00',
6809   'dst_region' => '0',
6810   'is_dst' => '0',
6811 ))
6812 ->values(array(
6813   'timezone' => '323',
6814   'name' => 'Etc/GMT+5',
6815   'offset' => '05:00:00',
6816   'offset_dst' => '05:00:00',
6817   'dst_region' => '0',
6818   'is_dst' => '0',
6819 ))
6820 ->values(array(
6821   'timezone' => '324',
6822   'name' => 'Etc/GMT+6',
6823   'offset' => '06:00:00',
6824   'offset_dst' => '06:00:00',
6825   'dst_region' => '0',
6826   'is_dst' => '0',
6827 ))
6828 ->values(array(
6829   'timezone' => '325',
6830   'name' => 'Etc/GMT+7',
6831   'offset' => '07:00:00',
6832   'offset_dst' => '07:00:00',
6833   'dst_region' => '0',
6834   'is_dst' => '0',
6835 ))
6836 ->values(array(
6837   'timezone' => '326',
6838   'name' => 'Etc/GMT+8',
6839   'offset' => '08:00:00',
6840   'offset_dst' => '08:00:00',
6841   'dst_region' => '0',
6842   'is_dst' => '0',
6843 ))
6844 ->values(array(
6845   'timezone' => '327',
6846   'name' => 'Etc/GMT+9',
6847   'offset' => '09:00:00',
6848   'offset_dst' => '09:00:00',
6849   'dst_region' => '0',
6850   'is_dst' => '0',
6851 ))
6852 ->values(array(
6853   'timezone' => '328',
6854   'name' => 'Europe/Amsterdam',
6855   'offset' => '01:00:00',
6856   'offset_dst' => '02:00:00',
6857   'dst_region' => '13',
6858   'is_dst' => '0',
6859 ))
6860 ->values(array(
6861   'timezone' => '329',
6862   'name' => 'Europe/Andorra',
6863   'offset' => '01:00:00',
6864   'offset_dst' => '02:00:00',
6865   'dst_region' => '13',
6866   'is_dst' => '0',
6867 ))
6868 ->values(array(
6869   'timezone' => '330',
6870   'name' => 'Europe/Athens',
6871   'offset' => '02:00:00',
6872   'offset_dst' => '03:00:00',
6873   'dst_region' => '13',
6874   'is_dst' => '0',
6875 ))
6876 ->values(array(
6877   'timezone' => '331',
6878   'name' => 'Europe/Belfast',
6879   'offset' => '00:00:00',
6880   'offset_dst' => '01:00:00',
6881   'dst_region' => '13',
6882   'is_dst' => '0',
6883 ))
6884 ->values(array(
6885   'timezone' => '332',
6886   'name' => 'Europe/Belgrade',
6887   'offset' => '01:00:00',
6888   'offset_dst' => '02:00:00',
6889   'dst_region' => '13',
6890   'is_dst' => '0',
6891 ))
6892 ->values(array(
6893   'timezone' => '333',
6894   'name' => 'Europe/Berlin',
6895   'offset' => '01:00:00',
6896   'offset_dst' => '02:00:00',
6897   'dst_region' => '13',
6898   'is_dst' => '0',
6899 ))
6900 ->values(array(
6901   'timezone' => '334',
6902   'name' => 'Europe/Bratislava',
6903   'offset' => '01:00:00',
6904   'offset_dst' => '02:00:00',
6905   'dst_region' => '13',
6906   'is_dst' => '0',
6907 ))
6908 ->values(array(
6909   'timezone' => '335',
6910   'name' => 'Europe/Brussels',
6911   'offset' => '01:00:00',
6912   'offset_dst' => '02:00:00',
6913   'dst_region' => '13',
6914   'is_dst' => '0',
6915 ))
6916 ->values(array(
6917   'timezone' => '336',
6918   'name' => 'Europe/Bucharest',
6919   'offset' => '02:00:00',
6920   'offset_dst' => '03:00:00',
6921   'dst_region' => '13',
6922   'is_dst' => '0',
6923 ))
6924 ->values(array(
6925   'timezone' => '337',
6926   'name' => 'Europe/Budapest',
6927   'offset' => '01:00:00',
6928   'offset_dst' => '02:00:00',
6929   'dst_region' => '13',
6930   'is_dst' => '0',
6931 ))
6932 ->values(array(
6933   'timezone' => '338',
6934   'name' => 'Europe/Chisinau',
6935   'offset' => '02:00:00',
6936   'offset_dst' => '03:00:00',
6937   'dst_region' => '13',
6938   'is_dst' => '0',
6939 ))
6940 ->values(array(
6941   'timezone' => '339',
6942   'name' => 'Europe/Copenhagen',
6943   'offset' => '01:00:00',
6944   'offset_dst' => '02:00:00',
6945   'dst_region' => '13',
6946   'is_dst' => '0',
6947 ))
6948 ->values(array(
6949   'timezone' => '340',
6950   'name' => 'Europe/Dublin',
6951   'offset' => '00:00:00',
6952   'offset_dst' => '01:00:00',
6953   'dst_region' => '13',
6954   'is_dst' => '0',
6955 ))
6956 ->values(array(
6957   'timezone' => '341',
6958   'name' => 'Europe/Gibraltar',
6959   'offset' => '01:00:00',
6960   'offset_dst' => '02:00:00',
6961   'dst_region' => '13',
6962   'is_dst' => '0',
6963 ))
6964 ->values(array(
6965   'timezone' => '342',
6966   'name' => 'Europe/Helsinki',
6967   'offset' => '02:00:00',
6968   'offset_dst' => '03:00:00',
6969   'dst_region' => '13',
6970   'is_dst' => '0',
6971 ))
6972 ->values(array(
6973   'timezone' => '343',
6974   'name' => 'Europe/Istanbul',
6975   'offset' => '02:00:00',
6976   'offset_dst' => '03:00:00',
6977   'dst_region' => '13',
6978   'is_dst' => '0',
6979 ))
6980 ->values(array(
6981   'timezone' => '344',
6982   'name' => 'Europe/Kaliningrad',
6983   'offset' => '02:00:00',
6984   'offset_dst' => '03:00:00',
6985   'dst_region' => '13',
6986   'is_dst' => '0',
6987 ))
6988 ->values(array(
6989   'timezone' => '345',
6990   'name' => 'Europe/Kiev',
6991   'offset' => '02:00:00',
6992   'offset_dst' => '03:00:00',
6993   'dst_region' => '13',
6994   'is_dst' => '0',
6995 ))
6996 ->values(array(
6997   'timezone' => '346',
6998   'name' => 'Europe/Lisbon',
6999   'offset' => '00:00:00',
7000   'offset_dst' => '01:00:00',
7001   'dst_region' => '13',
7002   'is_dst' => '0',
7003 ))
7004 ->values(array(
7005   'timezone' => '347',
7006   'name' => 'Europe/Ljubljana',
7007   'offset' => '01:00:00',
7008   'offset_dst' => '02:00:00',
7009   'dst_region' => '13',
7010   'is_dst' => '0',
7011 ))
7012 ->values(array(
7013   'timezone' => '348',
7014   'name' => 'Europe/London',
7015   'offset' => '00:00:00',
7016   'offset_dst' => '01:00:00',
7017   'dst_region' => '13',
7018   'is_dst' => '0',
7019 ))
7020 ->values(array(
7021   'timezone' => '349',
7022   'name' => 'Europe/Luxembourg',
7023   'offset' => '01:00:00',
7024   'offset_dst' => '02:00:00',
7025   'dst_region' => '13',
7026   'is_dst' => '0',
7027 ))
7028 ->values(array(
7029   'timezone' => '350',
7030   'name' => 'Europe/Madrid',
7031   'offset' => '01:00:00',
7032   'offset_dst' => '02:00:00',
7033   'dst_region' => '13',
7034   'is_dst' => '0',
7035 ))
7036 ->values(array(
7037   'timezone' => '351',
7038   'name' => 'Europe/Malta',
7039   'offset' => '01:00:00',
7040   'offset_dst' => '02:00:00',
7041   'dst_region' => '13',
7042   'is_dst' => '0',
7043 ))
7044 ->values(array(
7045   'timezone' => '352',
7046   'name' => 'Europe/Minsk',
7047   'offset' => '02:00:00',
7048   'offset_dst' => '03:00:00',
7049   'dst_region' => '13',
7050   'is_dst' => '0',
7051 ))
7052 ->values(array(
7053   'timezone' => '353',
7054   'name' => 'Europe/Monaco',
7055   'offset' => '01:00:00',
7056   'offset_dst' => '02:00:00',
7057   'dst_region' => '13',
7058   'is_dst' => '0',
7059 ))
7060 ->values(array(
7061   'timezone' => '354',
7062   'name' => 'Europe/Moscow',
7063   'offset' => '03:00:00',
7064   'offset_dst' => '04:00:00',
7065   'dst_region' => '14',
7066   'is_dst' => '0',
7067 ))
7068 ->values(array(
7069   'timezone' => '355',
7070   'name' => 'Europe/Nicosia',
7071   'offset' => '02:00:00',
7072   'offset_dst' => '03:00:00',
7073   'dst_region' => '13',
7074   'is_dst' => '0',
7075 ))
7076 ->values(array(
7077   'timezone' => '356',
7078   'name' => 'Europe/Oslo',
7079   'offset' => '01:00:00',
7080   'offset_dst' => '02:00:00',
7081   'dst_region' => '13',
7082   'is_dst' => '0',
7083 ))
7084 ->values(array(
7085   'timezone' => '357',
7086   'name' => 'Europe/Paris',
7087   'offset' => '01:00:00',
7088   'offset_dst' => '02:00:00',
7089   'dst_region' => '13',
7090   'is_dst' => '0',
7091 ))
7092 ->values(array(
7093   'timezone' => '358',
7094   'name' => 'Europe/Prague',
7095   'offset' => '01:00:00',
7096   'offset_dst' => '02:00:00',
7097   'dst_region' => '13',
7098   'is_dst' => '0',
7099 ))
7100 ->values(array(
7101   'timezone' => '359',
7102   'name' => 'Europe/Riga',
7103   'offset' => '02:00:00',
7104   'offset_dst' => '03:00:00',
7105   'dst_region' => '13',
7106   'is_dst' => '0',
7107 ))
7108 ->values(array(
7109   'timezone' => '360',
7110   'name' => 'Europe/Rome',
7111   'offset' => '01:00:00',
7112   'offset_dst' => '02:00:00',
7113   'dst_region' => '13',
7114   'is_dst' => '0',
7115 ))
7116 ->values(array(
7117   'timezone' => '361',
7118   'name' => 'Europe/Samara',
7119   'offset' => '04:00:00',
7120   'offset_dst' => '05:00:00',
7121   'dst_region' => '13',
7122   'is_dst' => '0',
7123 ))
7124 ->values(array(
7125   'timezone' => '362',
7126   'name' => 'Europe/San Marino',
7127   'offset' => '01:00:00',
7128   'offset_dst' => '02:00:00',
7129   'dst_region' => '13',
7130   'is_dst' => '0',
7131 ))
7132 ->values(array(
7133   'timezone' => '363',
7134   'name' => 'Europe/Sarajevo',
7135   'offset' => '01:00:00',
7136   'offset_dst' => '02:00:00',
7137   'dst_region' => '13',
7138   'is_dst' => '0',
7139 ))
7140 ->values(array(
7141   'timezone' => '364',
7142   'name' => 'Europe/Simferopol',
7143   'offset' => '02:00:00',
7144   'offset_dst' => '03:00:00',
7145   'dst_region' => '13',
7146   'is_dst' => '0',
7147 ))
7148 ->values(array(
7149   'timezone' => '365',
7150   'name' => 'Europe/Skopje',
7151   'offset' => '01:00:00',
7152   'offset_dst' => '02:00:00',
7153   'dst_region' => '13',
7154   'is_dst' => '0',
7155 ))
7156 ->values(array(
7157   'timezone' => '366',
7158   'name' => 'Europe/Sofia',
7159   'offset' => '02:00:00',
7160   'offset_dst' => '03:00:00',
7161   'dst_region' => '13',
7162   'is_dst' => '0',
7163 ))
7164 ->values(array(
7165   'timezone' => '367',
7166   'name' => 'Europe/Stockholm',
7167   'offset' => '01:00:00',
7168   'offset_dst' => '02:00:00',
7169   'dst_region' => '13',
7170   'is_dst' => '0',
7171 ))
7172 ->values(array(
7173   'timezone' => '368',
7174   'name' => 'Europe/Tallinn',
7175   'offset' => '02:00:00',
7176   'offset_dst' => '02:00:00',
7177   'dst_region' => '0',
7178   'is_dst' => '0',
7179 ))
7180 ->values(array(
7181   'timezone' => '369',
7182   'name' => 'Europe/Tirane',
7183   'offset' => '01:00:00',
7184   'offset_dst' => '02:00:00',
7185   'dst_region' => '13',
7186   'is_dst' => '0',
7187 ))
7188 ->values(array(
7189   'timezone' => '370',
7190   'name' => 'Europe/Tiraspol',
7191   'offset' => '02:00:00',
7192   'offset_dst' => '03:00:00',
7193   'dst_region' => '13',
7194   'is_dst' => '0',
7195 ))
7196 ->values(array(
7197   'timezone' => '371',
7198   'name' => 'Europe/Uzhgorod',
7199   'offset' => '02:00:00',
7200   'offset_dst' => '03:00:00',
7201   'dst_region' => '13',
7202   'is_dst' => '0',
7203 ))
7204 ->values(array(
7205   'timezone' => '372',
7206   'name' => 'Europe/Vaduz',
7207   'offset' => '01:00:00',
7208   'offset_dst' => '02:00:00',
7209   'dst_region' => '13',
7210   'is_dst' => '0',
7211 ))
7212 ->values(array(
7213   'timezone' => '373',
7214   'name' => 'Europe/Vatican',
7215   'offset' => '01:00:00',
7216   'offset_dst' => '02:00:00',
7217   'dst_region' => '13',
7218   'is_dst' => '0',
7219 ))
7220 ->values(array(
7221   'timezone' => '374',
7222   'name' => 'Europe/Vienna',
7223   'offset' => '01:00:00',
7224   'offset_dst' => '02:00:00',
7225   'dst_region' => '13',
7226   'is_dst' => '0',
7227 ))
7228 ->values(array(
7229   'timezone' => '375',
7230   'name' => 'Europe/Vilnius',
7231   'offset' => '02:00:00',
7232   'offset_dst' => '02:00:00',
7233   'dst_region' => '0',
7234   'is_dst' => '0',
7235 ))
7236 ->values(array(
7237   'timezone' => '376',
7238   'name' => 'Europe/Warsaw',
7239   'offset' => '01:00:00',
7240   'offset_dst' => '02:00:00',
7241   'dst_region' => '13',
7242   'is_dst' => '0',
7243 ))
7244 ->values(array(
7245   'timezone' => '377',
7246   'name' => 'Europe/Zagreb',
7247   'offset' => '01:00:00',
7248   'offset_dst' => '02:00:00',
7249   'dst_region' => '13',
7250   'is_dst' => '0',
7251 ))
7252 ->values(array(
7253   'timezone' => '378',
7254   'name' => 'Europe/Zaporozhye',
7255   'offset' => '02:00:00',
7256   'offset_dst' => '03:00:00',
7257   'dst_region' => '13',
7258   'is_dst' => '0',
7259 ))
7260 ->values(array(
7261   'timezone' => '379',
7262   'name' => 'Europe/Zurich',
7263   'offset' => '01:00:00',
7264   'offset_dst' => '02:00:00',
7265   'dst_region' => '13',
7266   'is_dst' => '0',
7267 ))
7268 ->values(array(
7269   'timezone' => '380',
7270   'name' => 'GB',
7271   'offset' => '00:00:00',
7272   'offset_dst' => '01:00:00',
7273   'dst_region' => '13',
7274   'is_dst' => '0',
7275 ))
7276 ->values(array(
7277   'timezone' => '381',
7278   'name' => 'GB-Eire',
7279   'offset' => '00:00:00',
7280   'offset_dst' => '01:00:00',
7281   'dst_region' => '13',
7282   'is_dst' => '0',
7283 ))
7284 ->values(array(
7285   'timezone' => '383',
7286   'name' => 'Hongkong',
7287   'offset' => '08:00:00',
7288   'offset_dst' => '08:00:00',
7289   'dst_region' => '0',
7290   'is_dst' => '0',
7291 ))
7292 ->values(array(
7293   'timezone' => '384',
7294   'name' => 'Indian/Antananarivo',
7295   'offset' => '03:00:00',
7296   'offset_dst' => '03:00:00',
7297   'dst_region' => '0',
7298   'is_dst' => '0',
7299 ))
7300 ->values(array(
7301   'timezone' => '385',
7302   'name' => 'Indian/Chagos',
7303   'offset' => '05:00:00',
7304   'offset_dst' => '05:00:00',
7305   'dst_region' => '0',
7306   'is_dst' => '0',
7307 ))
7308 ->values(array(
7309   'timezone' => '386',
7310   'name' => 'Indian/Christmas',
7311   'offset' => '07:00:00',
7312   'offset_dst' => '07:00:00',
7313   'dst_region' => '0',
7314   'is_dst' => '0',
7315 ))
7316 ->values(array(
7317   'timezone' => '387',
7318   'name' => 'Indian/Cocos',
7319   'offset' => '06:30:00',
7320   'offset_dst' => '06:30:00',
7321   'dst_region' => '0',
7322   'is_dst' => '0',
7323 ))
7324 ->values(array(
7325   'timezone' => '388',
7326   'name' => 'Indian/Comoro',
7327   'offset' => '03:00:00',
7328   'offset_dst' => '03:00:00',
7329   'dst_region' => '0',
7330   'is_dst' => '0',
7331 ))
7332 ->values(array(
7333   'timezone' => '389',
7334   'name' => 'Indian/Kerguelen',
7335   'offset' => '05:00:00',
7336   'offset_dst' => '05:00:00',
7337   'dst_region' => '0',
7338   'is_dst' => '0',
7339 ))
7340 ->values(array(
7341   'timezone' => '390',
7342   'name' => 'Indian/Mahe',
7343   'offset' => '04:00:00',
7344   'offset_dst' => '04:00:00',
7345   'dst_region' => '0',
7346   'is_dst' => '0',
7347 ))
7348 ->values(array(
7349   'timezone' => '391',
7350   'name' => 'Indian/Maldives',
7351   'offset' => '05:00:00',
7352   'offset_dst' => '05:00:00',
7353   'dst_region' => '0',
7354   'is_dst' => '0',
7355 ))
7356 ->values(array(
7357   'timezone' => '392',
7358   'name' => 'Indian/Mauritius',
7359   'offset' => '04:00:00',
7360   'offset_dst' => '04:00:00',
7361   'dst_region' => '0',
7362   'is_dst' => '0',
7363 ))
7364 ->values(array(
7365   'timezone' => '393',
7366   'name' => 'Indian/Mayotte',
7367   'offset' => '03:00:00',
7368   'offset_dst' => '03:00:00',
7369   'dst_region' => '0',
7370   'is_dst' => '0',
7371 ))
7372 ->values(array(
7373   'timezone' => '394',
7374   'name' => 'Indian/Reunion',
7375   'offset' => '04:00:00',
7376   'offset_dst' => '04:00:00',
7377   'dst_region' => '0',
7378   'is_dst' => '0',
7379 ))
7380 ->values(array(
7381   'timezone' => '395',
7382   'name' => 'Iran',
7383   'offset' => '03:30:00',
7384   'offset_dst' => '04:30:00',
7385   'dst_region' => '8',
7386   'is_dst' => '0',
7387 ))
7388 ->values(array(
7389   'timezone' => '396',
7390   'name' => 'Israel',
7391   'offset' => '02:00:00',
7392   'offset_dst' => '03:00:00',
7393   'dst_region' => '5',
7394   'is_dst' => '0',
7395 ))
7396 ->values(array(
7397   'timezone' => '397',
7398   'name' => 'Jamaica',
7399   'offset' => '-05:00:00',
7400   'offset_dst' => '-05:00:00',
7401   'dst_region' => '0',
7402   'is_dst' => '0',
7403 ))
7404 ->values(array(
7405   'timezone' => '398',
7406   'name' => 'Japan',
7407   'offset' => '09:00:00',
7408   'offset_dst' => '09:00:00',
7409   'dst_region' => '0',
7410   'is_dst' => '0',
7411 ))
7412 ->values(array(
7413   'timezone' => '399',
7414   'name' => 'Kwajalein',
7415   'offset' => '12:00:00',
7416   'offset_dst' => '12:00:00',
7417   'dst_region' => '0',
7418   'is_dst' => '0',
7419 ))
7420 ->values(array(
7421   'timezone' => '400',
7422   'name' => 'Libya',
7423   'offset' => '02:00:00',
7424   'offset_dst' => '02:00:00',
7425   'dst_region' => '0',
7426   'is_dst' => '0',
7427 ))
7428 ->values(array(
7429   'timezone' => '404',
7430   'name' => 'Mexico/BajaNorte',
7431   'offset' => '-08:00:00',
7432   'offset_dst' => '-07:00:00',
7433   'dst_region' => '15',
7434   'is_dst' => '0',
7435 ))
7436 ->values(array(
7437   'timezone' => '405',
7438   'name' => 'Mexico/BajaSur',
7439   'offset' => '-07:00:00',
7440   'offset_dst' => '-06:00:00',
7441   'dst_region' => '15',
7442   'is_dst' => '0',
7443 ))
7444 ->values(array(
7445   'timezone' => '406',
7446   'name' => 'Mexico/General',
7447   'offset' => '-06:00:00',
7448   'offset_dst' => '-05:00:00',
7449   'dst_region' => '15',
7450   'is_dst' => '0',
7451 ))
7452 ->values(array(
7453   'timezone' => '407',
7454   'name' => 'Mideast/Riyadh87',
7455   'offset' => '03:07:04',
7456   'offset_dst' => '03:07:04',
7457   'dst_region' => '0',
7458   'is_dst' => '0',
7459 ))
7460 ->values(array(
7461   'timezone' => '408',
7462   'name' => 'Mideast/Riyadh88',
7463   'offset' => '03:07:04',
7464   'offset_dst' => '03:07:04',
7465   'dst_region' => '0',
7466   'is_dst' => '0',
7467 ))
7468 ->values(array(
7469   'timezone' => '409',
7470   'name' => 'Mideast/Riyadh89',
7471   'offset' => '03:07:04',
7472   'offset_dst' => '03:07:04',
7473   'dst_region' => '0',
7474   'is_dst' => '0',
7475 ))
7476 ->values(array(
7477   'timezone' => '410',
7478   'name' => 'NZ',
7479   'offset' => '13:00:00',
7480   'offset_dst' => '12:00:00',
7481   'dst_region' => '11',
7482   'is_dst' => '0',
7483 ))
7484 ->values(array(
7485   'timezone' => '412',
7486   'name' => 'Navajo',
7487   'offset' => '-07:00:00',
7488   'offset_dst' => '-06:00:00',
7489   'dst_region' => '15',
7490   'is_dst' => '0',
7491 ))
7492 ->values(array(
7493   'timezone' => '415',
7494   'name' => 'Pacific/Apia',
7495   'offset' => '-11:00:00',
7496   'offset_dst' => '-11:00:00',
7497   'dst_region' => '0',
7498   'is_dst' => '0',
7499 ))
7500 ->values(array(
7501   'timezone' => '416',
7502   'name' => 'Pacific/Auckland',
7503   'offset' => '13:00:00',
7504   'offset_dst' => '12:00:00',
7505   'dst_region' => '15',
7506   'is_dst' => '0',
7507 ))
7508 ->values(array(
7509   'timezone' => '417',
7510   'name' => 'Pacific/Chatham',
7511   'offset' => '13:45:00',
7512   'offset_dst' => '12:45:00',
7513   'dst_region' => '15',
7514   'is_dst' => '0',
7515 ))
7516 ->values(array(
7517   'timezone' => '418',
7518   'name' => 'Pacific/Easter',
7519   'offset' => '-05:00:00',
7520   'offset_dst' => '-06:00:00',
7521   'dst_region' => '0',
7522   'is_dst' => '0',
7523 ))
7524 ->values(array(
7525   'timezone' => '419',
7526   'name' => 'Pacific/Efate',
7527   'offset' => '11:00:00',
7528   'offset_dst' => '11:00:00',
7529   'dst_region' => '0',
7530   'is_dst' => '0',
7531 ))
7532 ->values(array(
7533   'timezone' => '420',
7534   'name' => 'Pacific/Enderbury',
7535   'offset' => '13:00:00',
7536   'offset_dst' => '13:00:00',
7537   'dst_region' => '0',
7538   'is_dst' => '0',
7539 ))
7540 ->values(array(
7541   'timezone' => '421',
7542   'name' => 'Pacific/Fakaofo',
7543   'offset' => '-10:00:00',
7544   'offset_dst' => '-10:00:00',
7545   'dst_region' => '0',
7546   'is_dst' => '0',
7547 ))
7548 ->values(array(
7549   'timezone' => '422',
7550   'name' => 'Pacific/Fiji',
7551   'offset' => '12:00:00',
7552   'offset_dst' => '12:00:00',
7553   'dst_region' => '0',
7554   'is_dst' => '0',
7555 ))
7556 ->values(array(
7557   'timezone' => '423',
7558   'name' => 'Pacific/Funafuti',
7559   'offset' => '12:00:00',
7560   'offset_dst' => '12:00:00',
7561   'dst_region' => '0',
7562   'is_dst' => '0',
7563 ))
7564 ->values(array(
7565   'timezone' => '424',
7566   'name' => 'Pacific/Galapagos',
7567   'offset' => '-06:00:00',
7568   'offset_dst' => '-06:00:00',
7569   'dst_region' => '0',
7570   'is_dst' => '0',
7571 ))
7572 ->values(array(
7573   'timezone' => '425',
7574   'name' => 'Pacific/Gambier',
7575   'offset' => '-09:00:00',
7576   'offset_dst' => '-09:00:00',
7577   'dst_region' => '0',
7578   'is_dst' => '0',
7579 ))
7580 ->values(array(
7581   'timezone' => '426',
7582   'name' => 'Pacific/Guadalcanal',
7583   'offset' => '11:00:00',
7584   'offset_dst' => '11:00:00',
7585   'dst_region' => '0',
7586   'is_dst' => '0',
7587 ))
7588 ->values(array(
7589   'timezone' => '427',
7590   'name' => 'Pacific/Guam',
7591   'offset' => '10:00:00',
7592   'offset_dst' => '10:00:00',
7593   'dst_region' => '0',
7594   'is_dst' => '0',
7595 ))
7596 ->values(array(
7597   'timezone' => '428',
7598   'name' => 'Pacific/Honolulu',
7599   'offset' => '-10:00:00',
7600   'offset_dst' => '-10:00:00',
7601   'dst_region' => '0',
7602   'is_dst' => '0',
7603 ))
7604 ->values(array(
7605   'timezone' => '429',
7606   'name' => 'Pacific/Johnston',
7607   'offset' => '-10:00:00',
7608   'offset_dst' => '-10:00:00',
7609   'dst_region' => '0',
7610   'is_dst' => '0',
7611 ))
7612 ->values(array(
7613   'timezone' => '430',
7614   'name' => 'Pacific/Kiritimati',
7615   'offset' => '14:00:00',
7616   'offset_dst' => '14:00:00',
7617   'dst_region' => '0',
7618   'is_dst' => '0',
7619 ))
7620 ->values(array(
7621   'timezone' => '431',
7622   'name' => 'Pacific/Kosrae',
7623   'offset' => '11:00:00',
7624   'offset_dst' => '11:00:00',
7625   'dst_region' => '0',
7626   'is_dst' => '0',
7627 ))
7628 ->values(array(
7629   'timezone' => '432',
7630   'name' => 'Pacific/Kwajalein',
7631   'offset' => '12:00:00',
7632   'offset_dst' => '12:00:00',
7633   'dst_region' => '0',
7634   'is_dst' => '0',
7635 ))
7636 ->values(array(
7637   'timezone' => '433',
7638   'name' => 'Pacific/Majuro',
7639   'offset' => '12:00:00',
7640   'offset_dst' => '12:00:00',
7641   'dst_region' => '0',
7642   'is_dst' => '0',
7643 ))
7644 ->values(array(
7645   'timezone' => '434',
7646   'name' => 'Pacific/Marquesas',
7647   'offset' => '-09:30:00',
7648   'offset_dst' => '-09:30:00',
7649   'dst_region' => '0',
7650   'is_dst' => '0',
7651 ))
7652 ->values(array(
7653   'timezone' => '435',
7654   'name' => 'Pacific/Midway',
7655   'offset' => '-11:00:00',
7656   'offset_dst' => '-11:00:00',
7657   'dst_region' => '0',
7658   'is_dst' => '0',
7659 ))
7660 ->values(array(
7661   'timezone' => '436',
7662   'name' => 'Pacific/Nauru',
7663   'offset' => '12:00:00',
7664   'offset_dst' => '12:00:00',
7665   'dst_region' => '0',
7666   'is_dst' => '0',
7667 ))
7668 ->values(array(
7669   'timezone' => '437',
7670   'name' => 'Pacific/Niue',
7671   'offset' => '-11:00:00',
7672   'offset_dst' => '-11:00:00',
7673   'dst_region' => '0',
7674   'is_dst' => '0',
7675 ))
7676 ->values(array(
7677   'timezone' => '438',
7678   'name' => 'Pacific/Norfolk',
7679   'offset' => '11:30:00',
7680   'offset_dst' => '11:30:00',
7681   'dst_region' => '0',
7682   'is_dst' => '0',
7683 ))
7684 ->values(array(
7685   'timezone' => '439',
7686   'name' => 'Pacific/Noumea',
7687   'offset' => '11:00:00',
7688   'offset_dst' => '11:00:00',
7689   'dst_region' => '0',
7690   'is_dst' => '0',
7691 ))
7692 ->values(array(
7693   'timezone' => '440',
7694   'name' => 'Pacific/Pago Pago',
7695   'offset' => '-11:00:00',
7696   'offset_dst' => '-11:00:00',
7697   'dst_region' => '0',
7698   'is_dst' => '0',
7699 ))
7700 ->values(array(
7701   'timezone' => '441',
7702   'name' => 'Pacific/Palau',
7703   'offset' => '09:00:00',
7704   'offset_dst' => '09:00:00',
7705   'dst_region' => '0',
7706   'is_dst' => '0',
7707 ))
7708 ->values(array(
7709   'timezone' => '442',
7710   'name' => 'Pacific/Pitcairn',
7711   'offset' => '-08:00:00',
7712   'offset_dst' => '-08:00:00',
7713   'dst_region' => '0',
7714   'is_dst' => '0',
7715 ))
7716 ->values(array(
7717   'timezone' => '443',
7718   'name' => 'Pacific/Ponape',
7719   'offset' => '11:00:00',
7720   'offset_dst' => '11:00:00',
7721   'dst_region' => '0',
7722   'is_dst' => '0',
7723 ))
7724 ->values(array(
7725   'timezone' => '444',
7726   'name' => 'Pacific/Port Moresby',
7727   'offset' => '10:00:00',
7728   'offset_dst' => '10:00:00',
7729   'dst_region' => '0',
7730   'is_dst' => '0',
7731 ))
7732 ->values(array(
7733   'timezone' => '445',
7734   'name' => 'Pacific/Rarotonga',
7735   'offset' => '-10:00:00',
7736   'offset_dst' => '-10:00:00',
7737   'dst_region' => '0',
7738   'is_dst' => '0',
7739 ))
7740 ->values(array(
7741   'timezone' => '446',
7742   'name' => 'Pacific/Saipan',
7743   'offset' => '10:00:00',
7744   'offset_dst' => '10:00:00',
7745   'dst_region' => '0',
7746   'is_dst' => '0',
7747 ))
7748 ->values(array(
7749   'timezone' => '447',
7750   'name' => 'Pacific/Samoa',
7751   'offset' => '-11:00:00',
7752   'offset_dst' => '-11:00:00',
7753   'dst_region' => '0',
7754   'is_dst' => '0',
7755 ))
7756 ->values(array(
7757   'timezone' => '448',
7758   'name' => 'Pacific/Tahiti',
7759   'offset' => '-10:00:00',
7760   'offset_dst' => '-10:00:00',
7761   'dst_region' => '0',
7762   'is_dst' => '0',
7763 ))
7764 ->values(array(
7765   'timezone' => '449',
7766   'name' => 'Pacific/Tarawa',
7767   'offset' => '12:00:00',
7768   'offset_dst' => '12:00:00',
7769   'dst_region' => '0',
7770   'is_dst' => '0',
7771 ))
7772 ->values(array(
7773   'timezone' => '450',
7774   'name' => 'Pacific/Tongatapu',
7775   'offset' => '13:00:00',
7776   'offset_dst' => '13:00:00',
7777   'dst_region' => '0',
7778   'is_dst' => '0',
7779 ))
7780 ->values(array(
7781   'timezone' => '451',
7782   'name' => 'Pacific/Truk',
7783   'offset' => '10:00:00',
7784   'offset_dst' => '10:00:00',
7785   'dst_region' => '0',
7786   'is_dst' => '0',
7787 ))
7788 ->values(array(
7789   'timezone' => '452',
7790   'name' => 'Pacific/Wake',
7791   'offset' => '12:00:00',
7792   'offset_dst' => '12:00:00',
7793   'dst_region' => '0',
7794   'is_dst' => '0',
7795 ))
7796 ->values(array(
7797   'timezone' => '453',
7798   'name' => 'Pacific/Wallis',
7799   'offset' => '12:00:00',
7800   'offset_dst' => '12:00:00',
7801   'dst_region' => '0',
7802   'is_dst' => '0',
7803 ))
7804 ->values(array(
7805   'timezone' => '454',
7806   'name' => 'Pacific/Yap',
7807   'offset' => '10:00:00',
7808   'offset_dst' => '10:00:00',
7809   'dst_region' => '0',
7810   'is_dst' => '0',
7811 ))
7812 ->values(array(
7813   'timezone' => '455',
7814   'name' => 'Poland',
7815   'offset' => '01:00:00',
7816   'offset_dst' => '02:00:00',
7817   'dst_region' => '13',
7818   'is_dst' => '0',
7819 ))
7820 ->values(array(
7821   'timezone' => '456',
7822   'name' => 'Portugal',
7823   'offset' => '00:00:00',
7824   'offset_dst' => '01:00:00',
7825   'dst_region' => '13',
7826   'is_dst' => '0',
7827 ))
7828 ->values(array(
7829   'timezone' => '459',
7830   'name' => 'Singapore',
7831   'offset' => '08:00:00',
7832   'offset_dst' => '08:00:00',
7833   'dst_region' => '0',
7834   'is_dst' => '0',
7835 ))
7836 ->values(array(
7837   'timezone' => '473',
7838   'name' => 'Turkey',
7839   'offset' => '02:00:00',
7840   'offset_dst' => '03:00:00',
7841   'dst_region' => '13',
7842   'is_dst' => '0',
7843 ))
7844 ->values(array(
7845   'timezone' => '474',
7846   'name' => 'US/Alaska',
7847   'offset' => '-09:00:00',
7848   'offset_dst' => '-08:00:00',
7849   'dst_region' => '15',
7850   'is_dst' => '0',
7851 ))
7852 ->values(array(
7853   'timezone' => '475',
7854   'name' => 'US/Aleutian',
7855   'offset' => '-10:00:00',
7856   'offset_dst' => '-09:00:00',
7857   'dst_region' => '15',
7858   'is_dst' => '0',
7859 ))
7860 ->values(array(
7861   'timezone' => '476',
7862   'name' => 'US/Arizona',
7863   'offset' => '-07:00:00',
7864   'offset_dst' => '-07:00:00',
7865   'dst_region' => '0',
7866   'is_dst' => '0',
7867 ))
7868 ->values(array(
7869   'timezone' => '477',
7870   'name' => 'US/Central',
7871   'offset' => '-06:00:00',
7872   'offset_dst' => '-05:00:00',
7873   'dst_region' => '15',
7874   'is_dst' => '0',
7875 ))
7876 ->values(array(
7877   'timezone' => '478',
7878   'name' => 'US/East-Indiana',
7879   'offset' => '-05:00:00',
7880   'offset_dst' => '-05:00:00',
7881   'dst_region' => '0',
7882   'is_dst' => '0',
7883 ))
7884 ->values(array(
7885   'timezone' => '479',
7886   'name' => 'US/Eastern',
7887   'offset' => '-05:00:00',
7888   'offset_dst' => '-04:00:00',
7889   'dst_region' => '15',
7890   'is_dst' => '0',
7891 ))
7892 ->values(array(
7893   'timezone' => '480',
7894   'name' => 'US/Hawaii',
7895   'offset' => '-10:00:00',
7896   'offset_dst' => '-10:00:00',
7897   'dst_region' => '0',
7898   'is_dst' => '0',
7899 ))
7900 ->values(array(
7901   'timezone' => '481',
7902   'name' => 'US/Indiana-Starke',
7903   'offset' => '-05:00:00',
7904   'offset_dst' => '-05:00:00',
7905   'dst_region' => '0',
7906   'is_dst' => '0',
7907 ))
7908 ->values(array(
7909   'timezone' => '482',
7910   'name' => 'US/Michigan',
7911   'offset' => '-05:00:00',
7912   'offset_dst' => '-04:00:00',
7913   'dst_region' => '15',
7914   'is_dst' => '0',
7915 ))
7916 ->values(array(
7917   'timezone' => '483',
7918   'name' => 'US/Mountain',
7919   'offset' => '-07:00:00',
7920   'offset_dst' => '-06:00:00',
7921   'dst_region' => '15',
7922   'is_dst' => '0',
7923 ))
7924 ->values(array(
7925   'timezone' => '484',
7926   'name' => 'US/Pacific',
7927   'offset' => '-08:00:00',
7928   'offset_dst' => '-07:00:00',
7929   'dst_region' => '15',
7930   'is_dst' => '0',
7931 ))
7932 ->values(array(
7933   'timezone' => '485',
7934   'name' => 'US/Samoa',
7935   'offset' => '-11:00:00',
7936   'offset_dst' => '-11:00:00',
7937   'dst_region' => '0',
7938   'is_dst' => '0',
7939 ))
7940 ->values(array(
7941   'timezone' => '486',
7942   'name' => 'Pacific/French Polynesia-Marquesas Islands',
7943   'offset' => '-09:30:00',
7944   'offset_dst' => '-09:30:00',
7945   'dst_region' => '0',
7946   'is_dst' => '0',
7947 ))
7948 ->values(array(
7949   'timezone' => '487',
7950   'name' => 'Etc/GMT',
7951   'offset' => '00:00:00',
7952   'offset_dst' => '00:00:00',
7953   'dst_region' => '0',
7954   'is_dst' => '0',
7955 ))
7956 ->execute();
7957
7958 $connection->schema()->createTable('files', array(
7959   'fields' => array(
7960     'fid' => array(
7961       'type' => 'serial',
7962       'not null' => TRUE,
7963       'size' => 'normal',
7964       'unsigned' => TRUE,
7965     ),
7966     'uid' => array(
7967       'type' => 'int',
7968       'not null' => TRUE,
7969       'size' => 'normal',
7970       'default' => '0',
7971       'unsigned' => TRUE,
7972     ),
7973     'filename' => array(
7974       'type' => 'varchar',
7975       'not null' => TRUE,
7976       'length' => '255',
7977       'default' => '',
7978     ),
7979     'filepath' => array(
7980       'type' => 'varchar',
7981       'not null' => TRUE,
7982       'length' => '255',
7983       'default' => '',
7984     ),
7985     'filemime' => array(
7986       'type' => 'varchar',
7987       'not null' => TRUE,
7988       'length' => '255',
7989       'default' => '',
7990     ),
7991     'filesize' => array(
7992       'type' => 'int',
7993       'not null' => TRUE,
7994       'size' => 'normal',
7995       'default' => '0',
7996       'unsigned' => TRUE,
7997     ),
7998     'status' => array(
7999       'type' => 'int',
8000       'not null' => TRUE,
8001       'size' => 'normal',
8002       'default' => '0',
8003     ),
8004     'timestamp' => array(
8005       'type' => 'int',
8006       'not null' => TRUE,
8007       'size' => 'normal',
8008       'default' => '0',
8009       'unsigned' => TRUE,
8010     ),
8011   ),
8012   'primary key' => array(
8013     'fid',
8014   ),
8015   'mysql_character_set' => 'utf8',
8016 ));
8017
8018 $connection->insert('files')
8019 ->fields(array(
8020   'fid',
8021   'uid',
8022   'filename',
8023   'filepath',
8024   'filemime',
8025   'filesize',
8026   'status',
8027   'timestamp',
8028 ))
8029 ->values(array(
8030   'fid' => '1',
8031   'uid' => '1',
8032   'filename' => 'Image1.png',
8033   'filepath' => 'core/modules/simpletest/files/image-1.png',
8034   'filemime' => 'image/png',
8035   'filesize' => '39325',
8036   'status' => '1',
8037   'timestamp' => '1388880660',
8038 ))
8039 ->values(array(
8040   'fid' => '2',
8041   'uid' => '1',
8042   'filename' => 'Image2.jpg',
8043   'filepath' => 'core/modules/simpletest/files/image-2.jpg',
8044   'filemime' => 'image/jpeg',
8045   'filesize' => '1831',
8046   'status' => '1',
8047   'timestamp' => '1388880664',
8048 ))
8049 ->values(array(
8050   'fid' => '3',
8051   'uid' => '1',
8052   'filename' => 'Image-test.gif',
8053   'filepath' => 'core/modules/simpletest/files/image-test.gif',
8054   'filemime' => 'image/jpeg',
8055   'filesize' => '183',
8056   'status' => '1',
8057   'timestamp' => '1388880668',
8058 ))
8059 ->values(array(
8060   'fid' => '5',
8061   'uid' => '1',
8062   'filename' => 'html-1.txt',
8063   'filepath' => 'core/modules/simpletest/files/html-1.txt',
8064   'filemime' => 'text/plain',
8065   'filesize' => '24',
8066   'status' => '1',
8067   'timestamp' => '1420858106',
8068 ))
8069 ->values(array(
8070   'fid' => '6',
8071   'uid' => '1',
8072   'filename' => 'some-temp-file.jpg',
8073   'filepath' => '/tmp/some-temp-file.jpg',
8074   'filemime' => 'image/jpeg',
8075   'filesize' => '24',
8076   'status' => '0',
8077   'timestamp' => '1420858106',
8078 ))
8079 ->execute();
8080
8081 $connection->schema()->createTable('filter_formats', array(
8082   'fields' => array(
8083     'format' => array(
8084       'type' => 'serial',
8085       'not null' => TRUE,
8086       'size' => 'normal',
8087     ),
8088     'name' => array(
8089       'type' => 'varchar',
8090       'not null' => TRUE,
8091       'length' => '255',
8092       'default' => '',
8093     ),
8094     'roles' => array(
8095       'type' => 'varchar',
8096       'not null' => TRUE,
8097       'length' => '255',
8098       'default' => '',
8099     ),
8100     'cache' => array(
8101       'type' => 'int',
8102       'not null' => TRUE,
8103       'size' => 'normal',
8104       'default' => '0',
8105     ),
8106   ),
8107   'primary key' => array(
8108     'format',
8109   ),
8110   'mysql_character_set' => 'utf8',
8111 ));
8112
8113 $connection->insert('filter_formats')
8114 ->fields(array(
8115   'format',
8116   'name',
8117   'roles',
8118   'cache',
8119 ))
8120 ->values(array(
8121   'format' => '1',
8122   'name' => 'Filtered HTML',
8123   'roles' => ',1,2,',
8124   'cache' => '1',
8125 ))
8126 ->values(array(
8127   'format' => '2',
8128   'name' => 'Full HTML',
8129   'roles' => '3',
8130   'cache' => '1',
8131 ))
8132 ->values(array(
8133   'format' => '3',
8134   'name' => 'Escape HTML Filter',
8135   'roles' => '',
8136   'cache' => '1',
8137 ))
8138 ->values(array(
8139   'format' => '4',
8140   'name' => 'PHP Code',
8141   'roles' => ',3,4,5,',
8142   'cache' => '0',
8143 ))
8144 ->execute();
8145
8146 $connection->schema()->createTable('filters', array(
8147   'fields' => array(
8148     'fid' => array(
8149       'type' => 'serial',
8150       'not null' => TRUE,
8151       'size' => 'normal',
8152     ),
8153     'format' => array(
8154       'type' => 'int',
8155       'not null' => TRUE,
8156       'size' => 'normal',
8157       'default' => '0',
8158     ),
8159     'module' => array(
8160       'type' => 'varchar',
8161       'not null' => TRUE,
8162       'length' => '64',
8163       'default' => '',
8164     ),
8165     'delta' => array(
8166       'type' => 'int',
8167       'not null' => TRUE,
8168       'size' => 'normal',
8169       'default' => '0',
8170     ),
8171     'weight' => array(
8172       'type' => 'int',
8173       'not null' => TRUE,
8174       'size' => 'normal',
8175       'default' => '0',
8176     ),
8177   ),
8178   'primary key' => array(
8179     'fid',
8180   ),
8181   'mysql_character_set' => 'utf8',
8182 ));
8183
8184 $connection->insert('filters')
8185 ->fields(array(
8186   'fid',
8187   'format',
8188   'module',
8189   'delta',
8190   'weight',
8191 ))
8192 ->values(array(
8193   'fid' => '1',
8194   'format' => '1',
8195   'module' => 'filter',
8196   'delta' => '2',
8197   'weight' => '0',
8198 ))
8199 ->values(array(
8200   'fid' => '2',
8201   'format' => '1',
8202   'module' => 'filter',
8203   'delta' => '0',
8204   'weight' => '1',
8205 ))
8206 ->values(array(
8207   'fid' => '3',
8208   'format' => '1',
8209   'module' => 'filter',
8210   'delta' => '1',
8211   'weight' => '2',
8212 ))
8213 ->values(array(
8214   'fid' => '4',
8215   'format' => '1',
8216   'module' => 'filter',
8217   'delta' => '3',
8218   'weight' => '10',
8219 ))
8220 ->values(array(
8221   'fid' => '5',
8222   'format' => '2',
8223   'module' => 'filter',
8224   'delta' => '2',
8225   'weight' => '0',
8226 ))
8227 ->values(array(
8228   'fid' => '6',
8229   'format' => '2',
8230   'module' => 'filter',
8231   'delta' => '1',
8232   'weight' => '1',
8233 ))
8234 ->values(array(
8235   'fid' => '7',
8236   'format' => '2',
8237   'module' => 'filter',
8238   'delta' => '3',
8239   'weight' => '10',
8240 ))
8241 ->values(array(
8242   'fid' => '8',
8243   'format' => '6',
8244   'module' => 'filter',
8245   'delta' => '2',
8246   'weight' => '0',
8247 ))
8248 ->values(array(
8249   'fid' => '9',
8250   'format' => '6',
8251   'module' => 'filter',
8252   'delta' => '0',
8253   'weight' => '1',
8254 ))
8255 ->values(array(
8256   'fid' => '10',
8257   'format' => '6',
8258   'module' => 'filter',
8259   'delta' => '1',
8260   'weight' => '2',
8261 ))
8262 ->values(array(
8263   'fid' => '11',
8264   'format' => '6',
8265   'module' => 'filter',
8266   'delta' => '3',
8267   'weight' => '10',
8268 ))
8269 ->values(array(
8270   'fid' => '16',
8271   'format' => '4',
8272   'module' => 'php',
8273   'delta' => '0',
8274   'weight' => '10',
8275 ))
8276 ->execute();
8277
8278 $connection->schema()->createTable('flood', array(
8279   'fields' => array(
8280     'fid' => array(
8281       'type' => 'serial',
8282       'not null' => TRUE,
8283       'size' => 'normal',
8284     ),
8285     'event' => array(
8286       'type' => 'varchar',
8287       'not null' => TRUE,
8288       'length' => '64',
8289       'default' => '',
8290     ),
8291     'hostname' => array(
8292       'type' => 'varchar',
8293       'not null' => TRUE,
8294       'length' => '128',
8295       'default' => '',
8296     ),
8297     'timestamp' => array(
8298       'type' => 'int',
8299       'not null' => TRUE,
8300       'size' => 'normal',
8301       'default' => '0',
8302     ),
8303   ),
8304   'primary key' => array(
8305     'fid',
8306   ),
8307   'mysql_character_set' => 'utf8',
8308 ));
8309
8310 $connection->schema()->createTable('forum', array(
8311   'fields' => array(
8312     'nid' => array(
8313       'type' => 'int',
8314       'not null' => TRUE,
8315       'size' => 'normal',
8316       'default' => '0',
8317       'unsigned' => TRUE,
8318     ),
8319     'vid' => array(
8320       'type' => 'int',
8321       'not null' => TRUE,
8322       'size' => 'normal',
8323       'default' => '0',
8324       'unsigned' => TRUE,
8325     ),
8326     'tid' => array(
8327       'type' => 'int',
8328       'not null' => TRUE,
8329       'size' => 'normal',
8330       'default' => '0',
8331       'unsigned' => TRUE,
8332     ),
8333   ),
8334   'primary key' => array(
8335     'vid',
8336   ),
8337   'indexes' => array(
8338     'nid' => array(
8339       'nid',
8340     ),
8341     'tid' => array(
8342       'tid',
8343     ),
8344   ),
8345   'mysql_character_set' => 'utf8',
8346 ));
8347
8348 $connection->schema()->createTable('history', array(
8349   'fields' => array(
8350     'uid' => array(
8351       'type' => 'int',
8352       'not null' => TRUE,
8353       'size' => 'normal',
8354       'default' => '0',
8355     ),
8356     'nid' => array(
8357       'type' => 'int',
8358       'not null' => TRUE,
8359       'size' => 'normal',
8360       'default' => '0',
8361     ),
8362     'timestamp' => array(
8363       'type' => 'int',
8364       'not null' => TRUE,
8365       'size' => 'normal',
8366       'default' => '0',
8367     ),
8368   ),
8369   'primary key' => array(
8370     'uid',
8371     'nid',
8372   ),
8373   'mysql_character_set' => 'utf8',
8374 ));
8375
8376 $connection->insert('history')
8377 ->fields(array(
8378   'uid',
8379   'nid',
8380   'timestamp',
8381 ))
8382 ->values(array(
8383   'uid' => '1',
8384   'nid' => '3',
8385   'timestamp' => '1457654737',
8386 ))
8387 ->values(array(
8388   'uid' => '1',
8389   'nid' => '9',
8390   'timestamp' => '1468384961',
8391 ))
8392 ->values(array(
8393   'uid' => '1',
8394   'nid' => '12',
8395   'timestamp' => '1468384823',
8396 ))
8397 ->values(array(
8398   'uid' => '1',
8399   'nid' => '13',
8400   'timestamp' => '1468384931',
8401 ))
8402 ->values(array(
8403   'uid' => '1',
8404   'nid' => '14',
8405   'timestamp' => '1493066668',
8406 ))
8407 ->values(array(
8408   'uid' => '1',
8409   'nid' => '15',
8410   'timestamp' => '1493066677',
8411 ))
8412 ->values(array(
8413   'uid' => '1',
8414   'nid' => '16',
8415   'timestamp' => '1493066685',
8416 ))
8417 ->values(array(
8418   'uid' => '1',
8419   'nid' => '17',
8420   'timestamp' => '1493066693',
8421 ))
8422 ->values(array(
8423   'uid' => '1',
8424   'nid' => '18',
8425   'timestamp' => '1493066711',
8426 ))
8427 ->execute();
8428
8429 $connection->schema()->createTable('i18n_blocks', array(
8430   'fields' => array(
8431     'ibid' => array(
8432       'type' => 'serial',
8433       'not null' => TRUE,
8434       'size' => 'normal',
8435       'unsigned' => TRUE,
8436     ),
8437     'module' => array(
8438       'type' => 'varchar',
8439       'not null' => TRUE,
8440       'length' => '64',
8441     ),
8442     'delta' => array(
8443       'type' => 'varchar',
8444       'not null' => TRUE,
8445       'length' => '32',
8446       'default' => '0',
8447     ),
8448     'type' => array(
8449       'type' => 'int',
8450       'not null' => TRUE,
8451       'size' => 'normal',
8452       'default' => '0',
8453     ),
8454     'language' => array(
8455       'type' => 'varchar',
8456       'not null' => TRUE,
8457       'length' => '12',
8458       'default' => '',
8459     ),
8460   ),
8461   'primary key' => array(
8462     'ibid',
8463   ),
8464   'mysql_character_set' => 'utf8',
8465 ));
8466
8467 $connection->schema()->createTable('i18n_strings', array(
8468   'fields' => array(
8469     'lid' => array(
8470       'type' => 'int',
8471       'not null' => TRUE,
8472       'size' => 'normal',
8473       'default' => '0',
8474     ),
8475     'objectid' => array(
8476       'type' => 'varchar',
8477       'not null' => TRUE,
8478       'length' => '255',
8479       'default' => '',
8480     ),
8481     'type' => array(
8482       'type' => 'varchar',
8483       'not null' => TRUE,
8484       'length' => '255',
8485       'default' => '',
8486     ),
8487     'property' => array(
8488       'type' => 'varchar',
8489       'not null' => TRUE,
8490       'length' => '255',
8491       'default' => '',
8492     ),
8493     'objectindex' => array(
8494       'type' => 'int',
8495       'not null' => TRUE,
8496       'size' => 'normal',
8497       'default' => '0',
8498     ),
8499     'format' => array(
8500       'type' => 'int',
8501       'not null' => TRUE,
8502       'size' => 'normal',
8503       'default' => '0',
8504     ),
8505   ),
8506   'primary key' => array(
8507     'lid',
8508   ),
8509   'mysql_character_set' => 'utf8',
8510 ));
8511
8512 $connection->insert('i18n_strings')
8513 ->fields(array(
8514   'lid',
8515   'objectid',
8516   'type',
8517   'property',
8518   'objectindex',
8519   'format',
8520 ))
8521 ->values(array(
8522   'lid' => '504',
8523   'objectid' => 'profile_color',
8524   'type' => 'field',
8525   'property' => 'title',
8526   'objectindex' => '0',
8527   'format' => '0',
8528 ))
8529 ->values(array(
8530   'lid' => '505',
8531   'objectid' => 'profile_color',
8532   'type' => 'field',
8533   'property' => 'explanation',
8534   'objectindex' => '0',
8535   'format' => '0',
8536 ))
8537 ->values(array(
8538   'lid' => '506',
8539   'objectid' => '',
8540   'type' => 'category',
8541   'property' => '',
8542   'objectindex' => '0',
8543   'format' => '0',
8544 ))
8545 ->values(array(
8546   'lid' => '507',
8547   'objectid' => 'profile_biography',
8548   'type' => 'field',
8549   'property' => 'title',
8550   'objectindex' => '0',
8551   'format' => '0',
8552 ))
8553 ->values(array(
8554   'lid' => '508',
8555   'objectid' => 'profile_biography',
8556   'type' => 'field',
8557   'property' => 'explanation',
8558   'objectindex' => '0',
8559   'format' => '0',
8560 ))
8561 ->values(array(
8562   'lid' => '509',
8563   'objectid' => 'profile_sell_address',
8564   'type' => 'field',
8565   'property' => 'title',
8566   'objectindex' => '0',
8567   'format' => '0',
8568 ))
8569 ->values(array(
8570   'lid' => '510',
8571   'objectid' => 'profile_sell_address',
8572   'type' => 'field',
8573   'property' => 'explanation',
8574   'objectindex' => '0',
8575   'format' => '0',
8576 ))
8577 ->values(array(
8578   'lid' => '511',
8579   'objectid' => '',
8580   'type' => 'category',
8581   'property' => '',
8582   'objectindex' => '0',
8583   'format' => '0',
8584 ))
8585 ->values(array(
8586   'lid' => '512',
8587   'objectid' => 'profile_sold_to',
8588   'type' => 'field',
8589   'property' => 'title',
8590   'objectindex' => '0',
8591   'format' => '0',
8592 ))
8593 ->values(array(
8594   'lid' => '513',
8595   'objectid' => 'profile_sold_to',
8596   'type' => 'field',
8597   'property' => 'explanation',
8598   'objectindex' => '0',
8599   'format' => '0',
8600 ))
8601 ->values(array(
8602   'lid' => '514',
8603   'objectid' => 'profile_sold_to',
8604   'type' => 'field',
8605   'property' => 'options',
8606   'objectindex' => '0',
8607   'format' => '0',
8608 ))
8609 ->values(array(
8610   'lid' => '515',
8611   'objectid' => '',
8612   'type' => 'category',
8613   'property' => '',
8614   'objectindex' => '0',
8615   'format' => '0',
8616 ))
8617 ->values(array(
8618   'lid' => '516',
8619   'objectid' => 'profile_bands',
8620   'type' => 'field',
8621   'property' => 'title',
8622   'objectindex' => '0',
8623   'format' => '0',
8624 ))
8625 ->values(array(
8626   'lid' => '517',
8627   'objectid' => 'profile_bands',
8628   'type' => 'field',
8629   'property' => 'explanation',
8630   'objectindex' => '0',
8631   'format' => '0',
8632 ))
8633 ->values(array(
8634   'lid' => '518',
8635   'objectid' => 'profile_birthdate',
8636   'type' => 'field',
8637   'property' => 'title',
8638   'objectindex' => '0',
8639   'format' => '0',
8640 ))
8641 ->values(array(
8642   'lid' => '519',
8643   'objectid' => 'profile_birthdate',
8644   'type' => 'field',
8645   'property' => 'explanation',
8646   'objectindex' => '0',
8647   'format' => '0',
8648 ))
8649 ->values(array(
8650   'lid' => '520',
8651   'objectid' => 'profile_love_migrations',
8652   'type' => 'field',
8653   'property' => 'title',
8654   'objectindex' => '0',
8655   'format' => '0',
8656 ))
8657 ->values(array(
8658   'lid' => '521',
8659   'objectid' => 'profile_love_migrations',
8660   'type' => 'field',
8661   'property' => 'explanation',
8662   'objectindex' => '0',
8663   'format' => '0',
8664 ))
8665 ->values(array(
8666   'lid' => '522',
8667   'objectid' => 'profile_blog',
8668   'type' => 'field',
8669   'property' => 'title',
8670   'objectindex' => '0',
8671   'format' => '0',
8672 ))
8673 ->values(array(
8674   'lid' => '523',
8675   'objectid' => 'profile_blog',
8676   'type' => 'field',
8677   'property' => 'explanation',
8678   'objectindex' => '0',
8679   'format' => '0',
8680 ))
8681 ->values(array(
8682   'lid' => '524',
8683   'objectid' => '1',
8684   'type' => 'block',
8685   'property' => 'title',
8686   'objectindex' => '1',
8687   'format' => '0',
8688 ))
8689 ->values(array(
8690   'lid' => '525',
8691   'objectid' => '1',
8692   'type' => 'block',
8693   'property' => 'body',
8694   'objectindex' => '1',
8695   'format' => '2',
8696 ))
8697 ->values(array(
8698   'lid' => '526',
8699   'objectid' => '2',
8700   'type' => 'block',
8701   'property' => 'title',
8702   'objectindex' => '2',
8703   'format' => '0',
8704 ))
8705 ->values(array(
8706   'lid' => '527',
8707   'objectid' => '2',
8708   'type' => 'block',
8709   'property' => 'body',
8710   'objectindex' => '2',
8711   'format' => '2',
8712 ))
8713 ->values(array(
8714   'lid' => '528',
8715   'objectid' => '4',
8716   'type' => 'vocabulary',
8717   'property' => 'name',
8718   'objectindex' => '4',
8719   'format' => '0',
8720 ))
8721 ->values(array(
8722   'lid' => '529',
8723   'objectid' => '1',
8724   'type' => 'vocabulary',
8725   'property' => 'name',
8726   'objectindex' => '1',
8727   'format' => '0',
8728 ))
8729 ->values(array(
8730   'lid' => '530',
8731   'objectid' => '2',
8732   'type' => 'vocabulary',
8733   'property' => 'name',
8734   'objectindex' => '2',
8735   'format' => '0',
8736 ))
8737 ->values(array(
8738   'lid' => '531',
8739   'objectid' => '3',
8740   'type' => 'vocabulary',
8741   'property' => 'name',
8742   'objectindex' => '3',
8743   'format' => '0',
8744 ))
8745 ->values(array(
8746   'lid' => '532',
8747   'objectid' => '5',
8748   'type' => 'vocabulary',
8749   'property' => 'name',
8750   'objectindex' => '5',
8751   'format' => '0',
8752 ))
8753 ->values(array(
8754   'lid' => '533',
8755   'objectid' => 'article',
8756   'type' => 'type',
8757   'property' => 'name',
8758   'objectindex' => '0',
8759   'format' => '0',
8760 ))
8761 ->values(array(
8762   'lid' => '534',
8763   'objectid' => 'article',
8764   'type' => 'type',
8765   'property' => 'title',
8766   'objectindex' => '0',
8767   'format' => '0',
8768 ))
8769 ->values(array(
8770   'lid' => '535',
8771   'objectid' => 'article',
8772   'type' => 'type',
8773   'property' => 'body',
8774   'objectindex' => '0',
8775   'format' => '0',
8776 ))
8777 ->values(array(
8778   'lid' => '536',
8779   'objectid' => 'article',
8780   'type' => 'type',
8781   'property' => 'description',
8782   'objectindex' => '0',
8783   'format' => '0',
8784 ))
8785 ->values(array(
8786   'lid' => '537',
8787   'objectid' => 'company',
8788   'type' => 'type',
8789   'property' => 'name',
8790   'objectindex' => '0',
8791   'format' => '0',
8792 ))
8793 ->values(array(
8794   'lid' => '538',
8795   'objectid' => 'company',
8796   'type' => 'type',
8797   'property' => 'title',
8798   'objectindex' => '0',
8799   'format' => '0',
8800 ))
8801 ->values(array(
8802   'lid' => '539',
8803   'objectid' => 'company',
8804   'type' => 'type',
8805   'property' => 'body',
8806   'objectindex' => '0',
8807   'format' => '0',
8808 ))
8809 ->values(array(
8810   'lid' => '540',
8811   'objectid' => 'company',
8812   'type' => 'type',
8813   'property' => 'description',
8814   'objectindex' => '0',
8815   'format' => '0',
8816 ))
8817 ->values(array(
8818   'lid' => '541',
8819   'objectid' => 'employee',
8820   'type' => 'type',
8821   'property' => 'name',
8822   'objectindex' => '0',
8823   'format' => '0',
8824 ))
8825 ->values(array(
8826   'lid' => '542',
8827   'objectid' => 'employee',
8828   'type' => 'type',
8829   'property' => 'title',
8830   'objectindex' => '0',
8831   'format' => '0',
8832 ))
8833 ->values(array(
8834   'lid' => '543',
8835   'objectid' => 'employee',
8836   'type' => 'type',
8837   'property' => 'body',
8838   'objectindex' => '0',
8839   'format' => '0',
8840 ))
8841 ->values(array(
8842   'lid' => '544',
8843   'objectid' => 'employee',
8844   'type' => 'type',
8845   'property' => 'description',
8846   'objectindex' => '0',
8847   'format' => '0',
8848 ))
8849 ->values(array(
8850   'lid' => '545',
8851   'objectid' => 'sponsor',
8852   'type' => 'type',
8853   'property' => 'name',
8854   'objectindex' => '0',
8855   'format' => '0',
8856 ))
8857 ->values(array(
8858   'lid' => '546',
8859   'objectid' => 'sponsor',
8860   'type' => 'type',
8861   'property' => 'title',
8862   'objectindex' => '0',
8863   'format' => '0',
8864 ))
8865 ->values(array(
8866   'lid' => '547',
8867   'objectid' => 'sponsor',
8868   'type' => 'type',
8869   'property' => 'body',
8870   'objectindex' => '0',
8871   'format' => '0',
8872 ))
8873 ->values(array(
8874   'lid' => '548',
8875   'objectid' => 'sponsor',
8876   'type' => 'type',
8877   'property' => 'description',
8878   'objectindex' => '0',
8879   'format' => '0',
8880 ))
8881 ->values(array(
8882   'lid' => '549',
8883   'objectid' => 'story',
8884   'type' => 'type',
8885   'property' => 'name',
8886   'objectindex' => '0',
8887   'format' => '0',
8888 ))
8889 ->values(array(
8890   'lid' => '550',
8891   'objectid' => 'story',
8892   'type' => 'type',
8893   'property' => 'title',
8894   'objectindex' => '0',
8895   'format' => '0',
8896 ))
8897 ->values(array(
8898   'lid' => '551',
8899   'objectid' => 'story',
8900   'type' => 'type',
8901   'property' => 'body',
8902   'objectindex' => '0',
8903   'format' => '0',
8904 ))
8905 ->values(array(
8906   'lid' => '552',
8907   'objectid' => 'story',
8908   'type' => 'type',
8909   'property' => 'description',
8910   'objectindex' => '0',
8911   'format' => '0',
8912 ))
8913 ->values(array(
8914   'lid' => '553',
8915   'objectid' => 'test_event',
8916   'type' => 'type',
8917   'property' => 'name',
8918   'objectindex' => '0',
8919   'format' => '0',
8920 ))
8921 ->values(array(
8922   'lid' => '554',
8923   'objectid' => 'test_event',
8924   'type' => 'type',
8925   'property' => 'title',
8926   'objectindex' => '0',
8927   'format' => '0',
8928 ))
8929 ->values(array(
8930   'lid' => '555',
8931   'objectid' => 'test_event',
8932   'type' => 'type',
8933   'property' => 'body',
8934   'objectindex' => '0',
8935   'format' => '0',
8936 ))
8937 ->values(array(
8938   'lid' => '556',
8939   'objectid' => 'test_event',
8940   'type' => 'type',
8941   'property' => 'description',
8942   'objectindex' => '0',
8943   'format' => '0',
8944 ))
8945 ->values(array(
8946   'lid' => '558',
8947   'objectid' => 'test_page',
8948   'type' => 'type',
8949   'property' => 'name',
8950   'objectindex' => '0',
8951   'format' => '0',
8952 ))
8953 ->values(array(
8954   'lid' => '559',
8955   'objectid' => 'test_page',
8956   'type' => 'type',
8957   'property' => 'title',
8958   'objectindex' => '0',
8959   'format' => '0',
8960 ))
8961 ->values(array(
8962   'lid' => '560',
8963   'objectid' => 'test_page',
8964   'type' => 'type',
8965   'property' => 'body',
8966   'objectindex' => '0',
8967   'format' => '0',
8968 ))
8969 ->values(array(
8970   'lid' => '561',
8971   'objectid' => 'test_page',
8972   'type' => 'type',
8973   'property' => 'description',
8974   'objectindex' => '0',
8975   'format' => '0',
8976 ))
8977 ->values(array(
8978   'lid' => '562',
8979   'objectid' => 'test_planet',
8980   'type' => 'type',
8981   'property' => 'name',
8982   'objectindex' => '0',
8983   'format' => '0',
8984 ))
8985 ->values(array(
8986   'lid' => '563',
8987   'objectid' => 'test_planet',
8988   'type' => 'type',
8989   'property' => 'title',
8990   'objectindex' => '0',
8991   'format' => '0',
8992 ))
8993 ->values(array(
8994   'lid' => '564',
8995   'objectid' => 'test_planet',
8996   'type' => 'type',
8997   'property' => 'body',
8998   'objectindex' => '0',
8999   'format' => '0',
9000 ))
9001 ->values(array(
9002   'lid' => '565',
9003   'objectid' => 'test_planet',
9004   'type' => 'type',
9005   'property' => 'description',
9006   'objectindex' => '0',
9007   'format' => '0',
9008 ))
9009 ->values(array(
9010   'lid' => '566',
9011   'objectid' => 'test_story',
9012   'type' => 'type',
9013   'property' => 'name',
9014   'objectindex' => '0',
9015   'format' => '0',
9016 ))
9017 ->values(array(
9018   'lid' => '567',
9019   'objectid' => 'test_story',
9020   'type' => 'type',
9021   'property' => 'title',
9022   'objectindex' => '0',
9023   'format' => '0',
9024 ))
9025 ->values(array(
9026   'lid' => '568',
9027   'objectid' => 'test_story',
9028   'type' => 'type',
9029   'property' => 'body',
9030   'objectindex' => '0',
9031   'format' => '0',
9032 ))
9033 ->values(array(
9034   'lid' => '569',
9035   'objectid' => 'test_story',
9036   'type' => 'type',
9037   'property' => 'description',
9038   'objectindex' => '0',
9039   'format' => '0',
9040 ))
9041 ->values(array(
9042   'lid' => '570',
9043   'objectid' => 'story-field_test_exclude_unset',
9044   'type' => 'field',
9045   'property' => 'widget_label',
9046   'objectindex' => '0',
9047   'format' => '0',
9048 ))
9049 ->values(array(
9050   'lid' => '571',
9051   'objectid' => 'story-field_test_exclude_unset',
9052   'type' => 'field',
9053   'property' => 'widget_description',
9054   'objectindex' => '0',
9055   'format' => '0',
9056 ))
9057 ->values(array(
9058   'lid' => '572',
9059   'objectid' => 'story-field_test_two',
9060   'type' => 'field',
9061   'property' => 'widget_label',
9062   'objectindex' => '0',
9063   'format' => '0',
9064 ))
9065 ->values(array(
9066   'lid' => '573',
9067   'objectid' => 'story-field_test_two',
9068   'type' => 'field',
9069   'property' => 'widget_description',
9070   'objectindex' => '0',
9071   'format' => '0',
9072 ))
9073 ->values(array(
9074   'lid' => '574',
9075   'objectid' => 'story-field_test',
9076   'type' => 'field',
9077   'property' => 'widget_label',
9078   'objectindex' => '0',
9079   'format' => '0',
9080 ))
9081 ->values(array(
9082   'lid' => '575',
9083   'objectid' => 'story-field_test',
9084   'type' => 'field',
9085   'property' => 'widget_description',
9086   'objectindex' => '0',
9087   'format' => '0',
9088 ))
9089 ->values(array(
9090   'lid' => '576',
9091   'objectid' => 'story-field_test_three',
9092   'type' => 'field',
9093   'property' => 'widget_label',
9094   'objectindex' => '0',
9095   'format' => '0',
9096 ))
9097 ->values(array(
9098   'lid' => '577',
9099   'objectid' => 'story-field_test_three',
9100   'type' => 'field',
9101   'property' => 'widget_description',
9102   'objectindex' => '0',
9103   'format' => '0',
9104 ))
9105 ->values(array(
9106   'lid' => '578',
9107   'objectid' => 'story-field_test_four',
9108   'type' => 'field',
9109   'property' => 'widget_label',
9110   'objectindex' => '0',
9111   'format' => '0',
9112 ))
9113 ->values(array(
9114   'lid' => '579',
9115   'objectid' => 'story-field_test_four',
9116   'type' => 'field',
9117   'property' => 'widget_description',
9118   'objectindex' => '0',
9119   'format' => '0',
9120 ))
9121 ->values(array(
9122   'lid' => '580',
9123   'objectid' => 'story-field_test_identical1',
9124   'type' => 'field',
9125   'property' => 'widget_label',
9126   'objectindex' => '0',
9127   'format' => '0',
9128 ))
9129 ->values(array(
9130   'lid' => '581',
9131   'objectid' => 'story-field_test_identical1',
9132   'type' => 'field',
9133   'property' => 'widget_description',
9134   'objectindex' => '0',
9135   'format' => '0',
9136 ))
9137 ->values(array(
9138   'lid' => '582',
9139   'objectid' => 'story-field_test_identical2',
9140   'type' => 'field',
9141   'property' => 'widget_label',
9142   'objectindex' => '0',
9143   'format' => '0',
9144 ))
9145 ->values(array(
9146   'lid' => '583',
9147   'objectid' => 'story-field_test_identical2',
9148   'type' => 'field',
9149   'property' => 'widget_description',
9150   'objectindex' => '0',
9151   'format' => '0',
9152 ))
9153 ->values(array(
9154   'lid' => '584',
9155   'objectid' => 'story-field_test_email',
9156   'type' => 'field',
9157   'property' => 'widget_label',
9158   'objectindex' => '0',
9159   'format' => '0',
9160 ))
9161 ->values(array(
9162   'lid' => '585',
9163   'objectid' => 'story-field_test_email',
9164   'type' => 'field',
9165   'property' => 'widget_description',
9166   'objectindex' => '0',
9167   'format' => '0',
9168 ))
9169 ->values(array(
9170   'lid' => '586',
9171   'objectid' => 'story-field_test_link',
9172   'type' => 'field',
9173   'property' => 'widget_label',
9174   'objectindex' => '0',
9175   'format' => '0',
9176 ))
9177 ->values(array(
9178   'lid' => '587',
9179   'objectid' => 'story-field_test_link',
9180   'type' => 'field',
9181   'property' => 'widget_description',
9182   'objectindex' => '0',
9183   'format' => '0',
9184 ))
9185 ->values(array(
9186   'lid' => '588',
9187   'objectid' => 'story-field_test_filefield',
9188   'type' => 'field',
9189   'property' => 'widget_label',
9190   'objectindex' => '0',
9191   'format' => '0',
9192 ))
9193 ->values(array(
9194   'lid' => '589',
9195   'objectid' => 'story-field_test_filefield',
9196   'type' => 'field',
9197   'property' => 'widget_description',
9198   'objectindex' => '0',
9199   'format' => '0',
9200 ))
9201 ->values(array(
9202   'lid' => '590',
9203   'objectid' => 'story-field_test_imagefield',
9204   'type' => 'field',
9205   'property' => 'widget_label',
9206   'objectindex' => '0',
9207   'format' => '0',
9208 ))
9209 ->values(array(
9210   'lid' => '591',
9211   'objectid' => 'story-field_test_imagefield',
9212   'type' => 'field',
9213   'property' => 'widget_description',
9214   'objectindex' => '0',
9215   'format' => '0',
9216 ))
9217 ->values(array(
9218   'lid' => '592',
9219   'objectid' => 'story-field_test_date',
9220   'type' => 'field',
9221   'property' => 'widget_label',
9222   'objectindex' => '0',
9223   'format' => '0',
9224 ))
9225 ->values(array(
9226   'lid' => '593',
9227   'objectid' => 'story-field_test_date',
9228   'type' => 'field',
9229   'property' => 'widget_description',
9230   'objectindex' => '0',
9231   'format' => '0',
9232 ))
9233 ->values(array(
9234   'lid' => '594',
9235   'objectid' => 'story-field_test_datestamp',
9236   'type' => 'field',
9237   'property' => 'widget_label',
9238   'objectindex' => '0',
9239   'format' => '0',
9240 ))
9241 ->values(array(
9242   'lid' => '595',
9243   'objectid' => 'story-field_test_datestamp',
9244   'type' => 'field',
9245   'property' => 'widget_description',
9246   'objectindex' => '0',
9247   'format' => '0',
9248 ))
9249 ->values(array(
9250   'lid' => '596',
9251   'objectid' => 'story-field_test_datetime',
9252   'type' => 'field',
9253   'property' => 'widget_label',
9254   'objectindex' => '0',
9255   'format' => '0',
9256 ))
9257 ->values(array(
9258   'lid' => '597',
9259   'objectid' => 'story-field_test_datetime',
9260   'type' => 'field',
9261   'property' => 'widget_description',
9262   'objectindex' => '0',
9263   'format' => '0',
9264 ))
9265 ->values(array(
9266   'lid' => '598',
9267   'objectid' => 'story-field_test_phone',
9268   'type' => 'field',
9269   'property' => 'widget_label',
9270   'objectindex' => '0',
9271   'format' => '0',
9272 ))
9273 ->values(array(
9274   'lid' => '599',
9275   'objectid' => 'story-field_test_phone',
9276   'type' => 'field',
9277   'property' => 'widget_description',
9278   'objectindex' => '0',
9279   'format' => '0',
9280 ))
9281 ->values(array(
9282   'lid' => '600',
9283   'objectid' => 'story-field_test_decimal_radio_buttons',
9284   'type' => 'field',
9285   'property' => 'widget_label',
9286   'objectindex' => '0',
9287   'format' => '0',
9288 ))
9289 ->values(array(
9290   'lid' => '601',
9291   'objectid' => 'story-field_test_decimal_radio_buttons',
9292   'type' => 'field',
9293   'property' => 'widget_description',
9294   'objectindex' => '0',
9295   'format' => '0',
9296 ))
9297 ->values(array(
9298   'lid' => '602',
9299   'objectid' => 'field_test_decimal_radio_buttons',
9300   'type' => 'field',
9301   'property' => 'option_1.2',
9302   'objectindex' => '0',
9303   'format' => '0',
9304 ))
9305 ->values(array(
9306   'lid' => '603',
9307   'objectid' => 'field_test_decimal_radio_buttons',
9308   'type' => 'field',
9309   'property' => 'option_2.1',
9310   'objectindex' => '0',
9311   'format' => '0',
9312 ))
9313 ->values(array(
9314   'lid' => '604',
9315   'objectid' => 'story-field_test_float_single_checkbox',
9316   'type' => 'field',
9317   'property' => 'widget_label',
9318   'objectindex' => '0',
9319   'format' => '0',
9320 ))
9321 ->values(array(
9322   'lid' => '605',
9323   'objectid' => 'story-field_test_float_single_checkbox',
9324   'type' => 'field',
9325   'property' => 'widget_description',
9326   'objectindex' => '0',
9327   'format' => '0',
9328 ))
9329 ->values(array(
9330   'lid' => '606',
9331   'objectid' => 'field_test_float_single_checkbox',
9332   'type' => 'field',
9333   'property' => 'option_3.142',
9334   'objectindex' => '0',
9335   'format' => '0',
9336 ))
9337 ->values(array(
9338   'lid' => '607',
9339   'objectid' => 'field_test_float_single_checkbox',
9340   'type' => 'field',
9341   'property' => 'option_1.234',
9342   'objectindex' => '0',
9343   'format' => '0',
9344 ))
9345 ->values(array(
9346   'lid' => '608',
9347   'objectid' => 'story-field_test_integer_selectlist',
9348   'type' => 'field',
9349   'property' => 'widget_label',
9350   'objectindex' => '0',
9351   'format' => '0',
9352 ))
9353 ->values(array(
9354   'lid' => '609',
9355   'objectid' => 'story-field_test_integer_selectlist',
9356   'type' => 'field',
9357   'property' => 'widget_description',
9358   'objectindex' => '0',
9359   'format' => '0',
9360 ))
9361 ->values(array(
9362   'lid' => '610',
9363   'objectid' => 'field_test_integer_selectlist',
9364   'type' => 'field',
9365   'property' => 'option_1234',
9366   'objectindex' => '0',
9367   'format' => '0',
9368 ))
9369 ->values(array(
9370   'lid' => '611',
9371   'objectid' => 'field_test_integer_selectlist',
9372   'type' => 'field',
9373   'property' => 'option_2341',
9374   'objectindex' => '0',
9375   'format' => '0',
9376 ))
9377 ->values(array(
9378   'lid' => '612',
9379   'objectid' => 'field_test_integer_selectlist',
9380   'type' => 'field',
9381   'property' => 'option_3412',
9382   'objectindex' => '0',
9383   'format' => '0',
9384 ))
9385 ->values(array(
9386   'lid' => '613',
9387   'objectid' => 'field_test_integer_selectlist',
9388   'type' => 'field',
9389   'property' => 'option_4123',
9390   'objectindex' => '0',
9391   'format' => '0',
9392 ))
9393 ->values(array(
9394   'lid' => '614',
9395   'objectid' => 'story-field_test_text_single_checkbox',
9396   'type' => 'field',
9397   'property' => 'widget_label',
9398   'objectindex' => '0',
9399   'format' => '0',
9400 ))
9401 ->values(array(
9402   'lid' => '615',
9403   'objectid' => 'story-field_test_text_single_checkbox',
9404   'type' => 'field',
9405   'property' => 'widget_description',
9406   'objectindex' => '0',
9407   'format' => '0',
9408 ))
9409 ->values(array(
9410   'lid' => '616',
9411   'objectid' => 'field_test_text_single_checkbox',
9412   'type' => 'field',
9413   'property' => 'option_0',
9414   'objectindex' => '0',
9415   'format' => '0',
9416 ))
9417 ->values(array(
9418   'lid' => '617',
9419   'objectid' => 'field_test_text_single_checkbox',
9420   'type' => 'field',
9421   'property' => 'option_1',
9422   'objectindex' => '0',
9423   'format' => '0',
9424 ))
9425 ->values(array(
9426   'lid' => '618',
9427   'objectid' => 'story-field_test_text_single_checkbox2',
9428   'type' => 'field',
9429   'property' => 'widget_label',
9430   'objectindex' => '0',
9431   'format' => '0',
9432 ))
9433 ->values(array(
9434   'lid' => '619',
9435   'objectid' => 'story-field_test_text_single_checkbox2',
9436   'type' => 'field',
9437   'property' => 'widget_description',
9438   'objectindex' => '0',
9439   'format' => '0',
9440 ))
9441 ->values(array(
9442   'lid' => '620',
9443   'objectid' => 'field_test_text_single_checkbox2',
9444   'type' => 'field',
9445   'property' => 'option_Off',
9446   'objectindex' => '0',
9447   'format' => '0',
9448 ))
9449 ->values(array(
9450   'lid' => '621',
9451   'objectid' => 'field_test_text_single_checkbox2',
9452   'type' => 'field',
9453   'property' => 'option_Hello',
9454   'objectindex' => '0',
9455   'format' => '0',
9456 ))
9457 ->values(array(
9458   'lid' => '622',
9459   'objectid' => 'test_page-field_test',
9460   'type' => 'field',
9461   'property' => 'widget_label',
9462   'objectindex' => '0',
9463   'format' => '0',
9464 ))
9465 ->values(array(
9466   'lid' => '623',
9467   'objectid' => 'test_page-field_test',
9468   'type' => 'field',
9469   'property' => 'widget_description',
9470   'objectindex' => '0',
9471   'format' => '0',
9472 ))
9473 ->values(array(
9474   'lid' => '624',
9475   'objectid' => 'test_planet-field_multivalue',
9476   'type' => 'field',
9477   'property' => 'widget_label',
9478   'objectindex' => '0',
9479   'format' => '0',
9480 ))
9481 ->values(array(
9482   'lid' => '625',
9483   'objectid' => 'test_planet-field_multivalue',
9484   'type' => 'field',
9485   'property' => 'widget_description',
9486   'objectindex' => '0',
9487   'format' => '0',
9488 ))
9489 ->values(array(
9490   'lid' => '626',
9491   'objectid' => 'test_planet-field_test_text_single_checkbox',
9492   'type' => 'field',
9493   'property' => 'widget_label',
9494   'objectindex' => '0',
9495   'format' => '0',
9496 ))
9497 ->values(array(
9498   'lid' => '627',
9499   'objectid' => 'test_planet-field_test_text_single_checkbox',
9500   'type' => 'field',
9501   'property' => 'widget_description',
9502   'objectindex' => '0',
9503   'format' => '0',
9504 ))
9505 ->values(array(
9506   'lid' => '633',
9507   'objectid' => '140',
9508   'type' => 'item',
9509   'property' => 'title',
9510   'objectindex' => '140',
9511   'format' => '0',
9512 ))
9513 ->values(array(
9514   'lid' => '634',
9515   'objectid' => '139',
9516   'type' => 'item',
9517   'property' => 'title',
9518   'objectindex' => '139',
9519   'format' => '0',
9520 ))
9521 ->values(array(
9522   'lid' => '635',
9523   'objectid' => '139',
9524   'type' => 'item',
9525   'property' => 'description',
9526   'objectindex' => '139',
9527   'format' => '0',
9528 ))
9529 ->values(array(
9530   'lid' => '1664',
9531   'objectid' => 'forum',
9532   'type' => 'type',
9533   'property' => 'name',
9534   'objectindex' => '0',
9535   'format' => '0',
9536 ))
9537 ->values(array(
9538   'lid' => '1665',
9539   'objectid' => 'forum',
9540   'type' => 'type',
9541   'property' => 'title',
9542   'objectindex' => '0',
9543   'format' => '0',
9544 ))
9545 ->values(array(
9546   'lid' => '1666',
9547   'objectid' => 'forum',
9548   'type' => 'type',
9549   'property' => 'body',
9550   'objectindex' => '0',
9551   'format' => '0',
9552 ))
9553 ->values(array(
9554   'lid' => '1667',
9555   'objectid' => 'forum',
9556   'type' => 'type',
9557   'property' => 'description',
9558   'objectindex' => '0',
9559   'format' => '0',
9560 ))
9561 ->execute();
9562
9563 $connection->schema()->createTable('i18n_variable', array(
9564   'fields' => array(
9565     'name' => array(
9566       'type' => 'varchar',
9567       'not null' => TRUE,
9568       'length' => '128',
9569       'default' => '',
9570     ),
9571     'language' => array(
9572       'type' => 'varchar',
9573       'not null' => TRUE,
9574       'length' => '12',
9575       'default' => '',
9576     ),
9577     'value' => array(
9578       'type' => 'text',
9579       'not null' => TRUE,
9580       'size' => 'big',
9581     ),
9582   ),
9583   'primary key' => array(
9584     'name',
9585     'language',
9586   ),
9587   'mysql_character_set' => 'utf8',
9588 ));
9589
9590 $connection->insert('i18n_variable')
9591 ->fields(array(
9592   'name',
9593   'language',
9594   'value',
9595 ))
9596 ->values(array(
9597   'name' => 'array_filter',
9598   'language' => 'en',
9599   'value' => 'b:1;',
9600 ))
9601 ->values(array(
9602   'name' => 'i18nstrings_allowed_formats',
9603   'language' => 'en',
9604   'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
9605 ))
9606 ->values(array(
9607   'name' => 'statistics_count_content_views',
9608   'language' => 'en',
9609   'value' => 's:1:"1";',
9610 ))
9611 ->values(array(
9612   'name' => 'statistics_enable_access_log',
9613   'language' => 'en',
9614   'value' => 's:1:"0";',
9615 ))
9616 ->values(array(
9617   'name' => 'statistics_flush_accesslog_timer',
9618   'language' => 'en',
9619   'value' => 's:6:"259200";',
9620 ))
9621 ->values(array(
9622   'name' => 'anonymous',
9623   'language' => 'fr',
9624   'value' => 's:8:"fr Guest";',
9625 ))
9626 ->values(array(
9627   'name' => 'error_level',
9628   'language' => 'fr',
9629   'value' => 's:1:"1";',
9630 ))
9631 ->values(array(
9632   'name' => 'site_403',
9633   'language' => 'fr',
9634   'value' => 's:7:"fr-user";',
9635 ))
9636 ->values(array(
9637   'name' => 'site_404',
9638   'language' => 'fr',
9639   'value' => 's:17:"fr-page-not-found";',
9640 ))
9641 ->values(array(
9642   'name' => 'site_footer',
9643   'language' => 'fr',
9644   'value' => 's:0:"";',
9645 ))
9646 ->values(array(
9647   'name' => 'site_frontpage',
9648   'language' => 'fr',
9649   'value' => 's:4:"node";',
9650 ))
9651 ->values(array(
9652   'name' => 'site_mail',
9653   'language' => 'fr',
9654   'value' => 's:24:"fr_site_mail@example.com";',
9655 ))
9656 ->values(array(
9657   'name' => 'site_mission',
9658   'language' => 'fr',
9659   'value' => 's:0:"";',
9660 ))
9661 ->values(array(
9662   'name' => 'site_name',
9663   'language' => 'fr',
9664   'value' => 's:12:"fr site name";',
9665 ))
9666 ->values(array(
9667   'name' => 'site_offline',
9668   'language' => 'fr',
9669   'value' => 's:1:"0";',
9670 ))
9671 ->values(array(
9672   'name' => 'site_offline_message',
9673   'language' => 'fr',
9674   'value' => 's:99:"fr - Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
9675 ))
9676 ->values(array(
9677   'name' => 'site_slogan',
9678   'language' => 'fr',
9679   'value' => 's:16:"fr Migrate rocks";',
9680 ))
9681 ->values(array(
9682   'name' => 'user_email_verification',
9683   'language' => 'fr',
9684   'value' => 'i:0;',
9685 ))
9686 ->values(array(
9687   'name' => 'user_mail_password_reset_body',
9688   'language' => 'fr',
9689   '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.\";",
9690 ))
9691 ->values(array(
9692   'name' => 'user_mail_password_reset_subject',
9693   'language' => 'fr',
9694   'value' => 's:57:"fr - Replacement login information for !username at !site";',
9695 ))
9696 ->values(array(
9697   'name' => 'user_mail_register_admin_created_body',
9698   'language' => 'fr',
9699   '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\";",
9700 ))
9701 ->values(array(
9702   'name' => 'user_mail_register_admin_created_subject',
9703   'language' => 'fr',
9704   'value' => 's:57:"fr - An administrator created an account for you at !site";',
9705 ))
9706 ->values(array(
9707   'name' => 'user_mail_register_no_approval_required_body',
9708   'language' => 'fr',
9709   '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\";",
9710 ))
9711 ->values(array(
9712   'name' => 'user_mail_register_no_approval_required_subject',
9713   'language' => 'fr',
9714   'value' => 's:43:"fr - Account details for !username at !site";',
9715 ))
9716 ->values(array(
9717   'name' => 'user_mail_register_pending_approval_body',
9718   'language' => 'fr',
9719   '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\";",
9720 ))
9721 ->values(array(
9722   'name' => 'user_mail_register_pending_approval_subject',
9723   'language' => 'fr',
9724   'value' => 's:68:"fr - Account details for !username at !site (pending admin approval)";',
9725 ))
9726 ->values(array(
9727   'name' => 'user_mail_status_activated_body',
9728   'language' => 'fr',
9729   '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\";",
9730 ))
9731 ->values(array(
9732   'name' => 'user_mail_status_activated_notify',
9733   'language' => 'fr',
9734   'value' => 'i:0;',
9735 ))
9736 ->values(array(
9737   'name' => 'user_mail_status_activated_subject',
9738   'language' => 'fr',
9739   'value' => 's:54:"fr - Account details for !username at !site (approved)";',
9740 ))
9741 ->values(array(
9742   'name' => 'user_mail_status_blocked_body',
9743   'language' => 'fr',
9744   'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been blocked.\";",
9745 ))
9746 ->values(array(
9747   'name' => 'user_mail_status_blocked_notify',
9748   'language' => 'fr',
9749   'value' => 'i:1;',
9750 ))
9751 ->values(array(
9752   'name' => 'user_mail_status_blocked_subject',
9753   'language' => 'fr',
9754   'value' => 's:53:"fr - Account details for !username at !site (blocked)";',
9755 ))
9756 ->values(array(
9757   'name' => 'user_mail_status_deleted_body',
9758   'language' => 'fr',
9759   'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been deleted.\";",
9760 ))
9761 ->values(array(
9762   'name' => 'user_mail_status_deleted_notify',
9763   'language' => 'fr',
9764   'value' => 'i:0;',
9765 ))
9766 ->values(array(
9767   'name' => 'user_mail_status_deleted_subject',
9768   'language' => 'fr',
9769   'value' => 's:53:"fr - Account details for !username at !site (deleted)";',
9770 ))
9771 ->values(array(
9772   'name' => 'user_pictures',
9773   'language' => 'fr',
9774   'value' => 's:1:"0";',
9775 ))
9776 ->values(array(
9777   'name' => 'user_picture_default',
9778   'language' => 'fr',
9779   'value' => 's:0:"";',
9780 ))
9781 ->values(array(
9782   'name' => 'user_picture_dimensions',
9783   'language' => 'fr',
9784   'value' => 's:5:"85x85";',
9785 ))
9786 ->values(array(
9787   'name' => 'user_picture_file_size',
9788   'language' => 'fr',
9789   'value' => 's:2:"30";',
9790 ))
9791 ->values(array(
9792   'name' => 'user_picture_guidelines',
9793   'language' => 'fr',
9794   'value' => 's:0:"";',
9795 ))
9796 ->values(array(
9797   'name' => 'user_picture_path',
9798   'language' => 'fr',
9799   'value' => 's:8:"pictures";',
9800 ))
9801 ->values(array(
9802   'name' => 'user_register',
9803   'language' => 'fr',
9804   'value' => 's:1:"0";',
9805 ))
9806 ->values(array(
9807   'name' => 'user_registration_help',
9808   'language' => 'fr',
9809   'value' => 's:0:"";',
9810 ))
9811 ->values(array(
9812   'name' => 'user_signatures',
9813   'language' => 'fr',
9814   'value' => 's:1:"1";',
9815 ))
9816 ->values(array(
9817   'name' => 'anonymous',
9818   'language' => 'zu',
9819   'value' => 's:5:"Guest";',
9820 ))
9821 ->values(array(
9822   'name' => 'error_level',
9823   'language' => 'zu',
9824   'value' => 's:1:"1";',
9825 ))
9826 ->values(array(
9827   'name' => 'site_403',
9828   'language' => 'zu',
9829   'value' => 's:7:"zu-user";',
9830 ))
9831 ->values(array(
9832   'name' => 'site_404',
9833   'language' => 'zu',
9834   'value' => 's:17:"zu-page-not-found";',
9835 ))
9836 ->values(array(
9837   'name' => 'site_footer',
9838   'language' => 'zu',
9839   'value' => 's:0:"";',
9840 ))
9841 ->values(array(
9842   'name' => 'site_frontpage',
9843   'language' => 'zu',
9844   'value' => 's:4:"node";',
9845 ))
9846 ->values(array(
9847   'name' => 'site_mail',
9848   'language' => 'zu',
9849   'value' => 's:21:"site_mail@example.com";',
9850 ))
9851 ->values(array(
9852   'name' => 'site_mission',
9853   'language' => 'zu',
9854   'value' => 's:0:"";',
9855 ))
9856 ->values(array(
9857   'name' => 'site_name',
9858   'language' => 'zu',
9859   'value' => 's:14:"zu - site_name";',
9860 ))
9861 ->values(array(
9862   'name' => 'site_slogan',
9863   'language' => 'zu',
9864   'value' => 's:13:"Migrate rocks";',
9865 ))
9866 ->values(array(
9867   'name' => 'user_email_verification',
9868   'language' => 'zu',
9869   'value' => 'i:0;',
9870 ))
9871 ->values(array(
9872   'name' => 'user_mail_password_reset_body',
9873   'language' => 'zu',
9874   '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.\";",
9875 ))
9876 ->values(array(
9877   'name' => 'user_mail_password_reset_subject',
9878   'language' => 'zu',
9879   'value' => 's:52:"Replacement login information for !username at !site";',
9880 ))
9881 ->values(array(
9882   'name' => 'user_mail_register_admin_created_body',
9883   'language' => 'zu',
9884   '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\";",
9885 ))
9886 ->values(array(
9887   'name' => 'user_mail_register_admin_created_subject',
9888   'language' => 'zu',
9889   'value' => 's:57:"zu - An administrator created an account for you at !site";',
9890 ))
9891 ->values(array(
9892   'name' => 'user_mail_register_no_approval_required_body',
9893   'language' => 'zu',
9894   '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\";",
9895 ))
9896 ->values(array(
9897   'name' => 'user_mail_register_no_approval_required_subject',
9898   'language' => 'zu',
9899   'value' => 's:38:"Account details for !username at !site";',
9900 ))
9901 ->values(array(
9902   'name' => 'user_mail_register_pending_approval_body',
9903   'language' => 'zu',
9904   '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\";",
9905 ))
9906 ->values(array(
9907   'name' => 'user_mail_register_pending_approval_subject',
9908   'language' => 'zu',
9909   'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
9910 ))
9911 ->values(array(
9912   'name' => 'user_mail_status_activated_body',
9913   'language' => 'zu',
9914   '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\";",
9915 ))
9916 ->values(array(
9917   'name' => 'user_mail_status_activated_notify',
9918   'language' => 'zu',
9919   'value' => 'i:0;',
9920 ))
9921 ->values(array(
9922   'name' => 'user_mail_status_activated_subject',
9923   'language' => 'zu',
9924   'value' => 's:49:"Account details for !username at !site (approved)";',
9925 ))
9926 ->values(array(
9927   'name' => 'user_mail_status_blocked_body',
9928   'language' => 'zu',
9929   'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been blocked.\";",
9930 ))
9931 ->values(array(
9932   'name' => 'user_mail_status_blocked_notify',
9933   'language' => 'zu',
9934   'value' => 'i:1;',
9935 ))
9936 ->values(array(
9937   'name' => 'user_mail_status_blocked_subject',
9938   'language' => 'zu',
9939   'value' => 's:48:"Account details for !username at !site (blocked)";',
9940 ))
9941 ->values(array(
9942   'name' => 'user_mail_status_deleted_body',
9943   'language' => 'zu',
9944   'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been deleted.\";",
9945 ))
9946 ->values(array(
9947   'name' => 'user_mail_status_deleted_notify',
9948   'language' => 'zu',
9949   'value' => 'i:0;',
9950 ))
9951 ->values(array(
9952   'name' => 'user_mail_status_deleted_subject',
9953   'language' => 'zu',
9954   'value' => 's:48:"Account details for !username at !site (deleted)";',
9955 ))
9956 ->values(array(
9957   'name' => 'user_pictures',
9958   'language' => 'zu',
9959   'value' => 's:1:"0";',
9960 ))
9961 ->values(array(
9962   'name' => 'user_picture_default',
9963   'language' => 'zu',
9964   'value' => 's:0:"";',
9965 ))
9966 ->values(array(
9967   'name' => 'user_picture_dimensions',
9968   'language' => 'zu',
9969   'value' => 's:5:"85x85";',
9970 ))
9971 ->values(array(
9972   'name' => 'user_picture_file_size',
9973   'language' => 'zu',
9974   'value' => 's:2:"30";',
9975 ))
9976 ->values(array(
9977   'name' => 'user_picture_guidelines',
9978   'language' => 'zu',
9979   'value' => 's:0:"";',
9980 ))
9981 ->values(array(
9982   'name' => 'user_picture_path',
9983   'language' => 'zu',
9984   'value' => 's:8:"pictures";',
9985 ))
9986 ->values(array(
9987   'name' => 'user_register',
9988   'language' => 'zu',
9989   'value' => 's:1:"0";',
9990 ))
9991 ->values(array(
9992   'name' => 'user_registration_help',
9993   'language' => 'zu',
9994   'value' => 's:0:"";',
9995 ))
9996 ->values(array(
9997   'name' => 'user_signatures',
9998   'language' => 'zu',
9999   'value' => 's:1:"1";',
10000 ))
10001 ->execute();
10002
10003 $connection->schema()->createTable('imagecache_action', array(
10004   'fields' => array(
10005     'actionid' => array(
10006       'type' => 'serial',
10007       'not null' => TRUE,
10008       'size' => 'normal',
10009       'unsigned' => TRUE,
10010     ),
10011     'presetid' => array(
10012       'type' => 'int',
10013       'not null' => TRUE,
10014       'size' => 'normal',
10015       'default' => '0',
10016       'unsigned' => TRUE,
10017     ),
10018     'weight' => array(
10019       'type' => 'int',
10020       'not null' => TRUE,
10021       'size' => 'normal',
10022       'default' => '0',
10023     ),
10024     'module' => array(
10025       'type' => 'varchar',
10026       'not null' => TRUE,
10027       'length' => '255',
10028     ),
10029     'action' => array(
10030       'type' => 'varchar',
10031       'not null' => TRUE,
10032       'length' => '255',
10033     ),
10034     'data' => array(
10035       'type' => 'text',
10036       'not null' => TRUE,
10037       'size' => 'normal',
10038     ),
10039   ),
10040   'primary key' => array(
10041     'actionid',
10042   ),
10043   'mysql_character_set' => 'utf8',
10044 ));
10045
10046 $connection->insert('imagecache_action')
10047 ->fields(array(
10048   'actionid',
10049   'presetid',
10050   'weight',
10051   'module',
10052   'action',
10053   'data',
10054 ))
10055 ->values(array(
10056   'actionid' => '3',
10057   'presetid' => '1',
10058   'weight' => '0',
10059   'module' => 'imagecache',
10060   'action' => 'imagecache_scale_and_crop',
10061   'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
10062 ))
10063 ->values(array(
10064   'actionid' => '4',
10065   'presetid' => '2',
10066   'weight' => '0',
10067   'module' => 'imagecache',
10068   'action' => 'imagecache_crop',
10069   '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";}',
10070 ))
10071 ->values(array(
10072   'actionid' => '5',
10073   'presetid' => '2',
10074   'weight' => '0',
10075   'module' => 'imagecache',
10076   'action' => 'imagecache_resize',
10077   'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
10078 ))
10079 ->values(array(
10080   'actionid' => '6',
10081   'presetid' => '2',
10082   'weight' => '0',
10083   'module' => 'imagecache',
10084   'action' => 'imagecache_rotate',
10085   'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
10086 ))
10087 ->execute();
10088
10089 $connection->schema()->createTable('imagecache_preset', array(
10090   'fields' => array(
10091     'presetid' => array(
10092       'type' => 'serial',
10093       'not null' => TRUE,
10094       'size' => 'normal',
10095       'unsigned' => TRUE,
10096     ),
10097     'presetname' => array(
10098       'type' => 'varchar',
10099       'not null' => TRUE,
10100       'length' => '255',
10101     ),
10102   ),
10103   'primary key' => array(
10104     'presetid',
10105   ),
10106   'mysql_character_set' => 'utf8',
10107 ));
10108
10109 $connection->insert('imagecache_preset')
10110 ->fields(array(
10111   'presetid',
10112   'presetname',
10113 ))
10114 ->values(array(
10115   'presetid' => '1',
10116   'presetname' => 'slackjaw_boys',
10117 ))
10118 ->values(array(
10119   'presetid' => '2',
10120   'presetname' => 'big_blue_cheese',
10121 ))
10122 ->execute();
10123
10124 $connection->schema()->createTable('languages', array(
10125   'fields' => array(
10126     'language' => array(
10127       'type' => 'varchar',
10128       'not null' => TRUE,
10129       'length' => '12',
10130       'default' => '',
10131     ),
10132     'name' => array(
10133       'type' => 'varchar',
10134       'not null' => TRUE,
10135       'length' => '64',
10136       'default' => '',
10137     ),
10138     'native' => array(
10139       'type' => 'varchar',
10140       'not null' => TRUE,
10141       'length' => '64',
10142       'default' => '',
10143     ),
10144     'direction' => array(
10145       'type' => 'int',
10146       'not null' => TRUE,
10147       'size' => 'normal',
10148       'default' => '0',
10149     ),
10150     'enabled' => array(
10151       'type' => 'int',
10152       'not null' => TRUE,
10153       'size' => 'normal',
10154       'default' => '0',
10155     ),
10156     'plurals' => array(
10157       'type' => 'int',
10158       'not null' => TRUE,
10159       'size' => 'normal',
10160       'default' => '0',
10161     ),
10162     'formula' => array(
10163       'type' => 'varchar',
10164       'not null' => TRUE,
10165       'length' => '128',
10166       'default' => '',
10167     ),
10168     'domain' => array(
10169       'type' => 'varchar',
10170       'not null' => TRUE,
10171       'length' => '128',
10172       'default' => '',
10173     ),
10174     'prefix' => array(
10175       'type' => 'varchar',
10176       'not null' => TRUE,
10177       'length' => '128',
10178       'default' => '',
10179     ),
10180     'weight' => array(
10181       'type' => 'int',
10182       'not null' => TRUE,
10183       'size' => 'normal',
10184       'default' => '0',
10185     ),
10186     'javascript' => array(
10187       'type' => 'varchar',
10188       'not null' => TRUE,
10189       'length' => '32',
10190       'default' => '',
10191     ),
10192   ),
10193   'primary key' => array(
10194     'language',
10195   ),
10196   'indexes' => array(
10197     'list' => array(
10198       'weight',
10199       'name',
10200     ),
10201   ),
10202   'mysql_character_set' => 'utf8',
10203 ));
10204
10205 $connection->insert('languages')
10206 ->fields(array(
10207   'language',
10208   'name',
10209   'native',
10210   'direction',
10211   'enabled',
10212   'plurals',
10213   'formula',
10214   'domain',
10215   'prefix',
10216   'weight',
10217   'javascript',
10218 ))
10219 ->values(array(
10220   'language' => 'en',
10221   'name' => 'English',
10222   'native' => 'English',
10223   'direction' => '0',
10224   'enabled' => '1',
10225   'plurals' => '0',
10226   'formula' => '',
10227   'domain' => '',
10228   'prefix' => '',
10229   'weight' => '0',
10230   'javascript' => '',
10231 ))
10232 ->values(array(
10233   'language' => 'fr',
10234   'name' => 'French',
10235   'native' => 'Français',
10236   'direction' => '0',
10237   'enabled' => '1',
10238   'plurals' => '2',
10239   'formula' => '($n>1)',
10240   'domain' => 'http://fr.drupal.org',
10241   'prefix' => 'fr',
10242   'weight' => '0',
10243   'javascript' => '047746d30d76aa44a54db9923c7c5fb0',
10244 ))
10245 ->values(array(
10246   'language' => 'zu',
10247   'name' => 'Zulu',
10248   'native' => 'isiZulu',
10249   'direction' => '0',
10250   'enabled' => '1',
10251   'plurals' => '0',
10252   'formula' => '',
10253   'domain' => 'http://zu.drupal.org',
10254   'prefix' => 'zu',
10255   'weight' => '0',
10256   'javascript' => '',
10257 ))
10258 ->execute();
10259
10260 $connection->schema()->createTable('locales_source', array(
10261   'fields' => array(
10262     'lid' => array(
10263       'type' => 'serial',
10264       'not null' => TRUE,
10265       'size' => 'normal',
10266     ),
10267     'location' => array(
10268       'type' => 'varchar',
10269       'not null' => TRUE,
10270       'length' => '255',
10271       'default' => '',
10272     ),
10273     'textgroup' => array(
10274       'type' => 'varchar',
10275       'not null' => TRUE,
10276       'length' => '255',
10277       'default' => 'default',
10278     ),
10279     'source' => array(
10280       'type' => 'blob',
10281       'not null' => TRUE,
10282       'size' => 'normal',
10283     ),
10284     'version' => array(
10285       'type' => 'varchar',
10286       'not null' => TRUE,
10287       'length' => '20',
10288       'default' => 'none',
10289     ),
10290   ),
10291   'primary key' => array(
10292     'lid',
10293   ),
10294   'indexes' => array(
10295     'source' => array(
10296       array(
10297         'source',
10298         '30',
10299       ),
10300     ),
10301     'textgroup_location' => array(
10302       array(
10303         'textgroup',
10304         '30',
10305       ),
10306       array(
10307         'location',
10308         '191',
10309       ),
10310     ),
10311   ),
10312   'mysql_character_set' => 'utf8',
10313 ));
10314
10315 $connection->insert('locales_source')
10316 ->fields(array(
10317   'lid',
10318   'location',
10319   'textgroup',
10320   'source',
10321   'version',
10322 ))
10323 ->values(array(
10324   'lid' => '1',
10325   'location' => 'misc/drupal.js',
10326   'textgroup' => 'default',
10327   'source' => 'Unspecified error',
10328   'version' => 'none',
10329 ))
10330 ->values(array(
10331   'lid' => '2',
10332   'location' => 'misc/drupal.js',
10333   'textgroup' => 'default',
10334   'source' => 'An error occurred. \n@uri\n@text',
10335   'version' => 'none',
10336 ))
10337 ->values(array(
10338   'lid' => '3',
10339   'location' => 'misc/drupal.js',
10340   'textgroup' => 'default',
10341   'source' => 'An error occurred. \n@uri\n(no information available).',
10342   'version' => 'none',
10343 ))
10344 ->values(array(
10345   'lid' => '4',
10346   'location' => 'misc/drupal.js',
10347   'textgroup' => 'default',
10348   'source' => 'An HTTP error @status occurred. \n@uri',
10349   'version' => 'none',
10350 ))
10351 ->values(array(
10352   'lid' => '5',
10353   'location' => 'content.module:21',
10354   'textgroup' => 'default',
10355   '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.)',
10356   'version' => 'none',
10357 ))
10358 ->values(array(
10359   'lid' => '6',
10360   'location' => 'content.module:22',
10361   'textgroup' => 'default',
10362   '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.',
10363   'version' => 'none',
10364 ))
10365 ->values(array(
10366   'lid' => '7',
10367   'location' => 'content.module:23',
10368   'textgroup' => 'default',
10369   '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:',
10370   'version' => 'none',
10371 ))
10372 ->values(array(
10373   'lid' => '8',
10374   'location' => 'content.module:25',
10375   'textgroup' => 'default',
10376   '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.',
10377   'version' => 'none',
10378 ))
10379 ->values(array(
10380   'lid' => '9',
10381   'location' => 'content.module:26',
10382   'textgroup' => 'default',
10383   '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.",
10384   'version' => 'none',
10385 ))
10386 ->values(array(
10387   'lid' => '10',
10388   'location' => 'content.module:27',
10389   'textgroup' => 'default',
10390   '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).',
10391   'version' => 'none',
10392 ))
10393 ->values(array(
10394   'lid' => '11',
10395   'location' => 'content.module:28',
10396   'textgroup' => 'default',
10397   '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.",
10398   'version' => 'none',
10399 ))
10400 ->values(array(
10401   'lid' => '12',
10402   'location' => 'content.module:29',
10403   'textgroup' => 'default',
10404   '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.',
10405   'version' => 'none',
10406 ))
10407 ->values(array(
10408   'lid' => '13',
10409   'location' => 'content.module:31',
10410   'textgroup' => 'default',
10411   '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>.',
10412   'version' => 'none',
10413 ))
10414 ->values(array(
10415   'lid' => '14',
10416   'location' => 'theme/theme.inc:111',
10417   'textgroup' => 'default',
10418   'source' => "Configure how this content type's fields and field labels should be displayed when it's viewed in teaser and full-page mode.",
10419   'version' => 'none',
10420 ))
10421 ->values(array(
10422   'lid' => '15',
10423   'location' => 'theme/theme.inc:114',
10424   'textgroup' => 'default',
10425   'source' => "Configure how this content type's fields should be displayed when it's rendered in the following contexts.",
10426   'version' => 'none',
10427 ))
10428 ->values(array(
10429   'lid' => '16',
10430   'location' => 'content.module:48',
10431   'textgroup' => 'default',
10432   'source' => 'Control the order of fields in the input form.',
10433   'version' => 'none',
10434 ))
10435 ->values(array(
10436   'lid' => '17',
10437   'location' => 'content.module:492',
10438   'textgroup' => 'default',
10439   'source' => 'This field is required.',
10440   'version' => '6.38-dev',
10441 ))
10442 ->values(array(
10443   'lid' => '18',
10444   'location' => 'content.module:496',
10445   'textgroup' => 'default',
10446   'source' => '!title: !required',
10447   'version' => '6.38-dev',
10448 ))
10449 ->values(array(
10450   'lid' => '19',
10451   'location' => 'content.module:499,  modules/content_multigroup/content_multigroup.module:903',
10452   'textgroup' => 'default',
10453   'source' => 'Order',
10454   'version' => 'none',
10455 ))
10456 ->values(array(
10457   'lid' => '20',
10458   'location' => 'content.module:1640',
10459   'textgroup' => 'default',
10460   'source' => 'RSS Item',
10461   'version' => 'none',
10462 ))
10463 ->values(array(
10464   'lid' => '21',
10465   'location' => 'content.module:1883',
10466   'textgroup' => 'default',
10467   'source' => 'Search Index',
10468   'version' => 'none',
10469 ))
10470 ->values(array(
10471   'lid' => '22',
10472   'location' => 'content.module:1887',
10473   'textgroup' => 'default',
10474   'source' => 'Search Result',
10475   'version' => 'none',
10476 ))
10477 ->values(array(
10478   'lid' => '23',
10479   'location' => 'content.module:2362',
10480   'textgroup' => 'default',
10481   'source' => 'Language',
10482   'version' => '6.38-dev',
10483 ))
10484 ->values(array(
10485   'lid' => '24',
10486   'location' => 'content.module:2376',
10487   'textgroup' => 'default',
10488   'source' => 'Taxonomy',
10489   'version' => '6.38-dev',
10490 ))
10491 ->values(array(
10492   'lid' => '25',
10493   'location' => 'content.module:2407',
10494   'textgroup' => 'default',
10495   'source' => 'File attachments',
10496   'version' => '6.38-dev',
10497 ))
10498 ->values(array(
10499   'lid' => '26',
10500   'location' => 'content.module:595',
10501   'textgroup' => 'default',
10502   'source' => 'Updating field type %type with module %module.',
10503   'version' => 'none',
10504 ))
10505 ->values(array(
10506   'lid' => '27',
10507   'location' => 'content.module:602',
10508   'textgroup' => 'default',
10509   'source' => 'Updating widget type %type with module %module.',
10510   'version' => 'none',
10511 ))
10512 ->values(array(
10513   'lid' => '28',
10514   'location' => 'content.module:60',
10515   'textgroup' => 'default',
10516   'source' => 'Use PHP input for field settings (dangerous - grant with care)',
10517   'version' => '6.38-dev',
10518 ))
10519 ->values(array(
10520   'lid' => '29',
10521   'location' => 'content.module:101',
10522   'textgroup' => 'default',
10523   'source' => 'Manage fields',
10524   'version' => 'none',
10525 ))
10526 ->values(array(
10527   'lid' => '30',
10528   'location' => 'content.module:110',
10529   'textgroup' => 'default',
10530   'source' => 'Display fields',
10531   'version' => 'none',
10532 ))
10533 ->values(array(
10534   'lid' => '31',
10535   'location' => 'content.module:143',
10536   'textgroup' => 'default',
10537   'source' => 'General',
10538   'version' => 'none',
10539 ))
10540 ->values(array(
10541   'lid' => '32',
10542   'location' => 'content.module:149',
10543   'textgroup' => 'default',
10544   'source' => 'Advanced',
10545   'version' => 'none',
10546 ))
10547 ->values(array(
10548   'lid' => '33',
10549   'location' => 'content.module:141',
10550   'textgroup' => 'default',
10551   'source' => 'Remove field',
10552   'version' => '6.38-dev',
10553 ))
10554 ->values(array(
10555   'lid' => '34',
10556   'location' => 'content.info:0,  includes/content.rules.inc:19;212,  includes/views/content.views.inc:180;261',
10557   'textgroup' => 'default',
10558   'source' => 'Content',
10559   'version' => '6.38-dev',
10560 ))
10561 ->values(array(
10562   'lid' => '35',
10563   'location' => 'content.info:0',
10564   'textgroup' => 'default',
10565   'source' => 'Allows administrators to define new content types.',
10566   'version' => '6.38-dev',
10567 ))
10568 ->values(array(
10569   'lid' => '36',
10570   'location' => 'content.info:0,  modules/content_copy/content_copy.info:0,  modules/content_permissions/content_permissions.info:0,  modules/fieldgroup/fieldgroup.info:0',
10571   'textgroup' => 'default',
10572   'source' => 'CCK',
10573   'version' => '6.38-dev',
10574 ))
10575 ->values(array(
10576   'lid' => '37',
10577   'location' => 'modules/text/text.module:41,  modules/text/text.info:0',
10578   'textgroup' => 'default',
10579   'source' => 'Text',
10580   'version' => '6.38-dev',
10581 ))
10582 ->values(array(
10583   'lid' => '38',
10584   'location' => 'examples/example_field.php:178',
10585   'textgroup' => 'default',
10586   '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.',
10587   'version' => 'none',
10588 ))
10589 ->values(array(
10590   'lid' => '39',
10591   'location' => 'examples/example_field.php:484',
10592   'textgroup' => 'default',
10593   'source' => 'Text area',
10594   'version' => 'none',
10595 ))
10596 ->values(array(
10597   'lid' => '40',
10598   'location' => 'includes/content.admin.inc:171;197;895,  modules/fieldgroup/fieldgroup.module:209',
10599   'textgroup' => 'default',
10600   'source' => 'Remove',
10601   'version' => 'none',
10602 ))
10603 ->values(array(
10604   'lid' => '41',
10605   'location' => 'content.module:1854',
10606   'textgroup' => 'default',
10607   'source' => 'Basic',
10608   'version' => '6.38-dev',
10609 ))
10610 ->values(array(
10611   'lid' => '42',
10612   'location' => 'content.module:1857,  modules/nodereference/nodereference.module:268',
10613   'textgroup' => 'default',
10614   'source' => 'Teaser',
10615   'version' => '6.38-dev',
10616 ))
10617 ->values(array(
10618   'lid' => '43',
10619   'location' => 'content.module:1861,  modules/nodereference/nodereference.module:263',
10620   'textgroup' => 'default',
10621   'source' => 'Full node',
10622   'version' => '6.38-dev',
10623 ))
10624 ->values(array(
10625   'lid' => '44',
10626   'location' => 'content.module:1867;1870',
10627   'textgroup' => 'default',
10628   'source' => 'RSS',
10629   'version' => '6.38-dev',
10630 ))
10631 ->values(array(
10632   'lid' => '45',
10633   'location' => 'content.module:1880',
10634   'textgroup' => 'default',
10635   'source' => 'Search',
10636   'version' => '6.38-dev',
10637 ))
10638 ->values(array(
10639   'lid' => '46',
10640   'location' => 'content.module:2348;2355',
10641   'textgroup' => 'default',
10642   'source' => 'Node module form.',
10643   'version' => '6.38-dev',
10644 ))
10645 ->values(array(
10646   'lid' => '47',
10647   'location' => 'content.module:2363',
10648   'textgroup' => 'default',
10649   'source' => 'Locale module form.',
10650   'version' => '6.38-dev',
10651 ))
10652 ->values(array(
10653   'lid' => '48',
10654   'location' => 'content.module:2369',
10655   'textgroup' => 'default',
10656   'source' => 'Menu settings',
10657   'version' => '6.38-dev',
10658 ))
10659 ->values(array(
10660   'lid' => '49',
10661   'location' => 'content.module:2370',
10662   'textgroup' => 'default',
10663   'source' => 'Menu module form.',
10664   'version' => '6.38-dev',
10665 ))
10666 ->values(array(
10667   'lid' => '50',
10668   'location' => 'content.module:2377',
10669   'textgroup' => 'default',
10670   'source' => 'Taxonomy module form.',
10671   'version' => '6.38-dev',
10672 ))
10673 ->values(array(
10674   'lid' => '51',
10675   'location' => 'content.module:2383',
10676   'textgroup' => 'default',
10677   'source' => 'Book',
10678   'version' => '6.38-dev',
10679 ))
10680 ->values(array(
10681   'lid' => '52',
10682   'location' => 'content.module:2384',
10683   'textgroup' => 'default',
10684   'source' => 'Book module form.',
10685   'version' => '6.38-dev',
10686 ))
10687 ->values(array(
10688   'lid' => '53',
10689   'location' => 'content.module:2390',
10690   'textgroup' => 'default',
10691   'source' => 'Poll title',
10692   'version' => 'none',
10693 ))
10694 ->values(array(
10695   'lid' => '54',
10696   'location' => 'content.module:2391',
10697   'textgroup' => 'default',
10698   'source' => 'Poll module title.',
10699   'version' => 'none',
10700 ))
10701 ->values(array(
10702   'lid' => '55',
10703   'location' => 'content.module:2396',
10704   'textgroup' => 'default',
10705   'source' => 'Poll choices',
10706   'version' => 'none',
10707 ))
10708 ->values(array(
10709   'lid' => '56',
10710   'location' => 'content.module:2397',
10711   'textgroup' => 'default',
10712   'source' => 'Poll module choices.',
10713   'version' => 'none',
10714 ))
10715 ->values(array(
10716   'lid' => '57',
10717   'location' => 'content.module:2400',
10718   'textgroup' => 'default',
10719   'source' => 'Poll settings',
10720   'version' => 'none',
10721 ))
10722 ->values(array(
10723   'lid' => '58',
10724   'location' => 'content.module:2401',
10725   'textgroup' => 'default',
10726   'source' => 'Poll module settings.',
10727   'version' => 'none',
10728 ))
10729 ->values(array(
10730   'lid' => '59',
10731   'location' => 'content.module:2408',
10732   'textgroup' => 'default',
10733   'source' => 'Upload module form.',
10734   'version' => '6.38-dev',
10735 ))
10736 ->values(array(
10737   'lid' => '60',
10738   'location' => 'content.module:595;602;0,  includes/content.crud.inc:589;633',
10739   'textgroup' => 'default',
10740   'source' => 'content',
10741   'version' => 'none',
10742 ))
10743 ->values(array(
10744   'lid' => '61',
10745   'location' => 'content.module:79',
10746   'textgroup' => 'default',
10747   'source' => 'Fields',
10748   'version' => 'none',
10749 ))
10750 ->values(array(
10751   'lid' => '62',
10752   'location' => 'content.install:236',
10753   'textgroup' => 'default',
10754   '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.",
10755   'version' => 'none',
10756 ))
10757 ->values(array(
10758   'lid' => '63',
10759   'location' => 'content.install:239',
10760   'textgroup' => 'default',
10761   '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.',
10762   'version' => 'none',
10763 ))
10764 ->values(array(
10765   'lid' => '64',
10766   'location' => 'content.install:244',
10767   'textgroup' => 'default',
10768   '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.',
10769   'version' => 'none',
10770 ))
10771 ->values(array(
10772   'lid' => '65',
10773   'location' => 'content.install:251',
10774   'textgroup' => 'default',
10775   'source' => 'Some updates are still pending. Please return to <a href="@update-php">update.php</a> and run the remaining updates.',
10776   'version' => 'none',
10777 ))
10778 ->values(array(
10779   'lid' => '66',
10780   'location' => '(duplicate) content.install:10',
10781   'textgroup' => 'default',
10782   'source' => 'CCK - No Views integration',
10783   'version' => 'none',
10784 ))
10785 ->values(array(
10786   'lid' => '67',
10787   'location' => '(duplicate) content.install:11',
10788   'textgroup' => 'default',
10789   'source' => 'CCK integration with Views module requires Views 6.x-2.0-rc2 or greater.',
10790   'version' => 'none',
10791 ))
10792 ->values(array(
10793   'lid' => '68',
10794   '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',
10795   'textgroup' => 'default',
10796   'source' => 'Name',
10797   'version' => '6.38-dev',
10798 ))
10799 ->values(array(
10800   'lid' => '69',
10801   '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',
10802   'textgroup' => 'default',
10803   'source' => 'Type',
10804   'version' => '6.38-dev',
10805 ))
10806 ->values(array(
10807   'lid' => '70',
10808   'location' => 'includes/content.admin.inc:16,  modules/fieldgroup/fieldgroup.module:158',
10809   'textgroup' => 'default',
10810   'source' => 'Description',
10811   'version' => '6.38-dev',
10812 ))
10813 ->values(array(
10814   'lid' => '71',
10815   'location' => 'includes/content.admin.inc:16,  theme/content-admin-field-overview-form.tpl.php:14',
10816   'textgroup' => 'default',
10817   'source' => 'Operations',
10818   'version' => '6.38-dev',
10819 ))
10820 ->values(array(
10821   'lid' => '72',
10822   'location' => 'includes/content.admin.inc:30',
10823   'textgroup' => 'default',
10824   'source' => 'edit',
10825   'version' => '6.38-dev',
10826 ))
10827 ->values(array(
10828   'lid' => '73',
10829   'location' => 'includes/content.admin.inc:33',
10830   'textgroup' => 'default',
10831   'source' => 'manage fields',
10832   'version' => 'none',
10833 ))
10834 ->values(array(
10835   'lid' => '74',
10836   'location' => 'includes/content.admin.inc:36',
10837   'textgroup' => 'default',
10838   'source' => 'delete',
10839   'version' => '6.38-dev',
10840 ))
10841 ->values(array(
10842   'lid' => '75',
10843   'location' => 'includes/content.admin.inc:47',
10844   'textgroup' => 'default',
10845   'source' => 'No content types available.',
10846   'version' => 'none',
10847 ))
10848 ->values(array(
10849   'lid' => '76',
10850   'location' => 'includes/content.admin.inc:54',
10851   'textgroup' => 'default',
10852   'source' => '» Add a new content type',
10853   'version' => 'none',
10854 ))
10855 ->values(array(
10856   'lid' => '77',
10857   'location' => 'includes/content.admin.inc:67;796;991',
10858   'textgroup' => 'default',
10859   'source' => 'Field name',
10860   'version' => 'none',
10861 ))
10862 ->values(array(
10863   'lid' => '78',
10864   'location' => 'includes/content.admin.inc:67;811;997',
10865   'textgroup' => 'default',
10866   'source' => 'Field type',
10867   'version' => 'none',
10868 ))
10869 ->values(array(
10870   'lid' => '79',
10871   'location' => 'includes/content.admin.inc:67',
10872   'textgroup' => 'default',
10873   'source' => 'Used in',
10874   'version' => 'none',
10875 ))
10876 ->values(array(
10877   'lid' => '80',
10878   'location' => 'includes/content.admin.inc:71',
10879   'textgroup' => 'default',
10880   'source' => '@field_name (Locked)',
10881   'version' => 'none',
10882 ))
10883 ->values(array(
10884   'lid' => '81',
10885   'location' => 'includes/content.admin.inc:90',
10886   'textgroup' => 'default',
10887   'source' => 'No fields have been defined for any content type yet.',
10888   'version' => 'none',
10889 ))
10890 ->values(array(
10891   'lid' => '82',
10892   'location' => 'not literally, English needs work,  includes/content.admin.inc:106,  fuzzy',
10893   'textgroup' => 'default',
10894   'source' => 'This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled.',
10895   'version' => 'none',
10896 ))
10897 ->values(array(
10898   'lid' => '83',
10899   'location' => 'includes/content.admin.inc:108',
10900   'textgroup' => 'default',
10901   'source' => '!field (!field_name) is an inactive !field_type field that uses a !widget_type widget.',
10902   'version' => 'none',
10903 ))
10904 ->values(array(
10905   'lid' => '84',
10906   'location' => 'includes/content.admin.inc:170;196',
10907   'textgroup' => 'default',
10908   'source' => 'Configure',
10909   'version' => '6.38-dev',
10910 ))
10911 ->values(array(
10912   'lid' => '85',
10913   'location' => 'Schreibgeschützt,  includes/content.admin.inc:181',
10914   'textgroup' => 'default',
10915   'source' => 'Locked',
10916   'version' => 'none',
10917 ))
10918 ->values(array(
10919   'lid' => '86',
10920   'location' => 'includes/content.admin.inc:237',
10921   'textgroup' => 'default',
10922   'source' => '- Select a field type -',
10923   'version' => 'none',
10924 ))
10925 ->values(array(
10926   'lid' => '87',
10927   'location' => 'includes/content.admin.inc:238',
10928   'textgroup' => 'default',
10929   'source' => '- Select a widget -',
10930   'version' => 'none',
10931 ))
10932 ->values(array(
10933   'lid' => '88',
10934   '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',
10935   'textgroup' => 'default',
10936   'source' => 'Label',
10937   'version' => 'none',
10938 ))
10939 ->values(array(
10940   'lid' => '89',
10941   'location' => 'includes/content.admin.inc:253',
10942   'textgroup' => 'default',
10943   'source' => 'Field name (a-z, 0-9, _)',
10944   'version' => 'none',
10945 ))
10946 ->values(array(
10947   'lid' => '90',
10948   'location' => 'includes/content.admin.inc:258',
10949   'textgroup' => 'default',
10950   'source' => 'Type of data to store.',
10951   'version' => 'none',
10952 ))
10953 ->values(array(
10954   'lid' => '91',
10955   'location' => 'includes/content.admin.inc:263;295',
10956   'textgroup' => 'default',
10957   'source' => 'Form element to edit the data.',
10958   'version' => 'none',
10959 ))
10960 ->values(array(
10961   'lid' => '92',
10962   'location' => 'includes/content.admin.inc:279',
10963   'textgroup' => 'default',
10964   'source' => '- Select an existing field -',
10965   'version' => 'none',
10966 ))
10967 ->values(array(
10968   'lid' => '93',
10969   'location' => 'includes/content.admin.inc:290',
10970   'textgroup' => 'default',
10971   'source' => 'Field to share',
10972   'version' => 'none',
10973 ))
10974 ->values(array(
10975   'lid' => '94',
10976   'location' => 'includes/content.admin.inc:324',
10977   'textgroup' => 'default',
10978   'source' => 'Group name (a-z, 0-9, _)',
10979   'version' => 'none',
10980 ))
10981 ->values(array(
10982   'lid' => '95',
10983   'location' => 'includes/content.admin.inc:352;677,  modules/fieldgroup/fieldgroup.module:177;341',
10984   'textgroup' => 'default',
10985   'source' => 'Save',
10986   'version' => 'none',
10987 ))
10988 ->values(array(
10989   'lid' => '96',
10990   'location' => 'includes/content.admin.inc:373',
10991   'textgroup' => 'default',
10992   'source' => 'Add new field: you need to provide a label.',
10993   'version' => 'none',
10994 ))
10995 ->values(array(
10996   'lid' => '97',
10997   'location' => 'includes/content.admin.inc:378',
10998   'textgroup' => 'default',
10999   'source' => 'Add new field: you need to provide a field name.',
11000   'version' => 'none',
11001 ))
11002 ->values(array(
11003   'lid' => '98',
11004   'location' => 'includes/content.admin.inc:392',
11005   'textgroup' => 'default',
11006   'source' => 'Add new field: the field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
11007   'version' => 'none',
11008 ))
11009 ->values(array(
11010   'lid' => '99',
11011   'location' => 'includes/content.admin.inc:395',
11012   'textgroup' => 'default',
11013   'source' => "Add new field: the field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
11014   'version' => 'none',
11015 ))
11016 ->values(array(
11017   'lid' => '100',
11018   'location' => 'includes/content.admin.inc:399',
11019   'textgroup' => 'default',
11020   'source' => "Add new field: the name 'field_instance' is a reserved name.",
11021   'version' => 'none',
11022 ))
11023 ->values(array(
11024   'lid' => '101',
11025   'location' => 'includes/content.admin.inc:411',
11026   'textgroup' => 'default',
11027   'source' => 'Add new field: the field name %field_name already exists.',
11028   'version' => 'none',
11029 ))
11030 ->values(array(
11031   'lid' => '102',
11032   'location' => 'includes/content.admin.inc:417',
11033   'textgroup' => 'default',
11034   'source' => 'Add new field: you need to select a field type.',
11035   'version' => 'none',
11036 ))
11037 ->values(array(
11038   'lid' => '103',
11039   'location' => 'includes/content.admin.inc:422',
11040   'textgroup' => 'default',
11041   'source' => 'Add new field: you need to select a widget.',
11042   'version' => 'none',
11043 ))
11044 ->values(array(
11045   'lid' => '104',
11046   'location' => 'includes/content.admin.inc:428',
11047   'textgroup' => 'default',
11048   'source' => 'Add new field: invalid widget.',
11049   'version' => 'none',
11050 ))
11051 ->values(array(
11052   'lid' => '105',
11053   'location' => 'includes/content.admin.inc:449',
11054   'textgroup' => 'default',
11055   'source' => 'Add existing field: you need to provide a label.',
11056   'version' => 'none',
11057 ))
11058 ->values(array(
11059   'lid' => '106',
11060   'location' => 'includes/content.admin.inc:454',
11061   'textgroup' => 'default',
11062   'source' => 'Add existing field: you need to select a field.',
11063   'version' => 'none',
11064 ))
11065 ->values(array(
11066   'lid' => '107',
11067   'location' => 'includes/content.admin.inc:459',
11068   'textgroup' => 'default',
11069   'source' => 'Add existing field: you need to select a widget.',
11070   'version' => 'none',
11071 ))
11072 ->values(array(
11073   'lid' => '108',
11074   'location' => 'includes/content.admin.inc:465',
11075   'textgroup' => 'default',
11076   'source' => 'Add existing field: invalid widget.',
11077   'version' => 'none',
11078 ))
11079 ->values(array(
11080   'lid' => '109',
11081   'location' => 'includes/content.admin.inc:514',
11082   'textgroup' => 'default',
11083   'source' => 'There was a problem creating field %label.',
11084   'version' => 'none',
11085 ))
11086 ->values(array(
11087   'lid' => '110',
11088   'location' => 'includes/content.admin.inc:526',
11089   'textgroup' => 'default',
11090   'source' => 'The field %label cannot be added to a content type because it is locked.',
11091   'version' => 'none',
11092 ))
11093 ->values(array(
11094   'lid' => '111',
11095   'location' => 'includes/content.admin.inc:536',
11096   'textgroup' => 'default',
11097   'source' => 'There was a problem adding field %label.',
11098   'version' => 'none',
11099 ))
11100 ->values(array(
11101   'lid' => '112',
11102   'location' => 'includes/content.admin.inc:578',
11103   'textgroup' => 'default',
11104   'source' => 'There are no fields configured for this content type. You can add new fields on the <a href="@link">Manage fields</a> page.',
11105   'version' => 'none',
11106 ))
11107 ->values(array(
11108   'lid' => '113',
11109   'location' => 'includes/content.admin.inc:585;633,  includes/panels/content_types/content_field.inc:101,  modules/content_multigroup/content_multigroup.module:352',
11110   'textgroup' => 'default',
11111   'source' => 'Above',
11112   'version' => 'none',
11113 ))
11114 ->values(array(
11115   'lid' => '114',
11116   'location' => 'includes/content.admin.inc:586,  includes/panels/content_types/content_field.inc:102',
11117   'textgroup' => 'default',
11118   'source' => 'Inline',
11119   'version' => 'none',
11120 ))
11121 ->values(array(
11122   'lid' => '115',
11123   'location' => 'includes/content.admin.inc:625;668',
11124   'textgroup' => 'default',
11125   'source' => 'Include',
11126   'version' => 'none',
11127 ))
11128 ->values(array(
11129   'lid' => '116',
11130   'location' => 'includes/content.admin.inc:625;668,  theme/content-admin-display-overview-form.tpl.php:17',
11131   'textgroup' => 'default',
11132   'source' => 'Exclude',
11133   'version' => 'none',
11134 ))
11135 ->values(array(
11136   'lid' => '117',
11137   'location' => 'includes/content.admin.inc:637',
11138   'textgroup' => 'default',
11139   'source' => 'no styling',
11140   'version' => 'none',
11141 ))
11142 ->values(array(
11143   'lid' => '118',
11144   'location' => 'includes/content.admin.inc:638',
11145   'textgroup' => 'default',
11146   'source' => 'simple',
11147   'version' => 'none',
11148 ))
11149 ->values(array(
11150   'lid' => '119',
11151   'location' => 'includes/content.admin.inc:639',
11152   'textgroup' => 'default',
11153   'source' => 'fieldset',
11154   'version' => 'none',
11155 ))
11156 ->values(array(
11157   'lid' => '120',
11158   'location' => 'includes/content.admin.inc:640',
11159   'textgroup' => 'default',
11160   'source' => 'fieldset - collapsible',
11161   'version' => 'none',
11162 ))
11163 ->values(array(
11164   'lid' => '121',
11165   'location' => 'includes/content.admin.inc:641',
11166   'textgroup' => 'default',
11167   'source' => 'fieldset - collapsed',
11168   'version' => 'none',
11169 ))
11170 ->values(array(
11171   'lid' => '122',
11172   'location' => 'includes/content.admin.inc:697',
11173   'textgroup' => 'default',
11174   'source' => 'Your settings have been saved.',
11175   'version' => 'none',
11176 ))
11177 ->values(array(
11178   'lid' => '123',
11179   'location' => 'includes/content.admin.inc:767',
11180   'textgroup' => 'default',
11181   'source' => '@type: @field (@label)',
11182   'version' => 'none',
11183 ))
11184 ->values(array(
11185   'lid' => '124',
11186   'location' => 'includes/content.admin.inc:793',
11187   'textgroup' => 'default',
11188   'source' => 'Edit basic information',
11189   'version' => 'none',
11190 ))
11191 ->values(array(
11192   'lid' => '125',
11193   'location' => 'includes/content.admin.inc:799',
11194   'textgroup' => 'default',
11195   'source' => 'The machine-readable name of the field. This name cannot be changed.',
11196   'version' => 'none',
11197 ))
11198 ->values(array(
11199   'lid' => '126',
11200   'location' => 'includes/content.admin.inc:807',
11201   'textgroup' => 'default',
11202   'source' => 'A human-readable name to be used as the label for this field in the %type content type.',
11203   'version' => 'none',
11204 ))
11205 ->values(array(
11206   'lid' => '127',
11207   'location' => 'includes/content.admin.inc:814',
11208   'textgroup' => 'default',
11209   'source' => 'The type of data you would like to store in the database with this field. This option cannot be changed.',
11210   'version' => 'none',
11211 ))
11212 ->values(array(
11213   'lid' => '128',
11214   'location' => 'includes/content.admin.inc:819;1003',
11215   'textgroup' => 'default',
11216   'source' => 'Widget type',
11217   'version' => 'none',
11218 ))
11219 ->values(array(
11220   'lid' => '129',
11221   'location' => 'includes/content.admin.inc:823',
11222   'textgroup' => 'default',
11223   'source' => 'The type of form element you would like to present to the user when creating this field in the %type content type.',
11224   'version' => 'none',
11225 ))
11226 ->values(array(
11227   'lid' => '130',
11228   'location' => 'includes/content.admin.inc:833,  includes/content.rules.inc:66',
11229   'textgroup' => 'default',
11230   'source' => 'Continue',
11231   'version' => 'none',
11232 ))
11233 ->values(array(
11234   'lid' => '131',
11235   'location' => 'includes/content.admin.inc:861',
11236   'textgroup' => 'default',
11237   'source' => 'Updated basic settings for field %label.',
11238   'version' => 'none',
11239 ))
11240 ->values(array(
11241   'lid' => '132',
11242   'location' => 'includes/content.admin.inc:865',
11243   'textgroup' => 'default',
11244   'source' => 'There was a problem updating the basic settings for field %label.',
11245   'version' => 'none',
11246 ))
11247 ->values(array(
11248   'lid' => '133',
11249   'location' => 'includes/content.admin.inc:892',
11250   'textgroup' => 'default',
11251   'source' => 'Are you sure you want to remove the field %field?',
11252   'version' => 'none',
11253 ))
11254 ->values(array(
11255   'lid' => '134',
11256   'location' => 'includes/content.admin.inc:894',
11257   'textgroup' => 'default',
11258   'source' => 'If you have any content left in this field, it will be lost. This action cannot be undone.',
11259   'version' => 'none',
11260 ))
11261 ->values(array(
11262   'lid' => '135',
11263   'location' => 'includes/content.admin.inc:895,  modules/fieldgroup/fieldgroup.module:209',
11264   'textgroup' => 'default',
11265   'source' => 'Cancel',
11266   'version' => 'none',
11267 ))
11268 ->values(array(
11269   'lid' => '136',
11270   'location' => 'includes/content.admin.inc:901',
11271   'textgroup' => 'default',
11272   'source' => 'This field is <strong>locked</strong> and cannot be removed.',
11273   'version' => 'none',
11274 ))
11275 ->values(array(
11276   'lid' => '137',
11277   'location' => 'includes/content.admin.inc:922',
11278   'textgroup' => 'default',
11279   'source' => 'Removed field %field from %type.',
11280   'version' => 'none',
11281 ))
11282 ->values(array(
11283   'lid' => '138',
11284   'location' => 'includes/content.admin.inc:927',
11285   'textgroup' => 'default',
11286   'source' => 'There was a problem deleting %field from %type.',
11287   'version' => 'none',
11288 ))
11289 ->values(array(
11290   'lid' => '139',
11291   'location' => 'includes/content.admin.inc:946',
11292   'textgroup' => 'default',
11293   'source' => 'The field %field is locked and cannot be edited.',
11294   'version' => 'none',
11295 ))
11296 ->values(array(
11297   'lid' => '140',
11298   'location' => 'includes/content.admin.inc:980',
11299   'textgroup' => 'default',
11300   'source' => '%type basic information',
11301   'version' => 'none',
11302 ))
11303 ->values(array(
11304   'lid' => '141',
11305   'location' => 'includes/content.admin.inc:1010;1189',
11306   'textgroup' => 'default',
11307   'source' => 'Change basic information',
11308   'version' => 'none',
11309 ))
11310 ->values(array(
11311   'lid' => '142',
11312   'location' => 'includes/content.admin.inc:1016',
11313   'textgroup' => 'default',
11314   'source' => '%type settings',
11315   'version' => 'none',
11316 ))
11317 ->values(array(
11318   'lid' => '143',
11319   'location' => 'includes/content.admin.inc:1017',
11320   'textgroup' => 'default',
11321   'source' => 'These settings apply only to the %field field as it appears in the %type content type.',
11322   'version' => 'none',
11323 ))
11324 ->values(array(
11325   'lid' => '144',
11326   'location' => 'includes/content.admin.inc:1031,  modules/fieldgroup/fieldgroup.module:145',
11327   'textgroup' => 'default',
11328   'source' => 'Help text',
11329   'version' => 'none',
11330 ))
11331 ->values(array(
11332   'lid' => '145',
11333   'location' => 'includes/content.admin.inc:1034',
11334   'textgroup' => 'default',
11335   'source' => 'Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags',
11336   'version' => 'none',
11337 ))
11338 ->values(array(
11339   'lid' => '146',
11340   'location' => 'includes/content.admin.inc:1060',
11341   'textgroup' => 'default',
11342   'source' => 'Default value',
11343   'version' => 'none',
11344 ))
11345 ->values(array(
11346   'lid' => '147',
11347   'location' => 'includes/content.admin.inc:1081,  modules/number/number.module:123,  modules/text/text.module:86',
11348   'textgroup' => 'default',
11349   'source' => 'PHP code',
11350   'version' => 'none',
11351 ))
11352 ->values(array(
11353   'lid' => '148',
11354   'location' => 'includes/content.admin.inc:1090;1245,  includes/content.rules.inc:93',
11355   'textgroup' => 'default',
11356   'source' => "'@column' => value for @column",
11357   'version' => 'none',
11358 ))
11359 ->values(array(
11360   'lid' => '149',
11361   'location' => 'includes/content.admin.inc:1092;1247,  includes/content.rules.inc:95',
11362   'textgroup' => 'default',
11363   '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);",
11364   'version' => 'none',
11365 ))
11366 ->values(array(
11367   'lid' => '150',
11368   'location' => 'includes/content.admin.inc:1096;1109,  includes/content.rules.inc:99,  modules/number/number.module:130;139,  modules/text/text.module:93;102',
11369   'textgroup' => 'default',
11370   'source' => 'Code',
11371   'version' => '6.38-dev',
11372 ))
11373 ->values(array(
11374   'lid' => '151',
11375   'location' => 'includes/content.admin.inc:1100',
11376   'textgroup' => 'default',
11377   '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.',
11378   'version' => 'none',
11379 ))
11380 ->values(array(
11381   'lid' => '152',
11382   'location' => 'includes/content.admin.inc:1110,  modules/number/number.module:140,  modules/text/text.module:103',
11383   'textgroup' => 'default',
11384   'source' => '&lt;none&gt;',
11385   'version' => 'none',
11386 ))
11387 ->values(array(
11388   'lid' => '153',
11389   'location' => 'includes/content.admin.inc:1111,  modules/number/number.module:141,  modules/text/text.module:104',
11390   'textgroup' => 'default',
11391   'source' => "You're not allowed to input PHP code.",
11392   'version' => 'none',
11393 ))
11394 ->values(array(
11395   'lid' => '154',
11396   'location' => 'includes/content.admin.inc:1111',
11397   'textgroup' => 'default',
11398   'source' => 'This PHP code was set by an administrator and will override any value specified above.',
11399   'version' => 'none',
11400 ))
11401 ->values(array(
11402   'lid' => '155',
11403   'location' => 'includes/content.admin.inc:1118',
11404   'textgroup' => 'default',
11405   'source' => 'Global settings',
11406   'version' => 'none',
11407 ))
11408 ->values(array(
11409   'lid' => '156',
11410   'location' => 'includes/content.admin.inc:1119',
11411   'textgroup' => 'default',
11412   'source' => 'These settings apply to the %field field in every content type in which it appears.',
11413   'version' => 'none',
11414 ))
11415 ->values(array(
11416   'lid' => '157',
11417   'location' => 'includes/content.admin.inc:1123',
11418   'textgroup' => 'default',
11419   'source' => 'Required',
11420   'version' => 'none',
11421 ))
11422 ->values(array(
11423   'lid' => '158',
11424   'location' => 'includes/content.admin.inc:1126',
11425   'textgroup' => 'default',
11426   'source' => 'Maximum number of values users can enter for this field.',
11427   'version' => 'none',
11428 ))
11429 ->values(array(
11430   'lid' => '159',
11431   'location' => 'includes/content.admin.inc:1128',
11432   'textgroup' => 'default',
11433   'source' => "'Unlimited' will provide an 'Add more' button so the users can add as many values as they like.",
11434   'version' => 'none',
11435 ))
11436 ->values(array(
11437   'lid' => '160',
11438   'location' => 'includes/content.admin.inc:1130',
11439   'textgroup' => 'default',
11440   'source' => 'Warning! Changing this setting after data has been created could result in the loss of data!',
11441   'version' => 'none',
11442 ))
11443 ->values(array(
11444   'lid' => '161',
11445   'location' => 'includes/content.admin.inc:1133',
11446   'textgroup' => 'default',
11447   'source' => 'Number of values',
11448   'version' => 'none',
11449 ))
11450 ->values(array(
11451   'lid' => '162',
11452   'location' => 'includes/content.admin.inc:1134,  modules/content_multigroup/content_multigroup.module:73',
11453   'textgroup' => 'default',
11454   'source' => 'Unlimited',
11455   'version' => 'none',
11456 ))
11457 ->values(array(
11458   'lid' => '163',
11459   'location' => 'includes/content.admin.inc:1151,  modules/content_copy/content_copy.module:251',
11460   'textgroup' => 'default',
11461   'source' => 'Save field settings',
11462   'version' => 'none',
11463 ))
11464 ->values(array(
11465   'lid' => '164',
11466   'location' => 'includes/content.admin.inc:1288',
11467   'textgroup' => 'default',
11468   'source' => "The PHP code for 'default value' returned @value, which is invalid.",
11469   'version' => 'none',
11470 ))
11471 ->values(array(
11472   'lid' => '165',
11473   'location' => 'includes/content.admin.inc:1292',
11474   'textgroup' => 'default',
11475   'source' => 'The default value is invalid.',
11476   'version' => 'none',
11477 ))
11478 ->values(array(
11479   'lid' => '166',
11480   'location' => 'includes/content.admin.inc:1316',
11481   'textgroup' => 'default',
11482   'source' => 'Added field %label.',
11483   'version' => 'none',
11484 ))
11485 ->values(array(
11486   'lid' => '167',
11487   'location' => 'includes/content.admin.inc:1320',
11488   'textgroup' => 'default',
11489   'source' => 'Saved field %label.',
11490   'version' => 'none',
11491 ))
11492 ->values(array(
11493   'lid' => '168',
11494   'location' => 'includes/content.admin.inc:1678',
11495   'textgroup' => 'default',
11496   'source' => 'Processing',
11497   'version' => 'none',
11498 ))
11499 ->values(array(
11500   'lid' => '169',
11501   'location' => 'includes/content.admin.inc:1679',
11502   'textgroup' => 'default',
11503   'source' => 'The update has encountered an error.',
11504   'version' => 'none',
11505 ))
11506 ->values(array(
11507   'lid' => '170',
11508   'location' => 'includes/content.admin.inc:1693',
11509   'textgroup' => 'default',
11510   'source' => 'The database has been altered and data has been migrated or deleted.',
11511   'version' => 'none',
11512 ))
11513 ->values(array(
11514   'lid' => '171',
11515   'location' => 'includes/content.admin.inc:1696',
11516   'textgroup' => 'default',
11517   'source' => 'An error occurred and database alteration did not complete.',
11518   'version' => 'none',
11519 ))
11520 ->values(array(
11521   'lid' => '172',
11522   'location' => 'includes/content.admin.inc:1799',
11523   'textgroup' => 'default',
11524   'source' => 'Processing %title',
11525   'version' => 'none',
11526 ))
11527 ->values(array(
11528   'lid' => '173',
11529   'location' => 'includes/content.admin.inc:1865',
11530   'textgroup' => 'default',
11531   'source' => '%name must be an integer.',
11532   'version' => 'none',
11533 ))
11534 ->values(array(
11535   'lid' => '174',
11536   'location' => 'includes/content.admin.inc:1875',
11537   'textgroup' => 'default',
11538   'source' => '%name must be a positive integer.',
11539   'version' => 'none',
11540 ))
11541 ->values(array(
11542   'lid' => '175',
11543   'location' => 'includes/content.admin.inc:1885',
11544   'textgroup' => 'default',
11545   'source' => '%name must be a number.',
11546   'version' => 'none',
11547 ))
11548 ->values(array(
11549   'lid' => '176',
11550   'location' => 'includes/content.admin.inc:1697',
11551   'textgroup' => 'default',
11552   'source' => '1 item successfully processed:',
11553   'version' => 'none',
11554 ))
11555 ->values(array(
11556   'lid' => '177',
11557   'location' => 'includes/content.admin.inc:1697',
11558   'textgroup' => 'default',
11559   'source' => '@count items successfully processed:',
11560   'version' => 'none',
11561 ))
11562 ->values(array(
11563   'lid' => '178',
11564   'location' => 'includes/content.crud.inc:589',
11565   'textgroup' => 'default',
11566   'source' => 'Content fields table %old_name has been renamed to %new_name and field instances have been updated.',
11567   'version' => 'none',
11568 ))
11569 ->values(array(
11570   'lid' => '179',
11571   'location' => 'includes/content.crud.inc:633',
11572   'textgroup' => 'default',
11573   'source' => 'The content fields table %name has been deleted.',
11574   'version' => 'none',
11575 ))
11576 ->values(array(
11577   'lid' => '180',
11578   'location' => 'includes/content.node_form.inc:223',
11579   'textgroup' => 'default',
11580   'source' => 'Add another item',
11581   'version' => 'none',
11582 ))
11583 ->values(array(
11584   'lid' => '181',
11585   'location' => 'includes/panels/content_types/content_field.inc:14',
11586   'textgroup' => 'default',
11587   'source' => 'Content field',
11588   'version' => 'none',
11589 ))
11590 ->values(array(
11591   'lid' => '182',
11592   'location' => 'includes/content.panels.inc:38',
11593   'textgroup' => 'default',
11594   'source' => 'A content field from the referenced node.',
11595   'version' => 'none',
11596 ))
11597 ->values(array(
11598   'lid' => '183',
11599   'location' => 'includes/panels/content_types/content_field.inc:45,  modules/fieldgroup/fieldgroup.panels.inc:31,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:43',
11600   'textgroup' => 'default',
11601   'source' => 'Node',
11602   'version' => 'none',
11603 ))
11604 ->values(array(
11605   'lid' => '184',
11606   'location' => 'includes/content.panels.inc:40,  modules/fieldgroup/fieldgroup.panels.inc:32',
11607   'textgroup' => 'default',
11608   'source' => 'Node context',
11609   'version' => 'none',
11610 ))
11611 ->values(array(
11612   'lid' => '185',
11613   'location' => 'includes/panels/content_types/content_field.inc:100',
11614   'textgroup' => 'default',
11615   'source' => 'Block title',
11616   'version' => 'none',
11617 ))
11618 ->values(array(
11619   'lid' => '186',
11620   'location' => 'includes/panels/content_types/content_field.inc:103',
11621   'textgroup' => 'default',
11622   'source' => 'Hidden',
11623   'version' => 'none',
11624 ))
11625 ->values(array(
11626   'lid' => '187',
11627   'location' => 'includes/panels/content_types/content_field.inc:105',
11628   'textgroup' => 'default',
11629   'source' => 'Configure how the label is going to be displayed.',
11630   'version' => 'none',
11631 ))
11632 ->values(array(
11633   'lid' => '188',
11634   'location' => 'includes/content.panels.inc:73',
11635   'textgroup' => 'default',
11636   'source' => 'Field / Formatter',
11637   'version' => 'none',
11638 ))
11639 ->values(array(
11640   'lid' => '189',
11641   'location' => 'includes/content.panels.inc:76',
11642   'textgroup' => 'default',
11643   'source' => 'Select a field and formatter.',
11644   'version' => 'none',
11645 ))
11646 ->values(array(
11647   'lid' => '190',
11648   'location' => 'includes/content.panels.inc:92',
11649   'textgroup' => 'default',
11650   'source' => '"@s" field @name',
11651   'version' => 'none',
11652 ))
11653 ->values(array(
11654   'lid' => '191',
11655   'location' => 'includes/content.rules.inc:15',
11656   'textgroup' => 'default',
11657   'source' => 'Populate a field',
11658   'version' => 'none',
11659 ))
11660 ->values(array(
11661   'lid' => '192',
11662   'location' => 'includes/content.rules.inc:23;224',
11663   'textgroup' => 'default',
11664   'source' => 'You should make sure that the used field exists in the given content type.',
11665   'version' => 'none',
11666 ))
11667 ->values(array(
11668   'lid' => '193',
11669   'location' => 'includes/content.rules.inc:53;276,  modules/nodereference/nodereference.rules.inc:45,  modules/userreference/userreference.rules.inc:47',
11670   'textgroup' => 'default',
11671   'source' => 'Field',
11672   'version' => 'none',
11673 ))
11674 ->values(array(
11675   'lid' => '194',
11676   'location' => 'includes/content.rules.inc:56',
11677   'textgroup' => 'default',
11678   'source' => 'Select the machine-name of the field.',
11679   'version' => 'none',
11680 ))
11681 ->values(array(
11682   'lid' => '195',
11683   'location' => 'includes/content.rules.inc:84',
11684   'textgroup' => 'default',
11685   'source' => 'Advanced: Specify the fields value with PHP code',
11686   'version' => 'none',
11687 ))
11688 ->values(array(
11689   'lid' => '196',
11690   'location' => 'not literally,  includes/content.rules.inc:102',
11691   'textgroup' => 'default',
11692   '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.",
11693   'version' => 'none',
11694 ))
11695 ->values(array(
11696   'lid' => '197',
11697   'location' => 'includes/content.rules.inc:130',
11698   'textgroup' => 'default',
11699   'source' => 'You have to return the default value in the expected format.',
11700   'version' => 'none',
11701 ))
11702 ->values(array(
11703   'lid' => '198',
11704   'location' => 'includes/content.rules.inc:193',
11705   'textgroup' => 'default',
11706   'source' => "Populate @node's field '@field'",
11707   'version' => 'none',
11708 ))
11709 ->values(array(
11710   'lid' => '199',
11711   'location' => 'includes/content.rules.inc:210',
11712   'textgroup' => 'default',
11713   'source' => 'Field has value',
11714   'version' => 'none',
11715 ))
11716 ->values(array(
11717   'lid' => '200',
11718   'location' => 'includes/content.rules.inc:215',
11719   'textgroup' => 'default',
11720   '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.',
11721   'version' => 'none',
11722 ))
11723 ->values(array(
11724   'lid' => '201',
11725   'location' => 'includes/content.rules.inc:219',
11726   'textgroup' => 'default',
11727   'source' => 'Field has changed',
11728   'version' => 'none',
11729 ))
11730 ->values(array(
11731   'lid' => '202',
11732   'location' => 'includes/content.rules.inc:221',
11733   'textgroup' => 'default',
11734   'source' => 'Content containing changes',
11735   'version' => 'none',
11736 ))
11737 ->values(array(
11738   'lid' => '203',
11739   'location' => 'includes/content.rules.inc:222',
11740   'textgroup' => 'default',
11741   'source' => 'Content not containing changes',
11742   'version' => 'none',
11743 ))
11744 ->values(array(
11745   'lid' => '204',
11746   'location' => 'includes/content.rules.inc:259',
11747   'textgroup' => 'default',
11748   'source' => "@node's field '@field' has value",
11749   'version' => 'none',
11750 ))
11751 ->values(array(
11752   'lid' => '205',
11753   'location' => 'not literally,  includes/content.rules.inc:279,  fuzzy',
11754   'textgroup' => 'default',
11755   'source' => 'Select the machine-name of the field to look at.',
11756   'version' => 'none',
11757 ))
11758 ->values(array(
11759   'lid' => '206',
11760   'location' => '@node?,  includes/content.rules.inc:285',
11761   'textgroup' => 'default',
11762   'source' => "@node's field '@field' has been changed",
11763   'version' => 'none',
11764 ))
11765 ->values(array(
11766   'lid' => '207',
11767   'location' => 'includes/content.token.inc:12;15',
11768   'textgroup' => 'default',
11769   'source' => 'Token',
11770   'version' => 'none',
11771 ))
11772 ->values(array(
11773   'lid' => '208',
11774   'location' => 'includes/content.token.inc:81',
11775   'textgroup' => 'default',
11776   'source' => 'Referenced node ID',
11777   'version' => 'none',
11778 ))
11779 ->values(array(
11780   'lid' => '209',
11781   'location' => 'includes/content.token.inc:82',
11782   'textgroup' => 'default',
11783   'source' => 'Referenced node title',
11784   'version' => 'none',
11785 ))
11786 ->values(array(
11787   'lid' => '210',
11788   'location' => 'includes/content.token.inc:83',
11789   'textgroup' => 'default',
11790   'source' => 'Referenced node unfiltered title. WARNING - raw user input.',
11791   'version' => 'none',
11792 ))
11793 ->values(array(
11794   'lid' => '211',
11795   'location' => 'includes/content.token.inc:84',
11796   'textgroup' => 'default',
11797   'source' => 'Formatted html link to the referenced node.',
11798   'version' => 'none',
11799 ))
11800 ->values(array(
11801   'lid' => '212',
11802   'location' => 'includes/content.token.inc:85',
11803   'textgroup' => 'default',
11804   'source' => 'Relative path alias to the referenced node.',
11805   'version' => 'none',
11806 ))
11807 ->values(array(
11808   'lid' => '213',
11809   'location' => 'includes/content.token.inc:86',
11810   'textgroup' => 'default',
11811   'source' => 'Absolute path alias to the referenced node.',
11812   'version' => 'none',
11813 ))
11814 ->values(array(
11815   'lid' => '214',
11816   'location' => 'includes/content.token.inc:114',
11817   'textgroup' => 'default',
11818   'source' => 'Raw number value',
11819   'version' => 'none',
11820 ))
11821 ->values(array(
11822   'lid' => '215',
11823   'location' => 'includes/content.token.inc:115',
11824   'textgroup' => 'default',
11825   'source' => 'Formatted number value',
11826   'version' => 'none',
11827 ))
11828 ->values(array(
11829   'lid' => '216',
11830   'location' => 'includes/content.token.inc:138',
11831   'textgroup' => 'default',
11832   'source' => 'Raw, unfiltered text',
11833   'version' => 'none',
11834 ))
11835 ->values(array(
11836   'lid' => '217',
11837   'location' => 'includes/content.token.inc:139',
11838   'textgroup' => 'default',
11839   'source' => 'Formatted and filtered text',
11840   'version' => 'none',
11841 ))
11842 ->values(array(
11843   'lid' => '218',
11844   'location' => 'includes/content.token.inc:161',
11845   'textgroup' => 'default',
11846   'source' => 'Referenced user ID',
11847   'version' => 'none',
11848 ))
11849 ->values(array(
11850   'lid' => '219',
11851   'location' => 'includes/content.token.inc:162',
11852   'textgroup' => 'default',
11853   'source' => 'Referenced user name',
11854   'version' => 'none',
11855 ))
11856 ->values(array(
11857   'lid' => '220',
11858   'location' => 'includes/content.token.inc:163',
11859   'textgroup' => 'default',
11860   'source' => 'Formatted HTML link to referenced user',
11861   'version' => 'none',
11862 ))
11863 ->values(array(
11864   'lid' => '221',
11865   'location' => 'includes/content.token.inc:164',
11866   'textgroup' => 'default',
11867   'source' => 'Relative path alias to the referenced user.',
11868   'version' => 'none',
11869 ))
11870 ->values(array(
11871   'lid' => '222',
11872   'location' => 'includes/content.token.inc:165',
11873   'textgroup' => 'default',
11874   'source' => 'Absolute path alias to the referenced user.',
11875   'version' => 'none',
11876 ))
11877 ->values(array(
11878   'lid' => '223',
11879   'location' => 'includes/views/content.views.inc:245;261',
11880   'textgroup' => 'default',
11881   'source' => '@label (!name)',
11882   'version' => 'none',
11883 ))
11884 ->values(array(
11885   'lid' => '224',
11886   'location' => 'includes/views/content.views.inc:249',
11887   'textgroup' => 'default',
11888   'source' => '@label (!name) - !column',
11889   'version' => 'none',
11890 ))
11891 ->values(array(
11892   'lid' => '225',
11893   'location' => 'includes/views/content.views.inc:250',
11894   'textgroup' => 'default',
11895   'source' => '@label-truncated - !column',
11896   'version' => 'none',
11897 ))
11898 ->values(array(
11899   'lid' => '226',
11900   'location' => 'includes/views/content.views.inc:257',
11901   'textgroup' => 'default',
11902   'source' => 'Appears in: @types',
11903   'version' => 'none',
11904 ))
11905 ->values(array(
11906   'lid' => '227',
11907   'location' => 'includes/views/handlers/content_handler_field.inc:56',
11908   'textgroup' => 'default',
11909   'source' => 'None',
11910   'version' => 'none',
11911 ))
11912 ->values(array(
11913   'lid' => '228',
11914   'location' => 'includes/views/handlers/content_handler_field.inc:57',
11915   'textgroup' => 'default',
11916   'source' => 'Widget label (@label)',
11917   'version' => 'none',
11918 ))
11919 ->values(array(
11920   'lid' => '229',
11921   'location' => 'includes/views/handlers/content_handler_field.inc:58',
11922   'textgroup' => 'default',
11923   'source' => 'Custom',
11924   'version' => 'none',
11925 ))
11926 ->values(array(
11927   'lid' => '230',
11928   'location' => 'includes/views/handlers/content_handler_field.inc:64',
11929   'textgroup' => 'default',
11930   'source' => 'Custom label',
11931   'version' => 'none',
11932 ))
11933 ->values(array(
11934   'lid' => '231',
11935   'location' => 'includes/views/handlers/content_handler_field.inc:80',
11936   'textgroup' => 'default',
11937   'source' => 'Format',
11938   'version' => 'none',
11939 ))
11940 ->values(array(
11941   'lid' => '232',
11942   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:56',
11943   'textgroup' => 'default',
11944   'source' => 'Group multiple values',
11945   'version' => 'none',
11946 ))
11947 ->values(array(
11948   'lid' => '233',
11949   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:61',
11950   'textgroup' => 'default',
11951   '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.',
11952   'version' => 'none',
11953 ))
11954 ->values(array(
11955   'lid' => '234',
11956   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:63',
11957   'textgroup' => 'default',
11958   'source' => 'Show @count value(s)',
11959   'version' => 'none',
11960 ))
11961 ->values(array(
11962   'lid' => '235',
11963   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:74',
11964   'textgroup' => 'default',
11965   'source' => 'starting from @count',
11966   'version' => 'none',
11967 ))
11968 ->values(array(
11969   'lid' => '236',
11970   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:85',
11971   'textgroup' => 'default',
11972   'source' => 'Reversed (start from last values)',
11973   'version' => 'none',
11974 ))
11975 ->values(array(
11976   'lid' => '237',
11977   'location' => 'includes/views/handlers/content_handler_relationship.inc:40,  includes/views/handlers/content_handler_sort.inc:41',
11978   'textgroup' => 'default',
11979   'source' => 'All',
11980   'version' => 'none',
11981 ))
11982 ->values(array(
11983   'lid' => '238',
11984   'location' => 'includes/views/handlers/content_handler_relationship.inc:48,  includes/views/handlers/content_handler_sort.inc:49',
11985   'textgroup' => 'default',
11986   'source' => 'Delta',
11987   'version' => 'none',
11988 ))
11989 ->values(array(
11990   'lid' => '239',
11991   'location' => 'includes/views/handlers/content_handler_relationship.inc:49',
11992   'textgroup' => 'default',
11993   '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.',
11994   'version' => 'none',
11995 ))
11996 ->values(array(
11997   'lid' => '240',
11998   'location' => 'includes/views/handlers/content_handler_sort.inc:50',
11999   'textgroup' => 'default',
12000   '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.',
12001   'version' => 'none',
12002 ))
12003 ->values(array(
12004   'lid' => '241',
12005   'location' => 'modules/content_copy/content_copy_export_form.tpl.php:9,  modules/content_copy/content_copy.module:191;38',
12006   'textgroup' => 'default',
12007   'source' => 'Export',
12008   'version' => '6.38-dev',
12009 ))
12010 ->values(array(
12011   'lid' => '242',
12012   'location' => 'modules/content_copy/content_copy.module:97',
12013   'textgroup' => 'default',
12014   '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.',
12015   'version' => 'none',
12016 ))
12017 ->values(array(
12018   'lid' => '243',
12019   'location' => 'modules/content_copy/content_copy.module:103',
12020   'textgroup' => 'default',
12021   'source' => 'Types',
12022   'version' => 'none',
12023 ))
12024 ->values(array(
12025   'lid' => '244',
12026   'location' => 'modules/content_copy/content_copy.module:107',
12027   'textgroup' => 'default',
12028   'source' => 'Select the content type to export.',
12029   'version' => 'none',
12030 ))
12031 ->values(array(
12032   'lid' => '245',
12033   'location' => 'modules/content_copy/content_copy.module:175',
12034   'textgroup' => 'default',
12035   'source' => 'Export data',
12036   'version' => 'none',
12037 ))
12038 ->values(array(
12039   'lid' => '246',
12040   'location' => 'modules/content_copy/content_copy.module:180',
12041   'textgroup' => 'default',
12042   'source' => 'Copy the export text and paste it into another content type using the import function.',
12043   'version' => 'none',
12044 ))
12045 ->values(array(
12046   'lid' => '247',
12047   'location' => 'content_admin.inc:42',
12048   'textgroup' => 'default',
12049   'source' => 'Content types',
12050   'version' => '6.38-dev',
12051 ))
12052 ->values(array(
12053   'lid' => '248',
12054   'location' => 'modules/content_copy/content_copy.module:308',
12055   'textgroup' => 'default',
12056   'source' => 'Content type',
12057   'version' => '6.38-dev',
12058 ))
12059 ->values(array(
12060   'lid' => '249',
12061   'location' => 'modules/content_copy/content_copy.module:309',
12062   'textgroup' => 'default',
12063   '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.',
12064   'version' => 'none',
12065 ))
12066 ->values(array(
12067   'lid' => '250',
12068   'location' => 'modules/content_copy/content_copy.module:314',
12069   'textgroup' => 'default',
12070   'source' => 'Import data',
12071   'version' => 'none',
12072 ))
12073 ->values(array(
12074   'lid' => '251',
12075   'location' => 'modules/content_copy/content_copy.module:316',
12076   'textgroup' => 'default',
12077   'source' => 'Paste the text created by a content export into this field.',
12078   'version' => 'none',
12079 ))
12080 ->values(array(
12081   'lid' => '252',
12082   'location' => 'modules/content_copy/content_copy.module:320;46',
12083   'textgroup' => 'default',
12084   'source' => 'Import',
12085   'version' => '6.38-dev',
12086 ))
12087 ->values(array(
12088   'lid' => '253',
12089   'location' => 'modules/content_copy/content_copy.module:328',
12090   'textgroup' => 'default',
12091   'source' => 'A file has been pre-loaded for import.',
12092   'version' => 'none',
12093 ))
12094 ->values(array(
12095   'lid' => '254',
12096   'location' => 'modules/content_copy/content_copy.module:354',
12097   'textgroup' => 'default',
12098   'source' => 'The import data is not valid import text.',
12099   'version' => 'none',
12100 ))
12101 ->values(array(
12102   'lid' => '255',
12103   'location' => 'modules/content_copy/content_copy.module:403',
12104   'textgroup' => 'default',
12105   'source' => 'The following modules must be enabled for this import to work: %modules.',
12106   'version' => 'none',
12107 ))
12108 ->values(array(
12109   'lid' => '256',
12110   'location' => 'modules/content_copy/content_copy.module:411',
12111   'textgroup' => 'default',
12112   'source' => 'The content type %type already exists in this database.',
12113   'version' => 'none',
12114 ))
12115 ->values(array(
12116   'lid' => '257',
12117   'location' => 'modules/content_copy/content_copy.module:418',
12118   'textgroup' => 'default',
12119   'source' => 'Exiting. No import performed.',
12120   'version' => 'none',
12121 ))
12122 ->values(array(
12123   'lid' => '258',
12124   'location' => 'modules/content_copy/content_copy.module:442',
12125   'textgroup' => 'default',
12126   'source' => 'An error has occurred adding the content type %type.<br/>Please check the errors displayed for more details.',
12127   'version' => 'none',
12128 ))
12129 ->values(array(
12130   'lid' => '259',
12131   'location' => 'modules/content_copy/content_copy.module:467',
12132   'textgroup' => 'default',
12133   'source' => 'The imported field %field_label (%field_name) was not added to %type because that field already exists in %type.',
12134   'version' => 'none',
12135 ))
12136 ->values(array(
12137   'lid' => '260',
12138   'location' => 'modules/content_copy/content_copy.module:476',
12139   'textgroup' => 'default',
12140   'source' => 'The field %field_label (%field_name) was added to the content type %type.',
12141   'version' => 'none',
12142 ))
12143 ->values(array(
12144   'lid' => '261',
12145   'location' => 'modules/content_copy/content_copy.module:0',
12146   'textgroup' => 'default',
12147   'source' => 'content_copy',
12148   'version' => 'none',
12149 ))
12150 ->values(array(
12151   'lid' => '262',
12152   'location' => 'modules/content_copy/content_copy.info:0',
12153   'textgroup' => 'default',
12154   'source' => 'Content Copy',
12155   'version' => 'none',
12156 ))
12157 ->values(array(
12158   'lid' => '263',
12159   'location' => 'modules/content_copy/content_copy.info:0',
12160   'textgroup' => 'default',
12161   'source' => 'Enables ability to import/export field definitions.',
12162   'version' => 'none',
12163 ))
12164 ->values(array(
12165   'lid' => '264',
12166   'location' => 'modules/content_multigroup/content_multigroup.module:12',
12167   'textgroup' => 'default',
12168   '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.',
12169   'version' => 'none',
12170 ))
12171 ->values(array(
12172   'lid' => '265',
12173   'location' => 'modules/content_multigroup/content_multigroup.module:65;135',
12174   'textgroup' => 'default',
12175   'source' => 'Multigroup',
12176   'version' => 'none',
12177 ))
12178 ->values(array(
12179   'lid' => '266',
12180   'location' => 'modules/content_multigroup/content_multigroup.module:134',
12181   'textgroup' => 'default',
12182   'source' => 'Standard',
12183   'version' => 'none',
12184 ))
12185 ->values(array(
12186   'lid' => '267',
12187   'location' => 'includes/content.admin.inc:344,  modules/content_multigroup/content_multigroup.module:126',
12188   'textgroup' => 'default',
12189   'source' => 'Type of group.',
12190   'version' => 'none',
12191 ))
12192 ->values(array(
12193   'lid' => '268',
12194   'location' => 'modules/content_multigroup/content_multigroup.module:215',
12195   'textgroup' => 'default',
12196   'source' => 'The field %field has been updated to use %multiple values, to match the multiple value setting of the Multigroup %group.',
12197   'version' => 'none',
12198 ))
12199 ->values(array(
12200   'lid' => '269',
12201   'location' => 'modules/content_multigroup/content_multigroup.module:248',
12202   'textgroup' => 'default',
12203   '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.',
12204   'version' => 'none',
12205 ))
12206 ->values(array(
12207   'lid' => '270',
12208   'location' => 'modules/content_multigroup/content_multigroup.module:272',
12209   'textgroup' => 'default',
12210   '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.',
12211   'version' => 'none',
12212 ))
12213 ->values(array(
12214   'lid' => '271',
12215   'location' => 'modules/content_multigroup/content_multigroup.module:287',
12216   'textgroup' => 'default',
12217   'source' => 'You are moving the field %field into a Multigroup.',
12218   'version' => 'none',
12219 ))
12220 ->values(array(
12221   'lid' => '272',
12222   'location' => 'modules/content_multigroup/content_multigroup.module:320',
12223   'textgroup' => 'default',
12224   '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.',
12225   'version' => 'none',
12226 ))
12227 ->values(array(
12228   'lid' => '273',
12229   'location' => 'modules/content_multigroup/content_multigroup.module:334',
12230   'textgroup' => 'default',
12231   'source' => 'You are moving the field %field out of a Multigroup.',
12232   'version' => 'none',
12233 ))
12234 ->values(array(
12235   'lid' => '274',
12236   'location' => 'modules/content_multigroup/content_multigroup.module:369',
12237   'textgroup' => 'default',
12238   'source' => 'Simple',
12239   'version' => 'none',
12240 ))
12241 ->values(array(
12242   'lid' => '275',
12243   'location' => 'modules/content_multigroup/content_multigroup.module:370',
12244   'textgroup' => 'default',
12245   'source' => 'Fieldset',
12246   'version' => 'none',
12247 ))
12248 ->values(array(
12249   'lid' => '276',
12250   'location' => 'modules/content_multigroup/content_multigroup.module:371',
12251   'textgroup' => 'default',
12252   'source' => 'Horizontal line',
12253   'version' => 'none',
12254 ))
12255 ->values(array(
12256   'lid' => '277',
12257   'location' => 'modules/content_multigroup/content_multigroup.module:372',
12258   'textgroup' => 'default',
12259   'source' => 'Table - Single column',
12260   'version' => 'none',
12261 ))
12262 ->values(array(
12263   'lid' => '278',
12264   'location' => 'modules/content_multigroup/content_multigroup.module:373',
12265   'textgroup' => 'default',
12266   'source' => 'Table - Multiple columns',
12267   'version' => 'none',
12268 ))
12269 ->values(array(
12270   'lid' => '279',
12271   'location' => 'modules/content_multigroup/content_multigroup.module:384',
12272   'textgroup' => 'default',
12273   'source' => '[Subgroup format]',
12274   'version' => 'none',
12275 ))
12276 ->values(array(
12277   'lid' => '280',
12278   'location' => 'modules/content_multigroup/content_multigroup.module:461',
12279   'textgroup' => 'default',
12280   'source' => 'Multigroup settings',
12281   'version' => 'none',
12282 ))
12283 ->values(array(
12284   'lid' => '281',
12285   'location' => 'modules/content_multigroup/content_multigroup.module:476',
12286   'textgroup' => 'default',
12287   'source' => 'Multiple columns',
12288   'version' => 'none',
12289 ))
12290 ->values(array(
12291   'lid' => '282',
12292   'location' => 'modules/content_multigroup/content_multigroup.module:478',
12293   'textgroup' => 'default',
12294   'source' => 'Enable this option to render each field on a separate column on the node edit form.',
12295   'version' => 'none',
12296 ))
12297 ->values(array(
12298   'lid' => '283',
12299   'location' => 'modules/content_multigroup/content_multigroup.module:485',
12300   'textgroup' => 'default',
12301   'source' => 'Enable this option to require a minimum of one collection of fields in this Multigroup.',
12302   'version' => 'none',
12303 ))
12304 ->values(array(
12305   'lid' => '284',
12306   'location' => 'modules/content_multigroup/content_multigroup.module:488',
12307   'textgroup' => 'default',
12308   'source' => 'Number of times to repeat the collection of Multigroup fields.',
12309   'version' => 'none',
12310 ))
12311 ->values(array(
12312   'lid' => '285',
12313   'location' => 'modules/content_multigroup/content_multigroup.module:489',
12314   'textgroup' => 'default',
12315   'source' => "'Unlimited' will provide an 'Add more' button so the users can add items as many times as they like.",
12316   'version' => 'none',
12317 ))
12318 ->values(array(
12319   'lid' => '286',
12320   'location' => 'modules/content_multigroup/content_multigroup.module:490',
12321   'textgroup' => 'default',
12322   'source' => 'All fields in this group will automatically be set to allow this number of values.',
12323   'version' => 'none',
12324 ))
12325 ->values(array(
12326   'lid' => '287',
12327   'location' => 'modules/content_multigroup/content_multigroup.module:495',
12328   'textgroup' => 'default',
12329   'source' => 'Number of repeats',
12330   'version' => 'none',
12331 ))
12332 ->values(array(
12333   'lid' => '288',
12334   'location' => 'modules/content_multigroup/content_multigroup.module:503',
12335   'textgroup' => 'default',
12336   'source' => 'Labels',
12337   'version' => 'none',
12338 ))
12339 ->values(array(
12340   'lid' => '289',
12341   'location' => 'modules/content_multigroup/content_multigroup.module:504',
12342   'textgroup' => 'default',
12343   'source' => "Labels for each subgroup of fields. Labels can be hidden or shown in various contexts using the 'Display fields' screen.",
12344   'version' => 'none',
12345 ))
12346 ->values(array(
12347   'lid' => '290',
12348   'location' => 'modules/content_multigroup/content_multigroup.module:512',
12349   'textgroup' => 'default',
12350   'source' => 'Subgroup %number label',
12351   'version' => 'none',
12352 ))
12353 ->values(array(
12354   'lid' => '291',
12355   'location' => 'modules/content_multigroup/content_multigroup.module:539',
12356   'textgroup' => 'default',
12357   '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.',
12358   'version' => 'none',
12359 ))
12360 ->values(array(
12361   'lid' => '292',
12362   'location' => 'modules/content_multigroup/content_multigroup.module:932',
12363   'textgroup' => 'default',
12364   'source' => '!name field is required in group @group.',
12365   'version' => 'none',
12366 ))
12367 ->values(array(
12368   'lid' => '293',
12369   'location' => 'modules/content_multigroup/content_multigroup.module:946',
12370   'textgroup' => 'default',
12371   'source' => 'Group @name requires one collection of fields minimum.',
12372   'version' => 'none',
12373 ))
12374 ->values(array(
12375   'lid' => '294',
12376   'location' => 'modules/content_multigroup/content_multigroup.module:1145',
12377   'textgroup' => 'default',
12378   'source' => 'Add more values',
12379   'version' => 'none',
12380 ))
12381 ->values(array(
12382   'lid' => '295',
12383   'location' => 'modules/content_multigroup/content_multigroup.module:0',
12384   'textgroup' => 'default',
12385   'source' => 'content_multigroup',
12386   'version' => 'none',
12387 ))
12388 ->values(array(
12389   'lid' => '296',
12390   'location' => 'modules/content_multigroup/content_multigroup.info:0',
12391   'textgroup' => 'default',
12392   'source' => 'Content Multigroup',
12393   'version' => 'none',
12394 ))
12395 ->values(array(
12396   'lid' => '297',
12397   'location' => 'modules/content_multigroup/content_multigroup.info:0',
12398   'textgroup' => 'default',
12399   'source' => 'Combine multiple CCK fields into repeating field collections that work in unison.',
12400   'version' => 'none',
12401 ))
12402 ->values(array(
12403   'lid' => '298',
12404   'location' => 'modules/content_permissions/content_permissions.module:10',
12405   'textgroup' => 'default',
12406   'source' => 'edit',
12407   'version' => 'none',
12408 ))
12409 ->values(array(
12410   'lid' => '299',
12411   'location' => 'modules/content_permissions/content_permissions.module:10;11',
12412   'textgroup' => 'default',
12413   'source' => 'field_name',
12414   'version' => 'none',
12415 ))
12416 ->values(array(
12417   'lid' => '300',
12418   'location' => 'modules/content_permissions/content_permissions.module:11',
12419   'textgroup' => 'default',
12420   'source' => 'view',
12421   'version' => 'none',
12422 ))
12423 ->values(array(
12424   'lid' => '301',
12425   'location' => 'modules/content_permissions/content_permissions.module:0',
12426   'textgroup' => 'default',
12427   'source' => 'content_permissions',
12428   'version' => 'none',
12429 ))
12430 ->values(array(
12431   'lid' => '302',
12432   'location' => 'modules/content_permissions/content_permissions.install:9',
12433   'textgroup' => 'default',
12434   'source' => 'Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.',
12435   'version' => 'none',
12436 ))
12437 ->values(array(
12438   'lid' => '303',
12439   'location' => 'modules/content_permissions/content_permissions.info:0',
12440   'textgroup' => 'default',
12441   'source' => 'Content Permissions',
12442   'version' => 'none',
12443 ))
12444 ->values(array(
12445   'lid' => '304',
12446   'location' => 'modules/content_permissions/content_permissions.info:0',
12447   'textgroup' => 'default',
12448   'source' => 'Set field-level permissions for CCK fields.',
12449   'version' => 'none',
12450 ))
12451 ->values(array(
12452   'lid' => '305',
12453   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:10;27,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:14',
12454   'textgroup' => 'default',
12455   'source' => 'Content fieldgroup',
12456   'version' => 'none',
12457 ))
12458 ->values(array(
12459   'lid' => '306',
12460   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:30',
12461   'textgroup' => 'default',
12462   'source' => 'All fields from a fieldgroup on the referenced node.',
12463   'version' => 'none',
12464 ))
12465 ->values(array(
12466   'lid' => '307',
12467   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:91',
12468   'textgroup' => 'default',
12469   'source' => '@group_label (@group_type_name)',
12470   'version' => 'none',
12471 ))
12472 ->values(array(
12473   'lid' => '308',
12474   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:102,  modules/fieldgroup/fieldgroup.info:0',
12475   'textgroup' => 'default',
12476   'source' => 'Fieldgroup',
12477   'version' => 'none',
12478 ))
12479 ->values(array(
12480   'lid' => '309',
12481   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:112,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:102',
12482   'textgroup' => 'default',
12483   'source' => 'Text to display if group has no data. Note that title will not display unless overridden.',
12484   'version' => 'none',
12485 ))
12486 ->values(array(
12487   'lid' => '310',
12488   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:128',
12489   'textgroup' => 'default',
12490   'source' => '"@s" fieldgroup @name',
12491   'version' => 'none',
12492 ))
12493 ->values(array(
12494   'lid' => '311',
12495   'location' => 'modules/fieldgroup/fieldgroup.module:124',
12496   'textgroup' => 'default',
12497   'source' => 'Form settings',
12498   'version' => 'none',
12499 ))
12500 ->values(array(
12501   'lid' => '312',
12502   'location' => 'modules/fieldgroup/fieldgroup.module:125',
12503   'textgroup' => 'default',
12504   'source' => 'These settings apply to the group in the node editing form.',
12505   'version' => 'none',
12506 ))
12507 ->values(array(
12508   'lid' => '313',
12509   'location' => 'modules/fieldgroup/fieldgroup.module:129',
12510   'textgroup' => 'default',
12511   'source' => 'Style',
12512   'version' => 'none',
12513 ))
12514 ->values(array(
12515   'lid' => '314',
12516   'location' => 'modules/fieldgroup/fieldgroup.module:132',
12517   'textgroup' => 'default',
12518   'source' => 'always open',
12519   'version' => 'none',
12520 ))
12521 ->values(array(
12522   'lid' => '315',
12523   'location' => 'modules/fieldgroup/fieldgroup.module:133',
12524   'textgroup' => 'default',
12525   'source' => 'collapsible',
12526   'version' => 'none',
12527 ))
12528 ->values(array(
12529   'lid' => '316',
12530   'location' => 'modules/fieldgroup/fieldgroup.module:134',
12531   'textgroup' => 'default',
12532   'source' => 'collapsed',
12533   'version' => 'none',
12534 ))
12535 ->values(array(
12536   'lid' => '317',
12537   'location' => 'modules/fieldgroup/fieldgroup.module:142',
12538   'textgroup' => 'default',
12539   'source' => 'Instructions to present to the user on the editing form.',
12540   'version' => 'none',
12541 ))
12542 ->values(array(
12543   'lid' => '318',
12544   'location' => 'modules/fieldgroup/fieldgroup.module:147',
12545   'textgroup' => 'default',
12546   'source' => 'Display settings',
12547   'version' => 'none',
12548 ))
12549 ->values(array(
12550   'lid' => '319',
12551   'location' => 'modules/fieldgroup/fieldgroup.module:148',
12552   'textgroup' => 'default',
12553   'source' => 'These settings apply to the group on node display.',
12554   'version' => 'none',
12555 ))
12556 ->values(array(
12557   'lid' => '320',
12558   'location' => 'modules/fieldgroup/fieldgroup.module:155',
12559   'textgroup' => 'default',
12560   'source' => 'A description of the group.',
12561   'version' => 'none',
12562 ))
12563 ->values(array(
12564   'lid' => '321',
12565   'location' => 'modules/fieldgroup/fieldgroup.module:200',
12566   'textgroup' => 'default',
12567   'source' => 'Are you sure you want to remove the group %label?',
12568   'version' => 'none',
12569 ))
12570 ->values(array(
12571   'lid' => '322',
12572   'location' => 'modules/fieldgroup/fieldgroup.module:202',
12573   'textgroup' => 'default',
12574   'source' => 'This action cannot be undone.',
12575   'version' => 'none',
12576 ))
12577 ->values(array(
12578   'lid' => '323',
12579   'location' => 'modules/fieldgroup/fieldgroup.module:211',
12580   'textgroup' => 'default',
12581   'source' => 'The group %group_name has been removed.',
12582   'version' => 'none',
12583 ))
12584 ->values(array(
12585   'lid' => '324',
12586   'location' => 'modules/content_multigroup/content_multigroup.module:356,  modules/fieldgroup/fieldgroup.module:266',
12587   'textgroup' => 'default',
12588   'source' => 'none',
12589   'version' => '6.38-dev',
12590 ))
12591 ->values(array(
12592   'lid' => '325',
12593   'location' => 'modules/fieldgroup/fieldgroup.module:353',
12594   'textgroup' => 'default',
12595   'source' => 'You need to provide a label.',
12596   'version' => 'none',
12597 ))
12598 ->values(array(
12599   'lid' => '326',
12600   'location' => 'modules/fieldgroup/fieldgroup.module:358',
12601   'textgroup' => 'default',
12602   'source' => 'You need to provide a group name.',
12603   'version' => 'none',
12604 ))
12605 ->values(array(
12606   'lid' => '327',
12607   'location' => 'modules/fieldgroup/fieldgroup.module:372',
12608   'textgroup' => 'default',
12609   'source' => 'The group name %group_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
12610   'version' => 'none',
12611 ))
12612 ->values(array(
12613   'lid' => '328',
12614   'location' => 'modules/fieldgroup/fieldgroup.module:375',
12615   'textgroup' => 'default',
12616   'source' => "The group name %group_name is too long. The name is limited to 32 characters, including the 'group_' prefix.",
12617   'version' => 'none',
12618 ))
12619 ->values(array(
12620   'lid' => '329',
12621   'location' => 'modules/fieldgroup/fieldgroup.module:381',
12622   'textgroup' => 'default',
12623   'source' => 'The group name %group_name already exists.',
12624   'version' => 'none',
12625 ))
12626 ->values(array(
12627   'lid' => '330',
12628   'location' => 'modules/fieldgroup/fieldgroup.module:400;403',
12629   'textgroup' => 'default',
12630   'source' => 'Add new group:',
12631   'version' => 'none',
12632 ))
12633 ->values(array(
12634   'lid' => '331',
12635   'location' => 'modules/fieldgroup/fieldgroup.module:418',
12636   'textgroup' => 'default',
12637   'source' => 'Add new group: you need to provide a label.',
12638   'version' => 'none',
12639 ))
12640 ->values(array(
12641   'lid' => '332',
12642   'location' => 'modules/fieldgroup/fieldgroup.module:419',
12643   'textgroup' => 'default',
12644   'source' => 'Add new group: you need to provide a group name.',
12645   'version' => 'none',
12646 ))
12647 ->values(array(
12648   'lid' => '333',
12649   'location' => 'modules/fieldgroup/fieldgroup.module:648',
12650   'textgroup' => 'default',
12651   'source' => 'Standard group',
12652   'version' => 'none',
12653 ))
12654 ->values(array(
12655   'lid' => '334',
12656   'location' => 'modules/fieldgroup/fieldgroup.module:39;46',
12657   'textgroup' => 'default',
12658   'source' => 'Edit group',
12659   'version' => 'none',
12660 ))
12661 ->values(array(
12662   'lid' => '335',
12663   'location' => 'modules/fieldgroup/fieldgroup.module:0',
12664   'textgroup' => 'default',
12665   'source' => 'fieldgroup',
12666   'version' => 'none',
12667 ))
12668 ->values(array(
12669   'lid' => '336',
12670   'location' => 'modules/fieldgroup/fieldgroup.info:0',
12671   'textgroup' => 'default',
12672   'source' => 'Create display groups for CCK fields.',
12673   'version' => 'none',
12674 ))
12675 ->values(array(
12676   'lid' => '337',
12677   'location' => 'modules/nodereference/nodereference.rules.inc:15',
12678   'textgroup' => 'default',
12679   'source' => 'Load a referenced node',
12680   'version' => 'none',
12681 ))
12682 ->values(array(
12683   'lid' => '338',
12684   'location' => 'modules/nodereference/nodereference.rules.inc:19',
12685   'textgroup' => 'default',
12686   'source' => 'Content containing the node reference field',
12687   'version' => 'none',
12688 ))
12689 ->values(array(
12690   'lid' => '339',
12691   'location' => 'modules/nodereference/nodereference.rules.inc:25',
12692   'textgroup' => 'default',
12693   'source' => 'Referenced content',
12694   'version' => 'none',
12695 ))
12696 ->values(array(
12697   'lid' => '340',
12698   'location' => 'modules/nodereference/nodereference.rules.inc:29',
12699   'textgroup' => 'default',
12700   'source' => 'Note that if the field has multiple values, only the first content node will be loaded.',
12701   'version' => 'none',
12702 ))
12703 ->values(array(
12704   'lid' => '341',
12705   'location' => 'modules/nodereference/nodereference.rules.inc:50',
12706   'textgroup' => 'default',
12707   'source' => 'There are no nodereference fields defined.',
12708   'version' => 'none',
12709 ))
12710 ->values(array(
12711   'lid' => '342',
12712   'location' => 'modules/nodereference/nodereference.module:71',
12713   'textgroup' => 'default',
12714   'source' => 'Node reference',
12715   'version' => 'none',
12716 ))
12717 ->values(array(
12718   'lid' => '343',
12719   'location' => 'modules/nodereference/nodereference.module:72',
12720   'textgroup' => 'default',
12721   'source' => 'Store the ID of a related node as an integer value.',
12722   'version' => 'none',
12723 ))
12724 ->values(array(
12725   'lid' => '344',
12726   'location' => 'modules/nodereference/nodereference.module:90',
12727   'textgroup' => 'default',
12728   'source' => 'Content types that can be referenced',
12729   'version' => 'none',
12730 ))
12731 ->values(array(
12732   'lid' => '345',
12733   'location' => 'modules/nodereference/nodereference.module:97,  modules/userreference/userreference.module:94',
12734   'textgroup' => 'default',
12735   'source' => 'Default Views',
12736   'version' => 'none',
12737 ))
12738 ->values(array(
12739   'lid' => '346',
12740   'location' => 'modules/nodereference/nodereference.module:101',
12741   'textgroup' => 'default',
12742   'source' => 'Existing Views',
12743   'version' => 'none',
12744 ))
12745 ->values(array(
12746   'lid' => '347',
12747   'location' => 'modules/nodereference/nodereference.module:108',
12748   'textgroup' => 'default',
12749   'source' => 'Advanced - Nodes that can be referenced (View)',
12750   'version' => 'none',
12751 ))
12752 ->values(array(
12753   'lid' => '348',
12754   'location' => 'modules/nodereference/nodereference.module:114',
12755   'textgroup' => 'default',
12756   'source' => 'View used to select the nodes',
12757   'version' => 'none',
12758 ))
12759 ->values(array(
12760   'lid' => '349',
12761   'location' => 'modules/nodereference/nodereference.module:107',
12762   'textgroup' => 'default',
12763   'source' => '<p>Choose the "Views module" view that selects the nodes that can be referenced.<br />Note:</p>',
12764   'version' => 'none',
12765 ))
12766 ->values(array(
12767   'lid' => '350',
12768   'location' => 'modules/nodereference/nodereference.module:108;121',
12769   'textgroup' => 'default',
12770   '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>",
12771   'version' => 'none',
12772 ))
12773 ->values(array(
12774   'lid' => '351',
12775   'location' => 'modules/nodereference/nodereference.module:121',
12776   'textgroup' => 'default',
12777   'source' => 'View arguments',
12778   'version' => 'none',
12779 ))
12780 ->values(array(
12781   'lid' => '352',
12782   'location' => 'modules/nodereference/nodereference.module:124',
12783   'textgroup' => 'default',
12784   'source' => 'Provide a comma separated list of arguments to pass to the view.',
12785   'version' => 'none',
12786 ))
12787 ->values(array(
12788   'lid' => '353',
12789   'location' => 'modules/nodereference/nodereference.module:120',
12790   'textgroup' => 'default',
12791   '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>',
12792   'version' => 'none',
12793 ))
12794 ->values(array(
12795   'lid' => '354',
12796   'location' => 'modules/nodereference/nodereference.module:216,  modules/userreference/userreference.module:195',
12797   'textgroup' => 'default',
12798   'source' => '%name: invalid input.',
12799   'version' => 'none',
12800 ))
12801 ->values(array(
12802   'lid' => '355',
12803   'location' => 'modules/nodereference/nodereference.module:217',
12804   'textgroup' => 'default',
12805   'source' => "%name: this post can't be referenced.",
12806   'version' => 'none',
12807 ))
12808 ->values(array(
12809   'lid' => '356',
12810   'location' => 'modules/nodereference/nodereference.module:200',
12811   'textgroup' => 'default',
12812   'source' => 'Title (link)',
12813   'version' => 'none',
12814 ))
12815 ->values(array(
12816   'lid' => '357',
12817   'location' => 'modules/nodereference/nodereference.module:205',
12818   'textgroup' => 'default',
12819   'source' => 'Title (no link)',
12820   'version' => 'none',
12821 ))
12822 ->values(array(
12823   'lid' => '358',
12824   'location' => 'modules/nodereference/nodereference.module:358,  modules/optionwidgets/optionwidgets.module:80,  modules/userreference/userreference.module:284',
12825   'textgroup' => 'default',
12826   'source' => 'Select list',
12827   'version' => '6.38-dev',
12828 ))
12829 ->values(array(
12830   'lid' => '359',
12831   'location' => 'modules/nodereference/nodereference.module:366,  modules/optionwidgets/optionwidgets.module:88,  modules/userreference/userreference.module:292',
12832   'textgroup' => 'default',
12833   'source' => 'Check boxes/radio buttons',
12834   'version' => '6.38-dev',
12835 ))
12836 ->values(array(
12837   'lid' => '360',
12838   'location' => 'modules/nodereference/nodereference.module:374,  modules/userreference/userreference.module:300',
12839   'textgroup' => 'default',
12840   'source' => 'Autocomplete text field',
12841   'version' => 'none',
12842 ))
12843 ->values(array(
12844   'lid' => '361',
12845   'location' => 'modules/nodereference/nodereference.module:429,  modules/userreference/userreference.module:355',
12846   'textgroup' => 'default',
12847   'source' => 'Autocomplete matching',
12848   'version' => 'none',
12849 ))
12850 ->values(array(
12851   'lid' => '362',
12852   'location' => 'modules/nodereference/nodereference.module:432,  modules/userreference/userreference.module:358',
12853   'textgroup' => 'default',
12854   'source' => 'Starts with',
12855   'version' => 'none',
12856 ))
12857 ->values(array(
12858   'lid' => '363',
12859   'location' => 'modules/nodereference/nodereference.module:433,  modules/userreference/userreference.module:359',
12860   'textgroup' => 'default',
12861   'source' => 'Contains',
12862   'version' => 'none',
12863 ))
12864 ->values(array(
12865   'lid' => '364',
12866   'location' => 'modules/nodereference/nodereference.module:423',
12867   'textgroup' => 'default',
12868   'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of nodes.',
12869   'version' => 'none',
12870 ))
12871 ->values(array(
12872   'lid' => '365',
12873   'location' => 'modules/nodereference/nodereference.module:671',
12874   'textgroup' => 'default',
12875   'source' => '%name: title mismatch. Please check your selection.',
12876   'version' => 'none',
12877 ))
12878 ->values(array(
12879   'lid' => '366',
12880   'location' => 'modules/nodereference/nodereference.module:678',
12881   'textgroup' => 'default',
12882   'source' => '%name: found no valid post with that title.',
12883   'version' => 'none',
12884 ))
12885 ->values(array(
12886   'lid' => '367',
12887   'location' => 'modules/nodereference/nodereference.module:15',
12888   'textgroup' => 'default',
12889   'source' => 'Nodereference autocomplete',
12890   'version' => 'none',
12891 ))
12892 ->values(array(
12893   'lid' => '368',
12894   'location' => 'modules/nodereference/nodereference.module:0',
12895   'textgroup' => 'default',
12896   'source' => 'nodereference',
12897   'version' => 'none',
12898 ))
12899 ->values(array(
12900   'lid' => '369',
12901   'location' => 'modules/nodereference/nodereference.info:0',
12902   'textgroup' => 'default',
12903   'source' => 'Node Reference',
12904   'version' => 'none',
12905 ))
12906 ->values(array(
12907   'lid' => '370',
12908   'location' => 'modules/nodereference/nodereference.info:0',
12909   'textgroup' => 'default',
12910   'source' => 'Defines a field type for referencing one node from another.',
12911   'version' => 'none',
12912 ))
12913 ->values(array(
12914   'lid' => '371',
12915   'location' => 'modules/number/number.module:34',
12916   'textgroup' => 'default',
12917   'source' => 'Integer',
12918   'version' => '6.38-dev',
12919 ))
12920 ->values(array(
12921   'lid' => '372',
12922   'location' => 'modules/number/number.module:35',
12923   'textgroup' => 'default',
12924   'source' => 'Store a number in the database as an integer.',
12925   'version' => '6.38-dev',
12926 ))
12927 ->values(array(
12928   'lid' => '373',
12929   'location' => 'modules/number/number.module:38',
12930   'textgroup' => 'default',
12931   'source' => 'Decimal',
12932   'version' => '6.38-dev',
12933 ))
12934 ->values(array(
12935   'lid' => '374',
12936   'location' => 'modules/number/number.module:39',
12937   'textgroup' => 'default',
12938   'source' => 'Store a number in the database in a fixed decimal format.',
12939   'version' => '6.38-dev',
12940 ))
12941 ->values(array(
12942   'lid' => '375',
12943   'location' => 'modules/number/number.module:42',
12944   'textgroup' => 'default',
12945   'source' => 'Float',
12946   'version' => '6.38-dev',
12947 ))
12948 ->values(array(
12949   'lid' => '376',
12950   'location' => 'modules/number/number.module:43',
12951   'textgroup' => 'default',
12952   'source' => 'Store a number in the database in a floating point format.',
12953   'version' => '6.38-dev',
12954 ))
12955 ->values(array(
12956   'lid' => '377',
12957   'location' => 'modules/number/number.module:57',
12958   'textgroup' => 'default',
12959   'source' => 'Minimum',
12960   'version' => 'none',
12961 ))
12962 ->values(array(
12963   'lid' => '378',
12964   'location' => 'modules/number/number.module:63',
12965   'textgroup' => 'default',
12966   'source' => 'Maximum',
12967   'version' => 'none',
12968 ))
12969 ->values(array(
12970   'lid' => '379',
12971   'location' => 'modules/number/number.module:71',
12972   'textgroup' => 'default',
12973   'source' => 'Precision',
12974   'version' => 'none',
12975 ))
12976 ->values(array(
12977   'lid' => '380',
12978   'location' => 'modules/number/number.module:72',
12979   'textgroup' => 'default',
12980   'source' => 'The total number of digits to store in the database, including those to the right of the decimal.',
12981   'version' => 'none',
12982 ))
12983 ->values(array(
12984   'lid' => '381',
12985   'location' => 'modules/number/number.module:78',
12986   'textgroup' => 'default',
12987   'source' => 'Scale',
12988   'version' => 'none',
12989 ))
12990 ->values(array(
12991   'lid' => '382',
12992   'location' => 'modules/number/number.module:79',
12993   'textgroup' => 'default',
12994   'source' => 'The number of digits to the right of the decimal.',
12995   'version' => 'none',
12996 ))
12997 ->values(array(
12998   'lid' => '383',
12999   'location' => 'modules/number/number.module:85',
13000   'textgroup' => 'default',
13001   'source' => 'Decimal marker',
13002   'version' => 'none',
13003 ))
13004 ->values(array(
13005   'lid' => '384',
13006   'location' => 'modules/number/number.module:86',
13007   'textgroup' => 'default',
13008   'source' => 'The character users will input to mark the decimal point in forms.',
13009   'version' => 'none',
13010 ))
13011 ->values(array(
13012   'lid' => '385',
13013   'location' => 'modules/number/number.module:92',
13014   'textgroup' => 'default',
13015   'source' => 'Prefix',
13016   'version' => 'none',
13017 ))
13018 ->values(array(
13019   'lid' => '386',
13020   'location' => 'modules/number/number.module:95',
13021   'textgroup' => 'default',
13022   '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).',
13023   'version' => 'none',
13024 ))
13025 ->values(array(
13026   'lid' => '387',
13027   'location' => 'modules/number/number.module:99',
13028   'textgroup' => 'default',
13029   'source' => 'Suffix',
13030   'version' => 'none',
13031 ))
13032 ->values(array(
13033   'lid' => '388',
13034   'location' => 'modules/number/number.module:102',
13035   'textgroup' => 'default',
13036   '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).',
13037   'version' => 'none',
13038 ))
13039 ->values(array(
13040   'lid' => '389',
13041   'location' => 'modules/number/number.module:109,  modules/text/text.module:72',
13042   'textgroup' => 'default',
13043   'source' => 'Allowed values',
13044   'version' => 'none',
13045 ))
13046 ->values(array(
13047   'lid' => '390',
13048   'location' => 'modules/number/number.module:115,  modules/text/text.module:78',
13049   'textgroup' => 'default',
13050   'source' => 'Allowed values list',
13051   'version' => 'none',
13052 ))
13053 ->values(array(
13054   'lid' => '391',
13055   'location' => 'modules/number/number.module:119,  modules/text/text.module:82',
13056   'textgroup' => 'default',
13057   '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',
13058   'version' => 'none',
13059 ))
13060 ->values(array(
13061   'lid' => '392',
13062   'location' => 'modules/number/number.module:133,  modules/text/text.module:96',
13063   'textgroup' => 'default',
13064   '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.',
13065   'version' => 'none',
13066 ))
13067 ->values(array(
13068   'lid' => '393',
13069   'location' => 'modules/number/number.module:141,  modules/text/text.module:104',
13070   'textgroup' => 'default',
13071   'source' => 'This PHP code was set by an administrator and will override the allowed values list above.',
13072   'version' => 'none',
13073 ))
13074 ->values(array(
13075   'lid' => '394',
13076   'location' => 'modules/number/number.module:181,  modules/text/text.module:133',
13077   'textgroup' => 'default',
13078   'source' => '@label (!name) - Allowed values',
13079   'version' => 'none',
13080 ))
13081 ->values(array(
13082   'lid' => '395',
13083   'location' => 'modules/number/number.module:195',
13084   'textgroup' => 'default',
13085   'source' => '"Minimum" must be a number.',
13086   'version' => 'none',
13087 ))
13088 ->values(array(
13089   'lid' => '396',
13090   'location' => 'modules/number/number.module:202',
13091   'textgroup' => 'default',
13092   'source' => '"Maximum" must be a number.',
13093   'version' => 'none',
13094 ))
13095 ->values(array(
13096   'lid' => '397',
13097   'location' => 'modules/number/number.module:219',
13098   'textgroup' => 'default',
13099   'source' => '%name: the value may be no smaller than %min.',
13100   'version' => 'none',
13101 ))
13102 ->values(array(
13103   'lid' => '398',
13104   'location' => 'modules/number/number.module:222',
13105   'textgroup' => 'default',
13106   'source' => '%name: the value may be no larger than %max.',
13107   'version' => 'none',
13108 ))
13109 ->values(array(
13110   'lid' => '399',
13111   'location' => 'modules/number/number.module:238,  modules/text/text.module:157',
13112   'textgroup' => 'default',
13113   'source' => '%name: illegal value.',
13114   'version' => 'none',
13115 ))
13116 ->values(array(
13117   'lid' => '400',
13118   'location' => 'modules/number/number.module:270',
13119   'textgroup' => 'default',
13120   'source' => 'unformatted',
13121   'version' => '6.38-dev',
13122 ))
13123 ->values(array(
13124   'lid' => '401',
13125   'location' => 'modules/number/number.module:356,  modules/text/text.module:257',
13126   'textgroup' => 'default',
13127   'source' => 'Text field',
13128   'version' => '6.38-dev',
13129 ))
13130 ->values(array(
13131   'lid' => '402',
13132   'location' => 'Float validation: English needs work,  modules/number/number.module:509,  fuzzy',
13133   'textgroup' => 'default',
13134   'source' => 'Only numbers and decimals are allowed in %field.',
13135   'version' => 'none',
13136 ))
13137 ->values(array(
13138   'lid' => '403',
13139   'location' => 'Integer validation: English needs work,  modules/number/number.module:532,  fuzzy',
13140   'textgroup' => 'default',
13141   'source' => 'Only numbers are allowed in %field.',
13142   'version' => 'none',
13143 ))
13144 ->values(array(
13145   'lid' => '404',
13146   'location' => 'Decimal validation with decimal character: English needs work,  modules/number/number.module:556,  fuzzy',
13147   'textgroup' => 'default',
13148   'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field.',
13149   'version' => 'none',
13150 ))
13151 ->values(array(
13152   'lid' => '405',
13153   'location' => 'modules/number/number.module:0',
13154   'textgroup' => 'default',
13155   'source' => 'number',
13156   'version' => 'none',
13157 ))
13158 ->values(array(
13159   'lid' => '406',
13160   'location' => 'modules/number/number.info:0',
13161   'textgroup' => 'default',
13162   'source' => 'Number',
13163   'version' => 'none',
13164 ))
13165 ->values(array(
13166   'lid' => '407',
13167   'location' => 'modules/number/number.info:0',
13168   'textgroup' => 'default',
13169   'source' => 'Defines numeric field types.',
13170   'version' => 'none',
13171 ))
13172 ->values(array(
13173   'lid' => '408',
13174   'location' => 'modules/optionwidgets/optionwidgets.module:19',
13175   'textgroup' => 'default',
13176   '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.',
13177   'version' => 'none',
13178 ))
13179 ->values(array(
13180   'lid' => '409',
13181   'location' => 'modules/optionwidgets/optionwidgets.module:22',
13182   'textgroup' => 'default',
13183   '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.",
13184   'version' => 'none',
13185 ))
13186 ->values(array(
13187   'lid' => '410',
13188   'location' => 'modules/optionwidgets/optionwidgets.module:25',
13189   'textgroup' => 'default',
13190   'source' => "The 'checkboxes/radio buttons' widget will display checkboxes if the multiple values option is selected for this field, otherwise radios will be displayed.",
13191   'version' => 'none',
13192 ))
13193 ->values(array(
13194   'lid' => '411',
13195   'location' => 'modules/optionwidgets/optionwidgets.module:37',
13196   'textgroup' => 'default',
13197   'source' => "You need to specify the 'allowed values' for this field.",
13198   'version' => 'none',
13199 ))
13200 ->values(array(
13201   'lid' => '412',
13202   'location' => 'modules/optionwidgets/optionwidgets.module:96',
13203   'textgroup' => 'default',
13204   'source' => 'Single on/off checkbox',
13205   'version' => '6.38-dev',
13206 ))
13207 ->values(array(
13208   'lid' => '413',
13209   'location' => 'modules/optionwidgets/optionwidgets.module:331',
13210   'textgroup' => 'default',
13211   'source' => '%name: this field cannot hold more that @count values.',
13212   'version' => 'none',
13213 ))
13214 ->values(array(
13215   'lid' => '414',
13216   'location' => 'modules/optionwidgets/optionwidgets.module:411',
13217   'textgroup' => 'default',
13218   'source' => 'N/A',
13219   'version' => 'none',
13220 ))
13221 ->values(array(
13222   'lid' => '415',
13223   'location' => 'modules/optionwidgets/optionwidgets.module:415',
13224   'textgroup' => 'default',
13225   'source' => '- None -',
13226   'version' => 'none',
13227 ))
13228 ->values(array(
13229   'lid' => '416',
13230   'location' => 'modules/optionwidgets/optionwidgets.module:0',
13231   'textgroup' => 'default',
13232   'source' => 'optionwidgets',
13233   'version' => 'none',
13234 ))
13235 ->values(array(
13236   'lid' => '417',
13237   'location' => 'modules/optionwidgets/optionwidgets.info:0',
13238   'textgroup' => 'default',
13239   'source' => 'Option Widgets',
13240   'version' => 'none',
13241 ))
13242 ->values(array(
13243   'lid' => '418',
13244   'location' => 'modules/optionwidgets/optionwidgets.info:0',
13245   'textgroup' => 'default',
13246   'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.',
13247   'version' => 'none',
13248 ))
13249 ->values(array(
13250   'lid' => '419',
13251   'location' => 'modules/text/text.module:42',
13252   'textgroup' => 'default',
13253   'source' => 'Store text in the database.',
13254   'version' => '6.38-dev',
13255 ))
13256 ->values(array(
13257   'lid' => '420',
13258   'location' => 'modules/text/text.module:55;202,  modules/userreference/userreference.module:237',
13259   'textgroup' => 'default',
13260   'source' => 'Plain text',
13261   'version' => '6.38-dev',
13262 ))
13263 ->values(array(
13264   'lid' => '421',
13265   'location' => 'modules/text/text.module:55',
13266   'textgroup' => 'default',
13267   'source' => 'Filtered text (user selects input format)',
13268   'version' => 'none',
13269 ))
13270 ->values(array(
13271   'lid' => '422',
13272   'location' => 'modules/text/text.module:58',
13273   'textgroup' => 'default',
13274   'source' => 'Text processing',
13275   'version' => 'none',
13276 ))
13277 ->values(array(
13278   'lid' => '423',
13279   'location' => 'modules/text/text.module:64',
13280   'textgroup' => 'default',
13281   'source' => 'Maximum length',
13282   'version' => 'none',
13283 ))
13284 ->values(array(
13285   'lid' => '424',
13286   'location' => 'modules/text/text.module:68',
13287   'textgroup' => 'default',
13288   'source' => 'The maximum length of the field in characters. Leave blank for an unlimited size.',
13289   'version' => 'none',
13290 ))
13291 ->values(array(
13292   'lid' => '425',
13293   'location' => 'modules/text/text.module:160',
13294   'textgroup' => 'default',
13295   'source' => '%name: the value may not be longer than %max characters.',
13296   'version' => 'none',
13297 ))
13298 ->values(array(
13299   'lid' => '426',
13300   'location' => 'modules/text/text.module:197,  modules/userreference/userreference.module:232',
13301   'textgroup' => 'default',
13302   'source' => 'Default',
13303   'version' => '6.38-dev',
13304 ))
13305 ->values(array(
13306   'lid' => '427',
13307   'location' => 'modules/text/text.module:207',
13308   'textgroup' => 'default',
13309   'source' => 'Trimmed',
13310   'version' => '6.38-dev',
13311 ))
13312 ->values(array(
13313   'lid' => '428',
13314   'location' => 'modules/text/text.module:265',
13315   'textgroup' => 'default',
13316   'source' => 'Text area (multiple rows)',
13317   'version' => '6.38-dev',
13318 ))
13319 ->values(array(
13320   'lid' => '429',
13321   'location' => 'modules/nodereference/nodereference.module:439,  modules/text/text.module:317,  modules/userreference/userreference.module:365',
13322   'textgroup' => 'default',
13323   'source' => 'Size of textfield',
13324   'version' => 'none',
13325 ))
13326 ->values(array(
13327   'lid' => '430',
13328   'location' => 'modules/text/text.module:326',
13329   'textgroup' => 'default',
13330   'source' => 'Rows',
13331   'version' => 'none',
13332 ))
13333 ->values(array(
13334   'lid' => '431',
13335   'location' => 'modules/text/text.module:0',
13336   'textgroup' => 'default',
13337   'source' => 'text',
13338   'version' => 'none',
13339 ))
13340 ->values(array(
13341   'lid' => '432',
13342   'location' => 'modules/text/text.info:0',
13343   'textgroup' => 'default',
13344   'source' => 'Defines simple text field types.',
13345   'version' => 'none',
13346 ))
13347 ->values(array(
13348   'lid' => '433',
13349   'location' => 'modules/userreference/userreference.rules.inc:15',
13350   'textgroup' => 'default',
13351   'source' => 'Load a referenced user',
13352   'version' => 'none',
13353 ))
13354 ->values(array(
13355   'lid' => '434',
13356   'location' => 'modules/userreference/userreference.rules.inc:19',
13357   'textgroup' => 'default',
13358   'source' => 'Content containing the user reference field',
13359   'version' => 'none',
13360 ))
13361 ->values(array(
13362   'lid' => '435',
13363   'location' => 'modules/userreference/userreference.rules.inc:25',
13364   'textgroup' => 'default',
13365   'source' => 'Referenced user',
13366   'version' => 'none',
13367 ))
13368 ->values(array(
13369   'lid' => '436',
13370   'location' => 'modules/userreference/userreference.rules.inc:29',
13371   'textgroup' => 'default',
13372   'source' => 'Note that if the field has multiple values, only the first user will be loaded.',
13373   'version' => 'none',
13374 ))
13375 ->values(array(
13376   'lid' => '437',
13377   'location' => 'modules/userreference/userreference.rules.inc:52',
13378   'textgroup' => 'default',
13379   'source' => 'There are no userreference fields defined.',
13380   'version' => 'none',
13381 ))
13382 ->values(array(
13383   'lid' => '438',
13384   'location' => 'modules/userreference/userreference.module:52',
13385   'textgroup' => 'default',
13386   'source' => 'User reference',
13387   'version' => 'none',
13388 ))
13389 ->values(array(
13390   'lid' => '439',
13391   'location' => 'modules/userreference/userreference.module:53',
13392   'textgroup' => 'default',
13393   'source' => 'Store the ID of a related user as an integer value.',
13394   'version' => 'none',
13395 ))
13396 ->values(array(
13397   'lid' => '440',
13398   'location' => 'modules/userreference/userreference.module:67',
13399   'textgroup' => 'default',
13400   'source' => 'User roles that can be referenced',
13401   'version' => 'none',
13402 ))
13403 ->values(array(
13404   'lid' => '441',
13405   'location' => 'modules/userreference/userreference.module:73',
13406   'textgroup' => 'default',
13407   'source' => 'User status that can be referenced',
13408   'version' => 'none',
13409 ))
13410 ->values(array(
13411   'lid' => '442',
13412   'location' => 'modules/userreference/userreference.module:75',
13413   'textgroup' => 'default',
13414   'source' => 'Active',
13415   'version' => 'none',
13416 ))
13417 ->values(array(
13418   'lid' => '443',
13419   'location' => 'modules/userreference/userreference.module:75',
13420   'textgroup' => 'default',
13421   'source' => 'Blocked',
13422   'version' => 'none',
13423 ))
13424 ->values(array(
13425   'lid' => '444',
13426   'location' => 'modules/userreference/userreference.module:94',
13427   'textgroup' => 'default',
13428   'source' => 'Advanced - Users that can be referenced (View)',
13429   'version' => 'none',
13430 ))
13431 ->values(array(
13432   'lid' => '445',
13433   'location' => 'modules/userreference/userreference.module:101',
13434   'textgroup' => 'default',
13435   'source' => 'View used to select the users',
13436   'version' => 'none',
13437 ))
13438 ->values(array(
13439   'lid' => '446',
13440   'location' => 'modules/userreference/userreference.module:104',
13441   'textgroup' => 'default',
13442   'source' => '<p>Choose the "Views module" view that selects the users that can be referenced.<br />Note:</p>',
13443   'version' => 'none',
13444 ))
13445 ->values(array(
13446   'lid' => '447',
13447   'location' => 'modules/userreference/userreference.module:105;118',
13448   'textgroup' => 'default',
13449   '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>",
13450   'version' => 'none',
13451 ))
13452 ->values(array(
13453   'lid' => '448',
13454   'location' => 'modules/userreference/userreference.module:117',
13455   'textgroup' => 'default',
13456   '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>',
13457   'version' => 'none',
13458 ))
13459 ->values(array(
13460   'lid' => '449',
13461   'location' => 'modules/userreference/userreference.module:196',
13462   'textgroup' => 'default',
13463   'source' => '%name: invalid user.',
13464   'version' => 'none',
13465 ))
13466 ->values(array(
13467   'lid' => '450',
13468   'location' => 'modules/userreference/userreference.module:349',
13469   'textgroup' => 'default',
13470   'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of users.',
13471   'version' => 'none',
13472 ))
13473 ->values(array(
13474   'lid' => '451',
13475   'location' => 'modules/userreference/userreference.module:357',
13476   'textgroup' => 'default',
13477   'source' => 'Reverse link',
13478   'version' => 'none',
13479 ))
13480 ->values(array(
13481   'lid' => '452',
13482   'location' => 'modules/userreference/userreference.module:359',
13483   'textgroup' => 'default',
13484   'source' => 'If selected, a reverse link back to the referencing node will displayed on the referenced user record.',
13485   'version' => 'none',
13486 ))
13487 ->values(array(
13488   'lid' => '453',
13489   'location' => 'modules/userreference/userreference.module:594',
13490   'textgroup' => 'default',
13491   'source' => '%name: found no valid user with that name.',
13492   'version' => 'none',
13493 ))
13494 ->values(array(
13495   'lid' => '454',
13496   'location' => 'modules/userreference/userreference.module:887',
13497   'textgroup' => 'default',
13498   'source' => 'Related content',
13499   'version' => 'none',
13500 ))
13501 ->values(array(
13502   'lid' => '455',
13503   'location' => 'modules/userreference/userreference.module:15',
13504   'textgroup' => 'default',
13505   'source' => 'Userreference autocomplete',
13506   'version' => 'none',
13507 ))
13508 ->values(array(
13509   'lid' => '456',
13510   'location' => 'userreference.module:0',
13511   'textgroup' => 'default',
13512   'source' => 'userreference',
13513   'version' => 'none',
13514 ))
13515 ->values(array(
13516   'lid' => '457',
13517   'location' => 'modules/userreference/userreference.info:0',
13518   'textgroup' => 'default',
13519   'source' => 'User Reference',
13520   'version' => 'none',
13521 ))
13522 ->values(array(
13523   'lid' => '458',
13524   'location' => 'modules/userreference/userreference.info:0',
13525   'textgroup' => 'default',
13526   'source' => 'Defines a field type for referencing a user from a node.',
13527   'version' => 'none',
13528 ))
13529 ->values(array(
13530   'lid' => '459',
13531   'location' => 'theme/content-admin-field-overview-form.tpl.php:11',
13532   'textgroup' => 'default',
13533   'source' => 'Weight',
13534   'version' => '6.38-dev',
13535 ))
13536 ->values(array(
13537   'lid' => '460',
13538   'location' => 'theme/content-admin-field-overview-form.tpl.php:53',
13539   'textgroup' => 'default',
13540   'source' => 'Add',
13541   'version' => 'none',
13542 ))
13543 ->values(array(
13544   'lid' => '461',
13545   'location' => 'theme/content-admin-field-overview-form.tpl.php:59',
13546   'textgroup' => 'default',
13547   'source' => 'New field',
13548   'version' => 'none',
13549 ))
13550 ->values(array(
13551   'lid' => '462',
13552   'location' => 'theme/content-admin-field-overview-form.tpl.php:72',
13553   'textgroup' => 'default',
13554   'source' => 'Existing field',
13555   'version' => 'none',
13556 ))
13557 ->values(array(
13558   'lid' => '463',
13559   'location' => 'theme/content-admin-field-overview-form.tpl.php:84',
13560   'textgroup' => 'default',
13561   'source' => 'New group',
13562   'version' => 'none',
13563 ))
13564 ->values(array(
13565   'lid' => '464',
13566   'location' => 'theme/theme.inc:11',
13567   'textgroup' => 'default',
13568   'source' => 'Add fields and groups to the content type, and arrange them on content display and input forms.',
13569   'version' => 'none',
13570 ))
13571 ->values(array(
13572   'lid' => '465',
13573   'location' => 'theme/theme.inc:13',
13574   'textgroup' => 'default',
13575   'source' => 'You can add a field to a group by dragging it below and to the right of the group.',
13576   'version' => 'none',
13577 ))
13578 ->values(array(
13579   'lid' => '466',
13580   'location' => 'theme/theme.inc:16',
13581   'textgroup' => 'default',
13582   'source' => 'Note: Installing the <a href="!adv_help">Advanced help</a> module will let you access more and better help.',
13583   'version' => 'none',
13584 ))
13585 ->values(array(
13586   'lid' => '467',
13587   'location' => 'theme/theme.inc:116',
13588   'textgroup' => 'default',
13589   'source' => "Use the 'Exclude' checkbox to exclude an item from the !content value passed to the node template.",
13590   'version' => 'none',
13591 ))
13592 ->values(array(
13593   'lid' => '468',
13594   'location' => 'theme/content-edit.js:0',
13595   'textgroup' => 'default',
13596   'source' => 'Remove this item',
13597   'version' => 'none',
13598 ))
13599 ->values(array(
13600   'lid' => '469',
13601   'location' => 'content_admin.inc:290',
13602   'textgroup' => 'default',
13603   'source' => 'Add field',
13604   'version' => '6.38-dev',
13605 ))
13606 ->values(array(
13607   'lid' => '470',
13608   'location' => 'field.php:180;190,  number.module:119,  text.module:107',
13609   'textgroup' => 'default',
13610   'source' => 'Illegal value for %name.',
13611   'version' => 'none',
13612 ))
13613 ->values(array(
13614   'lid' => '471',
13615   'location' => 'examples/example_field.php:287 examples/simple_field.php:231,  modules/text/text.module:169',
13616   'textgroup' => 'default',
13617   'source' => '%label is longer than %max characters.',
13618   'version' => 'none',
13619 ))
13620 ->values(array(
13621   'lid' => '472',
13622   'location' => 'field.php:273 text.module:167',
13623   'textgroup' => 'default',
13624   'source' => '"Rows" must be a positive integer.',
13625   'version' => 'none',
13626 ))
13627 ->values(array(
13628   'lid' => '473',
13629   'location' => 'modules/number/number.module:133 modules/text/text.module:92',
13630   'textgroup' => 'default',
13631   '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',
13632   'version' => 'none',
13633 ))
13634 ->values(array(
13635   'lid' => '474',
13636   'location' => 'content.module:144',
13637   'textgroup' => 'default',
13638   'source' => 'add field',
13639   'version' => 'none',
13640 ))
13641 ->values(array(
13642   'lid' => '475',
13643   'location' => 'includes/content.admin.inc:112;291',
13644   'textgroup' => 'default',
13645   'source' => 'There are no fields configured for this content type. You can !link.',
13646   'version' => 'none',
13647 ))
13648 ->values(array(
13649   'lid' => '476',
13650   'location' => 'includes/content.admin.inc:113;292',
13651   'textgroup' => 'default',
13652   'source' => 'Add a new field',
13653   'version' => 'none',
13654 ))
13655 ->values(array(
13656   'lid' => '477',
13657   'location' => 'includes/content.admin.inc:137',
13658   'textgroup' => 'default',
13659   '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.',
13660   'version' => 'none',
13661 ))
13662 ->values(array(
13663   'lid' => '478',
13664   'location' => 'includes/content.admin.inc:477',
13665   'textgroup' => 'default',
13666   '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.',
13667   'version' => 'none',
13668 ))
13669 ->values(array(
13670   'lid' => '479',
13671   'location' => 'content_admin.inc:277',
13672   'textgroup' => 'default',
13673   'source' => 'Add existing field',
13674   'version' => 'none',
13675 ))
13676 ->values(array(
13677   'lid' => '480',
13678   'location' => 'content_admin.inc:311',
13679   'textgroup' => 'default',
13680   'source' => 'Create new field',
13681   'version' => 'none',
13682 ))
13683 ->values(array(
13684   'lid' => '481',
13685   'location' => 'includes/content.admin.inc:606',
13686   'textgroup' => 'default',
13687   'source' => 'The machine-readable name of the field.',
13688   'version' => 'none',
13689 ))
13690 ->values(array(
13691   'lid' => '482',
13692   'location' => 'includes/content.admin.inc:610',
13693   'textgroup' => 'default',
13694   'source' => 'This name cannot be changed.',
13695   'version' => 'none',
13696 ))
13697 ->values(array(
13698   'lid' => '483',
13699   'location' => 'includes/content.admin.inc:618',
13700   'textgroup' => 'default',
13701   '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.",
13702   'version' => 'none',
13703 ))
13704 ->values(array(
13705   'lid' => '484',
13706   'location' => 'includes/content.admin.inc:636',
13707   'textgroup' => 'default',
13708   'source' => 'The type of data you would like to store in the database with this field.',
13709   'version' => 'none',
13710 ))
13711 ->values(array(
13712   'lid' => '485',
13713   'location' => 'includes/content.admin.inc:692',
13714   'textgroup' => 'default',
13715   'source' => 'The field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
13716   'version' => 'none',
13717 ))
13718 ->values(array(
13719   'lid' => '486',
13720   'location' => 'includes/content.admin.inc:695',
13721   'textgroup' => 'default',
13722   'source' => "The field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
13723   'version' => 'none',
13724 ))
13725 ->values(array(
13726   'lid' => '487',
13727   'location' => 'includes/content.admin.inc:706',
13728   'textgroup' => 'default',
13729   'source' => 'The field name %field_name already exists.',
13730   'version' => 'none',
13731 ))
13732 ->values(array(
13733   'lid' => '488',
13734   'location' => 'includes/content.admin.inc:709',
13735   'textgroup' => 'default',
13736   'source' => "The name 'field_instance' is a reserved name.",
13737   'version' => 'none',
13738 ))
13739 ->values(array(
13740   'lid' => '489',
13741   'location' => 'content_admin.inc:432',
13742   'textgroup' => 'default',
13743   'source' => 'Created field %label.',
13744   'version' => 'none',
13745 ))
13746 ->values(array(
13747   'lid' => '490',
13748   'location' => 'includes/content.admin.inc:754',
13749   'textgroup' => 'default',
13750   'source' => 'Update field %label.',
13751   'version' => 'none',
13752 ))
13753 ->values(array(
13754   'lid' => '491',
13755   'location' => 'includes/content.admin.inc:758',
13756   'textgroup' => 'default',
13757   'source' => 'There was a problem updating field %label.',
13758   'version' => 'none',
13759 ))
13760 ->values(array(
13761   'lid' => '492',
13762   'location' => 'includes/content.admin.inc:955',
13763   'textgroup' => 'default',
13764   '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.",
13765   'version' => 'none',
13766 ))
13767 ->values(array(
13768   'lid' => '493',
13769   'location' => 'includes/content.admin.inc:986',
13770   'textgroup' => 'default',
13771   '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.",
13772   'version' => 'none',
13773 ))
13774 ->values(array(
13775   'lid' => '494',
13776   'location' => 'includes/content.admin.inc:1131',
13777   'textgroup' => 'default',
13778   'source' => 'The default value PHP code created @value which is invalid.',
13779   'version' => 'none',
13780 ))
13781 ->values(array(
13782   'lid' => '495',
13783   'location' => 'includes/content.token.inc:62',
13784   'textgroup' => 'default',
13785   'source' => 'Formatted HTML link to the node',
13786   'version' => 'none',
13787 ))
13788 ->values(array(
13789   'lid' => '496',
13790   'location' => 'number.module:113',
13791   'textgroup' => 'default',
13792   'source' => 'The value of %name may be no smaller than %min.',
13793   'version' => 'none',
13794 ))
13795 ->values(array(
13796   'lid' => '497',
13797   'location' => 'number.module:116',
13798   'textgroup' => 'default',
13799   'source' => 'The value of %name may be no larger than %max.',
13800   'version' => 'none',
13801 ))
13802 ->values(array(
13803   'lid' => '498',
13804   'location' => 'modules/number/number.module:476',
13805   'textgroup' => 'default',
13806   'source' => 'Only numbers and decimals are allowed in %field. %start was changed to %value.',
13807   'version' => 'none',
13808 ))
13809 ->values(array(
13810   'lid' => '499',
13811   'location' => 'modules/number/number.module:494',
13812   'textgroup' => 'default',
13813   'source' => 'Only numbers are allowed in %field. %start was changed to %value.',
13814   'version' => 'none',
13815 ))
13816 ->values(array(
13817   'lid' => '500',
13818   'location' => 'modules/number/number.module:513',
13819   'textgroup' => 'default',
13820   'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field. %start was changed to %value.',
13821   'version' => 'none',
13822 ))
13823 ->values(array(
13824   'lid' => '501',
13825   'location' => 'modules/optionwidgets/optionwidgets.module:10',
13826   'textgroup' => 'default',
13827   '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.',
13828   'version' => 'none',
13829 ))
13830 ->values(array(
13831   'lid' => '502',
13832   'location' => 'misc/tabledrag.js',
13833   'textgroup' => 'default',
13834   'source' => 'Drag to re-order',
13835   'version' => 'none',
13836 ))
13837 ->values(array(
13838   'lid' => '503',
13839   'location' => 'misc/tabledrag.js',
13840   'textgroup' => 'default',
13841   'source' => 'Changes made in this table will not be saved until the form is submitted.',
13842   'version' => 'none',
13843 ))
13844 ->values(array(
13845   'lid' => '504',
13846   'location' => 'field:profile_color:title',
13847   'textgroup' => 'profile',
13848   'source' => 'Favorite color',
13849   'version' => '1',
13850 ))
13851 ->values(array(
13852   'lid' => '505',
13853   'location' => 'field:profile_color:explanation',
13854   'textgroup' => 'profile',
13855   'source' => 'List your favorite color',
13856   'version' => '1',
13857 ))
13858 ->values(array(
13859   'lid' => '506',
13860   'location' => 'category',
13861   'textgroup' => 'profile',
13862   'source' => 'Personal information',
13863   'version' => '1',
13864 ))
13865 ->values(array(
13866   'lid' => '507',
13867   'location' => 'field:profile_biography:title',
13868   'textgroup' => 'profile',
13869   'source' => 'Biography',
13870   'version' => '1',
13871 ))
13872 ->values(array(
13873   'lid' => '508',
13874   'location' => 'field:profile_biography:explanation',
13875   'textgroup' => 'profile',
13876   'source' => 'Tell people a little bit about yourself',
13877   'version' => '1',
13878 ))
13879 ->values(array(
13880   'lid' => '509',
13881   'location' => 'field:profile_sell_address:title',
13882   'textgroup' => 'profile',
13883   'source' => 'Sell your email address?',
13884   'version' => '1',
13885 ))
13886 ->values(array(
13887   'lid' => '510',
13888   'location' => 'field:profile_sell_address:explanation',
13889   'textgroup' => 'profile',
13890   'source' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
13891   'version' => '1',
13892 ))
13893 ->values(array(
13894   'lid' => '511',
13895   'location' => 'category',
13896   'textgroup' => 'profile',
13897   'source' => 'Communication preferences',
13898   'version' => '1',
13899 ))
13900 ->values(array(
13901   'lid' => '512',
13902   'location' => 'field:profile_sold_to:title',
13903   'textgroup' => 'profile',
13904   'source' => 'Sales Category',
13905   'version' => '1',
13906 ))
13907 ->values(array(
13908   'lid' => '513',
13909   'location' => 'field:profile_sold_to:explanation',
13910   'textgroup' => 'profile',
13911   'source' => "Select the sales categories to which this user's address was sold.",
13912   'version' => '1',
13913 ))
13914 ->values(array(
13915   'lid' => '514',
13916   'location' => 'field:profile_sold_to:options',
13917   'textgroup' => 'profile',
13918   'source' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
13919   'version' => '1',
13920 ))
13921 ->values(array(
13922   'lid' => '515',
13923   'location' => 'category',
13924   'textgroup' => 'profile',
13925   'source' => 'Administrative data',
13926   'version' => '1',
13927 ))
13928 ->values(array(
13929   'lid' => '516',
13930   'location' => 'field:profile_bands:title',
13931   'textgroup' => 'profile',
13932   'source' => 'Favorite bands',
13933   'version' => '1',
13934 ))
13935 ->values(array(
13936   'lid' => '517',
13937   'location' => 'field:profile_bands:explanation',
13938   'textgroup' => 'profile',
13939   'source' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
13940   'version' => '1',
13941 ))
13942 ->values(array(
13943   'lid' => '518',
13944   'location' => 'field:profile_birthdate:title',
13945   'textgroup' => 'profile',
13946   'source' => 'Birthdate',
13947   'version' => '1',
13948 ))
13949 ->values(array(
13950   'lid' => '519',
13951   'location' => 'field:profile_birthdate:explanation',
13952   'textgroup' => 'profile',
13953   'source' => "Enter your birth date and we'll send you a coupon.",
13954   'version' => '1',
13955 ))
13956 ->values(array(
13957   'lid' => '520',
13958   'location' => 'field:profile_love_migrations:title',
13959   'textgroup' => 'profile',
13960   'source' => 'I love migrations',
13961   'version' => '1',
13962 ))
13963 ->values(array(
13964   'lid' => '521',
13965   'location' => 'field:profile_love_migrations:explanation',
13966   'textgroup' => 'profile',
13967   'source' => 'If you check this box, you love migrations.',
13968   'version' => '1',
13969 ))
13970 ->values(array(
13971   'lid' => '522',
13972   'location' => 'field:profile_blog:title',
13973   'textgroup' => 'profile',
13974   'source' => 'Blog',
13975   'version' => '1',
13976 ))
13977 ->values(array(
13978   'lid' => '523',
13979   'location' => 'field:profile_blog:explanation',
13980   'textgroup' => 'profile',
13981   'source' => 'Paste the full URL, including http://, of your personal blog.',
13982   'version' => '1',
13983 ))
13984 ->values(array(
13985   'lid' => '524',
13986   'location' => 'block:1:title',
13987   'textgroup' => 'blocks',
13988   'source' => 'Static Block',
13989   'version' => '1',
13990 ))
13991 ->values(array(
13992   'lid' => '525',
13993   'location' => 'block:1:body',
13994   'textgroup' => 'blocks',
13995   'source' => '<h3>My first custom block body</h3>',
13996   'version' => '1',
13997 ))
13998 ->values(array(
13999   'lid' => '526',
14000   'location' => 'block:2:title',
14001   'textgroup' => 'blocks',
14002   'source' => 'Another Static Block',
14003   'version' => '1',
14004 ))
14005 ->values(array(
14006   'lid' => '527',
14007   'location' => 'block:2:body',
14008   'textgroup' => 'blocks',
14009   'source' => '<h3>My second custom block body</h3>',
14010   'version' => '1',
14011 ))
14012 ->values(array(
14013   'lid' => '528',
14014   'location' => 'vocabulary:4:name',
14015   'textgroup' => 'taxonomy',
14016   'source' => 'Tags',
14017   'version' => '1',
14018 ))
14019 ->values(array(
14020   'lid' => '529',
14021   'location' => 'vocabulary:1:name',
14022   'textgroup' => 'taxonomy',
14023   'source' => 'vocabulary 1 (i=0)',
14024   'version' => '1',
14025 ))
14026 ->values(array(
14027   'lid' => '530',
14028   'location' => 'vocabulary:2:name',
14029   'textgroup' => 'taxonomy',
14030   'source' => 'vocabulary 2 (i=1)',
14031   'version' => '1',
14032 ))
14033 ->values(array(
14034   'lid' => '531',
14035   'location' => 'vocabulary:3:name',
14036   'textgroup' => 'taxonomy',
14037   'source' => 'vocabulary 3 (i=2)',
14038   'version' => '1',
14039 ))
14040 ->values(array(
14041   'lid' => '532',
14042   'location' => 'vocabulary:5:name',
14043   'textgroup' => 'taxonomy',
14044   'source' => 'vocabulary name much longer than thirty two characters',
14045   'version' => '1',
14046 ))
14047 ->values(array(
14048   'lid' => '533',
14049   'location' => 'type:article:name',
14050   'textgroup' => 'nodetype',
14051   'source' => 'Article',
14052   'version' => '1',
14053 ))
14054 ->values(array(
14055   'lid' => '534',
14056   'location' => 'type:article:title',
14057   'textgroup' => 'nodetype',
14058   'source' => 'Title',
14059   'version' => '1',
14060 ))
14061 ->values(array(
14062   'lid' => '535',
14063   'location' => 'type:article:body',
14064   'textgroup' => 'nodetype',
14065   'source' => 'Body',
14066   'version' => '1',
14067 ))
14068 ->values(array(
14069   'lid' => '536',
14070   'location' => 'type:article:description',
14071   'textgroup' => 'nodetype',
14072   'source' => 'An <em>article</em>, content type.',
14073   'version' => '1',
14074 ))
14075 ->values(array(
14076   'lid' => '537',
14077   'location' => 'type:company:name',
14078   'textgroup' => 'nodetype',
14079   'source' => 'Company',
14080   'version' => '1',
14081 ))
14082 ->values(array(
14083   'lid' => '538',
14084   'location' => 'type:company:title',
14085   'textgroup' => 'nodetype',
14086   'source' => 'Name',
14087   'version' => '1',
14088 ))
14089 ->values(array(
14090   'lid' => '539',
14091   'location' => 'type:company:body',
14092   'textgroup' => 'nodetype',
14093   'source' => 'Description',
14094   'version' => '1',
14095 ))
14096 ->values(array(
14097   'lid' => '540',
14098   'location' => 'type:company:description',
14099   'textgroup' => 'nodetype',
14100   'source' => 'Company node type',
14101   'version' => '1',
14102 ))
14103 ->values(array(
14104   'lid' => '541',
14105   'location' => 'type:employee:name',
14106   'textgroup' => 'nodetype',
14107   'source' => 'Employee',
14108   'version' => '1',
14109 ))
14110 ->values(array(
14111   'lid' => '542',
14112   'location' => 'type:employee:title',
14113   'textgroup' => 'nodetype',
14114   'source' => 'Name',
14115   'version' => '1',
14116 ))
14117 ->values(array(
14118   'lid' => '543',
14119   'location' => 'type:employee:body',
14120   'textgroup' => 'nodetype',
14121   'source' => 'Bio',
14122   'version' => '1',
14123 ))
14124 ->values(array(
14125   'lid' => '544',
14126   'location' => 'type:employee:description',
14127   'textgroup' => 'nodetype',
14128   'source' => 'Employee node type',
14129   'version' => '1',
14130 ))
14131 ->values(array(
14132   'lid' => '545',
14133   'location' => 'type:sponsor:name',
14134   'textgroup' => 'nodetype',
14135   'source' => 'Sponsor',
14136   'version' => '1',
14137 ))
14138 ->values(array(
14139   'lid' => '546',
14140   'location' => 'type:sponsor:title',
14141   'textgroup' => 'nodetype',
14142   'source' => 'Name',
14143   'version' => '1',
14144 ))
14145 ->values(array(
14146   'lid' => '547',
14147   'location' => 'type:sponsor:body',
14148   'textgroup' => 'nodetype',
14149   'source' => 'Body',
14150   'version' => '1',
14151 ))
14152 ->values(array(
14153   'lid' => '548',
14154   'location' => 'type:sponsor:description',
14155   'textgroup' => 'nodetype',
14156   'source' => 'Sponsor node type',
14157   'version' => '1',
14158 ))
14159 ->values(array(
14160   'lid' => '549',
14161   'location' => 'type:story:name',
14162   'textgroup' => 'nodetype',
14163   'source' => 'Story',
14164   'version' => '1',
14165 ))
14166 ->values(array(
14167   'lid' => '550',
14168   'location' => 'type:story:title',
14169   'textgroup' => 'nodetype',
14170   'source' => 'Title',
14171   'version' => '1',
14172 ))
14173 ->values(array(
14174   'lid' => '551',
14175   'location' => 'type:story:body',
14176   'textgroup' => 'nodetype',
14177   'source' => 'Body',
14178   'version' => '1',
14179 ))
14180 ->values(array(
14181   'lid' => '552',
14182   'location' => 'type:story:description',
14183   'textgroup' => 'nodetype',
14184   '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.",
14185   'version' => '1',
14186 ))
14187 ->values(array(
14188   'lid' => '553',
14189   'location' => 'type:test_event:name',
14190   'textgroup' => 'nodetype',
14191   'source' => 'Migrate test event',
14192   'version' => '1',
14193 ))
14194 ->values(array(
14195   'lid' => '554',
14196   'location' => 'type:test_event:title',
14197   'textgroup' => 'nodetype',
14198   'source' => 'Event Name',
14199   'version' => '1',
14200 ))
14201 ->values(array(
14202   'lid' => '555',
14203   'location' => 'type:test_event:body',
14204   'textgroup' => 'nodetype',
14205   'source' => 'Body',
14206   'version' => '1',
14207 ))
14208 ->values(array(
14209   'lid' => '556',
14210   'location' => 'type:test_event:description',
14211   'textgroup' => 'nodetype',
14212   'source' => 'test event description here',
14213   'version' => '1',
14214 ))
14215 ->values(array(
14216   'lid' => '558',
14217   'location' => 'type:test_page:name',
14218   'textgroup' => 'nodetype',
14219   'source' => 'Migrate test page',
14220   'version' => '1',
14221 ))
14222 ->values(array(
14223   'lid' => '559',
14224   'location' => 'type:test_page:title',
14225   'textgroup' => 'nodetype',
14226   'source' => 'Title',
14227   'version' => '1',
14228 ))
14229 ->values(array(
14230   'lid' => '560',
14231   'location' => 'type:test_page:body',
14232   'textgroup' => 'nodetype',
14233   'source' => 'This is the body field label',
14234   'version' => '1',
14235 ))
14236 ->values(array(
14237   'lid' => '561',
14238   'location' => 'type:test_page:description',
14239   'textgroup' => 'nodetype',
14240   '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.",
14241   'version' => '1',
14242 ))
14243 ->values(array(
14244   'lid' => '562',
14245   'location' => 'type:test_planet:name',
14246   'textgroup' => 'nodetype',
14247   'source' => 'Migrate test planet',
14248   'version' => '1',
14249 ))
14250 ->values(array(
14251   'lid' => '563',
14252   'location' => 'type:test_planet:title',
14253   'textgroup' => 'nodetype',
14254   'source' => 'Title',
14255   'version' => '1',
14256 ))
14257 ->values(array(
14258   'lid' => '564',
14259   'location' => 'type:test_planet:body',
14260   'textgroup' => 'nodetype',
14261   'source' => 'Body',
14262   'version' => '1',
14263 ))
14264 ->values(array(
14265   'lid' => '565',
14266   'location' => 'type:test_planet:description',
14267   'textgroup' => 'nodetype',
14268   '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.",
14269   'version' => '1',
14270 ))
14271 ->values(array(
14272   'lid' => '566',
14273   'location' => 'type:test_story:name',
14274   'textgroup' => 'nodetype',
14275   'source' => 'Migrate test story',
14276   'version' => '1',
14277 ))
14278 ->values(array(
14279   'lid' => '567',
14280   'location' => 'type:test_story:title',
14281   'textgroup' => 'nodetype',
14282   'source' => 'Title',
14283   'version' => '1',
14284 ))
14285 ->values(array(
14286   'lid' => '568',
14287   'location' => 'type:test_story:body',
14288   'textgroup' => 'nodetype',
14289   'source' => 'Body',
14290   'version' => '1',
14291 ))
14292 ->values(array(
14293   'lid' => '569',
14294   'location' => 'type:test_story:description',
14295   'textgroup' => 'nodetype',
14296   '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.",
14297   'version' => '1',
14298 ))
14299 ->values(array(
14300   'lid' => '570',
14301   'location' => 'field:story-field_test_exclude_unset:widget_label',
14302   'textgroup' => 'cck',
14303   'source' => 'Text Field',
14304   'version' => '1',
14305 ))
14306 ->values(array(
14307   'lid' => '571',
14308   'location' => 'field:story-field_test_exclude_unset:widget_description',
14309   'textgroup' => 'cck',
14310   'source' => 'An example text field without exclude.',
14311   'version' => '1',
14312 ))
14313 ->values(array(
14314   'lid' => '572',
14315   'location' => 'field:story-field_test_two:widget_label',
14316   'textgroup' => 'cck',
14317   'source' => 'Integer Field',
14318   'version' => '1',
14319 ))
14320 ->values(array(
14321   'lid' => '573',
14322   'location' => 'field:story-field_test_two:widget_description',
14323   'textgroup' => 'cck',
14324   'source' => 'An example integer field.',
14325   'version' => '1',
14326 ))
14327 ->values(array(
14328   'lid' => '574',
14329   'location' => 'field:story-field_test:widget_label',
14330   'textgroup' => 'cck',
14331   'source' => 'Text Field',
14332   'version' => '1',
14333 ))
14334 ->values(array(
14335   'lid' => '575',
14336   'location' => 'field:story-field_test:widget_description',
14337   'textgroup' => 'cck',
14338   'source' => 'An example text field.',
14339   'version' => '1',
14340 ))
14341 ->values(array(
14342   'lid' => '576',
14343   'location' => 'field:story-field_test_three:widget_label',
14344   'textgroup' => 'cck',
14345   'source' => 'Decimal Field',
14346   'version' => '1',
14347 ))
14348 ->values(array(
14349   'lid' => '577',
14350   'location' => 'field:story-field_test_three:widget_description',
14351   'textgroup' => 'cck',
14352   'source' => 'An example decimal field.',
14353   'version' => '1',
14354 ))
14355 ->values(array(
14356   'lid' => '578',
14357   'location' => 'field:story-field_test_four:widget_label',
14358   'textgroup' => 'cck',
14359   'source' => 'Float Field',
14360   'version' => '1',
14361 ))
14362 ->values(array(
14363   'lid' => '579',
14364   'location' => 'field:story-field_test_four:widget_description',
14365   'textgroup' => 'cck',
14366   'source' => 'An example float field.',
14367   'version' => '1',
14368 ))
14369 ->values(array(
14370   'lid' => '580',
14371   'location' => 'field:story-field_test_identical1:widget_label',
14372   'textgroup' => 'cck',
14373   'source' => 'Integer Field',
14374   'version' => '1',
14375 ))
14376 ->values(array(
14377   'lid' => '581',
14378   'location' => 'field:story-field_test_identical1:widget_description',
14379   'textgroup' => 'cck',
14380   'source' => 'An example integer field.',
14381   'version' => '1',
14382 ))
14383 ->values(array(
14384   'lid' => '582',
14385   'location' => 'field:story-field_test_identical2:widget_label',
14386   'textgroup' => 'cck',
14387   'source' => 'Integer Field',
14388   'version' => '1',
14389 ))
14390 ->values(array(
14391   'lid' => '583',
14392   'location' => 'field:story-field_test_identical2:widget_description',
14393   'textgroup' => 'cck',
14394   'source' => 'An example integer field.',
14395   'version' => '1',
14396 ))
14397 ->values(array(
14398   'lid' => '584',
14399   'location' => 'field:story-field_test_email:widget_label',
14400   'textgroup' => 'cck',
14401   'source' => 'Email Field',
14402   'version' => '1',
14403 ))
14404 ->values(array(
14405   'lid' => '585',
14406   'location' => 'field:story-field_test_email:widget_description',
14407   'textgroup' => 'cck',
14408   'source' => 'An example email field.',
14409   'version' => '1',
14410 ))
14411 ->values(array(
14412   'lid' => '586',
14413   'location' => 'field:story-field_test_link:widget_label',
14414   'textgroup' => 'cck',
14415   'source' => 'Link Field',
14416   'version' => '1',
14417 ))
14418 ->values(array(
14419   'lid' => '587',
14420   'location' => 'field:story-field_test_link:widget_description',
14421   'textgroup' => 'cck',
14422   'source' => 'An example link field.',
14423   'version' => '1',
14424 ))
14425 ->values(array(
14426   'lid' => '588',
14427   'location' => 'field:story-field_test_filefield:widget_label',
14428   'textgroup' => 'cck',
14429   'source' => 'File Field',
14430   'version' => '1',
14431 ))
14432 ->values(array(
14433   'lid' => '589',
14434   'location' => 'field:story-field_test_filefield:widget_description',
14435   'textgroup' => 'cck',
14436   'source' => 'An example image field.',
14437   'version' => '1',
14438 ))
14439 ->values(array(
14440   'lid' => '590',
14441   'location' => 'field:story-field_test_imagefield:widget_label',
14442   'textgroup' => 'cck',
14443   'source' => 'Image Field',
14444   'version' => '1',
14445 ))
14446 ->values(array(
14447   'lid' => '591',
14448   'location' => 'field:story-field_test_imagefield:widget_description',
14449   'textgroup' => 'cck',
14450   'source' => 'An example image field.',
14451   'version' => '1',
14452 ))
14453 ->values(array(
14454   'lid' => '592',
14455   'location' => 'field:story-field_test_date:widget_label',
14456   'textgroup' => 'cck',
14457   'source' => 'Date Field',
14458   'version' => '1',
14459 ))
14460 ->values(array(
14461   'lid' => '593',
14462   'location' => 'field:story-field_test_date:widget_description',
14463   'textgroup' => 'cck',
14464   'source' => 'An example date field.',
14465   'version' => '1',
14466 ))
14467 ->values(array(
14468   'lid' => '594',
14469   'location' => 'field:story-field_test_datestamp:widget_label',
14470   'textgroup' => 'cck',
14471   'source' => 'Date Stamp Field',
14472   'version' => '1',
14473 ))
14474 ->values(array(
14475   'lid' => '595',
14476   'location' => 'field:story-field_test_datestamp:widget_description',
14477   'textgroup' => 'cck',
14478   'source' => 'An example date stamp field.',
14479   'version' => '1',
14480 ))
14481 ->values(array(
14482   'lid' => '596',
14483   'location' => 'field:story-field_test_datetime:widget_label',
14484   'textgroup' => 'cck',
14485   'source' => 'Datetime Field',
14486   'version' => '1',
14487 ))
14488 ->values(array(
14489   'lid' => '597',
14490   'location' => 'field:story-field_test_datetime:widget_description',
14491   'textgroup' => 'cck',
14492   'source' => 'An example datetime field.',
14493   'version' => '1',
14494 ))
14495 ->values(array(
14496   'lid' => '598',
14497   'location' => 'field:story-field_test_phone:widget_label',
14498   'textgroup' => 'cck',
14499   'source' => 'Phone Field',
14500   'version' => '1',
14501 ))
14502 ->values(array(
14503   'lid' => '599',
14504   'location' => 'field:story-field_test_phone:widget_description',
14505   'textgroup' => 'cck',
14506   'source' => 'An example phone field.',
14507   'version' => '1',
14508 ))
14509 ->values(array(
14510   'lid' => '600',
14511   'location' => 'field:story-field_test_decimal_radio_buttons:widget_label',
14512   'textgroup' => 'cck',
14513   'source' => 'Decimal Radio Buttons Field',
14514   'version' => '1',
14515 ))
14516 ->values(array(
14517   'lid' => '601',
14518   'location' => 'field:story-field_test_decimal_radio_buttons:widget_description',
14519   'textgroup' => 'cck',
14520   'source' => 'An example decimal field using radio buttons.',
14521   'version' => '1',
14522 ))
14523 ->values(array(
14524   'lid' => '602',
14525   'location' => 'field:field_test_decimal_radio_buttons:option_1.2',
14526   'textgroup' => 'cck',
14527   'source' => '1.2',
14528   'version' => '1',
14529 ))
14530 ->values(array(
14531   'lid' => '603',
14532   'location' => 'field:field_test_decimal_radio_buttons:option_2.1',
14533   'textgroup' => 'cck',
14534   'source' => '2.1',
14535   'version' => '1',
14536 ))
14537 ->values(array(
14538   'lid' => '604',
14539   'location' => 'field:story-field_test_float_single_checkbox:widget_label',
14540   'textgroup' => 'cck',
14541   'source' => 'Float Single Checkbox Field',
14542   'version' => '1',
14543 ))
14544 ->values(array(
14545   'lid' => '605',
14546   'location' => 'field:story-field_test_float_single_checkbox:widget_description',
14547   'textgroup' => 'cck',
14548   'source' => 'An example float field using a single on/off checkbox.',
14549   'version' => '1',
14550 ))
14551 ->values(array(
14552   'lid' => '606',
14553   'location' => 'field:field_test_float_single_checkbox:option_3.142',
14554   'textgroup' => 'cck',
14555   'source' => '3.142',
14556   'version' => '1',
14557 ))
14558 ->values(array(
14559   'lid' => '607',
14560   'location' => 'field:field_test_float_single_checkbox:option_1.234',
14561   'textgroup' => 'cck',
14562   'source' => '1.234',
14563   'version' => '1',
14564 ))
14565 ->values(array(
14566   'lid' => '608',
14567   'location' => 'field:story-field_test_integer_selectlist:widget_label',
14568   'textgroup' => 'cck',
14569   'source' => 'Integer Select List Field',
14570   'version' => '1',
14571 ))
14572 ->values(array(
14573   'lid' => '609',
14574   'location' => 'field:story-field_test_integer_selectlist:widget_description',
14575   'textgroup' => 'cck',
14576   'source' => 'An example integer field using a select list.',
14577   'version' => '1',
14578 ))
14579 ->values(array(
14580   'lid' => '610',
14581   'location' => 'field:field_test_integer_selectlist:option_1234',
14582   'textgroup' => 'cck',
14583   'source' => '1234',
14584   'version' => '1',
14585 ))
14586 ->values(array(
14587   'lid' => '611',
14588   'location' => 'field:field_test_integer_selectlist:option_2341',
14589   'textgroup' => 'cck',
14590   'source' => '2341',
14591   'version' => '1',
14592 ))
14593 ->values(array(
14594   'lid' => '612',
14595   'location' => 'field:field_test_integer_selectlist:option_3412',
14596   'textgroup' => 'cck',
14597   'source' => '3412',
14598   'version' => '1',
14599 ))
14600 ->values(array(
14601   'lid' => '613',
14602   'location' => 'field:field_test_integer_selectlist:option_4123',
14603   'textgroup' => 'cck',
14604   'source' => '4123',
14605   'version' => '1',
14606 ))
14607 ->values(array(
14608   'lid' => '614',
14609   'location' => 'field:story-field_test_text_single_checkbox:widget_label',
14610   'textgroup' => 'cck',
14611   'source' => 'Text Single Checkbox Field',
14612   'version' => '1',
14613 ))
14614 ->values(array(
14615   'lid' => '615',
14616   'location' => 'field:story-field_test_text_single_checkbox:widget_description',
14617   'textgroup' => 'cck',
14618   'source' => 'An example text field using a single on/off checkbox.',
14619   'version' => '1',
14620 ))
14621 ->values(array(
14622   'lid' => '616',
14623   'location' => 'field:field_test_text_single_checkbox:option_0',
14624   'textgroup' => 'cck',
14625   'source' => 'Hello',
14626   'version' => '1',
14627 ))
14628 ->values(array(
14629   'lid' => '617',
14630   'location' => 'field:field_test_text_single_checkbox:option_1',
14631   'textgroup' => 'cck',
14632   'source' => 'Goodbye',
14633   'version' => '1',
14634 ))
14635 ->values(array(
14636   'lid' => '618',
14637   'location' => 'field:story-field_test_text_single_checkbox2:widget_label',
14638   'textgroup' => 'cck',
14639   'source' => 'Text Single Checkbox Field 2',
14640   'version' => '1',
14641 ))
14642 ->values(array(
14643   'lid' => '619',
14644   'location' => 'field:story-field_test_text_single_checkbox2:widget_description',
14645   'textgroup' => 'cck',
14646   'source' => 'Checkbox that uses keys only and no label.',
14647   'version' => '1',
14648 ))
14649 ->values(array(
14650   'lid' => '620',
14651   'location' => 'field:field_test_text_single_checkbox2:option_Off',
14652   'textgroup' => 'cck',
14653   'source' => 'Off',
14654   'version' => '1',
14655 ))
14656 ->values(array(
14657   'lid' => '621',
14658   'location' => 'field:field_test_text_single_checkbox2:option_Hello',
14659   'textgroup' => 'cck',
14660   'source' => 'Hello',
14661   'version' => '1',
14662 ))
14663 ->values(array(
14664   'lid' => '622',
14665   'location' => 'field:test_page-field_test:widget_label',
14666   'textgroup' => 'cck',
14667   'source' => 'Text Field',
14668   'version' => '1',
14669 ))
14670 ->values(array(
14671   'lid' => '623',
14672   'location' => 'field:test_page-field_test:widget_description',
14673   'textgroup' => 'cck',
14674   'source' => 'An example text field.',
14675   'version' => '1',
14676 ))
14677 ->values(array(
14678   'lid' => '624',
14679   'location' => 'field:test_planet-field_multivalue:widget_label',
14680   'textgroup' => 'cck',
14681   'source' => 'Decimal Field',
14682   'version' => '1',
14683 ))
14684 ->values(array(
14685   'lid' => '625',
14686   'location' => 'field:test_planet-field_multivalue:widget_description',
14687   'textgroup' => 'cck',
14688   'source' => 'An example multi-valued decimal field.',
14689   'version' => '1',
14690 ))
14691 ->values(array(
14692   'lid' => '626',
14693   'location' => 'field:test_planet-field_test_text_single_checkbox:widget_label',
14694   'textgroup' => 'cck',
14695   'source' => 'Text Single Checkbox Field',
14696   'version' => '1',
14697 ))
14698 ->values(array(
14699   'lid' => '627',
14700   'location' => 'field:test_planet-field_test_text_single_checkbox:widget_description',
14701   'textgroup' => 'cck',
14702   'source' => 'An example text field using a single on/off checkbox.',
14703   'version' => '1',
14704 ))
14705 ->values(array(
14706   'lid' => '628',
14707   'location' => 'misc/tableselect.js',
14708   'textgroup' => 'default',
14709   'source' => 'Select all rows in this table',
14710   'version' => 'none',
14711 ))
14712 ->values(array(
14713   'lid' => '629',
14714   'location' => 'misc/tableselect.js',
14715   'textgroup' => 'default',
14716   'source' => 'Deselect all rows in this table',
14717   'version' => 'none',
14718 ))
14719 ->values(array(
14720   'lid' => '630',
14721   'location' => 'sites/all/modules/filefield/filefield.js',
14722   'textgroup' => 'default',
14723   'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
14724   'version' => 'none',
14725 ))
14726 ->values(array(
14727   'lid' => '631',
14728   'location' => 'misc/teaser.js',
14729   'textgroup' => 'default',
14730   'source' => 'Split summary at cursor',
14731   'version' => 'none',
14732 ))
14733 ->values(array(
14734   'lid' => '632',
14735   'location' => 'misc/teaser.js',
14736   'textgroup' => 'default',
14737   'source' => 'Join summary',
14738   'version' => 'none',
14739 ))
14740 ->values(array(
14741   'lid' => '633',
14742   'location' => 'item:140:title',
14743   'textgroup' => 'menu',
14744   'source' => 'Drupal.org',
14745   'version' => '1',
14746 ))
14747 ->values(array(
14748   'lid' => '634',
14749   'location' => 'item:139:title',
14750   'textgroup' => 'menu',
14751   'source' => 'Test 2',
14752   'version' => '1',
14753 ))
14754 ->values(array(
14755   'lid' => '635',
14756   'location' => 'item:139:description',
14757   'textgroup' => 'menu',
14758   'source' => 'Test menu link 2',
14759   'version' => '1',
14760 ))
14761 ->values(array(
14762   'lid' => '636',
14763   'location' => '/?q=fr/admin/settings/site-information',
14764   'textgroup' => 'default',
14765   'source' => 'Site information',
14766   'version' => '6.38-dev',
14767 ))
14768 ->values(array(
14769   'lid' => '637',
14770   'location' => '/?q=fr/admin/settings/site-information',
14771   'textgroup' => 'default',
14772   'source' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
14773   'version' => '6.38-dev',
14774 ))
14775 ->values(array(
14776   'lid' => '638',
14777   'location' => '/?q=fr/admin/settings/site-information',
14778   'textgroup' => 'default',
14779   'source' => 'The name of this website.',
14780   'version' => '6.38-dev',
14781 ))
14782 ->values(array(
14783   'lid' => '639',
14784   'location' => '/?q=fr/admin/settings/site-information',
14785   'textgroup' => 'default',
14786   'source' => 'E-mail address',
14787   'version' => '6.38-dev',
14788 ))
14789 ->values(array(
14790   'lid' => '640',
14791   'location' => '/?q=fr/admin/settings/site-information',
14792   'textgroup' => 'default',
14793   '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.)",
14794   'version' => '6.38-dev',
14795 ))
14796 ->values(array(
14797   'lid' => '641',
14798   'location' => '/?q=fr/admin/settings/site-information',
14799   'textgroup' => 'default',
14800   'source' => 'Slogan',
14801   'version' => '6.38-dev',
14802 ))
14803 ->values(array(
14804   'lid' => '642',
14805   'location' => '/?q=fr/admin/settings/site-information',
14806   'textgroup' => 'default',
14807   'source' => "Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).",
14808   'version' => '6.38-dev',
14809 ))
14810 ->values(array(
14811   'lid' => '643',
14812   'location' => '/?q=fr/admin/settings/site-information',
14813   'textgroup' => 'default',
14814   'source' => 'Mission',
14815   'version' => '6.38-dev',
14816 ))
14817 ->values(array(
14818   'lid' => '644',
14819   'location' => '/?q=fr/admin/settings/site-information',
14820   'textgroup' => 'default',
14821   'source' => "Your site's mission or focus statement (often prominently displayed on the front page).",
14822   'version' => '6.38-dev',
14823 ))
14824 ->values(array(
14825   'lid' => '645',
14826   'location' => '/?q=fr/admin/settings/site-information',
14827   'textgroup' => 'default',
14828   'source' => 'Footer message',
14829   'version' => '6.38-dev',
14830 ))
14831 ->values(array(
14832   'lid' => '646',
14833   'location' => '/?q=fr/admin/settings/site-information',
14834   'textgroup' => 'default',
14835   'source' => 'This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.',
14836   'version' => '6.38-dev',
14837 ))
14838 ->values(array(
14839   'lid' => '647',
14840   'location' => '/?q=fr/admin/settings/site-information',
14841   'textgroup' => 'default',
14842   'source' => 'Anonymous user',
14843   'version' => '6.38-dev',
14844 ))
14845 ->values(array(
14846   'lid' => '648',
14847   'location' => '/?q=fr/admin/settings/site-information',
14848   'textgroup' => 'default',
14849   'source' => 'Anonymous',
14850   'version' => '6.38-dev',
14851 ))
14852 ->values(array(
14853   'lid' => '649',
14854   'location' => '/?q=fr/admin/settings/site-information',
14855   'textgroup' => 'default',
14856   'source' => 'The name used to indicate anonymous users.',
14857   'version' => '6.38-dev',
14858 ))
14859 ->values(array(
14860   'lid' => '650',
14861   'location' => '/?q=fr/admin/settings/site-information',
14862   'textgroup' => 'default',
14863   'source' => 'Default front page',
14864   'version' => '6.38-dev',
14865 ))
14866 ->values(array(
14867   'lid' => '651',
14868   'location' => '/?q=fr/admin/settings/site-information',
14869   'textgroup' => 'default',
14870   'source' => 'The home page displays content from this relative URL. If unsure, specify "node".',
14871   'version' => '6.38-dev',
14872 ))
14873 ->values(array(
14874   'lid' => '652',
14875   'location' => '/?q=fr/admin/settings/site-information',
14876   'textgroup' => 'default',
14877   'source' => 'Save configuration',
14878   'version' => '6.38-dev',
14879 ))
14880 ->values(array(
14881   'lid' => '653',
14882   'location' => '/?q=fr/admin/settings/site-information',
14883   'textgroup' => 'default',
14884   'source' => 'Reset to defaults',
14885   'version' => '6.38-dev',
14886 ))
14887 ->values(array(
14888   'lid' => '654',
14889   'location' => '/?q=fr/admin/settings/site-information',
14890   'textgroup' => 'default',
14891   'source' => 'This is a multilingual variable.',
14892   'version' => '6.38-dev',
14893 ))
14894 ->values(array(
14895   'lid' => '655',
14896   'location' => '/?q=fr/admin/settings/site-information',
14897   'textgroup' => 'default',
14898   'source' => 'Left sidebar',
14899   'version' => '6.38-dev',
14900 ))
14901 ->values(array(
14902   'lid' => '656',
14903   'location' => '/?q=fr/admin/settings/site-information',
14904   'textgroup' => 'default',
14905   'source' => 'Right sidebar',
14906   'version' => '6.38-dev',
14907 ))
14908 ->values(array(
14909   'lid' => '657',
14910   'location' => '/?q=fr/admin/settings/site-information',
14911   'textgroup' => 'default',
14912   'source' => 'Header',
14913   'version' => '6.38-dev',
14914 ))
14915 ->values(array(
14916   'lid' => '658',
14917   'location' => '/?q=fr/admin/settings/site-information',
14918   'textgroup' => 'default',
14919   'source' => 'Footer',
14920   'version' => '6.38-dev',
14921 ))
14922 ->values(array(
14923   'lid' => '659',
14924   'location' => '/?q=fr/admin/settings/site-information',
14925   'textgroup' => 'default',
14926   'source' => 'RSS feed',
14927   'version' => '6.38-dev',
14928 ))
14929 ->values(array(
14930   'lid' => '660',
14931   'location' => '/?q=fr/admin/settings/site-information',
14932   'textgroup' => 'default',
14933   'source' => '',
14934   'version' => '6.38-dev',
14935 ))
14936 ->values(array(
14937   'lid' => '661',
14938   'location' => '/?q=fr/admin/settings/site-information',
14939   'textgroup' => 'default',
14940   'source' => 'Administer',
14941   'version' => '6.38-dev',
14942 ))
14943 ->values(array(
14944   'lid' => '662',
14945   'location' => '/?q=fr/admin/settings/site-information',
14946   'textgroup' => 'default',
14947   'source' => 'Compact mode',
14948   'version' => '6.38-dev',
14949 ))
14950 ->values(array(
14951   'lid' => '663',
14952   'location' => '/?q=fr/admin/settings/site-information',
14953   'textgroup' => 'default',
14954   'source' => 'Content management',
14955   'version' => '6.38-dev',
14956 ))
14957 ->values(array(
14958   'lid' => '664',
14959   'location' => '/?q=fr/admin/settings/site-information',
14960   'textgroup' => 'default',
14961   'source' => "Manage your site's content.",
14962   'version' => '6.38-dev',
14963 ))
14964 ->values(array(
14965   'lid' => '665',
14966   'location' => '/?q=fr/admin/settings/site-information',
14967   'textgroup' => 'default',
14968   'source' => 'Reports',
14969   'version' => '6.38-dev',
14970 ))
14971 ->values(array(
14972   'lid' => '666',
14973   'location' => '/?q=fr/admin/settings/site-information',
14974   'textgroup' => 'default',
14975   'source' => 'View reports from system logs and other status information.',
14976   'version' => '6.38-dev',
14977 ))
14978 ->values(array(
14979   'lid' => '667',
14980   'location' => '/?q=fr/admin/settings/site-information',
14981   'textgroup' => 'default',
14982   'source' => 'Site building',
14983   'version' => '6.38-dev',
14984 ))
14985 ->values(array(
14986   'lid' => '668',
14987   'location' => '/?q=fr/admin/settings/site-information',
14988   'textgroup' => 'default',
14989   'source' => 'Control how your site looks and feels.',
14990   'version' => '6.38-dev',
14991 ))
14992 ->values(array(
14993   'lid' => '669',
14994   'location' => '/?q=fr/admin/settings/site-information',
14995   'textgroup' => 'default',
14996   'source' => 'Site configuration',
14997   'version' => '6.38-dev',
14998 ))
14999 ->values(array(
15000   'lid' => '670',
15001   'location' => '/?q=fr/admin/settings/site-information',
15002   'textgroup' => 'default',
15003   'source' => 'Adjust basic site configuration options.',
15004   'version' => '6.38-dev',
15005 ))
15006 ->values(array(
15007   'lid' => '671',
15008   'location' => '/?q=fr/admin/settings/site-information',
15009   'textgroup' => 'default',
15010   'source' => 'Actions',
15011   'version' => '6.38-dev',
15012 ))
15013 ->values(array(
15014   'lid' => '672',
15015   'location' => '/?q=fr/admin/settings/site-information',
15016   'textgroup' => 'default',
15017   'source' => 'Manage the actions defined for your site.',
15018   'version' => '6.38-dev',
15019 ))
15020 ->values(array(
15021   'lid' => '673',
15022   'location' => '/?q=fr/admin/settings/site-information',
15023   'textgroup' => 'default',
15024   'source' => 'Administration theme',
15025   'version' => '6.38-dev',
15026 ))
15027 ->values(array(
15028   'lid' => '674',
15029   'location' => '/?q=fr/admin/settings/site-information',
15030   'textgroup' => 'default',
15031   'source' => 'Settings for how your administrative pages should look.',
15032   'version' => '6.38-dev',
15033 ))
15034 ->values(array(
15035   'lid' => '675',
15036   'location' => '/?q=fr/admin/settings/site-information',
15037   'textgroup' => 'default',
15038   'source' => 'Clean URLs',
15039   'version' => '6.38-dev',
15040 ))
15041 ->values(array(
15042   'lid' => '676',
15043   'location' => '/?q=fr/admin/settings/site-information',
15044   'textgroup' => 'default',
15045   'source' => 'Enable or disable clean URLs for your site.',
15046   'version' => '6.38-dev',
15047 ))
15048 ->values(array(
15049   'lid' => '677',
15050   'location' => 'date.module:39',
15051   'textgroup' => 'default',
15052   'source' => 'Date and time',
15053   'version' => '6.38-dev',
15054 ))
15055 ->values(array(
15056   'lid' => '678',
15057   'location' => '/?q=fr/admin/settings/site-information',
15058   'textgroup' => 'default',
15059   'source' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
15060   'version' => '6.38-dev',
15061 ))
15062 ->values(array(
15063   'lid' => '679',
15064   'location' => '/?q=fr/admin/settings/site-information',
15065   'textgroup' => 'default',
15066   'source' => 'Error reporting',
15067   'version' => '6.38-dev',
15068 ))
15069 ->values(array(
15070   'lid' => '680',
15071   'location' => '/?q=fr/admin/settings/site-information',
15072   'textgroup' => 'default',
15073   'source' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
15074   'version' => '6.38-dev',
15075 ))
15076 ->values(array(
15077   'lid' => '681',
15078   'location' => '/?q=fr/admin/settings/site-information',
15079   'textgroup' => 'default',
15080   'source' => 'File system',
15081   'version' => '6.38-dev',
15082 ))
15083 ->values(array(
15084   'lid' => '682',
15085   'location' => '/?q=fr/admin/settings/site-information',
15086   'textgroup' => 'default',
15087   'source' => 'Tell Drupal where to store uploaded files and how they are accessed.',
15088   'version' => '6.38-dev',
15089 ))
15090 ->values(array(
15091   'lid' => '683',
15092   'location' => '/?q=fr/admin/settings/site-information',
15093   'textgroup' => 'default',
15094   'source' => 'File uploads',
15095   'version' => '6.38-dev',
15096 ))
15097 ->values(array(
15098   'lid' => '684',
15099   'location' => '/?q=fr/admin/settings/site-information',
15100   'textgroup' => 'default',
15101   'source' => 'Control how files may be attached to content.',
15102   'version' => '6.38-dev',
15103 ))
15104 ->values(array(
15105   'lid' => '685',
15106   'location' => '/?q=fr/admin/settings/site-information',
15107   'textgroup' => 'default',
15108   'source' => 'Image toolkit',
15109   'version' => '6.38-dev',
15110 ))
15111 ->values(array(
15112   'lid' => '686',
15113   'location' => '/?q=fr/admin/settings/site-information',
15114   'textgroup' => 'default',
15115   'source' => 'Choose which image toolkit to use if you have installed optional toolkits.',
15116   'version' => '6.38-dev',
15117 ))
15118 ->values(array(
15119   'lid' => '687',
15120   'location' => '/?q=fr/admin/settings/site-information',
15121   'textgroup' => 'default',
15122   'source' => 'Input formats',
15123   'version' => '6.38-dev',
15124 ))
15125 ->values(array(
15126   'lid' => '688',
15127   'location' => '/?q=fr/admin/settings/site-information',
15128   'textgroup' => 'default',
15129   'source' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
15130   'version' => '6.38-dev',
15131 ))
15132 ->values(array(
15133   'lid' => '689',
15134   'location' => '/?q=fr/admin/settings/site-information',
15135   'textgroup' => 'default',
15136   'source' => 'Logging and alerts',
15137   'version' => '6.38-dev',
15138 ))
15139 ->values(array(
15140   'lid' => '690',
15141   'location' => '/?q=fr/admin/settings/site-information',
15142   'textgroup' => 'default',
15143   'source' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
15144   'version' => '6.38-dev',
15145 ))
15146 ->values(array(
15147   'lid' => '691',
15148   'location' => '/?q=fr/admin/settings/site-information',
15149   'textgroup' => 'default',
15150   'source' => 'Performance',
15151   'version' => '6.38-dev',
15152 ))
15153 ->values(array(
15154   'lid' => '692',
15155   'location' => '/?q=fr/admin/settings/site-information',
15156   'textgroup' => 'default',
15157   'source' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
15158   'version' => '6.38-dev',
15159 ))
15160 ->values(array(
15161   'lid' => '693',
15162   'location' => '/?q=fr/admin/settings/site-information',
15163   'textgroup' => 'default',
15164   'source' => 'Site maintenance',
15165   'version' => '6.38-dev',
15166 ))
15167 ->values(array(
15168   'lid' => '694',
15169   'location' => '/?q=fr/admin/settings/site-information',
15170   'textgroup' => 'default',
15171   'source' => 'Take the site off-line for maintenance or bring it back online.',
15172   'version' => '6.38-dev',
15173 ))
15174 ->values(array(
15175   'lid' => '695',
15176   'location' => '/?q=fr/admin/settings/site-information',
15177   'textgroup' => 'default',
15178   'source' => 'Events',
15179   'version' => '6.38-dev',
15180 ))
15181 ->values(array(
15182   'lid' => '696',
15183   'location' => '/?q=fr/admin/settings/site-information',
15184   'textgroup' => 'default',
15185   'source' => 'Set up how your site handles events.',
15186   'version' => '6.38-dev',
15187 ))
15188 ->values(array(
15189   'lid' => '697',
15190   'location' => '/?q=fr/admin/settings/site-information',
15191   'textgroup' => 'default',
15192   'source' => 'CCK Email Contact Form Settings',
15193   'version' => '6.38-dev',
15194 ))
15195 ->values(array(
15196   'lid' => '698',
15197   'location' => '/?q=fr/admin/settings/site-information',
15198   'textgroup' => 'default',
15199   'source' => 'Administer flood control settings for email contact forms',
15200   'version' => '6.38-dev',
15201 ))
15202 ->values(array(
15203   'lid' => '699',
15204   'location' => '/?q=fr/admin/settings/site-information',
15205   'textgroup' => 'default',
15206   'source' => 'ImageAPI',
15207   'version' => '6.38-dev',
15208 ))
15209 ->values(array(
15210   'lid' => '700',
15211   'location' => '/?q=fr/admin/settings/site-information',
15212   'textgroup' => 'default',
15213   'source' => 'Configure ImageAPI.',
15214   'version' => '6.38-dev',
15215 ))
15216 ->values(array(
15217   'lid' => '701',
15218   'location' => '/?q=fr/admin/settings/site-information',
15219   'textgroup' => 'default',
15220   'source' => 'Languages',
15221   'version' => '6.38-dev',
15222 ))
15223 ->values(array(
15224   'lid' => '702',
15225   'location' => '/?q=fr/admin/settings/site-information',
15226   'textgroup' => 'default',
15227   'source' => 'Configure languages for content and the user interface.',
15228   'version' => '6.38-dev',
15229 ))
15230 ->values(array(
15231   'lid' => '703',
15232   'location' => '/?q=fr/admin/settings/site-information',
15233   'textgroup' => 'default',
15234   'source' => 'Variables',
15235   'version' => '6.38-dev',
15236 ))
15237 ->values(array(
15238   'lid' => '704',
15239   'location' => '/?q=fr/admin/settings/site-information',
15240   'textgroup' => 'default',
15241   'source' => 'Edit and delete site variables.',
15242   'version' => '6.38-dev',
15243 ))
15244 ->values(array(
15245   'lid' => '705',
15246   'location' => '/?q=fr/admin/settings/site-information',
15247   'textgroup' => 'default',
15248   'source' => 'User management',
15249   'version' => '6.38-dev',
15250 ))
15251 ->values(array(
15252   'lid' => '706',
15253   'location' => '/?q=fr/admin/settings/site-information',
15254   'textgroup' => 'default',
15255   'source' => "Manage your site's users, groups and access to site features.",
15256   'version' => '6.38-dev',
15257 ))
15258 ->values(array(
15259   'lid' => '707',
15260   'location' => '/?q=fr/admin/settings/site-information',
15261   'textgroup' => 'default',
15262   'source' => 'Contact',
15263   'version' => '6.38-dev',
15264 ))
15265 ->values(array(
15266   'lid' => '708',
15267   'location' => '/?q=fr/admin/settings/site-information',
15268   'textgroup' => 'default',
15269   'source' => 'Log out',
15270   'version' => '6.38-dev',
15271 ))
15272 ->values(array(
15273   'lid' => '709',
15274   'location' => '/?q=fr/admin/settings/site-information',
15275   'textgroup' => 'default',
15276   'source' => 'User account',
15277   'version' => '6.38-dev',
15278 ))
15279 ->values(array(
15280   'lid' => '710',
15281   'location' => '/?q=fr/admin/settings/site-information',
15282   'textgroup' => 'default',
15283   'source' => 'User list',
15284   'version' => '6.38-dev',
15285 ))
15286 ->values(array(
15287   'lid' => '711',
15288   'location' => '/?q=fr/admin/settings/site-information',
15289   'textgroup' => 'default',
15290   'source' => 'Autocomplete taxonomy',
15291   'version' => '6.38-dev',
15292 ))
15293 ->values(array(
15294   'lid' => '712',
15295   'location' => '/?q=fr/admin/settings/site-information',
15296   'textgroup' => 'default',
15297   'source' => 'Compose tips',
15298   'version' => '6.38-dev',
15299 ))
15300 ->values(array(
15301   'lid' => '713',
15302   'location' => '/?q=fr/admin/settings/site-information',
15303   'textgroup' => 'default',
15304   'source' => 'Create content',
15305   'version' => '6.38-dev',
15306 ))
15307 ->values(array(
15308   'lid' => '714',
15309   'location' => '/?q=fr/admin/settings/site-information',
15310   'textgroup' => 'default',
15311   'source' => 'Delete comment',
15312   'version' => '6.38-dev',
15313 ))
15314 ->values(array(
15315   'lid' => '715',
15316   'location' => '/?q=fr/admin/settings/site-information',
15317   'textgroup' => 'default',
15318   'source' => 'Edit comment',
15319   'version' => '6.38-dev',
15320 ))
15321 ->values(array(
15322   'lid' => '716',
15323   'location' => '/?q=fr/admin/settings/site-information',
15324   'textgroup' => 'default',
15325   'source' => 'File download',
15326   'version' => '6.38-dev',
15327 ))
15328 ->values(array(
15329   'lid' => '717',
15330   'location' => '/?q=fr/admin/settings/site-information',
15331   'textgroup' => 'default',
15332   'source' => 'User autocomplete',
15333   'version' => '6.38-dev',
15334 ))
15335 ->values(array(
15336   'lid' => '718',
15337   'location' => '/?q=fr/admin/settings/site-information',
15338   'textgroup' => 'default',
15339   'source' => 'User timezone',
15340   'version' => '6.38-dev',
15341 ))
15342 ->values(array(
15343   'lid' => '719',
15344   'location' => '/?q=fr/admin/settings/site-information',
15345   'textgroup' => 'default',
15346   'source' => 'My account',
15347   'version' => '6.38-dev',
15348 ))
15349 ->values(array(
15350   'lid' => '720',
15351   'location' => 'content_admin.inc:199',
15352   'textgroup' => 'default',
15353   'source' => 'Delete',
15354   'version' => '6.38-dev',
15355 ))
15356 ->values(array(
15357   'lid' => '721',
15358   'location' => '/?q=fr/admin/settings/site-information',
15359   'textgroup' => 'default',
15360   'source' => 'Feed aggregator',
15361   'version' => '6.38-dev',
15362 ))
15363 ->values(array(
15364   'lid' => '722',
15365   'location' => '/?q=fr/admin/settings/site-information',
15366   'textgroup' => 'default',
15367   'source' => 'Books',
15368   'version' => '6.38-dev',
15369 ))
15370 ->values(array(
15371   'lid' => '723',
15372   'location' => '/?q=fr/admin/settings/site-information',
15373   'textgroup' => 'default',
15374   'source' => 'Save string',
15375   'version' => '6.38-dev',
15376 ))
15377 ->values(array(
15378   'lid' => '724',
15379   'location' => '/?q=fr/admin/settings/site-information',
15380   'textgroup' => 'default',
15381   'source' => 'Node title autocomplete',
15382   'version' => '6.38-dev',
15383 ))
15384 ->values(array(
15385   'lid' => '725',
15386   'location' => '/?q=fr/admin/settings/site-information',
15387   'textgroup' => 'default',
15388   'source' => 'View user profile.',
15389   'version' => '6.38-dev',
15390 ))
15391 ->values(array(
15392   'lid' => '726',
15393   'location' => '/?q=fr/admin/settings/site-information',
15394   'textgroup' => 'default',
15395   'source' => "Who's new",
15396   'version' => '6.38-dev',
15397 ))
15398 ->values(array(
15399   'lid' => '727',
15400   'location' => '/?q=fr/admin/settings/site-information',
15401   'textgroup' => 'default',
15402   'source' => 'Powered by Drupal, an open source content management system',
15403   'version' => '6.38-dev',
15404 ))
15405 ->values(array(
15406   'lid' => '728',
15407   'location' => '/?q=fr/admin/settings/site-information',
15408   'textgroup' => 'default',
15409   'source' => 'Home',
15410   'version' => '6.38-dev',
15411 ))
15412 ->values(array(
15413   'lid' => '729',
15414   'location' => '/?q=fr/admin/settings/site-information',
15415   'textgroup' => 'default',
15416   'source' => 'The selected file %file could not be uploaded, because the destination %directory is not properly configured.',
15417   'version' => '6.38-dev',
15418 ))
15419 ->values(array(
15420   'lid' => '730',
15421   'location' => '/?q=fr/admin/settings/site-information',
15422   'textgroup' => 'default',
15423   'source' => 'French',
15424   'version' => '6.38-dev',
15425 ))
15426 ->values(array(
15427   'lid' => '731',
15428   'location' => '/?q=fr/admin/settings/site-information',
15429   'textgroup' => 'default',
15430   'source' => 'The configuration options have been saved.',
15431   'version' => '6.38-dev',
15432 ))
15433 ->values(array(
15434   'lid' => '732',
15435   'location' => '/?q=fr/admin/settings/site-information',
15436   'textgroup' => 'default',
15437   'source' => 'Long',
15438   'version' => '6.38-dev',
15439 ))
15440 ->values(array(
15441   'lid' => '733',
15442   'location' => '/?q=fr/admin/settings/site-information',
15443   'textgroup' => 'default',
15444   'source' => 'Medium',
15445   'version' => '6.38-dev',
15446 ))
15447 ->values(array(
15448   'lid' => '734',
15449   'location' => '/?q=fr/admin/settings/site-information',
15450   'textgroup' => 'default',
15451   'source' => 'Short',
15452   'version' => '6.38-dev',
15453 ))
15454 ->values(array(
15455   'lid' => '735',
15456   'location' => '/?q=fr/admin/settings/site-information',
15457   'textgroup' => 'default',
15458   'source' => 'The e-mail address %mail is not valid.',
15459   'version' => '6.38-dev',
15460 ))
15461 ->values(array(
15462   'lid' => '736',
15463   'location' => '/?q=fr/admin/settings/error-reporting',
15464   'textgroup' => 'default',
15465   'source' => 'Default 403 (access denied) page',
15466   'version' => '6.38-dev',
15467 ))
15468 ->values(array(
15469   'lid' => '737',
15470   'location' => '/?q=fr/admin/settings/error-reporting',
15471   'textgroup' => 'default',
15472   'source' => 'This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.',
15473   'version' => '6.38-dev',
15474 ))
15475 ->values(array(
15476   'lid' => '738',
15477   'location' => '/?q=fr/admin/settings/error-reporting',
15478   'textgroup' => 'default',
15479   'source' => 'Default 404 (not found) page',
15480   'version' => '6.38-dev',
15481 ))
15482 ->values(array(
15483   'lid' => '739',
15484   'location' => '/?q=fr/admin/settings/error-reporting',
15485   'textgroup' => 'default',
15486   'source' => 'This page is displayed when no other content matches the requested document. If unsure, specify nothing.',
15487   'version' => '6.38-dev',
15488 ))
15489 ->values(array(
15490   'lid' => '740',
15491   'location' => '/?q=fr/admin/settings/error-reporting',
15492   'textgroup' => 'default',
15493   'source' => 'Write errors to the log',
15494   'version' => '6.38-dev',
15495 ))
15496 ->values(array(
15497   'lid' => '741',
15498   'location' => '/?q=fr/admin/settings/error-reporting',
15499   'textgroup' => 'default',
15500   'source' => 'Write errors to the log and to the screen',
15501   'version' => '6.38-dev',
15502 ))
15503 ->values(array(
15504   'lid' => '742',
15505   'location' => '/?q=fr/admin/settings/error-reporting',
15506   'textgroup' => 'default',
15507   '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.',
15508   'version' => '6.38-dev',
15509 ))
15510 ->values(array(
15511   'lid' => '743',
15512   'location' => '/?q=fr/admin/user',
15513   'textgroup' => 'default',
15514   'source' => 'Access rules',
15515   'version' => '6.38-dev',
15516 ))
15517 ->values(array(
15518   'lid' => '744',
15519   'location' => '/?q=fr/admin/user',
15520   'textgroup' => 'default',
15521   'source' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
15522   'version' => '6.38-dev',
15523 ))
15524 ->values(array(
15525   'lid' => '745',
15526   'location' => '/?q=fr/admin/user',
15527   'textgroup' => 'default',
15528   'source' => 'Permissions',
15529   'version' => '6.38-dev',
15530 ))
15531 ->values(array(
15532   'lid' => '746',
15533   'location' => '/?q=fr/admin/user',
15534   'textgroup' => 'default',
15535   'source' => 'Determine access to features by selecting permissions for roles.',
15536   'version' => '6.38-dev',
15537 ))
15538 ->values(array(
15539   'lid' => '747',
15540   'location' => '/?q=fr/admin/user',
15541   'textgroup' => 'default',
15542   'source' => 'Profiles',
15543   'version' => '6.38-dev',
15544 ))
15545 ->values(array(
15546   'lid' => '748',
15547   'location' => '/?q=fr/admin/user',
15548   'textgroup' => 'default',
15549   'source' => 'Create customizable fields for your users.',
15550   'version' => '6.38-dev',
15551 ))
15552 ->values(array(
15553   'lid' => '749',
15554   'location' => '/?q=fr/admin/user',
15555   'textgroup' => 'default',
15556   'source' => 'Roles',
15557   'version' => '6.38-dev',
15558 ))
15559 ->values(array(
15560   'lid' => '750',
15561   'location' => '/?q=fr/admin/user',
15562   'textgroup' => 'default',
15563   'source' => 'List, edit, or add user roles.',
15564   'version' => '6.38-dev',
15565 ))
15566 ->values(array(
15567   'lid' => '751',
15568   'location' => '/?q=fr/admin/user',
15569   'textgroup' => 'default',
15570   'source' => 'User settings',
15571   'version' => '6.38-dev',
15572 ))
15573 ->values(array(
15574   'lid' => '752',
15575   'location' => '/?q=fr/admin/user',
15576   'textgroup' => 'default',
15577   'source' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
15578   'version' => '6.38-dev',
15579 ))
15580 ->values(array(
15581   'lid' => '753',
15582   'location' => '/?q=fr/admin/user',
15583   'textgroup' => 'default',
15584   'source' => 'Users',
15585   'version' => '6.38-dev',
15586 ))
15587 ->values(array(
15588   'lid' => '754',
15589   'location' => '/?q=fr/admin/user',
15590   'textgroup' => 'default',
15591   'source' => 'List, add, and edit users.',
15592   'version' => '6.38-dev',
15593 ))
15594 ->values(array(
15595   'lid' => '755',
15596   'location' => '/?q=fr/admin/user/settings',
15597   'textgroup' => 'default',
15598   'source' => 'User registration settings',
15599   'version' => '6.38-dev',
15600 ))
15601 ->values(array(
15602   'lid' => '756',
15603   'location' => '/?q=fr/admin/user/settings',
15604   'textgroup' => 'default',
15605   'source' => 'Public registrations',
15606   'version' => '6.38-dev',
15607 ))
15608 ->values(array(
15609   'lid' => '757',
15610   'location' => '/?q=fr/admin/user/settings',
15611   'textgroup' => 'default',
15612   'source' => 'Only site administrators can create new user accounts.',
15613   'version' => '6.38-dev',
15614 ))
15615 ->values(array(
15616   'lid' => '758',
15617   'location' => '/?q=fr/admin/user/settings',
15618   'textgroup' => 'default',
15619   'source' => 'Visitors can create accounts and no administrator approval is required.',
15620   'version' => '6.38-dev',
15621 ))
15622 ->values(array(
15623   'lid' => '759',
15624   'location' => '/?q=fr/admin/user/settings',
15625   'textgroup' => 'default',
15626   'source' => 'Visitors can create accounts but administrator approval is required.',
15627   'version' => '6.38-dev',
15628 ))
15629 ->values(array(
15630   'lid' => '760',
15631   'location' => '/?q=fr/admin/user/settings',
15632   'textgroup' => 'default',
15633   'source' => 'Require e-mail verification when a visitor creates an account',
15634   'version' => '6.38-dev',
15635 ))
15636 ->values(array(
15637   'lid' => '761',
15638   'location' => '/?q=fr/admin/user/settings',
15639   'textgroup' => 'default',
15640   '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.',
15641   'version' => '6.38-dev',
15642 ))
15643 ->values(array(
15644   'lid' => '762',
15645   'location' => '/?q=fr/admin/user/settings',
15646   'textgroup' => 'default',
15647   'source' => 'User registration guidelines',
15648   'version' => '6.38-dev',
15649 ))
15650 ->values(array(
15651   'lid' => '763',
15652   'location' => '/?q=fr/admin/user/settings',
15653   'textgroup' => 'default',
15654   'source' => 'This text is displayed at the top of the user registration form and is useful for helping or instructing your users.',
15655   'version' => '6.38-dev',
15656 ))
15657 ->values(array(
15658   'lid' => '764',
15659   'location' => '/?q=fr/admin/user/settings',
15660   'textgroup' => 'default',
15661   'source' => 'User e-mail settings',
15662   'version' => '6.38-dev',
15663 ))
15664 ->values(array(
15665   'lid' => '765',
15666   'location' => '/?q=fr/admin/user/settings',
15667   'textgroup' => 'default',
15668   '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.',
15669   'version' => '6.38-dev',
15670 ))
15671 ->values(array(
15672   'lid' => '766',
15673   'location' => '/?q=fr/admin/user/settings',
15674   'textgroup' => 'default',
15675   'source' => 'Available variables are:',
15676   'version' => '6.38-dev',
15677 ))
15678 ->values(array(
15679   'lid' => '767',
15680   'location' => '/?q=fr/admin/user/settings',
15681   'textgroup' => 'default',
15682   'source' => 'Welcome, new user created by administrator',
15683   'version' => '6.38-dev',
15684 ))
15685 ->values(array(
15686   'lid' => '768',
15687   'location' => '/?q=fr/admin/user/settings',
15688   'textgroup' => 'default',
15689   'source' => 'Customize welcome e-mail messages sent to new member accounts created by an administrator.',
15690   'version' => '6.38-dev',
15691 ))
15692 ->values(array(
15693   'lid' => '769',
15694   'location' => '/?q=fr/admin/user/settings',
15695   'textgroup' => 'default',
15696   'source' => 'Subject',
15697   'version' => '6.38-dev',
15698 ))
15699 ->values(array(
15700   'lid' => '770',
15701   'location' => '/?q=fr/admin/user/settings',
15702   'textgroup' => 'default',
15703   'source' => 'Body',
15704   'version' => '6.38-dev',
15705 ))
15706 ->values(array(
15707   'lid' => '771',
15708   'location' => '/?q=fr/admin/user/settings',
15709   'textgroup' => 'default',
15710   'source' => 'Welcome, no approval required',
15711   'version' => '6.38-dev',
15712 ))
15713 ->values(array(
15714   'lid' => '772',
15715   'location' => '/?q=fr/admin/user/settings',
15716   'textgroup' => 'default',
15717   'source' => 'Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required.',
15718   'version' => '6.38-dev',
15719 ))
15720 ->values(array(
15721   'lid' => '773',
15722   'location' => '/?q=fr/admin/user/settings',
15723   'textgroup' => 'default',
15724   'source' => 'Welcome, awaiting administrator approval',
15725   'version' => '6.38-dev',
15726 ))
15727 ->values(array(
15728   'lid' => '774',
15729   'location' => '/?q=fr/admin/user/settings',
15730   'textgroup' => 'default',
15731   'source' => 'Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required.',
15732   'version' => '6.38-dev',
15733 ))
15734 ->values(array(
15735   'lid' => '775',
15736   'location' => '/?q=fr/admin/user/settings',
15737   'textgroup' => 'default',
15738   'source' => 'Password recovery email',
15739   'version' => '6.38-dev',
15740 ))
15741 ->values(array(
15742   'lid' => '776',
15743   'location' => '/?q=fr/admin/user/settings',
15744   'textgroup' => 'default',
15745   'source' => 'Customize e-mail messages sent to users who request a new password.',
15746   'version' => '6.38-dev',
15747 ))
15748 ->values(array(
15749   'lid' => '777',
15750   'location' => '/?q=fr/admin/user/settings',
15751   'textgroup' => 'default',
15752   'source' => 'Account activation email',
15753   'version' => '6.38-dev',
15754 ))
15755 ->values(array(
15756   'lid' => '778',
15757   'location' => '/?q=fr/admin/user/settings',
15758   'textgroup' => 'default',
15759   '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).',
15760   'version' => '6.38-dev',
15761 ))
15762 ->values(array(
15763   'lid' => '779',
15764   'location' => '/?q=fr/admin/user/settings',
15765   'textgroup' => 'default',
15766   'source' => 'Notify user when account is activated.',
15767   'version' => '6.38-dev',
15768 ))
15769 ->values(array(
15770   'lid' => '780',
15771   'location' => '/?q=fr/admin/user/settings',
15772   'textgroup' => 'default',
15773   'source' => 'Account blocked email',
15774   'version' => '6.38-dev',
15775 ))
15776 ->values(array(
15777   'lid' => '781',
15778   'location' => '/?q=fr/admin/user/settings',
15779   'textgroup' => 'default',
15780   'source' => 'Enable and customize e-mail messages sent to users when their accounts are blocked.',
15781   'version' => '6.38-dev',
15782 ))
15783 ->values(array(
15784   'lid' => '782',
15785   'location' => '/?q=fr/admin/user/settings',
15786   'textgroup' => 'default',
15787   'source' => 'Notify user when account is blocked.',
15788   'version' => '6.38-dev',
15789 ))
15790 ->values(array(
15791   'lid' => '783',
15792   'location' => '/?q=fr/admin/user/settings',
15793   'textgroup' => 'default',
15794   'source' => 'Account deleted email',
15795   'version' => '6.38-dev',
15796 ))
15797 ->values(array(
15798   'lid' => '784',
15799   'location' => '/?q=fr/admin/user/settings',
15800   'textgroup' => 'default',
15801   'source' => 'Enable and customize e-mail messages sent to users when their accounts are deleted.',
15802   'version' => '6.38-dev',
15803 ))
15804 ->values(array(
15805   'lid' => '785',
15806   'location' => '/?q=fr/admin/user/settings',
15807   'textgroup' => 'default',
15808   'source' => 'Notify user when account is deleted.',
15809   'version' => '6.38-dev',
15810 ))
15811 ->values(array(
15812   'lid' => '786',
15813   'location' => '/?q=fr/admin/user/settings',
15814   'textgroup' => 'default',
15815   'source' => 'Signatures',
15816   'version' => '6.38-dev',
15817 ))
15818 ->values(array(
15819   'lid' => '787',
15820   'location' => '/?q=fr/admin/user/settings',
15821   'textgroup' => 'default',
15822   'source' => 'Signature support',
15823   'version' => '6.38-dev',
15824 ))
15825 ->values(array(
15826   'lid' => '788',
15827   'location' => '/?q=fr/admin/user/settings',
15828   'textgroup' => 'default',
15829   'source' => 'Disabled',
15830   'version' => '6.38-dev',
15831 ))
15832 ->values(array(
15833   'lid' => '789',
15834   'location' => '/?q=fr/admin/user/settings',
15835   'textgroup' => 'default',
15836   'source' => 'Enabled',
15837   'version' => '6.38-dev',
15838 ))
15839 ->values(array(
15840   'lid' => '790',
15841   'location' => '/?q=fr/admin/user/settings',
15842   'textgroup' => 'default',
15843   'source' => 'Pictures',
15844   'version' => '6.38-dev',
15845 ))
15846 ->values(array(
15847   'lid' => '791',
15848   'location' => '/?q=fr/admin/user/settings',
15849   'textgroup' => 'default',
15850   'source' => 'Picture support',
15851   'version' => '6.38-dev',
15852 ))
15853 ->values(array(
15854   'lid' => '792',
15855   'location' => '/?q=fr/admin/user/settings',
15856   'textgroup' => 'default',
15857   'source' => 'Picture image path',
15858   'version' => '6.38-dev',
15859 ))
15860 ->values(array(
15861   'lid' => '793',
15862   'location' => '/?q=fr/admin/user/settings',
15863   'textgroup' => 'default',
15864   'source' => 'Subdirectory in the directory %dir where pictures will be stored.',
15865   'version' => '6.38-dev',
15866 ))
15867 ->values(array(
15868   'lid' => '794',
15869   'location' => '/?q=fr/admin/user/settings',
15870   'textgroup' => 'default',
15871   'source' => 'Default picture',
15872   'version' => '6.38-dev',
15873 ))
15874 ->values(array(
15875   'lid' => '795',
15876   'location' => '/?q=fr/admin/user/settings',
15877   'textgroup' => 'default',
15878   'source' => 'URL of picture to display for users with no custom picture selected. Leave blank for none.',
15879   'version' => '6.38-dev',
15880 ))
15881 ->values(array(
15882   'lid' => '796',
15883   'location' => '/?q=fr/admin/user/settings',
15884   'textgroup' => 'default',
15885   'source' => 'Picture maximum dimensions',
15886   'version' => '6.38-dev',
15887 ))
15888 ->values(array(
15889   'lid' => '797',
15890   'location' => '/?q=fr/admin/user/settings',
15891   'textgroup' => 'default',
15892   'source' => 'Maximum dimensions for pictures, in pixels.',
15893   'version' => '6.38-dev',
15894 ))
15895 ->values(array(
15896   'lid' => '798',
15897   'location' => '/?q=fr/admin/user/settings',
15898   'textgroup' => 'default',
15899   'source' => 'Picture maximum file size',
15900   'version' => '6.38-dev',
15901 ))
15902 ->values(array(
15903   'lid' => '799',
15904   'location' => '/?q=fr/admin/user/settings',
15905   'textgroup' => 'default',
15906   'source' => 'Maximum file size for pictures, in kB.',
15907   'version' => '6.38-dev',
15908 ))
15909 ->values(array(
15910   'lid' => '800',
15911   'location' => '/?q=fr/admin/user/settings',
15912   'textgroup' => 'default',
15913   'source' => 'Picture guidelines',
15914   'version' => '6.38-dev',
15915 ))
15916 ->values(array(
15917   'lid' => '801',
15918   'location' => '/?q=fr/admin/user/settings',
15919   'textgroup' => 'default',
15920   '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.",
15921   'version' => '6.38-dev',
15922 ))
15923 ->values(array(
15924   'lid' => '802',
15925   'location' => '/?q=fr/admin/settings/performance',
15926   'textgroup' => 'default',
15927   '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.',
15928   'version' => '6.38-dev',
15929 ))
15930 ->values(array(
15931   'lid' => '803',
15932   'location' => '/?q=fr/admin/settings/performance',
15933   'textgroup' => 'default',
15934   'source' => '<strong class="error">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>',
15935   'version' => '6.38-dev',
15936 ))
15937 ->values(array(
15938   'lid' => '804',
15939   'location' => '/?q=fr/admin/settings/performance',
15940   'textgroup' => 'default',
15941   'source' => 'Page cache',
15942   'version' => '6.38-dev',
15943 ))
15944 ->values(array(
15945   'lid' => '805',
15946   'location' => '/?q=fr/admin/settings/performance',
15947   'textgroup' => 'default',
15948   '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.',
15949   'version' => '6.38-dev',
15950 ))
15951 ->values(array(
15952   'lid' => '806',
15953   'location' => '/?q=fr/admin/settings/performance',
15954   'textgroup' => 'default',
15955   'source' => 'Caching mode',
15956   'version' => '6.38-dev',
15957 ))
15958 ->values(array(
15959   'lid' => '807',
15960   'location' => '/?q=fr/admin/settings/performance',
15961   'textgroup' => 'default',
15962   'source' => 'Normal (recommended for production sites, no side effects)',
15963   'version' => '6.38-dev',
15964 ))
15965 ->values(array(
15966   'lid' => '808',
15967   'location' => '/?q=fr/admin/settings/performance',
15968   'textgroup' => 'default',
15969   'source' => 'Aggressive (experts only, possible side effects)',
15970   'version' => '6.38-dev',
15971 ))
15972 ->values(array(
15973   'lid' => '809',
15974   'location' => '/?q=fr/admin/settings/performance',
15975   'textgroup' => 'default',
15976   'source' => '0 sec',
15977   'version' => '6.38-dev',
15978 ))
15979 ->values(array(
15980   'lid' => '810',
15981   'location' => '/?q=fr/admin/settings/performance',
15982   'textgroup' => 'default',
15983   'source' => '1 min',
15984   'version' => '6.38-dev',
15985 ))
15986 ->values(array(
15987   'lid' => '811',
15988   'location' => '/?q=fr/admin/settings/performance',
15989   'textgroup' => 'default',
15990   'source' => '@count min',
15991   'version' => '6.38-dev',
15992 ))
15993 ->values(array(
15994   'lid' => '812',
15995   'location' => '/?q=fr/admin/settings/performance',
15996   'textgroup' => 'default',
15997   'source' => '1 hour',
15998   'version' => '6.38-dev',
15999 ))
16000 ->values(array(
16001   'lid' => '813',
16002   'location' => '/?q=fr/admin/settings/performance',
16003   'textgroup' => 'default',
16004   'source' => '@count hours',
16005   'version' => '6.38-dev',
16006 ))
16007 ->values(array(
16008   'lid' => '814',
16009   'location' => '/?q=fr/admin/settings/performance',
16010   'textgroup' => 'default',
16011   'source' => '1 day',
16012   'version' => '6.38-dev',
16013 ))
16014 ->values(array(
16015   'lid' => '815',
16016   'location' => '/?q=fr/admin/settings/performance',
16017   'textgroup' => 'default',
16018   'source' => 'Minimum cache lifetime',
16019   'version' => '6.38-dev',
16020 ))
16021 ->values(array(
16022   'lid' => '816',
16023   'location' => '/?q=fr/admin/settings/performance',
16024   'textgroup' => 'default',
16025   '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.',
16026   'version' => '6.38-dev',
16027 ))
16028 ->values(array(
16029   'lid' => '817',
16030   'location' => '/?q=fr/admin/settings/performance',
16031   'textgroup' => 'default',
16032   'source' => 'Page compression',
16033   'version' => '6.38-dev',
16034 ))
16035 ->values(array(
16036   'lid' => '818',
16037   'location' => '/?q=fr/admin/settings/performance',
16038   'textgroup' => 'default',
16039   '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.',
16040   'version' => '6.38-dev',
16041 ))
16042 ->values(array(
16043   'lid' => '819',
16044   'location' => '/?q=fr/admin/settings/performance',
16045   'textgroup' => 'default',
16046   'source' => 'Block cache',
16047   'version' => '6.38-dev',
16048 ))
16049 ->values(array(
16050   'lid' => '820',
16051   'location' => '/?q=fr/admin/settings/performance',
16052   'textgroup' => 'default',
16053   '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.',
16054   'version' => '6.38-dev',
16055 ))
16056 ->values(array(
16057   'lid' => '821',
16058   'location' => '/?q=fr/admin/settings/performance',
16059   'textgroup' => 'default',
16060   'source' => 'Enabled (recommended)',
16061   'version' => '6.38-dev',
16062 ))
16063 ->values(array(
16064   'lid' => '822',
16065   'location' => '/?q=fr/admin/settings/performance',
16066   'textgroup' => 'default',
16067   'source' => 'Note that block caching is inactive when modules defining content access restrictions are enabled.',
16068   'version' => '6.38-dev',
16069 ))
16070 ->values(array(
16071   'lid' => '823',
16072   'location' => '/?q=fr/admin/settings/performance',
16073   'textgroup' => 'default',
16074   'source' => 'Bandwidth optimizations',
16075   'version' => '6.38-dev',
16076 ))
16077 ->values(array(
16078   'lid' => '824',
16079   'location' => '/?q=fr/admin/settings/performance',
16080   'textgroup' => 'default',
16081   '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>',
16082   'version' => '6.38-dev',
16083 ))
16084 ->values(array(
16085   'lid' => '825',
16086   'location' => '/?q=fr/admin/settings/performance',
16087   'textgroup' => 'default',
16088   'source' => 'Optimize CSS files',
16089   'version' => '6.38-dev',
16090 ))
16091 ->values(array(
16092   'lid' => '826',
16093   'location' => '/?q=fr/admin/settings/performance',
16094   'textgroup' => 'default',
16095   'source' => 'This option can interfere with theme development and should only be enabled in a production environment.',
16096   'version' => '6.38-dev',
16097 ))
16098 ->values(array(
16099   'lid' => '827',
16100   'location' => '/?q=fr/admin/settings/performance',
16101   'textgroup' => 'default',
16102   'source' => 'Optimize JavaScript files',
16103   'version' => '6.38-dev',
16104 ))
16105 ->values(array(
16106   'lid' => '828',
16107   'location' => '/?q=fr/admin/settings/performance',
16108   'textgroup' => 'default',
16109   'source' => 'This option can interfere with module development and should only be enabled in a production environment.',
16110   'version' => '6.38-dev',
16111 ))
16112 ->values(array(
16113   'lid' => '829',
16114   'location' => '/?q=fr/admin/settings/performance',
16115   'textgroup' => 'default',
16116   'source' => 'Clear cached data',
16117   'version' => '6.38-dev',
16118 ))
16119 ->values(array(
16120   'lid' => '830',
16121   'location' => '/?q=fr/admin/settings/performance',
16122   'textgroup' => 'default',
16123   '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>',
16124   'version' => '6.38-dev',
16125 ))
16126 ->values(array(
16127   'lid' => '831',
16128   'location' => '/?q=fr/admin/settings/site-maintenance',
16129   'textgroup' => 'default',
16130   'source' => 'Site status',
16131   'version' => '6.38-dev',
16132 ))
16133 ->values(array(
16134   'lid' => '832',
16135   'location' => '/?q=fr/admin/settings/site-maintenance',
16136   'textgroup' => 'default',
16137   'source' => 'Online',
16138   'version' => '6.38-dev',
16139 ))
16140 ->values(array(
16141   'lid' => '833',
16142   'location' => '/?q=fr/admin/settings/site-maintenance',
16143   'textgroup' => 'default',
16144   'source' => 'Off-line',
16145   'version' => '6.38-dev',
16146 ))
16147 ->values(array(
16148   'lid' => '834',
16149   'location' => '/?q=fr/admin/settings/site-maintenance',
16150   'textgroup' => 'default',
16151   '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.',
16152   'version' => '6.38-dev',
16153 ))
16154 ->values(array(
16155   'lid' => '835',
16156   'location' => '/?q=fr/admin/settings/site-maintenance',
16157   'textgroup' => 'default',
16158   'source' => 'Site off-line message',
16159   'version' => '6.38-dev',
16160 ))
16161 ->values(array(
16162   'lid' => '836',
16163   'location' => '/?q=fr/admin/settings/site-maintenance',
16164   'textgroup' => 'default',
16165   'source' => '@site is currently under maintenance. We should be back shortly. Thank you for your patience.',
16166   'version' => '6.38-dev',
16167 ))
16168 ->values(array(
16169   'lid' => '837',
16170   'location' => '/?q=fr/admin/settings/site-maintenance',
16171   'textgroup' => 'default',
16172   'source' => 'Message to show visitors when the site is in off-line mode.',
16173   'version' => '6.38-dev',
16174 ))
16175 ->values(array(
16176   'lid' => '838',
16177   'location' => '/?q=fr/admin/settings/language',
16178   'textgroup' => 'default',
16179   'source' => 'Left to right',
16180   'version' => '6.38-dev',
16181 ))
16182 ->values(array(
16183   'lid' => '839',
16184   'location' => '/?q=fr/admin/settings/language',
16185   'textgroup' => 'default',
16186   'source' => 'English name',
16187   'version' => '6.38-dev',
16188 ))
16189 ->values(array(
16190   'lid' => '840',
16191   'location' => '/?q=fr/admin/settings/language',
16192   'textgroup' => 'default',
16193   'source' => 'Native name',
16194   'version' => '6.38-dev',
16195 ))
16196 ->values(array(
16197   'lid' => '841',
16198   'location' => '/?q=fr/admin/settings/language',
16199   'textgroup' => 'default',
16200   'source' => 'Direction',
16201   'version' => '6.38-dev',
16202 ))
16203 ->values(array(
16204   'lid' => '842',
16205   'location' => '/?q=fr/admin/settings/language',
16206   'textgroup' => 'default',
16207   'source' => 'Language negotiation',
16208   'version' => '6.38-dev',
16209 ))
16210 ->values(array(
16211   'lid' => '843',
16212   'location' => '/?q=fr/admin/settings/language',
16213   'textgroup' => 'default',
16214   'source' => 'List',
16215   'version' => '6.38-dev',
16216 ))
16217 ->values(array(
16218   'lid' => '844',
16219   'location' => '/?q=fr/admin/settings/language',
16220   'textgroup' => 'default',
16221   'source' => 'Options',
16222   'version' => '6.38-dev',
16223 ))
16224 ->values(array(
16225   'lid' => '845',
16226   'location' => '/?q=fr/admin/settings/language',
16227   'textgroup' => 'default',
16228   'source' => 'Configure extended options for multilingual content and translations.',
16229   'version' => '6.38-dev',
16230 ))
16231 ->values(array(
16232   'lid' => '846',
16233   'location' => '/?q=fr/admin/settings/language',
16234   'textgroup' => 'default',
16235   'source' => 'Multilingual variables.',
16236   'version' => '6.38-dev',
16237 ))
16238 ->values(array(
16239   'lid' => '847',
16240   'location' => '/?q=fr/admin/settings/language',
16241   'textgroup' => 'default',
16242   'source' => 'Add language',
16243   'version' => '6.38-dev',
16244 ))
16245 ->values(array(
16246   'lid' => '848',
16247   'location' => '/?q=fr/admin/settings/language',
16248   'textgroup' => 'default',
16249   'source' => 'Multilingual system',
16250   'version' => '6.38-dev',
16251 ))
16252 ->values(array(
16253   'lid' => '849',
16254   'location' => '/?q=fr/admin/settings/language',
16255   'textgroup' => 'default',
16256   'source' => 'String translation',
16257   'version' => '6.38-dev',
16258 ))
16259 ->values(array(
16260   'lid' => '850',
16261   'location' => '/?q=fr/admin/settings/language',
16262   'textgroup' => 'default',
16263   '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.",
16264   'version' => '6.38-dev',
16265 ))
16266 ->values(array(
16267   'lid' => '851',
16268   'location' => '/?q=fr/admin/settings/language',
16269   'textgroup' => 'default',
16270   '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.',
16271   'version' => '6.38-dev',
16272 ))
16273 ->values(array(
16274   'lid' => '852',
16275   'location' => '/?q=fr/admin/settings/language',
16276   'textgroup' => 'default',
16277   '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>.',
16278   'version' => '6.38-dev',
16279 ))
16280 ->values(array(
16281   'lid' => '853',
16282   'location' => '/?q=fr/admin/settings/language',
16283   'textgroup' => 'default',
16284   '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>',
16285   'version' => '6.38-dev',
16286 ))
16287 ->values(array(
16288   'lid' => '854',
16289   'location' => '/?q=fr/admin/settings/filters',
16290   'textgroup' => 'default',
16291   'source' => 'anonymous user',
16292   'version' => '6.38-dev',
16293 ))
16294 ->values(array(
16295   'lid' => '855',
16296   'location' => '/?q=fr/admin/settings/filters',
16297   'textgroup' => 'default',
16298   'source' => 'authenticated user',
16299   'version' => '6.38-dev',
16300 ))
16301 ->values(array(
16302   'lid' => '856',
16303   'location' => '/?q=fr/admin/settings/filters',
16304   'textgroup' => 'default',
16305   'source' => 'All roles may use default format',
16306   'version' => '6.38-dev',
16307 ))
16308 ->values(array(
16309   'lid' => '857',
16310   'location' => 'content_admin.inc:250',
16311   'textgroup' => 'default',
16312   'source' => 'configure',
16313   'version' => '6.38-dev',
16314 ))
16315 ->values(array(
16316   'lid' => '858',
16317   'location' => '/?q=fr/admin/settings/filters',
16318   'textgroup' => 'default',
16319   'source' => 'No roles may use this format',
16320   'version' => '6.38-dev',
16321 ))
16322 ->values(array(
16323   'lid' => '859',
16324   'location' => '/?q=fr/admin/settings/filters',
16325   'textgroup' => 'default',
16326   'source' => 'Set default format',
16327   'version' => '6.38-dev',
16328 ))
16329 ->values(array(
16330   'lid' => '860',
16331   'location' => '/?q=fr/admin/settings/filters',
16332   'textgroup' => 'default',
16333   'source' => 'Delete input format',
16334   'version' => '6.38-dev',
16335 ))
16336 ->values(array(
16337   'lid' => '861',
16338   'location' => '/?q=fr/admin/settings/filters',
16339   'textgroup' => 'default',
16340   'source' => 'Add input format',
16341   'version' => '6.38-dev',
16342 ))
16343 ->values(array(
16344   'lid' => '862',
16345   'location' => '/?q=fr/admin/settings/filters',
16346   'textgroup' => 'default',
16347   '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.',
16348   'version' => '6.38-dev',
16349 ))
16350 ->values(array(
16351   'lid' => '863',
16352   'location' => '/?q=fr/admin/settings/filters',
16353   'textgroup' => 'default',
16354   '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.',
16355   'version' => '6.38-dev',
16356 ))
16357 ->values(array(
16358   'lid' => '864',
16359   'location' => '/?q=fr/admin/settings/filters',
16360   'textgroup' => 'default',
16361   '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.',
16362   'version' => '6.38-dev',
16363 ))
16364 ->values(array(
16365   'lid' => '865',
16366   'location' => '/?q=fr/admin/settings/imageapi',
16367   'textgroup' => 'default',
16368   'source' => 'There are no image toolkit modules enabled. Toolkit modules can be enabled from the <a href="!admin-build-modules">module configuration page</a>.',
16369   'version' => '6.38-dev',
16370 ))
16371 ->values(array(
16372   'lid' => '866',
16373   'location' => '/?q=fr/admin/settings/image-toolkit',
16374   'textgroup' => 'default',
16375   'source' => 'GD2 image manipulation toolkit',
16376   'version' => '6.38-dev',
16377 ))
16378 ->values(array(
16379   'lid' => '867',
16380   'location' => '/?q=fr/admin/settings/image-toolkit',
16381   'textgroup' => 'default',
16382   'source' => 'The GD toolkit is installed and working properly.',
16383   'version' => '6.38-dev',
16384 ))
16385 ->values(array(
16386   'lid' => '868',
16387   'location' => '/?q=fr/admin/settings/image-toolkit',
16388   'textgroup' => 'default',
16389   'source' => 'JPEG quality',
16390   'version' => '6.38-dev',
16391 ))
16392 ->values(array(
16393   'lid' => '869',
16394   'location' => '/?q=fr/admin/settings/image-toolkit',
16395   'textgroup' => 'default',
16396   'source' => 'Define the image quality for JPEG manipulations. Ranges from 0 to 100. Higher values mean better image quality but bigger files.',
16397   'version' => '6.38-dev',
16398 ))
16399 ->values(array(
16400   'lid' => '870',
16401   'location' => '/?q=fr/admin/settings/image-toolkit',
16402   'textgroup' => 'default',
16403   'source' => '%',
16404   'version' => '6.38-dev',
16405 ))
16406 ->values(array(
16407   'lid' => '871',
16408   'location' => '/?q=fr/admin/settings/uploads',
16409   'textgroup' => 'default',
16410   'source' => 'General settings',
16411   'version' => '6.38-dev',
16412 ))
16413 ->values(array(
16414   'lid' => '872',
16415   'location' => '/?q=fr/admin/settings/uploads',
16416   'textgroup' => 'default',
16417   'source' => 'Maximum resolution for uploaded images',
16418   'version' => '6.38-dev',
16419 ))
16420 ->values(array(
16421   'lid' => '873',
16422   'location' => '/?q=fr/admin/settings/uploads',
16423   'textgroup' => 'default',
16424   '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.',
16425   'version' => '6.38-dev',
16426 ))
16427 ->values(array(
16428   'lid' => '874',
16429   'location' => '/?q=fr/admin/settings/uploads',
16430   'textgroup' => 'default',
16431   'source' => 'WIDTHxHEIGHT',
16432   'version' => '6.38-dev',
16433 ))
16434 ->values(array(
16435   'lid' => '875',
16436   'location' => '/?q=fr/admin/settings/uploads',
16437   'textgroup' => 'default',
16438   'source' => 'List files by default',
16439   'version' => '6.38-dev',
16440 ))
16441 ->values(array(
16442   'lid' => '876',
16443   'location' => '/?q=fr/admin/settings/uploads',
16444   'textgroup' => 'default',
16445   'source' => 'No',
16446   'version' => '6.38-dev',
16447 ))
16448 ->values(array(
16449   'lid' => '877',
16450   'location' => '/?q=fr/admin/settings/uploads',
16451   'textgroup' => 'default',
16452   'source' => 'Yes',
16453   'version' => '6.38-dev',
16454 ))
16455 ->values(array(
16456   'lid' => '878',
16457   'location' => '/?q=fr/admin/settings/uploads',
16458   'textgroup' => 'default',
16459   'source' => 'Display attached files when viewing a post.',
16460   'version' => '6.38-dev',
16461 ))
16462 ->values(array(
16463   'lid' => '879',
16464   'location' => '/?q=fr/admin/settings/uploads',
16465   'textgroup' => 'default',
16466   'source' => 'Default permitted file extensions',
16467   'version' => '6.38-dev',
16468 ))
16469 ->values(array(
16470   'lid' => '880',
16471   'location' => '/?q=fr/admin/settings/uploads',
16472   'textgroup' => 'default',
16473   'source' => 'Default extensions that users can upload. Separate extensions with a space and do not include the leading dot.',
16474   'version' => '6.38-dev',
16475 ))
16476 ->values(array(
16477   'lid' => '881',
16478   'location' => '/?q=fr/admin/settings/uploads',
16479   'textgroup' => 'default',
16480   'source' => 'Default maximum file size per upload',
16481   'version' => '6.38-dev',
16482 ))
16483 ->values(array(
16484   'lid' => '882',
16485   'location' => '/?q=fr/admin/settings/uploads',
16486   'textgroup' => 'default',
16487   '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.',
16488   'version' => '6.38-dev',
16489 ))
16490 ->values(array(
16491   'lid' => '883',
16492   'location' => '/?q=fr/admin/settings/uploads',
16493   'textgroup' => 'default',
16494   'source' => 'MB',
16495   'version' => '6.38-dev',
16496 ))
16497 ->values(array(
16498   'lid' => '884',
16499   'location' => '/?q=fr/admin/settings/uploads',
16500   'textgroup' => 'default',
16501   'source' => 'Default total file size per user',
16502   'version' => '6.38-dev',
16503 ))
16504 ->values(array(
16505   'lid' => '885',
16506   'location' => '/?q=fr/admin/settings/uploads',
16507   'textgroup' => 'default',
16508   'source' => 'The default maximum size of all files a user can have on the site.',
16509   'version' => '6.38-dev',
16510 ))
16511 ->values(array(
16512   'lid' => '886',
16513   'location' => '/?q=fr/admin/settings/uploads',
16514   'textgroup' => 'default',
16515   'source' => 'KB',
16516   'version' => '6.38-dev',
16517 ))
16518 ->values(array(
16519   'lid' => '887',
16520   'location' => '/?q=fr/admin/settings/uploads',
16521   'textgroup' => 'default',
16522   'source' => '@size @suffix',
16523   'version' => '6.38-dev',
16524 ))
16525 ->values(array(
16526   'lid' => '888',
16527   'location' => '/?q=fr/admin/settings/uploads',
16528   'textgroup' => 'default',
16529   'source' => 'Your PHP settings limit the maximum file size per upload to %size.',
16530   'version' => '6.38-dev',
16531 ))
16532 ->values(array(
16533   'lid' => '889',
16534   'location' => '/?q=fr/admin/settings/uploads',
16535   'textgroup' => 'default',
16536   '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.',
16537   'version' => '6.38-dev',
16538 ))
16539 ->values(array(
16540   'lid' => '890',
16541   'location' => '/?q=fr/admin/settings/file-system',
16542   'textgroup' => 'default',
16543   'source' => 'File system path',
16544   'version' => '6.38-dev',
16545 ))
16546 ->values(array(
16547   'lid' => '891',
16548   'location' => '/?q=fr/admin/settings/file-system',
16549   'textgroup' => 'default',
16550   '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.',
16551   'version' => '6.38-dev',
16552 ))
16553 ->values(array(
16554   'lid' => '892',
16555   'location' => '/?q=fr/admin/settings/file-system',
16556   'textgroup' => 'default',
16557   'source' => 'Temporary directory',
16558   'version' => '6.38-dev',
16559 ))
16560 ->values(array(
16561   'lid' => '893',
16562   'location' => '/?q=fr/admin/settings/file-system',
16563   'textgroup' => 'default',
16564   'source' => 'A file system path where uploaded files will be stored during previews.',
16565   'version' => '6.38-dev',
16566 ))
16567 ->values(array(
16568   'lid' => '894',
16569   'location' => '/?q=fr/admin/settings/file-system',
16570   'textgroup' => 'default',
16571   'source' => 'Download method',
16572   'version' => '6.38-dev',
16573 ))
16574 ->values(array(
16575   'lid' => '895',
16576   'location' => '/?q=fr/admin/settings/file-system',
16577   'textgroup' => 'default',
16578   'source' => 'Public - files are available using HTTP directly.',
16579   'version' => '6.38-dev',
16580 ))
16581 ->values(array(
16582   'lid' => '896',
16583   'location' => '/?q=fr/admin/settings/file-system',
16584   'textgroup' => 'default',
16585   'source' => 'Private - files are transferred by Drupal.',
16586   'version' => '6.38-dev',
16587 ))
16588 ->values(array(
16589   'lid' => '897',
16590   'location' => '/?q=fr/admin/settings/file-system',
16591   'textgroup' => 'default',
16592   '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.',
16593   'version' => '6.38-dev',
16594 ))
16595 ->values(array(
16596   'lid' => '898',
16597   'location' => '/?q=fr/admin/settings/file-system',
16598   'textgroup' => 'default',
16599   'source' => 'The directory %directory does not exist.',
16600   'version' => '6.38-dev',
16601 ))
16602 ->values(array(
16603   'lid' => '899',
16604   'location' => '/?q=fr/admin/settings/event',
16605   'textgroup' => 'default',
16606   'source' => 'Event overview',
16607   'version' => '6.38-dev',
16608 ))
16609 ->values(array(
16610   'lid' => '900',
16611   'location' => '/?q=fr/admin/settings/event',
16612   'textgroup' => 'default',
16613   'source' => 'Change how event summary information is displayed.',
16614   'version' => '6.38-dev',
16615 ))
16616 ->values(array(
16617   'lid' => '901',
16618   'location' => '/?q=fr/admin/settings/event',
16619   'textgroup' => 'default',
16620   'source' => 'Timezone handling',
16621   'version' => '6.38-dev',
16622 ))
16623 ->values(array(
16624   'lid' => '902',
16625   'location' => '/?q=fr/admin/settings/event',
16626   'textgroup' => 'default',
16627   'source' => 'Change how timezone information is saved and displayed.',
16628   'version' => '6.38-dev',
16629 ))
16630 ->values(array(
16631   'lid' => '903',
16632   'location' => '/?q=fr/admin/settings/event/timezone',
16633   'textgroup' => 'default',
16634   'source' => 'Event time zone input',
16635   'version' => '6.38-dev',
16636 ))
16637 ->values(array(
16638   'lid' => '904',
16639   'location' => '/?q=fr/admin/settings/event/timezone',
16640   'textgroup' => 'default',
16641   'source' => 'Use the sitewide time zone',
16642   'version' => '6.38-dev',
16643 ))
16644 ->values(array(
16645   'lid' => '905',
16646   'location' => '/?q=fr/admin/settings/event/timezone',
16647   'textgroup' => 'default',
16648   'source' => 'Use the time zone of the user editing or creating the event',
16649   'version' => '6.38-dev',
16650 ))
16651 ->values(array(
16652   'lid' => '906',
16653   'location' => '/?q=fr/admin/settings/event/timezone',
16654   'textgroup' => 'default',
16655   'source' => 'Allow users to set event time zones',
16656   'version' => '6.38-dev',
16657 ))
16658 ->values(array(
16659   'lid' => '907',
16660   'location' => '/?q=fr/admin/settings/event/timezone',
16661   'textgroup' => 'default',
16662   'source' => 'date/time settings',
16663   'version' => '6.38-dev',
16664 ))
16665 ->values(array(
16666   'lid' => '908',
16667   'location' => '/?q=fr/admin/settings/event/timezone',
16668   'textgroup' => 'default',
16669   '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.",
16670   'version' => '6.38-dev',
16671 ))
16672 ->values(array(
16673   'lid' => '909',
16674   'location' => '/?q=fr/admin/settings/event/timezone',
16675   'textgroup' => 'default',
16676   'source' => 'Event time zone display',
16677   'version' => '6.38-dev',
16678 ))
16679 ->values(array(
16680   'lid' => '910',
16681   'location' => '/?q=fr/admin/settings/event/timezone',
16682   'textgroup' => 'default',
16683   'source' => "Use the event's time zone",
16684   'version' => '6.38-dev',
16685 ))
16686 ->values(array(
16687   'lid' => '911',
16688   'location' => '/?q=fr/admin/settings/event/timezone',
16689   'textgroup' => 'default',
16690   '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.",
16691   'version' => '6.38-dev',
16692 ))
16693 ->values(array(
16694   'lid' => '912',
16695   'location' => '/?q=fr/admin/settings/event/timezone',
16696   'textgroup' => 'default',
16697   'source' => 'Time notation preference',
16698   'version' => '6.38-dev',
16699 ))
16700 ->values(array(
16701   'lid' => '913',
16702   'location' => '/?q=fr/admin/settings/event/timezone',
16703   'textgroup' => 'default',
16704   'source' => '24h',
16705   'version' => '6.38-dev',
16706 ))
16707 ->values(array(
16708   'lid' => '914',
16709   'location' => '/?q=fr/admin/settings/event/timezone',
16710   'textgroup' => 'default',
16711   'source' => '12h',
16712   'version' => '6.38-dev',
16713 ))
16714 ->values(array(
16715   'lid' => '915',
16716   'location' => '/?q=fr/admin/settings/event/timezone',
16717   'textgroup' => 'default',
16718   'source' => 'The time notation system used for entering event times.',
16719   'version' => '6.38-dev',
16720 ))
16721 ->values(array(
16722   'lid' => '916',
16723   'location' => '/?q=fr/admin/settings/event/overview',
16724   'textgroup' => 'default',
16725   'source' => 'Upcoming event block limit',
16726   'version' => '6.38-dev',
16727 ))
16728 ->values(array(
16729   'lid' => '917',
16730   'location' => '/?q=fr/admin/settings/event/overview',
16731   'textgroup' => 'default',
16732   'source' => 'Limit the amount of events displayed in the upcoming events block by this amount.',
16733   'version' => '6.38-dev',
16734 ))
16735 ->values(array(
16736   'lid' => '918',
16737   'location' => '/?q=fr/admin/settings/event/overview',
16738   'textgroup' => 'default',
16739   'source' => 'Default overview',
16740   'version' => '6.38-dev',
16741 ))
16742 ->values(array(
16743   'lid' => '919',
16744   'location' => '/?q=fr/admin/settings/event/overview',
16745   'textgroup' => 'default',
16746   'source' => 'Day',
16747   'version' => '6.38-dev',
16748 ))
16749 ->values(array(
16750   'lid' => '920',
16751   'location' => '/?q=fr/admin/settings/event/overview',
16752   'textgroup' => 'default',
16753   'source' => 'Week',
16754   'version' => '6.38-dev',
16755 ))
16756 ->values(array(
16757   'lid' => '921',
16758   'location' => '/?q=fr/admin/settings/event/overview',
16759   'textgroup' => 'default',
16760   'source' => 'Month',
16761   'version' => '6.38-dev',
16762 ))
16763 ->values(array(
16764   'lid' => '922',
16765   'location' => '/?q=fr/admin/settings/event/overview',
16766   'textgroup' => 'default',
16767   'source' => 'Table',
16768   'version' => '6.38-dev',
16769 ))
16770 ->values(array(
16771   'lid' => '923',
16772   'location' => '/?q=fr/admin/settings/event/overview',
16773   'textgroup' => 'default',
16774   '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.',
16775   'version' => '6.38-dev',
16776 ))
16777 ->values(array(
16778   'lid' => '924',
16779   'location' => '/?q=fr/admin/settings/event/overview',
16780   'textgroup' => 'default',
16781   'source' => 'Table view default period',
16782   'version' => '6.38-dev',
16783 ))
16784 ->values(array(
16785   'lid' => '925',
16786   'location' => '/?q=fr/admin/settings/event/overview',
16787   'textgroup' => 'default',
16788   'source' => 'here',
16789   'version' => '6.38-dev',
16790 ))
16791 ->values(array(
16792   'lid' => '926',
16793   'location' => '/?q=fr/admin/settings/event/overview',
16794   'textgroup' => 'default',
16795   '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',
16796   'version' => '6.38-dev',
16797 ))
16798 ->values(array(
16799   'lid' => '927',
16800   'location' => '/?q=fr/admin/settings/event/overview',
16801   'textgroup' => 'default',
16802   'source' => 'Taxonomy filter controls',
16803   'version' => '6.38-dev',
16804 ))
16805 ->values(array(
16806   'lid' => '928',
16807   'location' => '/?q=fr/admin/settings/event/overview',
16808   'textgroup' => 'default',
16809   'source' => 'Show taxonomy filter control on calendar views',
16810   'version' => '6.38-dev',
16811 ))
16812 ->values(array(
16813   'lid' => '929',
16814   'location' => '/?q=fr/admin/settings/event/overview',
16815   'textgroup' => 'default',
16816   'source' => 'Only show taxonomy filter control when taxonomy filter view is requested',
16817   'version' => '6.38-dev',
16818 ))
16819 ->values(array(
16820   'lid' => '930',
16821   'location' => '/?q=fr/admin/settings/event/overview',
16822   'textgroup' => 'default',
16823   'source' => 'Never show taxonomy filter control',
16824   'version' => '6.38-dev',
16825 ))
16826 ->values(array(
16827   'lid' => '931',
16828   'location' => '/?q=fr/admin/settings/event/overview',
16829   'textgroup' => 'default',
16830   'source' => 'Content type filter controls',
16831   'version' => '6.38-dev',
16832 ))
16833 ->values(array(
16834   'lid' => '932',
16835   'location' => '/?q=fr/admin/settings/event/overview',
16836   'textgroup' => 'default',
16837   'source' => 'Show content type filter control on calendar views',
16838   'version' => '6.38-dev',
16839 ))
16840 ->values(array(
16841   'lid' => '933',
16842   'location' => '/?q=fr/admin/settings/event/overview',
16843   'textgroup' => 'default',
16844   'source' => 'Only show content type filter control when content type filter view is requested',
16845   'version' => '6.38-dev',
16846 ))
16847 ->values(array(
16848   'lid' => '934',
16849   'location' => '/?q=fr/admin/settings/event/overview',
16850   'textgroup' => 'default',
16851   'source' => 'Never show content type filter control',
16852   'version' => '6.38-dev',
16853 ))
16854 ->values(array(
16855   'lid' => '935',
16856   'location' => '/?q=fr/admin/settings/email',
16857   'textgroup' => 'default',
16858   'source' => 'Hourly threshold for a CCK Email contact form',
16859   'version' => '6.38-dev',
16860 ))
16861 ->values(array(
16862   'lid' => '936',
16863   'location' => '/?q=fr/admin/settings/email',
16864   'textgroup' => 'default',
16865   'source' => 'The maximum number of contact form submissions a user can perform per hour.',
16866   'version' => '6.38-dev',
16867 ))
16868 ->values(array(
16869   'lid' => '937',
16870   'location' => '/?q=fr/admin/settings/admin',
16871   'textgroup' => 'default',
16872   'source' => 'System default',
16873   'version' => '6.38-dev',
16874 ))
16875 ->values(array(
16876   'lid' => '938',
16877   'location' => '/?q=fr/admin/settings/admin',
16878   'textgroup' => 'default',
16879   '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.',
16880   'version' => '6.38-dev',
16881 ))
16882 ->values(array(
16883   'lid' => '939',
16884   'location' => '/?q=fr/admin/settings/admin',
16885   'textgroup' => 'default',
16886   'source' => 'Use administration theme for content editing',
16887   'version' => '6.38-dev',
16888 ))
16889 ->values(array(
16890   'lid' => '940',
16891   'location' => '/?q=fr/admin/settings/admin',
16892   'textgroup' => 'default',
16893   'source' => 'Use the administration theme when editing existing posts or creating new ones.',
16894   'version' => '6.38-dev',
16895 ))
16896 ->values(array(
16897   'lid' => '941',
16898   'location' => '/?q=fr/admin/settings/actions',
16899   'textgroup' => 'default',
16900   'source' => 'Publish comment',
16901   'version' => '6.38-dev',
16902 ))
16903 ->values(array(
16904   'lid' => '942',
16905   'location' => '/?q=fr/admin/settings/actions',
16906   'textgroup' => 'default',
16907   'source' => 'Unpublish comment',
16908   'version' => '6.38-dev',
16909 ))
16910 ->values(array(
16911   'lid' => '943',
16912   'location' => '/?q=fr/admin/settings/actions',
16913   'textgroup' => 'default',
16914   'source' => 'Unpublish comment containing keyword(s)',
16915   'version' => '6.38-dev',
16916 ))
16917 ->values(array(
16918   'lid' => '944',
16919   'location' => '/?q=fr/admin/settings/actions',
16920   'textgroup' => 'default',
16921   'source' => 'Publish post',
16922   'version' => '6.38-dev',
16923 ))
16924 ->values(array(
16925   'lid' => '945',
16926   'location' => '/?q=fr/admin/settings/actions',
16927   'textgroup' => 'default',
16928   'source' => 'Unpublish post',
16929   'version' => '6.38-dev',
16930 ))
16931 ->values(array(
16932   'lid' => '946',
16933   'location' => '/?q=fr/admin/settings/actions',
16934   'textgroup' => 'default',
16935   'source' => 'Make post sticky',
16936   'version' => '6.38-dev',
16937 ))
16938 ->values(array(
16939   'lid' => '947',
16940   'location' => '/?q=fr/admin/settings/actions',
16941   'textgroup' => 'default',
16942   'source' => 'Make post unsticky',
16943   'version' => '6.38-dev',
16944 ))
16945 ->values(array(
16946   'lid' => '948',
16947   'location' => '/?q=fr/admin/settings/actions',
16948   'textgroup' => 'default',
16949   'source' => 'Promote post to front page',
16950   'version' => '6.38-dev',
16951 ))
16952 ->values(array(
16953   'lid' => '949',
16954   'location' => '/?q=fr/admin/settings/actions',
16955   'textgroup' => 'default',
16956   'source' => 'Remove post from front page',
16957   'version' => '6.38-dev',
16958 ))
16959 ->values(array(
16960   'lid' => '950',
16961   'location' => '/?q=fr/admin/settings/actions',
16962   'textgroup' => 'default',
16963   'source' => 'Change the author of a post',
16964   'version' => '6.38-dev',
16965 ))
16966 ->values(array(
16967   'lid' => '951',
16968   'location' => '/?q=fr/admin/settings/actions',
16969   'textgroup' => 'default',
16970   'source' => 'Save post',
16971   'version' => '6.38-dev',
16972 ))
16973 ->values(array(
16974   'lid' => '952',
16975   'location' => '/?q=fr/admin/settings/actions',
16976   'textgroup' => 'default',
16977   'source' => 'Unpublish post containing keyword(s)',
16978   'version' => '6.38-dev',
16979 ))
16980 ->values(array(
16981   'lid' => '953',
16982   'location' => '/?q=fr/admin/settings/actions',
16983   'textgroup' => 'default',
16984   'source' => 'Display a message to the user',
16985   'version' => '6.38-dev',
16986 ))
16987 ->values(array(
16988   'lid' => '954',
16989   'location' => '/?q=fr/admin/settings/actions',
16990   'textgroup' => 'default',
16991   'source' => 'Send e-mail',
16992   'version' => '6.38-dev',
16993 ))
16994 ->values(array(
16995   'lid' => '955',
16996   'location' => '/?q=fr/admin/settings/actions',
16997   'textgroup' => 'default',
16998   'source' => 'Redirect to URL',
16999   'version' => '6.38-dev',
17000 ))
17001 ->values(array(
17002   'lid' => '956',
17003   'location' => '/?q=fr/admin/settings/actions',
17004   'textgroup' => 'default',
17005   'source' => 'Block current user',
17006   'version' => '6.38-dev',
17007 ))
17008 ->values(array(
17009   'lid' => '957',
17010   'location' => '/?q=fr/admin/settings/actions',
17011   'textgroup' => 'default',
17012   'source' => 'Ban IP address of current user',
17013   'version' => '6.38-dev',
17014 ))
17015 ->values(array(
17016   'lid' => '958',
17017   'location' => '/?q=fr/admin/settings/actions',
17018   'textgroup' => 'default',
17019   'source' => "ImageCache: Flush ALL presets for this node's filefield images",
17020   'version' => '6.38-dev',
17021 ))
17022 ->values(array(
17023   'lid' => '959',
17024   'location' => '/?q=fr/admin/settings/actions',
17025   'textgroup' => 'default',
17026   'source' => "ImageCache: Generate ALL presets for this node's filefield images",
17027   'version' => '6.38-dev',
17028 ))
17029 ->values(array(
17030   'lid' => '960',
17031   'location' => '/?q=fr/admin/settings/actions',
17032   'textgroup' => 'default',
17033   'source' => "ImageCache: Generate configured preset(s) for this node's filefield images",
17034   'version' => '6.38-dev',
17035 ))
17036 ->values(array(
17037   'lid' => '961',
17038   'location' => '/?q=fr/admin/settings/actions',
17039   'textgroup' => 'default',
17040   'source' => 'Choose an advanced action',
17041   'version' => '6.38-dev',
17042 ))
17043 ->values(array(
17044   'lid' => '962',
17045   'location' => '/?q=fr/admin/settings/actions',
17046   'textgroup' => 'default',
17047   'source' => 'Action type',
17048   'version' => '6.38-dev',
17049 ))
17050 ->values(array(
17051   'lid' => '963',
17052   'location' => '/?q=fr/admin/settings/actions',
17053   'textgroup' => 'default',
17054   'source' => '« first',
17055   'version' => '6.38-dev',
17056 ))
17057 ->values(array(
17058   'lid' => '964',
17059   'location' => '/?q=fr/admin/settings/actions',
17060   'textgroup' => 'default',
17061   'source' => '‹ previous',
17062   'version' => '6.38-dev',
17063 ))
17064 ->values(array(
17065   'lid' => '965',
17066   'location' => '/?q=fr/admin/settings/actions',
17067   'textgroup' => 'default',
17068   'source' => 'next â€º',
17069   'version' => '6.38-dev',
17070 ))
17071 ->values(array(
17072   'lid' => '966',
17073   'location' => '/?q=fr/admin/settings/actions',
17074   'textgroup' => 'default',
17075   'source' => 'last Â»',
17076   'version' => '6.38-dev',
17077 ))
17078 ->values(array(
17079   'lid' => '967',
17080   'location' => '/?q=fr/admin/settings/actions',
17081   'textgroup' => 'default',
17082   'source' => 'Actions available to Drupal:',
17083   'version' => '6.38-dev',
17084 ))
17085 ->values(array(
17086   'lid' => '968',
17087   'location' => '/?q=fr/admin/settings/actions',
17088   'textgroup' => 'default',
17089   'source' => 'sort by @s',
17090   'version' => '6.38-dev',
17091 ))
17092 ->values(array(
17093   'lid' => '969',
17094   'location' => '/?q=fr/admin/settings/actions',
17095   'textgroup' => 'default',
17096   'source' => 'sort icon',
17097   'version' => '6.38-dev',
17098 ))
17099 ->values(array(
17100   'lid' => '970',
17101   'location' => '/?q=fr/admin/settings/actions',
17102   'textgroup' => 'default',
17103   'source' => 'sort descending',
17104   'version' => '6.38-dev',
17105 ))
17106 ->values(array(
17107   'lid' => '971',
17108   'location' => '/?q=fr/admin/settings/actions',
17109   'textgroup' => 'default',
17110   'source' => 'Make a new advanced action available',
17111   'version' => '6.38-dev',
17112 ))
17113 ->values(array(
17114   'lid' => '972',
17115   'location' => '/?q=fr/admin/settings/actions',
17116   'textgroup' => 'default',
17117   'source' => 'Create',
17118   'version' => '6.38-dev',
17119 ))
17120 ->values(array(
17121   'lid' => '973',
17122   'location' => '/?q=fr/admin/settings/actions',
17123   'textgroup' => 'default',
17124   'source' => 'Configure an advanced action',
17125   'version' => '6.38-dev',
17126 ))
17127 ->values(array(
17128   'lid' => '974',
17129   'location' => '/?q=fr/admin/settings/actions',
17130   'textgroup' => 'default',
17131   'source' => 'Remove orphans',
17132   'version' => '6.38-dev',
17133 ))
17134 ->values(array(
17135   'lid' => '975',
17136   'location' => '/?q=fr/admin/settings/actions',
17137   'textgroup' => 'default',
17138   'source' => 'Manage actions',
17139   'version' => '6.38-dev',
17140 ))
17141 ->values(array(
17142   'lid' => '976',
17143   'location' => '/?q=fr/admin/settings/actions',
17144   'textgroup' => 'default',
17145   '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.',
17146   'version' => '6.38-dev',
17147 ))
17148 ->values(array(
17149   'lid' => '977',
17150   'location' => '/?q=fr/admin/settings/actions',
17151   'textgroup' => 'default',
17152   '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.',
17153   'version' => '6.38-dev',
17154 ))
17155 ->values(array(
17156   'lid' => '978',
17157   'location' => '/?q=fr/admin/user/user',
17158   'textgroup' => 'default',
17159   'source' => 'Create new account',
17160   'version' => '6.38-dev',
17161 ))
17162 ->values(array(
17163   'lid' => '979',
17164   'location' => '/?q=fr/admin/user/user',
17165   'textgroup' => 'default',
17166   'source' => 'role',
17167   'version' => '6.38-dev',
17168 ))
17169 ->values(array(
17170   'lid' => '980',
17171   'location' => '/?q=fr/admin/user/user',
17172   'textgroup' => 'default',
17173   'source' => '@module module',
17174   'version' => '6.38-dev',
17175 ))
17176 ->values(array(
17177   'lid' => '981',
17178   'location' => '/?q=fr/admin/user/user',
17179   'textgroup' => 'default',
17180   'source' => 'access news feeds',
17181   'version' => '6.38-dev',
17182 ))
17183 ->values(array(
17184   'lid' => '982',
17185   'location' => '/?q=fr/admin/user/user',
17186   'textgroup' => 'default',
17187   'source' => 'administer news feeds',
17188   'version' => '6.38-dev',
17189 ))
17190 ->values(array(
17191   'lid' => '983',
17192   'location' => '/?q=fr/admin/user/user',
17193   'textgroup' => 'default',
17194   'source' => 'administer blocks',
17195   'version' => '6.38-dev',
17196 ))
17197 ->values(array(
17198   'lid' => '984',
17199   'location' => '/?q=fr/admin/user/user',
17200   'textgroup' => 'default',
17201   'source' => 'use PHP for block visibility',
17202   'version' => '6.38-dev',
17203 ))
17204 ->values(array(
17205   'lid' => '985',
17206   'location' => '/?q=fr/admin/user/user',
17207   'textgroup' => 'default',
17208   'source' => 'access printer-friendly version',
17209   'version' => '6.38-dev',
17210 ))
17211 ->values(array(
17212   'lid' => '986',
17213   'location' => '/?q=fr/admin/user/user',
17214   'textgroup' => 'default',
17215   'source' => 'add content to books',
17216   'version' => '6.38-dev',
17217 ))
17218 ->values(array(
17219   'lid' => '987',
17220   'location' => '/?q=fr/admin/user/user',
17221   'textgroup' => 'default',
17222   'source' => 'administer book outlines',
17223   'version' => '6.38-dev',
17224 ))
17225 ->values(array(
17226   'lid' => '988',
17227   'location' => '/?q=fr/admin/user/user',
17228   'textgroup' => 'default',
17229   'source' => 'create new books',
17230   'version' => '6.38-dev',
17231 ))
17232 ->values(array(
17233   'lid' => '989',
17234   'location' => '/?q=fr/admin/user/user',
17235   'textgroup' => 'default',
17236   'source' => 'access comments',
17237   'version' => '6.38-dev',
17238 ))
17239 ->values(array(
17240   'lid' => '990',
17241   'location' => '/?q=fr/admin/user/user',
17242   'textgroup' => 'default',
17243   'source' => 'administer comments',
17244   'version' => '6.38-dev',
17245 ))
17246 ->values(array(
17247   'lid' => '991',
17248   'location' => '/?q=fr/admin/user/user',
17249   'textgroup' => 'default',
17250   'source' => 'post comments',
17251   'version' => '6.38-dev',
17252 ))
17253 ->values(array(
17254   'lid' => '992',
17255   'location' => '/?q=fr/admin/user/user',
17256   'textgroup' => 'default',
17257   'source' => 'post comments without approval',
17258   'version' => '6.38-dev',
17259 ))
17260 ->values(array(
17261   'lid' => '993',
17262   'location' => '/?q=fr/admin/user/user',
17263   'textgroup' => 'default',
17264   'source' => 'access site-wide contact form',
17265   'version' => '6.38-dev',
17266 ))
17267 ->values(array(
17268   'lid' => '994',
17269   'location' => '/?q=fr/admin/user/user',
17270   'textgroup' => 'default',
17271   'source' => 'administer site-wide contact form',
17272   'version' => '6.38-dev',
17273 ))
17274 ->values(array(
17275   'lid' => '995',
17276   'location' => '/?q=fr/admin/user/user',
17277   'textgroup' => 'default',
17278   'source' => 'administer filters',
17279   'version' => '6.38-dev',
17280 ))
17281 ->values(array(
17282   'lid' => '996',
17283   'location' => '/?q=fr/admin/user/user',
17284   'textgroup' => 'default',
17285   'source' => 'administer languages',
17286   'version' => '6.38-dev',
17287 ))
17288 ->values(array(
17289   'lid' => '997',
17290   'location' => '/?q=fr/admin/user/user',
17291   'textgroup' => 'default',
17292   'source' => 'translate interface',
17293   'version' => '6.38-dev',
17294 ))
17295 ->values(array(
17296   'lid' => '998',
17297   'location' => '/?q=fr/admin/user/user',
17298   'textgroup' => 'default',
17299   'source' => 'administer menu',
17300   'version' => '6.38-dev',
17301 ))
17302 ->values(array(
17303   'lid' => '999',
17304   'location' => '/?q=fr/admin/user/user',
17305   'textgroup' => 'default',
17306   'source' => 'access content',
17307   'version' => '6.38-dev',
17308 ))
17309 ->values(array(
17310   'lid' => '1000',
17311   'location' => '/?q=fr/admin/user/user',
17312   'textgroup' => 'default',
17313   'source' => 'administer content types',
17314   'version' => '6.38-dev',
17315 ))
17316 ->values(array(
17317   'lid' => '1001',
17318   'location' => '/?q=fr/admin/user/user',
17319   'textgroup' => 'default',
17320   'source' => 'administer nodes',
17321   'version' => '6.38-dev',
17322 ))
17323 ->values(array(
17324   'lid' => '1002',
17325   'location' => '/?q=fr/admin/user/user',
17326   'textgroup' => 'default',
17327   'source' => 'create article content',
17328   'version' => '6.38-dev',
17329 ))
17330 ->values(array(
17331   'lid' => '1003',
17332   'location' => '/?q=fr/admin/user/user',
17333   'textgroup' => 'default',
17334   'source' => 'create company content',
17335   'version' => '6.38-dev',
17336 ))
17337 ->values(array(
17338   'lid' => '1004',
17339   'location' => '/?q=fr/admin/user/user',
17340   'textgroup' => 'default',
17341   'source' => 'create employee content',
17342   'version' => '6.38-dev',
17343 ))
17344 ->values(array(
17345   'lid' => '1005',
17346   'location' => '/?q=fr/admin/user/user',
17347   'textgroup' => 'default',
17348   'source' => 'create sponsor content',
17349   'version' => '6.38-dev',
17350 ))
17351 ->values(array(
17352   'lid' => '1006',
17353   'location' => '/?q=fr/admin/user/user',
17354   'textgroup' => 'default',
17355   'source' => 'create story content',
17356   'version' => '6.38-dev',
17357 ))
17358 ->values(array(
17359   'lid' => '1007',
17360   'location' => '/?q=fr/admin/user/user',
17361   'textgroup' => 'default',
17362   'source' => 'create test_event content',
17363   'version' => '6.38-dev',
17364 ))
17365 ->values(array(
17366   'lid' => '1008',
17367   'location' => '/?q=fr/admin/user/user',
17368   'textgroup' => 'default',
17369   'source' => 'create test_page content',
17370   'version' => '6.38-dev',
17371 ))
17372 ->values(array(
17373   'lid' => '1009',
17374   'location' => '/?q=fr/admin/user/user',
17375   'textgroup' => 'default',
17376   'source' => 'create test_planet content',
17377   'version' => '6.38-dev',
17378 ))
17379 ->values(array(
17380   'lid' => '1010',
17381   'location' => '/?q=fr/admin/user/user',
17382   'textgroup' => 'default',
17383   'source' => 'create test_story content',
17384   'version' => '6.38-dev',
17385 ))
17386 ->values(array(
17387   'lid' => '1011',
17388   'location' => '/?q=fr/admin/user/user',
17389   'textgroup' => 'default',
17390   'source' => 'delete any article content',
17391   'version' => '6.38-dev',
17392 ))
17393 ->values(array(
17394   'lid' => '1012',
17395   'location' => '/?q=fr/admin/user/user',
17396   'textgroup' => 'default',
17397   'source' => 'delete any company content',
17398   'version' => '6.38-dev',
17399 ))
17400 ->values(array(
17401   'lid' => '1013',
17402   'location' => '/?q=fr/admin/user/user',
17403   'textgroup' => 'default',
17404   'source' => 'delete any employee content',
17405   'version' => '6.38-dev',
17406 ))
17407 ->values(array(
17408   'lid' => '1014',
17409   'location' => '/?q=fr/admin/user/user',
17410   'textgroup' => 'default',
17411   'source' => 'delete any sponsor content',
17412   'version' => '6.38-dev',
17413 ))
17414 ->values(array(
17415   'lid' => '1015',
17416   'location' => '/?q=fr/admin/user/user',
17417   'textgroup' => 'default',
17418   'source' => 'delete any story content',
17419   'version' => '6.38-dev',
17420 ))
17421 ->values(array(
17422   'lid' => '1016',
17423   'location' => '/?q=fr/admin/user/user',
17424   'textgroup' => 'default',
17425   'source' => 'delete any test_event content',
17426   'version' => '6.38-dev',
17427 ))
17428 ->values(array(
17429   'lid' => '1017',
17430   'location' => '/?q=fr/admin/user/user',
17431   'textgroup' => 'default',
17432   'source' => 'delete any test_page content',
17433   'version' => '6.38-dev',
17434 ))
17435 ->values(array(
17436   'lid' => '1018',
17437   'location' => '/?q=fr/admin/user/user',
17438   'textgroup' => 'default',
17439   'source' => 'delete any test_planet content',
17440   'version' => '6.38-dev',
17441 ))
17442 ->values(array(
17443   'lid' => '1019',
17444   'location' => '/?q=fr/admin/user/user',
17445   'textgroup' => 'default',
17446   'source' => 'delete any test_story content',
17447   'version' => '6.38-dev',
17448 ))
17449 ->values(array(
17450   'lid' => '1020',
17451   'location' => '/?q=fr/admin/user/user',
17452   'textgroup' => 'default',
17453   'source' => 'delete own article content',
17454   'version' => '6.38-dev',
17455 ))
17456 ->values(array(
17457   'lid' => '1021',
17458   'location' => '/?q=fr/admin/user/user',
17459   'textgroup' => 'default',
17460   'source' => 'delete own company content',
17461   'version' => '6.38-dev',
17462 ))
17463 ->values(array(
17464   'lid' => '1022',
17465   'location' => '/?q=fr/admin/user/user',
17466   'textgroup' => 'default',
17467   'source' => 'delete own employee content',
17468   'version' => '6.38-dev',
17469 ))
17470 ->values(array(
17471   'lid' => '1023',
17472   'location' => '/?q=fr/admin/user/user',
17473   'textgroup' => 'default',
17474   'source' => 'delete own sponsor content',
17475   'version' => '6.38-dev',
17476 ))
17477 ->values(array(
17478   'lid' => '1024',
17479   'location' => '/?q=fr/admin/user/user',
17480   'textgroup' => 'default',
17481   'source' => 'delete own story content',
17482   'version' => '6.38-dev',
17483 ))
17484 ->values(array(
17485   'lid' => '1025',
17486   'location' => '/?q=fr/admin/user/user',
17487   'textgroup' => 'default',
17488   'source' => 'delete own test_event content',
17489   'version' => '6.38-dev',
17490 ))
17491 ->values(array(
17492   'lid' => '1026',
17493   'location' => '/?q=fr/admin/user/user',
17494   'textgroup' => 'default',
17495   'source' => 'delete own test_page content',
17496   'version' => '6.38-dev',
17497 ))
17498 ->values(array(
17499   'lid' => '1027',
17500   'location' => '/?q=fr/admin/user/user',
17501   'textgroup' => 'default',
17502   'source' => 'delete own test_planet content',
17503   'version' => '6.38-dev',
17504 ))
17505 ->values(array(
17506   'lid' => '1028',
17507   'location' => '/?q=fr/admin/user/user',
17508   'textgroup' => 'default',
17509   'source' => 'delete own test_story content',
17510   'version' => '6.38-dev',
17511 ))
17512 ->values(array(
17513   'lid' => '1029',
17514   'location' => '/?q=fr/admin/user/user',
17515   'textgroup' => 'default',
17516   'source' => 'delete revisions',
17517   'version' => '6.38-dev',
17518 ))
17519 ->values(array(
17520   'lid' => '1030',
17521   'location' => '/?q=fr/admin/user/user',
17522   'textgroup' => 'default',
17523   'source' => 'edit any article content',
17524   'version' => '6.38-dev',
17525 ))
17526 ->values(array(
17527   'lid' => '1031',
17528   'location' => '/?q=fr/admin/user/user',
17529   'textgroup' => 'default',
17530   'source' => 'edit any company content',
17531   'version' => '6.38-dev',
17532 ))
17533 ->values(array(
17534   'lid' => '1032',
17535   'location' => '/?q=fr/admin/user/user',
17536   'textgroup' => 'default',
17537   'source' => 'edit any employee content',
17538   'version' => '6.38-dev',
17539 ))
17540 ->values(array(
17541   'lid' => '1033',
17542   'location' => '/?q=fr/admin/user/user',
17543   'textgroup' => 'default',
17544   'source' => 'edit any sponsor content',
17545   'version' => '6.38-dev',
17546 ))
17547 ->values(array(
17548   'lid' => '1034',
17549   'location' => '/?q=fr/admin/user/user',
17550   'textgroup' => 'default',
17551   'source' => 'edit any story content',
17552   'version' => '6.38-dev',
17553 ))
17554 ->values(array(
17555   'lid' => '1035',
17556   'location' => '/?q=fr/admin/user/user',
17557   'textgroup' => 'default',
17558   'source' => 'edit any test_event content',
17559   'version' => '6.38-dev',
17560 ))
17561 ->values(array(
17562   'lid' => '1036',
17563   'location' => '/?q=fr/admin/user/user',
17564   'textgroup' => 'default',
17565   'source' => 'edit any test_page content',
17566   'version' => '6.38-dev',
17567 ))
17568 ->values(array(
17569   'lid' => '1037',
17570   'location' => '/?q=fr/admin/user/user',
17571   'textgroup' => 'default',
17572   'source' => 'edit any test_planet content',
17573   'version' => '6.38-dev',
17574 ))
17575 ->values(array(
17576   'lid' => '1038',
17577   'location' => '/?q=fr/admin/user/user',
17578   'textgroup' => 'default',
17579   'source' => 'edit any test_story content',
17580   'version' => '6.38-dev',
17581 ))
17582 ->values(array(
17583   'lid' => '1039',
17584   'location' => '/?q=fr/admin/user/user',
17585   'textgroup' => 'default',
17586   'source' => 'edit own article content',
17587   'version' => '6.38-dev',
17588 ))
17589 ->values(array(
17590   'lid' => '1040',
17591   'location' => '/?q=fr/admin/user/user',
17592   'textgroup' => 'default',
17593   'source' => 'edit own company content',
17594   'version' => '6.38-dev',
17595 ))
17596 ->values(array(
17597   'lid' => '1041',
17598   'location' => '/?q=fr/admin/user/user',
17599   'textgroup' => 'default',
17600   'source' => 'edit own employee content',
17601   'version' => '6.38-dev',
17602 ))
17603 ->values(array(
17604   'lid' => '1042',
17605   'location' => '/?q=fr/admin/user/user',
17606   'textgroup' => 'default',
17607   'source' => 'edit own sponsor content',
17608   'version' => '6.38-dev',
17609 ))
17610 ->values(array(
17611   'lid' => '1043',
17612   'location' => '/?q=fr/admin/user/user',
17613   'textgroup' => 'default',
17614   'source' => 'edit own story content',
17615   'version' => '6.38-dev',
17616 ))
17617 ->values(array(
17618   'lid' => '1044',
17619   'location' => '/?q=fr/admin/user/user',
17620   'textgroup' => 'default',
17621   'source' => 'edit own test_event content',
17622   'version' => '6.38-dev',
17623 ))
17624 ->values(array(
17625   'lid' => '1045',
17626   'location' => '/?q=fr/admin/user/user',
17627   'textgroup' => 'default',
17628   'source' => 'edit own test_page content',
17629   'version' => '6.38-dev',
17630 ))
17631 ->values(array(
17632   'lid' => '1046',
17633   'location' => '/?q=fr/admin/user/user',
17634   'textgroup' => 'default',
17635   'source' => 'edit own test_planet content',
17636   'version' => '6.38-dev',
17637 ))
17638 ->values(array(
17639   'lid' => '1047',
17640   'location' => '/?q=fr/admin/user/user',
17641   'textgroup' => 'default',
17642   'source' => 'edit own test_story content',
17643   'version' => '6.38-dev',
17644 ))
17645 ->values(array(
17646   'lid' => '1048',
17647   'location' => '/?q=fr/admin/user/user',
17648   'textgroup' => 'default',
17649   'source' => 'revert revisions',
17650   'version' => '6.38-dev',
17651 ))
17652 ->values(array(
17653   'lid' => '1049',
17654   'location' => '/?q=fr/admin/user/user',
17655   'textgroup' => 'default',
17656   'source' => 'view revisions',
17657   'version' => '6.38-dev',
17658 ))
17659 ->values(array(
17660   'lid' => '1050',
17661   'location' => '/?q=fr/admin/user/user',
17662   'textgroup' => 'default',
17663   'source' => 'administer url aliases',
17664   'version' => '6.38-dev',
17665 ))
17666 ->values(array(
17667   'lid' => '1051',
17668   'location' => '/?q=fr/admin/user/user',
17669   'textgroup' => 'default',
17670   'source' => 'create url aliases',
17671   'version' => '6.38-dev',
17672 ))
17673 ->values(array(
17674   'lid' => '1052',
17675   'location' => '/?q=fr/admin/user/user',
17676   'textgroup' => 'default',
17677   'source' => 'access administration pages',
17678   'version' => '6.38-dev',
17679 ))
17680 ->values(array(
17681   'lid' => '1053',
17682   'location' => '/?q=fr/admin/user/user',
17683   'textgroup' => 'default',
17684   'source' => 'access site reports',
17685   'version' => '6.38-dev',
17686 ))
17687 ->values(array(
17688   'lid' => '1054',
17689   'location' => '/?q=fr/admin/user/user',
17690   'textgroup' => 'default',
17691   'source' => 'administer actions',
17692   'version' => '6.38-dev',
17693 ))
17694 ->values(array(
17695   'lid' => '1055',
17696   'location' => '/?q=fr/admin/user/user',
17697   'textgroup' => 'default',
17698   'source' => 'administer files',
17699   'version' => '6.38-dev',
17700 ))
17701 ->values(array(
17702   'lid' => '1056',
17703   'location' => '/?q=fr/admin/user/user',
17704   'textgroup' => 'default',
17705   'source' => 'administer site configuration',
17706   'version' => '6.38-dev',
17707 ))
17708 ->values(array(
17709   'lid' => '1057',
17710   'location' => '/?q=fr/admin/user/user',
17711   'textgroup' => 'default',
17712   'source' => 'select different theme',
17713   'version' => '6.38-dev',
17714 ))
17715 ->values(array(
17716   'lid' => '1058',
17717   'location' => '/?q=fr/admin/user/user',
17718   'textgroup' => 'default',
17719   'source' => 'administer taxonomy',
17720   'version' => '6.38-dev',
17721 ))
17722 ->values(array(
17723   'lid' => '1059',
17724   'location' => '/?q=fr/admin/user/user',
17725   'textgroup' => 'default',
17726   'source' => 'translate content',
17727   'version' => '6.38-dev',
17728 ))
17729 ->values(array(
17730   'lid' => '1060',
17731   'location' => '/?q=fr/admin/user/user',
17732   'textgroup' => 'default',
17733   'source' => 'upload files',
17734   'version' => '6.38-dev',
17735 ))
17736 ->values(array(
17737   'lid' => '1061',
17738   'location' => '/?q=fr/admin/user/user',
17739   'textgroup' => 'default',
17740   'source' => 'view uploaded files',
17741   'version' => '6.38-dev',
17742 ))
17743 ->values(array(
17744   'lid' => '1062',
17745   'location' => '/?q=fr/admin/user/user',
17746   'textgroup' => 'default',
17747   'source' => 'access user profiles',
17748   'version' => '6.38-dev',
17749 ))
17750 ->values(array(
17751   'lid' => '1063',
17752   'location' => '/?q=fr/admin/user/user',
17753   'textgroup' => 'default',
17754   'source' => 'administer permissions',
17755   'version' => '6.38-dev',
17756 ))
17757 ->values(array(
17758   'lid' => '1064',
17759   'location' => '/?q=fr/admin/user/user',
17760   'textgroup' => 'default',
17761   'source' => 'administer users',
17762   'version' => '6.38-dev',
17763 ))
17764 ->values(array(
17765   'lid' => '1065',
17766   'location' => '/?q=fr/admin/user/user',
17767   'textgroup' => 'default',
17768   'source' => 'change own username',
17769   'version' => '6.38-dev',
17770 ))
17771 ->values(array(
17772   'lid' => '1066',
17773   'location' => '/?q=fr/admin/user/user',
17774   'textgroup' => 'default',
17775   'source' => 'view date repeats',
17776   'version' => '6.38-dev',
17777 ))
17778 ->values(array(
17779   'lid' => '1067',
17780   'location' => '/?q=fr/admin/user/user',
17781   'textgroup' => 'default',
17782   'source' => 'administer imageapi',
17783   'version' => '6.38-dev',
17784 ))
17785 ->values(array(
17786   'lid' => '1068',
17787   'location' => '/?q=fr/admin/user/user',
17788   'textgroup' => 'default',
17789   'source' => 'administer imagecache',
17790   'version' => '6.38-dev',
17791 ))
17792 ->values(array(
17793   'lid' => '1069',
17794   'location' => '/?q=fr/admin/user/user',
17795   'textgroup' => 'default',
17796   'source' => 'flush imagecache',
17797   'version' => '6.38-dev',
17798 ))
17799 ->values(array(
17800   'lid' => '1070',
17801   'location' => '/?q=fr/admin/user/user',
17802   'textgroup' => 'default',
17803   'source' => 'view imagecache big_blue_cheese',
17804   'version' => '6.38-dev',
17805 ))
17806 ->values(array(
17807   'lid' => '1071',
17808   'location' => '/?q=fr/admin/user/user',
17809   'textgroup' => 'default',
17810   'source' => 'view imagecache slackjaw_boys',
17811   'version' => '6.38-dev',
17812 ))
17813 ->values(array(
17814   'lid' => '1072',
17815   'location' => '/?q=fr/admin/user/user',
17816   'textgroup' => 'default',
17817   'source' => 'administer all languages',
17818   'version' => '6.38-dev',
17819 ))
17820 ->values(array(
17821   'lid' => '1073',
17822   'location' => '/?q=fr/admin/user/user',
17823   'textgroup' => 'default',
17824   'source' => 'administer translations',
17825   'version' => '6.38-dev',
17826 ))
17827 ->values(array(
17828   'lid' => '1074',
17829   'location' => '/?q=fr/admin/user/user',
17830   'textgroup' => 'default',
17831   'source' => 'permission',
17832   'version' => '6.38-dev',
17833 ))
17834 ->values(array(
17835   'lid' => '1075',
17836   'location' => '/?q=fr/admin/user/user',
17837   'textgroup' => 'default',
17838   'source' => 'status',
17839   'version' => '6.38-dev',
17840 ))
17841 ->values(array(
17842   'lid' => '1076',
17843   'location' => '/?q=fr/admin/user/user',
17844   'textgroup' => 'default',
17845   'source' => 'active',
17846   'version' => '6.38-dev',
17847 ))
17848 ->values(array(
17849   'lid' => '1077',
17850   'location' => '/?q=fr/admin/user/user',
17851   'textgroup' => 'default',
17852   'source' => 'blocked',
17853   'version' => '6.38-dev',
17854 ))
17855 ->values(array(
17856   'lid' => '1078',
17857   'location' => '/?q=fr/admin/user/user',
17858   'textgroup' => 'default',
17859   'source' => 'Show only users where',
17860   'version' => '6.38-dev',
17861 ))
17862 ->values(array(
17863   'lid' => '1079',
17864   'location' => '/?q=fr/admin/user/user',
17865   'textgroup' => 'default',
17866   'source' => 'Filter',
17867   'version' => '6.38-dev',
17868 ))
17869 ->values(array(
17870   'lid' => '1080',
17871   'location' => '/?q=fr/admin/user/user',
17872   'textgroup' => 'default',
17873   'source' => 'is',
17874   'version' => '6.38-dev',
17875 ))
17876 ->values(array(
17877   'lid' => '1081',
17878   'location' => '/?q=fr/admin/user/user',
17879   'textgroup' => 'default',
17880   'source' => 'Username',
17881   'version' => '6.38-dev',
17882 ))
17883 ->values(array(
17884   'lid' => '1082',
17885   'location' => '/?q=fr/admin/user/user',
17886   'textgroup' => 'default',
17887   'source' => 'Status',
17888   'version' => '6.38-dev',
17889 ))
17890 ->values(array(
17891   'lid' => '1083',
17892   'location' => '/?q=fr/admin/user/user',
17893   'textgroup' => 'default',
17894   'source' => 'Member for',
17895   'version' => '6.38-dev',
17896 ))
17897 ->values(array(
17898   'lid' => '1084',
17899   'location' => '/?q=fr/admin/user/user',
17900   'textgroup' => 'default',
17901   'source' => 'Last access',
17902   'version' => '6.38-dev',
17903 ))
17904 ->values(array(
17905   'lid' => '1085',
17906   'location' => '/?q=fr/admin/user/user',
17907   'textgroup' => 'default',
17908   'source' => 'Update options',
17909   'version' => '6.38-dev',
17910 ))
17911 ->values(array(
17912   'lid' => '1086',
17913   'location' => '/?q=fr/admin/user/user',
17914   'textgroup' => 'default',
17915   'source' => 'Unblock the selected users',
17916   'version' => '6.38-dev',
17917 ))
17918 ->values(array(
17919   'lid' => '1087',
17920   'location' => '/?q=fr/admin/user/user',
17921   'textgroup' => 'default',
17922   'source' => 'Block the selected users',
17923   'version' => '6.38-dev',
17924 ))
17925 ->values(array(
17926   'lid' => '1088',
17927   'location' => '/?q=fr/admin/user/user',
17928   'textgroup' => 'default',
17929   'source' => 'Delete the selected users',
17930   'version' => '6.38-dev',
17931 ))
17932 ->values(array(
17933   'lid' => '1089',
17934   'location' => '/?q=fr/admin/user/user',
17935   'textgroup' => 'default',
17936   'source' => 'Add a role to the selected users',
17937   'version' => '6.38-dev',
17938 ))
17939 ->values(array(
17940   'lid' => '1090',
17941   'location' => '/?q=fr/admin/user/user',
17942   'textgroup' => 'default',
17943   'source' => 'Remove a role from the selected users',
17944   'version' => '6.38-dev',
17945 ))
17946 ->values(array(
17947   'lid' => '1091',
17948   'location' => '/?q=fr/admin/user/user',
17949   'textgroup' => 'default',
17950   'source' => 'Update',
17951   'version' => '6.38-dev',
17952 ))
17953 ->values(array(
17954   'lid' => '1092',
17955   'location' => '/?q=fr/admin/user/user',
17956   'textgroup' => 'default',
17957   'source' => '@count years',
17958   'version' => '6.38-dev',
17959 ))
17960 ->values(array(
17961   'lid' => '1093',
17962   'location' => '/?q=fr/admin/user/user',
17963   'textgroup' => 'default',
17964   'source' => '@count weeks',
17965   'version' => '6.38-dev',
17966 ))
17967 ->values(array(
17968   'lid' => '1094',
17969   'location' => '/?q=fr/admin/user/user',
17970   'textgroup' => 'default',
17971   'source' => '@time ago',
17972   'version' => '6.38-dev',
17973 ))
17974 ->values(array(
17975   'lid' => '1095',
17976   'location' => '/?q=fr/admin/user/user',
17977   'textgroup' => 'default',
17978   'source' => '@count sec',
17979   'version' => '6.38-dev',
17980 ))
17981 ->values(array(
17982   'lid' => '1096',
17983   'location' => '/?q=fr/admin/user/user',
17984   'textgroup' => 'default',
17985   'source' => 'sort ascending',
17986   'version' => '6.38-dev',
17987 ))
17988 ->values(array(
17989   'lid' => '1097',
17990   'location' => '/?q=fr/admin/user/user',
17991   'textgroup' => 'default',
17992   'source' => 'Add user',
17993   'version' => '6.38-dev',
17994 ))
17995 ->values(array(
17996   'lid' => '1098',
17997   'location' => '/?q=fr/admin/user/user',
17998   'textgroup' => 'default',
17999   '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.',
18000   'version' => '6.38-dev',
18001 ))
18002 ->values(array(
18003   'lid' => '1099',
18004   'location' => '/?q=fr/admin/user/roles',
18005   'textgroup' => 'default',
18006   'source' => 'Add role',
18007   'version' => '6.38-dev',
18008 ))
18009 ->values(array(
18010   'lid' => '1100',
18011   'location' => '/?q=fr/admin/user/roles',
18012   'textgroup' => 'default',
18013   'source' => 'edit permissions',
18014   'version' => '6.38-dev',
18015 ))
18016 ->values(array(
18017   'lid' => '1101',
18018   'location' => '/?q=fr/admin/user/roles',
18019   'textgroup' => 'default',
18020   'source' => 'locked',
18021   'version' => '6.38-dev',
18022 ))
18023 ->values(array(
18024   'lid' => '1102',
18025   'location' => '/?q=fr/admin/user/roles',
18026   'textgroup' => 'default',
18027   'source' => 'edit role',
18028   'version' => '6.38-dev',
18029 ))
18030 ->values(array(
18031   'lid' => '1103',
18032   'location' => '/?q=fr/admin/user/roles',
18033   'textgroup' => 'default',
18034   'source' => 'Edit role',
18035   'version' => '6.38-dev',
18036 ))
18037 ->values(array(
18038   'lid' => '1104',
18039   'location' => '/?q=fr/admin/user/roles',
18040   'textgroup' => 'default',
18041   '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>",
18042   'version' => '6.38-dev',
18043 ))
18044 ->values(array(
18045   'lid' => '1105',
18046   'location' => '/?q=fr/admin/user/profile',
18047   'textgroup' => 'default',
18048   'source' => 'Add new field',
18049   'version' => '6.38-dev',
18050 ))
18051 ->values(array(
18052   'lid' => '1106',
18053   'location' => '/?q=fr/admin/user/profile',
18054   'textgroup' => 'default',
18055   'source' => 'single-line textfield',
18056   'version' => '6.38-dev',
18057 ))
18058 ->values(array(
18059   'lid' => '1107',
18060   'location' => '/?q=fr/admin/user/profile',
18061   'textgroup' => 'default',
18062   'source' => 'multi-line textfield',
18063   'version' => '6.38-dev',
18064 ))
18065 ->values(array(
18066   'lid' => '1108',
18067   'location' => '/?q=fr/admin/user/profile',
18068   'textgroup' => 'default',
18069   'source' => 'checkbox',
18070   'version' => '6.38-dev',
18071 ))
18072 ->values(array(
18073   'lid' => '1109',
18074   'location' => '/?q=fr/admin/user/profile',
18075   'textgroup' => 'default',
18076   'source' => 'list selection',
18077   'version' => '6.38-dev',
18078 ))
18079 ->values(array(
18080   'lid' => '1110',
18081   'location' => '/?q=fr/admin/user/profile',
18082   'textgroup' => 'default',
18083   'source' => 'freeform list',
18084   'version' => '6.38-dev',
18085 ))
18086 ->values(array(
18087   'lid' => '1111',
18088   'location' => '/?q=fr/admin/user/profile',
18089   'textgroup' => 'default',
18090   'source' => 'URL',
18091   'version' => '6.38-dev',
18092 ))
18093 ->values(array(
18094   'lid' => '1112',
18095   'location' => '/?q=fr/admin/user/profile',
18096   'textgroup' => 'default',
18097   'source' => 'date',
18098   'version' => '6.38-dev',
18099 ))
18100 ->values(array(
18101   'lid' => '1113',
18102   'location' => '/?q=fr/admin/user/profile',
18103   'textgroup' => 'default',
18104   'source' => 'No fields in this category. If this category remains empty when saved, it will be removed.',
18105   'version' => '6.38-dev',
18106 ))
18107 ->values(array(
18108   'lid' => '1114',
18109   'location' => '/?q=fr/admin/user/profile',
18110   'textgroup' => 'default',
18111   'source' => 'Title',
18112   'version' => '6.38-dev',
18113 ))
18114 ->values(array(
18115   'lid' => '1115',
18116   'location' => '/?q=fr/admin/user/profile',
18117   'textgroup' => 'default',
18118   'source' => 'Category',
18119   'version' => '6.38-dev',
18120 ))
18121 ->values(array(
18122   'lid' => '1116',
18123   'location' => '/?q=fr/admin/user/profile',
18124   'textgroup' => 'default',
18125   'source' => 'Delete field',
18126   'version' => '6.38-dev',
18127 ))
18128 ->values(array(
18129   'lid' => '1117',
18130   'location' => '/?q=fr/admin/user/profile',
18131   'textgroup' => 'default',
18132   'source' => 'Edit field',
18133   'version' => '6.38-dev',
18134 ))
18135 ->values(array(
18136   'lid' => '1118',
18137   'location' => '/?q=fr/admin/user/profile',
18138   'textgroup' => 'default',
18139   'source' => 'Profile category autocomplete',
18140   'version' => '6.38-dev',
18141 ))
18142 ->values(array(
18143   'lid' => '1119',
18144   'location' => '/?q=fr/admin/user/profile',
18145   'textgroup' => 'default',
18146   '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.",
18147   'version' => '6.38-dev',
18148 ))
18149 ->values(array(
18150   'lid' => '1120',
18151   'location' => '/?q=fr/admin/user/permissions',
18152   'textgroup' => 'default',
18153   'source' => 'Save permissions',
18154   'version' => '6.38-dev',
18155 ))
18156 ->values(array(
18157   'lid' => '1121',
18158   'location' => '/?q=fr/admin/user/permissions',
18159   'textgroup' => 'default',
18160   'source' => 'Permission',
18161   'version' => '6.38-dev',
18162 ))
18163 ->values(array(
18164   'lid' => '1122',
18165   'location' => '/?q=fr/admin/user/permissions',
18166   'textgroup' => 'default',
18167   '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.',
18168   'version' => '6.38-dev',
18169 ))
18170 ->values(array(
18171   'lid' => '1123',
18172   'location' => '/?q=fr/admin/user/rules',
18173   'textgroup' => 'default',
18174   'source' => 'Access type',
18175   'version' => '6.38-dev',
18176 ))
18177 ->values(array(
18178   'lid' => '1124',
18179   'location' => '/?q=fr/admin/user/rules',
18180   'textgroup' => 'default',
18181   'source' => 'Rule type',
18182   'version' => '6.38-dev',
18183 ))
18184 ->values(array(
18185   'lid' => '1125',
18186   'location' => '/?q=fr/admin/user/rules',
18187   'textgroup' => 'default',
18188   'source' => 'Mask',
18189   'version' => '6.38-dev',
18190 ))
18191 ->values(array(
18192   'lid' => '1126',
18193   'location' => '/?q=fr/admin/user/rules',
18194   'textgroup' => 'default',
18195   'source' => 'username',
18196   'version' => '6.38-dev',
18197 ))
18198 ->values(array(
18199   'lid' => '1127',
18200   'location' => '/?q=fr/admin/user/rules',
18201   'textgroup' => 'default',
18202   'source' => 'e-mail',
18203   'version' => '6.38-dev',
18204 ))
18205 ->values(array(
18206   'lid' => '1128',
18207   'location' => '/?q=fr/admin/user/rules',
18208   'textgroup' => 'default',
18209   'source' => 'host',
18210   'version' => '6.38-dev',
18211 ))
18212 ->values(array(
18213   'lid' => '1129',
18214   'location' => '/?q=fr/admin/user/rules',
18215   'textgroup' => 'default',
18216   'source' => 'There are currently no access rules.',
18217   'version' => '6.38-dev',
18218 ))
18219 ->values(array(
18220   'lid' => '1130',
18221   'location' => '/?q=fr/admin/user/rules',
18222   'textgroup' => 'default',
18223   'source' => 'Delete rule',
18224   'version' => '6.38-dev',
18225 ))
18226 ->values(array(
18227   'lid' => '1131',
18228   'location' => '/?q=fr/admin/user/rules',
18229   'textgroup' => 'default',
18230   'source' => 'Edit rule',
18231   'version' => '6.38-dev',
18232 ))
18233 ->values(array(
18234   'lid' => '1132',
18235   'location' => '/?q=fr/admin/user/rules',
18236   'textgroup' => 'default',
18237   'source' => 'Add rule',
18238   'version' => '6.38-dev',
18239 ))
18240 ->values(array(
18241   'lid' => '1133',
18242   'location' => '/?q=fr/admin/user/rules',
18243   'textgroup' => 'default',
18244   'source' => 'Check rules',
18245   'version' => '6.38-dev',
18246 ))
18247 ->values(array(
18248   'lid' => '1134',
18249   'location' => '/?q=fr/admin/user/rules',
18250   'textgroup' => 'default',
18251   '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.',
18252   'version' => '6.38-dev',
18253 ))
18254 ->values(array(
18255   'lid' => '1135',
18256   'location' => '/?q=fr/admin/user/profile/edit/11',
18257   'textgroup' => 'default',
18258   'source' => 'edit %title',
18259   'version' => '6.38-dev',
18260 ))
18261 ->values(array(
18262   'lid' => '1136',
18263   'location' => '/?q=fr/admin/user/profile/edit/11',
18264   'textgroup' => 'default',
18265   'source' => 'Field settings',
18266   'version' => '6.38-dev',
18267 ))
18268 ->values(array(
18269   'lid' => '1137',
18270   'location' => '/?q=fr/admin/user/profile/edit/11',
18271   'textgroup' => 'default',
18272   'source' => 'The category the new field should be part of. Categories are used to group fields logically. An example category is "Personal information".',
18273   'version' => '6.38-dev',
18274 ))
18275 ->values(array(
18276   'lid' => '1138',
18277   'location' => '/?q=fr/admin/user/profile/edit/11',
18278   'textgroup' => 'default',
18279   'source' => 'The title of the new field. The title will be shown to the user. An example title is "Favorite color".',
18280   'version' => '6.38-dev',
18281 ))
18282 ->values(array(
18283   'lid' => '1139',
18284   'location' => '/?q=fr/admin/user/profile/edit/11',
18285   'textgroup' => 'default',
18286   'source' => 'Form name',
18287   'version' => '6.38-dev',
18288 ))
18289 ->values(array(
18290   'lid' => '1140',
18291   'location' => '/?q=fr/admin/user/profile/edit/11',
18292   'textgroup' => 'default',
18293   '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\".",
18294   'version' => '6.38-dev',
18295 ))
18296 ->values(array(
18297   'lid' => '1141',
18298   'location' => '/?q=fr/admin/user/profile/edit/11',
18299   'textgroup' => 'default',
18300   'source' => 'Explanation',
18301   'version' => '6.38-dev',
18302 ))
18303 ->values(array(
18304   'lid' => '1142',
18305   'location' => '/?q=fr/admin/user/profile/edit/11',
18306   'textgroup' => 'default',
18307   'source' => 'An optional explanation to go with the new field. The explanation will be shown to the user.',
18308   'version' => '6.38-dev',
18309 ))
18310 ->values(array(
18311   'lid' => '1143',
18312   'location' => '/?q=fr/admin/user/profile/edit/11',
18313   'textgroup' => 'default',
18314   'source' => 'Selection options',
18315   'version' => '6.38-dev',
18316 ))
18317 ->values(array(
18318   'lid' => '1144',
18319   'location' => '/?q=fr/admin/user/profile/edit/11',
18320   'textgroup' => 'default',
18321   'source' => 'A list of all options. Put each option on a separate line. Example options are "red", "blue", "green", etc.',
18322   'version' => '6.38-dev',
18323 ))
18324 ->values(array(
18325   'lid' => '1145',
18326   'location' => '/?q=fr/admin/user/profile/edit/11',
18327   'textgroup' => 'default',
18328   'source' => 'Visibility',
18329   'version' => '6.38-dev',
18330 ))
18331 ->values(array(
18332   'lid' => '1146',
18333   'location' => '/?q=fr/admin/user/profile/edit/11',
18334   'textgroup' => 'default',
18335   'source' => 'Hidden profile field, only accessible by administrators, modules and themes.',
18336   'version' => '6.38-dev',
18337 ))
18338 ->values(array(
18339   'lid' => '1147',
18340   'location' => '/?q=fr/admin/user/profile/edit/11',
18341   'textgroup' => 'default',
18342   'source' => 'Private field, content only available to privileged users.',
18343   'version' => '6.38-dev',
18344 ))
18345 ->values(array(
18346   'lid' => '1148',
18347   'location' => '/?q=fr/admin/user/profile/edit/11',
18348   'textgroup' => 'default',
18349   'source' => 'Public field, content shown on profile page but not used on member list pages.',
18350   'version' => '6.38-dev',
18351 ))
18352 ->values(array(
18353   'lid' => '1149',
18354   'location' => '/?q=fr/admin/user/profile/edit/11',
18355   'textgroup' => 'default',
18356   'source' => 'Public field, content shown on profile page and on member list pages.',
18357   'version' => '6.38-dev',
18358 ))
18359 ->values(array(
18360   'lid' => '1150',
18361   'location' => '/?q=fr/admin/user/profile/edit/11',
18362   'textgroup' => 'default',
18363   'source' => 'Page title',
18364   'version' => '6.38-dev',
18365 ))
18366 ->values(array(
18367   'lid' => '1151',
18368   'location' => '/?q=fr/admin/user/profile/edit/11',
18369   'textgroup' => 'default',
18370   '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.',
18371   'version' => '6.38-dev',
18372 ))
18373 ->values(array(
18374   'lid' => '1152',
18375   'location' => '/?q=fr/admin/user/profile/edit/11',
18376   'textgroup' => 'default',
18377   'source' => 'The weights define the order in which the form fields are shown. Lighter fields "float up" towards the top of the category.',
18378   'version' => '6.38-dev',
18379 ))
18380 ->values(array(
18381   'lid' => '1153',
18382   'location' => '/?q=fr/admin/user/profile/edit/11',
18383   'textgroup' => 'default',
18384   'source' => 'Form will auto-complete while user is typing.',
18385   'version' => '6.38-dev',
18386 ))
18387 ->values(array(
18388   'lid' => '1154',
18389   'location' => '/?q=fr/admin/user/profile/edit/11',
18390   'textgroup' => 'default',
18391   'source' => 'For security, auto-complete will be disabled if the user does not have access to user profiles.',
18392   'version' => '6.38-dev',
18393 ))
18394 ->values(array(
18395   'lid' => '1155',
18396   'location' => '/?q=fr/admin/user/profile/edit/11',
18397   'textgroup' => 'default',
18398   'source' => 'The user must enter a value.',
18399   'version' => '6.38-dev',
18400 ))
18401 ->values(array(
18402   'lid' => '1156',
18403   'location' => '/?q=fr/admin/user/profile/edit/11',
18404   'textgroup' => 'default',
18405   'source' => 'Visible in user registration form.',
18406   'version' => '6.38-dev',
18407 ))
18408 ->values(array(
18409   'lid' => '1157',
18410   'location' => '/?q=fr/admin/user/profile/edit/11',
18411   'textgroup' => 'default',
18412   'source' => 'Save field',
18413   'version' => '6.38-dev',
18414 ))
18415 ->values(array(
18416   'lid' => '1158',
18417   'location' => '/?q=fr/admin/user/profile/edit/11',
18418   'textgroup' => 'default',
18419   'source' => 'The specified form name contains one or more illegal characters. Spaces or any other special characters except dash (-) and underscore (_) are not allowed.',
18420   'version' => '6.38-dev',
18421 ))
18422 ->values(array(
18423   'lid' => '1159',
18424   'location' => '/?q=fr/admin/settings/language/configure',
18425   'textgroup' => 'default',
18426   'source' => 'None.',
18427   'version' => '6.38-dev',
18428 ))
18429 ->values(array(
18430   'lid' => '1160',
18431   'location' => '/?q=fr/admin/settings/language/configure',
18432   'textgroup' => 'default',
18433   'source' => 'Path prefix only.',
18434   'version' => '6.38-dev',
18435 ))
18436 ->values(array(
18437   'lid' => '1161',
18438   'location' => '/?q=fr/admin/settings/language/configure',
18439   'textgroup' => 'default',
18440   'source' => 'Path prefix with language fallback.',
18441   'version' => '6.38-dev',
18442 ))
18443 ->values(array(
18444   'lid' => '1162',
18445   'location' => '/?q=fr/admin/settings/language/configure',
18446   'textgroup' => 'default',
18447   'source' => 'Domain name only.',
18448   'version' => '6.38-dev',
18449 ))
18450 ->values(array(
18451   'lid' => '1163',
18452   'location' => '/?q=fr/admin/settings/language/configure',
18453   'textgroup' => 'default',
18454   '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>",
18455   'version' => '6.38-dev',
18456 ))
18457 ->values(array(
18458   'lid' => '1164',
18459   'location' => '/?q=fr/admin/settings/language/configure',
18460   'textgroup' => 'default',
18461   'source' => 'Save settings',
18462   'version' => '6.38-dev',
18463 ))
18464 ->values(array(
18465   'lid' => '1165',
18466   'location' => '/?q=fr/admin/settings/language/configure',
18467   'textgroup' => 'default',
18468   'source' => "Language negotiation settings determine the site's presentation language. Available options include:",
18469   'version' => '6.38-dev',
18470 ))
18471 ->values(array(
18472   'lid' => '1166',
18473   'location' => '/?q=fr/admin/settings/language/configure',
18474   'textgroup' => 'default',
18475   '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.)',
18476   'version' => '6.38-dev',
18477 ))
18478 ->values(array(
18479   'lid' => '1167',
18480   'location' => '/?q=fr/admin/settings/language/configure',
18481   'textgroup' => 'default',
18482   '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>',
18483   'version' => '6.38-dev',
18484 ))
18485 ->values(array(
18486   'lid' => '1168',
18487   'location' => '/?q=fr/admin/settings/language/configure',
18488   'textgroup' => 'default',
18489   '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.",
18490   'version' => '6.38-dev',
18491 ))
18492 ->values(array(
18493   'lid' => '1169',
18494   'location' => '/?q=fr/admin/settings/language/configure',
18495   'textgroup' => 'default',
18496   '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>',
18497   'version' => '6.38-dev',
18498 ))
18499 ->values(array(
18500   'lid' => '1170',
18501   'location' => '/?q=fr/admin/settings/language/configure',
18502   'textgroup' => 'default',
18503   '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>.',
18504   'version' => '6.38-dev',
18505 ))
18506 ->values(array(
18507   'lid' => '1171',
18508   'location' => '/?q=fr/admin/settings/language/configure/strings',
18509   'textgroup' => 'default',
18510   'source' => 'Translatable input formats',
18511   'version' => '6.38-dev',
18512 ))
18513 ->values(array(
18514   'lid' => '1172',
18515   'location' => '/?q=fr/admin/settings/language/configure/strings',
18516   'textgroup' => 'default',
18517   '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.',
18518   'version' => '6.38-dev',
18519 ))
18520 ->values(array(
18521   'lid' => '1173',
18522   'location' => '/?q=fr/admin/settings/language/configure/strings',
18523   'textgroup' => 'default',
18524   'source' => 'Built-in interface',
18525   'version' => '6.38-dev',
18526 ))
18527 ->values(array(
18528   'lid' => '1174',
18529   'location' => '/?q=fr/admin/settings/language/configure/strings',
18530   'textgroup' => 'default',
18531   'source' => 'Blocks',
18532   'version' => '6.38-dev',
18533 ))
18534 ->values(array(
18535   'lid' => '1175',
18536   'location' => '/?q=fr/admin/settings/language/configure/strings',
18537   'textgroup' => 'default',
18538   'source' => 'Menu',
18539   'version' => '6.38-dev',
18540 ))
18541 ->values(array(
18542   'lid' => '1176',
18543   'location' => '/?q=fr/admin/settings/language/configure/strings',
18544   'textgroup' => 'default',
18545   'source' => 'Profile',
18546   'version' => '6.38-dev',
18547 ))
18548 ->values(array(
18549   'lid' => '1177',
18550   'location' => '/?q=fr/admin/settings/language/configure/strings',
18551   'textgroup' => 'default',
18552   '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.',
18553   'version' => '6.38-dev',
18554 ))
18555 ->values(array(
18556   'lid' => '1178',
18557   'location' => '/?q=fr/admin/settings/language/configure/strings',
18558   'textgroup' => 'default',
18559   '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.",
18560   'version' => '6.38-dev',
18561 ))
18562 ->values(array(
18563   'lid' => '1179',
18564   'location' => '/?q=fr/admin/settings/language/configure/strings',
18565   'textgroup' => 'default',
18566   '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.',
18567   'version' => '6.38-dev',
18568 ))
18569 ->values(array(
18570   'lid' => '1180',
18571   'location' => '/?q=fr/admin/settings/language/i18n',
18572   'textgroup' => 'default',
18573   'source' => 'Content selection',
18574   'version' => '6.38-dev',
18575 ))
18576 ->values(array(
18577   'lid' => '1181',
18578   'location' => '/?q=fr/admin/settings/language/i18n',
18579   'textgroup' => 'default',
18580   'source' => 'Content selection mode',
18581   'version' => '6.38-dev',
18582 ))
18583 ->values(array(
18584   'lid' => '1182',
18585   'location' => '/?q=fr/admin/settings/language/i18n',
18586   'textgroup' => 'default',
18587   'source' => 'Current language and language neutral.',
18588   'version' => '6.38-dev',
18589 ))
18590 ->values(array(
18591   'lid' => '1183',
18592   'location' => '/?q=fr/admin/settings/language/i18n',
18593   'textgroup' => 'default',
18594   'source' => 'Mixed current language (if available) or default language (if not) and language neutral.',
18595   'version' => '6.38-dev',
18596 ))
18597 ->values(array(
18598   'lid' => '1184',
18599   'location' => '/?q=fr/admin/settings/language/i18n',
18600   'textgroup' => 'default',
18601   'source' => 'Only default language and language neutral.',
18602   'version' => '6.38-dev',
18603 ))
18604 ->values(array(
18605   'lid' => '1185',
18606   'location' => '/?q=fr/admin/settings/language/i18n',
18607   'textgroup' => 'default',
18608   'source' => 'Only current language.',
18609   'version' => '6.38-dev',
18610 ))
18611 ->values(array(
18612   'lid' => '1186',
18613   'location' => '/?q=fr/admin/settings/language/i18n',
18614   'textgroup' => 'default',
18615   'source' => 'All content. No language conditions apply.',
18616   'version' => '6.38-dev',
18617 ))
18618 ->values(array(
18619   'lid' => '1187',
18620   'location' => '/?q=fr/admin/settings/language/i18n',
18621   'textgroup' => 'default',
18622   'source' => 'Determines which content to show depending on the current page language and the default language of the site.',
18623   'version' => '6.38-dev',
18624 ))
18625 ->values(array(
18626   'lid' => '1188',
18627   'location' => '/?q=fr/admin/settings/language/i18n',
18628   'textgroup' => 'default',
18629   'source' => 'Content translation links',
18630   'version' => '6.38-dev',
18631 ))
18632 ->values(array(
18633   'lid' => '1189',
18634   'location' => '/?q=fr/admin/settings/language/i18n',
18635   'textgroup' => 'default',
18636   'source' => 'Hide content translation links',
18637   'version' => '6.38-dev',
18638 ))
18639 ->values(array(
18640   'lid' => '1190',
18641   'location' => '/?q=fr/admin/settings/language/i18n',
18642   'textgroup' => 'default',
18643   '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.',
18644   'version' => '6.38-dev',
18645 ))
18646 ->values(array(
18647   'lid' => '1191',
18648   'location' => '/?q=fr/admin/settings/language/i18n',
18649   'textgroup' => 'default',
18650   'source' => 'Switch interface for translating',
18651   'version' => '6.38-dev',
18652 ))
18653 ->values(array(
18654   'lid' => '1192',
18655   'location' => '/?q=fr/admin/settings/language/i18n',
18656   'textgroup' => 'default',
18657   '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.',
18658   'version' => '6.38-dev',
18659 ))
18660 ->values(array(
18661   'lid' => '1193',
18662   'location' => '/?q=fr/admin/settings/language/i18n',
18663   'textgroup' => 'default',
18664   'source' => 'To set up multilingual options for vocabularies go to <a href="@configure_taxonomy">Taxonomy configuration page</a>.',
18665   'version' => '6.38-dev',
18666 ))
18667 ->values(array(
18668   'lid' => '1194',
18669   'location' => '/?q=fr/admin/settings/language/i18n',
18670   'textgroup' => 'default',
18671   'source' => 'To enable multilingual support for specific content types go to <a href="@configure_content_types">configure content types</a>.',
18672   'version' => '6.38-dev',
18673 ))
18674 ->values(array(
18675   'lid' => '1195',
18676   'location' => '/?q=fr/admin',
18677   'textgroup' => 'default',
18678   'source' => 'Drupal',
18679   'version' => '6.38-dev',
18680 ))
18681 ->values(array(
18682   'lid' => '1196',
18683   'location' => '/?q=fr/admin',
18684   'textgroup' => 'default',
18685   'source' => 'Web server',
18686   'version' => '6.38-dev',
18687 ))
18688 ->values(array(
18689   'lid' => '1197',
18690   'location' => '/?q=fr/admin',
18691   'textgroup' => 'default',
18692   'source' => 'PHP',
18693   'version' => '6.38-dev',
18694 ))
18695 ->values(array(
18696   'lid' => '1198',
18697   'location' => '/?q=fr/admin',
18698   'textgroup' => 'default',
18699   'source' => 'PHP register globals',
18700   'version' => '6.38-dev',
18701 ))
18702 ->values(array(
18703   'lid' => '1199',
18704   'location' => '/?q=fr/admin',
18705   'textgroup' => 'default',
18706   'source' => 'PHP memory limit',
18707   'version' => '6.38-dev',
18708 ))
18709 ->values(array(
18710   'lid' => '1200',
18711   'location' => '/?q=fr/admin',
18712   'textgroup' => 'default',
18713   'source' => 'MySQL database',
18714   'version' => '6.38-dev',
18715 ))
18716 ->values(array(
18717   'lid' => '1201',
18718   'location' => '/?q=fr/admin',
18719   'textgroup' => 'default',
18720   'source' => 'Protected',
18721   'version' => '6.38-dev',
18722 ))
18723 ->values(array(
18724   'lid' => '1202',
18725   'location' => '/?q=fr/admin',
18726   'textgroup' => 'default',
18727   'source' => 'Configuration file',
18728   'version' => '6.38-dev',
18729 ))
18730 ->values(array(
18731   'lid' => '1203',
18732   'location' => '/?q=fr/admin',
18733   'textgroup' => 'default',
18734   'source' => 'Files directory',
18735   'version' => '6.38-dev',
18736 ))
18737 ->values(array(
18738   'lid' => '1204',
18739   'location' => '/?q=fr/admin',
18740   'textgroup' => 'default',
18741   'source' => 'Temporary files directory',
18742   'version' => '6.38-dev',
18743 ))
18744 ->values(array(
18745   'lid' => '1205',
18746   'location' => '/?q=fr/admin',
18747   'textgroup' => 'default',
18748   'source' => 'Not fully protected',
18749   'version' => '6.38-dev',
18750 ))
18751 ->values(array(
18752   'lid' => '1206',
18753   'location' => '/?q=fr/admin',
18754   'textgroup' => 'default',
18755   '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.',
18756   'version' => '6.38-dev',
18757 ))
18758 ->values(array(
18759   'lid' => '1207',
18760   'location' => '/?q=fr/admin',
18761   'textgroup' => 'default',
18762   'source' => 'For more information, see the online handbook entry for <a href="@cron-handbook">configuring cron jobs</a>.',
18763   'version' => '6.38-dev',
18764 ))
18765 ->values(array(
18766   'lid' => '1208',
18767   'location' => '/?q=fr/admin',
18768   'textgroup' => 'default',
18769   'source' => 'Never run',
18770   'version' => '6.38-dev',
18771 ))
18772 ->values(array(
18773   'lid' => '1209',
18774   'location' => '/?q=fr/admin',
18775   'textgroup' => 'default',
18776   'source' => 'Cron has not run.',
18777   'version' => '6.38-dev',
18778 ))
18779 ->values(array(
18780   'lid' => '1210',
18781   'location' => '/?q=fr/admin',
18782   'textgroup' => 'default',
18783   'source' => 'Cron maintenance tasks',
18784   'version' => '6.38-dev',
18785 ))
18786 ->values(array(
18787   'lid' => '1211',
18788   'location' => '/?q=fr/admin',
18789   'textgroup' => 'default',
18790   'source' => 'You can <a href="@cron">run cron manually</a>.',
18791   'version' => '6.38-dev',
18792 ))
18793 ->values(array(
18794   'lid' => '1212',
18795   'location' => '/?q=fr/admin',
18796   'textgroup' => 'default',
18797   'source' => 'Not writable',
18798   'version' => '6.38-dev',
18799 ))
18800 ->values(array(
18801   'lid' => '1213',
18802   'location' => '/?q=fr/admin',
18803   'textgroup' => 'default',
18804   '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.",
18805   'version' => '6.38-dev',
18806 ))
18807 ->values(array(
18808   'lid' => '1214',
18809   'location' => '/?q=fr/admin',
18810   'textgroup' => 'default',
18811   'source' => 'Database updates',
18812   'version' => '6.38-dev',
18813 ))
18814 ->values(array(
18815   'lid' => '1215',
18816   'location' => '/?q=fr/admin',
18817   'textgroup' => 'default',
18818   'source' => 'Up to date',
18819   'version' => '6.38-dev',
18820 ))
18821 ->values(array(
18822   'lid' => '1216',
18823   'location' => '/?q=fr/admin',
18824   'textgroup' => 'default',
18825   'source' => 'Access to update.php',
18826   'version' => '6.38-dev',
18827 ))
18828 ->values(array(
18829   'lid' => '1217',
18830   'location' => '/?q=fr/admin',
18831   'textgroup' => 'default',
18832   'source' => 'Standard PHP',
18833   'version' => '6.38-dev',
18834 ))
18835 ->values(array(
18836   'lid' => '1218',
18837   'location' => '/?q=fr/admin',
18838   'textgroup' => 'default',
18839   'source' => 'PHP Mbstring Extension',
18840   'version' => '6.38-dev',
18841 ))
18842 ->values(array(
18843   'lid' => '1219',
18844   'location' => '/?q=fr/admin',
18845   'textgroup' => 'default',
18846   'source' => 'Error',
18847   'version' => '6.38-dev',
18848 ))
18849 ->values(array(
18850   'lid' => '1220',
18851   'location' => '/?q=fr/admin',
18852   'textgroup' => 'default',
18853   'source' => 'Unicode library',
18854   'version' => '6.38-dev',
18855 ))
18856 ->values(array(
18857   'lid' => '1221',
18858   'location' => '/?q=fr/admin',
18859   'textgroup' => 'default',
18860   'source' => 'Not enabled',
18861   'version' => '6.38-dev',
18862 ))
18863 ->values(array(
18864   'lid' => '1222',
18865   'location' => '/?q=fr/admin',
18866   'textgroup' => 'default',
18867   '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>.',
18868   'version' => '6.38-dev',
18869 ))
18870 ->values(array(
18871   'lid' => '1223',
18872   'location' => '/?q=fr/admin',
18873   'textgroup' => 'default',
18874   'source' => 'Update notifications',
18875   'version' => '6.38-dev',
18876 ))
18877 ->values(array(
18878   'lid' => '1224',
18879   'location' => '/?q=fr/admin',
18880   'textgroup' => 'default',
18881   'source' => 'set the site timezone name',
18882   'version' => '6.38-dev',
18883 ))
18884 ->values(array(
18885   'lid' => '1225',
18886   'location' => '/?q=fr/admin',
18887   'textgroup' => 'default',
18888   'source' => 'The Date Timezone module requires you to !link.',
18889   'version' => '6.38-dev',
18890 ))
18891 ->values(array(
18892   'lid' => '1226',
18893   'location' => '/?q=fr/admin',
18894   'textgroup' => 'default',
18895   'source' => 'Date Timezone requirements',
18896   'version' => '6.38-dev',
18897 ))
18898 ->values(array(
18899   'lid' => '1227',
18900   'location' => '/?q=fr/admin',
18901   'textgroup' => 'default',
18902   'source' => 'MySQL database for event module',
18903   'version' => '6.38-dev',
18904 ))
18905 ->values(array(
18906   'lid' => '1228',
18907   'location' => '/?q=fr/admin',
18908   'textgroup' => 'default',
18909   '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>.',
18910   'version' => '6.38-dev',
18911 ))
18912 ->values(array(
18913   'lid' => '1229',
18914   'location' => '/?q=fr/admin',
18915   'textgroup' => 'default',
18916   'source' => 'Upload progress',
18917   'version' => '6.38-dev',
18918 ))
18919 ->values(array(
18920   'lid' => '1230',
18921   'location' => '/?q=fr/admin',
18922   'textgroup' => 'default',
18923   'source' => 'ImageAPI Toolkit',
18924   'version' => '6.38-dev',
18925 ))
18926 ->values(array(
18927   'lid' => '1231',
18928   'location' => '/?q=fr/admin',
18929   'textgroup' => 'default',
18930   'source' => 'No ImageAPI toolkits available',
18931   'version' => '6.38-dev',
18932 ))
18933 ->values(array(
18934   'lid' => '1232',
18935   'location' => '/?q=fr/admin',
18936   'textgroup' => 'default',
18937   'source' => 'ImageAPI requires a Toolkit such as ImageAPI GD or ImageAPI ImageMagick to function. Go to !modules and enable one of them.',
18938   'version' => '6.38-dev',
18939 ))
18940 ->values(array(
18941   'lid' => '1233',
18942   'location' => '/?q=fr/admin',
18943   'textgroup' => 'default',
18944   'source' => 'ImageCache Directory',
18945   'version' => '6.38-dev',
18946 ))
18947 ->values(array(
18948   'lid' => '1234',
18949   'location' => '/?q=fr/admin',
18950   'textgroup' => 'default',
18951   'source' => '%p is not a directory or is not readable by the webserver.',
18952   'version' => '6.38-dev',
18953 ))
18954 ->values(array(
18955   'lid' => '1235',
18956   'location' => '/?q=fr/admin',
18957   'textgroup' => 'default',
18958   'source' => 'One or more problems were detected with your Drupal installation. Check the <a href="@status">status report</a> for more information.',
18959   'version' => '6.38-dev',
18960 ))
18961 ->values(array(
18962   'lid' => '1236',
18963   'location' => '/?q=fr/admin',
18964   'textgroup' => 'default',
18965   'source' => 'Comments',
18966   'version' => '6.38-dev',
18967 ))
18968 ->values(array(
18969   'lid' => '1237',
18970   'location' => '/?q=fr/admin',
18971   'textgroup' => 'default',
18972   'source' => 'List and edit site comments and the comment moderation queue.',
18973   'version' => '6.38-dev',
18974 ))
18975 ->values(array(
18976   'lid' => '1238',
18977   'location' => '/?q=fr/admin',
18978   'textgroup' => 'default',
18979   'source' => "View, edit, and delete your site's content.",
18980   'version' => '6.38-dev',
18981 ))
18982 ->values(array(
18983   'lid' => '1239',
18984   'location' => '/?q=fr/admin',
18985   'textgroup' => 'default',
18986   'source' => 'Manage posts by content type, including default status, front page promotion, etc.',
18987   'version' => '6.38-dev',
18988 ))
18989 ->values(array(
18990   'lid' => '1240',
18991   'location' => '/?q=fr/admin',
18992   'textgroup' => 'default',
18993   'source' => 'Post settings',
18994   'version' => '6.38-dev',
18995 ))
18996 ->values(array(
18997   'lid' => '1241',
18998   'location' => '/?q=fr/admin',
18999   'textgroup' => 'default',
19000   'source' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
19001   'version' => '6.38-dev',
19002 ))
19003 ->values(array(
19004   'lid' => '1242',
19005   'location' => '/?q=fr/admin',
19006   'textgroup' => 'default',
19007   'source' => 'RSS publishing',
19008   'version' => '6.38-dev',
19009 ))
19010 ->values(array(
19011   'lid' => '1243',
19012   'location' => '/?q=fr/admin',
19013   'textgroup' => 'default',
19014   'source' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
19015   'version' => '6.38-dev',
19016 ))
19017 ->values(array(
19018   'lid' => '1244',
19019   'location' => '/?q=fr/admin',
19020   'textgroup' => 'default',
19021   'source' => 'Manage tagging, categorization, and classification of your content.',
19022   'version' => '6.38-dev',
19023 ))
19024 ->values(array(
19025   'lid' => '1245',
19026   'location' => '/?q=fr/admin',
19027   'textgroup' => 'default',
19028   'source' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
19029   'version' => '6.38-dev',
19030 ))
19031 ->values(array(
19032   'lid' => '1246',
19033   'location' => '/?q=fr/admin',
19034   'textgroup' => 'default',
19035   'source' => "Manage your site's book outlines.",
19036   'version' => '6.38-dev',
19037 ))
19038 ->values(array(
19039   'lid' => '1247',
19040   'location' => '/?q=fr/admin',
19041   'textgroup' => 'default',
19042   'source' => 'Status report',
19043   'version' => '6.38-dev',
19044 ))
19045 ->values(array(
19046   'lid' => '1248',
19047   'location' => '/?q=fr/admin',
19048   'textgroup' => 'default',
19049   'source' => "Get a status report about your site's operation and any detected problems.",
19050   'version' => '6.38-dev',
19051 ))
19052 ->values(array(
19053   'lid' => '1249',
19054   'location' => '/?q=fr/admin',
19055   'textgroup' => 'default',
19056   'source' => "Configure what block content appears in your site's sidebars and other regions.",
19057   'version' => '6.38-dev',
19058 ))
19059 ->values(array(
19060   'lid' => '1250',
19061   'location' => '/?q=fr/admin',
19062   'textgroup' => 'default',
19063   'source' => 'Contact form',
19064   'version' => '6.38-dev',
19065 ))
19066 ->values(array(
19067   'lid' => '1251',
19068   'location' => '/?q=fr/admin',
19069   'textgroup' => 'default',
19070   'source' => 'Create a system contact form and set up categories for the form to use.',
19071   'version' => '6.38-dev',
19072 ))
19073 ->values(array(
19074   'lid' => '1252',
19075   'location' => '/?q=fr/admin',
19076   'textgroup' => 'default',
19077   'source' => 'Menus',
19078   'version' => '6.38-dev',
19079 ))
19080 ->values(array(
19081   'lid' => '1253',
19082   'location' => '/?q=fr/admin',
19083   'textgroup' => 'default',
19084   'source' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
19085   'version' => '6.38-dev',
19086 ))
19087 ->values(array(
19088   'lid' => '1254',
19089   'location' => '/?q=fr/admin',
19090   'textgroup' => 'default',
19091   'source' => 'Modules',
19092   'version' => '6.38-dev',
19093 ))
19094 ->values(array(
19095   'lid' => '1255',
19096   'location' => '/?q=fr/admin',
19097   'textgroup' => 'default',
19098   'source' => 'Enable or disable add-on modules for your site.',
19099   'version' => '6.38-dev',
19100 ))
19101 ->values(array(
19102   'lid' => '1256',
19103   'location' => '/?q=fr/admin',
19104   'textgroup' => 'default',
19105   'source' => 'Themes',
19106   'version' => '6.38-dev',
19107 ))
19108 ->values(array(
19109   'lid' => '1257',
19110   'location' => '/?q=fr/admin',
19111   'textgroup' => 'default',
19112   'source' => 'Change which theme your site uses or allows users to set.',
19113   'version' => '6.38-dev',
19114 ))
19115 ->values(array(
19116   'lid' => '1258',
19117   'location' => '/?q=fr/admin',
19118   'textgroup' => 'default',
19119   'source' => 'URL aliases',
19120   'version' => '6.38-dev',
19121 ))
19122 ->values(array(
19123   'lid' => '1259',
19124   'location' => '/?q=fr/admin',
19125   'textgroup' => 'default',
19126   'source' => "Change your site's URL paths by aliasing them.",
19127   'version' => '6.38-dev',
19128 ))
19129 ->values(array(
19130   'lid' => '1260',
19131   'location' => '/?q=fr/admin',
19132   'textgroup' => 'default',
19133   'source' => 'Translate interface',
19134   'version' => '6.38-dev',
19135 ))
19136 ->values(array(
19137   'lid' => '1261',
19138   'location' => '/?q=fr/admin',
19139   'textgroup' => 'default',
19140   'source' => 'Translate the built in interface and optionally other text.',
19141   'version' => '6.38-dev',
19142 ))
19143 ->values(array(
19144   'lid' => '1262',
19145   'location' => '/?q=fr/admin',
19146   'textgroup' => 'default',
19147   'source' => 'Hide descriptions',
19148   'version' => '6.38-dev',
19149 ))
19150 ->values(array(
19151   'lid' => '1263',
19152   'location' => '/?q=fr/admin',
19153   'textgroup' => 'default',
19154   'source' => 'Compress layout by hiding descriptions.',
19155   'version' => '6.38-dev',
19156 ))
19157 ->values(array(
19158   'lid' => '1264',
19159   'location' => '/?q=fr/admin',
19160   'textgroup' => 'default',
19161   'source' => 'By task',
19162   'version' => '6.38-dev',
19163 ))
19164 ->values(array(
19165   'lid' => '1265',
19166   'location' => '/?q=fr/admin',
19167   'textgroup' => 'default',
19168   'source' => 'By module',
19169   'version' => '6.38-dev',
19170 ))
19171 ->values(array(
19172   'lid' => '1266',
19173   'location' => '/?q=fr/admin',
19174   'textgroup' => 'default',
19175   'source' => 'Welcome to the administration section. Here you may control how your site functions.',
19176   'version' => '6.38-dev',
19177 ))
19178 ->values(array(
19179   'lid' => '1267',
19180   'location' => '/?q=fr/admin/by-module',
19181   'textgroup' => 'default',
19182   'source' => 'Configure permissions',
19183   'version' => '6.38-dev',
19184 ))
19185 ->values(array(
19186   'lid' => '1268',
19187   'location' => '/?q=fr/admin/by-module',
19188   'textgroup' => 'default',
19189   'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.',
19190   'version' => '6.38-dev',
19191 ))
19192 ->values(array(
19193   'lid' => '1269',
19194   'location' => '/?q=fr/admin/by-module',
19195   'textgroup' => 'default',
19196   'source' => 'Store a date in the database as a timestamp, deprecated format to suppport legacy data.',
19197   'version' => '6.38-dev',
19198 ))
19199 ->values(array(
19200   'lid' => '1270',
19201   'location' => '/?q=fr/admin/by-module',
19202   'textgroup' => 'default',
19203   'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.',
19204   'version' => '6.38-dev',
19205 ))
19206 ->values(array(
19207   'lid' => '1271',
19208   'location' => '/?q=fr/admin/by-module',
19209   'textgroup' => 'default',
19210   'source' => 'File',
19211   'version' => '6.38-dev',
19212 ))
19213 ->values(array(
19214   'lid' => '1272',
19215   'location' => '/?q=fr/admin/by-module',
19216   'textgroup' => 'default',
19217   'source' => 'Store an arbitrary file.',
19218   'version' => '6.38-dev',
19219 ))
19220 ->values(array(
19221   'lid' => '1273',
19222   'location' => '/?q=fr/admin/by-module',
19223   'textgroup' => 'default',
19224   'source' => 'Link',
19225   'version' => '6.38-dev',
19226 ))
19227 ->values(array(
19228   'lid' => '1274',
19229   'location' => '/?q=fr/admin/by-module',
19230   'textgroup' => 'default',
19231   'source' => 'Store a title, href, and attributes in the database to assemble a link.',
19232   'version' => '6.38-dev',
19233 ))
19234 ->values(array(
19235   'lid' => '1275',
19236   'location' => '/?q=fr/admin/by-module',
19237   'textgroup' => 'default',
19238   'source' => 'Phone Numbers - France',
19239   'version' => '6.38-dev',
19240 ))
19241 ->values(array(
19242   'lid' => '1276',
19243   'location' => '/?q=fr/admin/by-module',
19244   'textgroup' => 'default',
19245   'source' => 'Phone Numbers - Belgium',
19246   'version' => '6.38-dev',
19247 ))
19248 ->values(array(
19249   'lid' => '1277',
19250   'location' => '/?q=fr/admin/by-module',
19251   'textgroup' => 'default',
19252   'source' => 'Phone Numbers - Italy',
19253   'version' => '6.38-dev',
19254 ))
19255 ->values(array(
19256   'lid' => '1278',
19257   'location' => '/?q=fr/admin/by-module',
19258   'textgroup' => 'default',
19259   'source' => 'Phone Numbers - Greece',
19260   'version' => '6.38-dev',
19261 ))
19262 ->values(array(
19263   'lid' => '1279',
19264   'location' => '/?q=fr/admin/by-module',
19265   'textgroup' => 'default',
19266   'source' => 'Phone Numbers - Switzerland',
19267   'version' => '6.38-dev',
19268 ))
19269 ->values(array(
19270   'lid' => '1280',
19271   'location' => '/?q=fr/admin/by-module',
19272   'textgroup' => 'default',
19273   'source' => 'Phone Numbers - US & Canada',
19274   'version' => '6.38-dev',
19275 ))
19276 ->values(array(
19277   'lid' => '1281',
19278   'location' => '/?q=fr/admin/by-module',
19279   'textgroup' => 'default',
19280   'source' => 'Phone Numbers - Costa Rica',
19281   'version' => '6.38-dev',
19282 ))
19283 ->values(array(
19284   'lid' => '1282',
19285   'location' => '/?q=fr/admin/by-module',
19286   'textgroup' => 'default',
19287   'source' => 'Phone Numbers - Panama',
19288   'version' => '6.38-dev',
19289 ))
19290 ->values(array(
19291   'lid' => '1283',
19292   'location' => '/?q=fr/admin/by-module',
19293   'textgroup' => 'default',
19294   'source' => 'Phone Numbers - Great Britain - United Kingdom',
19295   'version' => '6.38-dev',
19296 ))
19297 ->values(array(
19298   'lid' => '1284',
19299   'location' => '/?q=fr/admin/by-module',
19300   'textgroup' => 'default',
19301   'source' => 'Phone Numbers - Russia',
19302   'version' => '6.38-dev',
19303 ))
19304 ->values(array(
19305   'lid' => '1285',
19306   'location' => '/?q=fr/admin/by-module',
19307   'textgroup' => 'default',
19308   'source' => 'Phone Numbers - Ukraine - in Kiev',
19309   'version' => '6.38-dev',
19310 ))
19311 ->values(array(
19312   'lid' => '1286',
19313   'location' => '/?q=fr/admin/by-module',
19314   'textgroup' => 'default',
19315   'source' => 'Phone Numbers - Spain',
19316   'version' => '6.38-dev',
19317 ))
19318 ->values(array(
19319   'lid' => '1287',
19320   'location' => '/?q=fr/admin/by-module',
19321   'textgroup' => 'default',
19322   'source' => 'Phone Numbers - Australia',
19323   'version' => '6.38-dev',
19324 ))
19325 ->values(array(
19326   'lid' => '1288',
19327   'location' => '/?q=fr/admin/by-module',
19328   'textgroup' => 'default',
19329   'source' => 'Phone Numbers - Czech Republic',
19330   'version' => '6.38-dev',
19331 ))
19332 ->values(array(
19333   'lid' => '1289',
19334   'location' => '/?q=fr/admin/by-module',
19335   'textgroup' => 'default',
19336   'source' => 'Phone Numbers - Hungary',
19337   'version' => '6.38-dev',
19338 ))
19339 ->values(array(
19340   'lid' => '1290',
19341   'location' => '/?q=fr/admin/by-module',
19342   'textgroup' => 'default',
19343   'source' => 'Phone Numbers - Poland - mobiles only',
19344   'version' => '6.38-dev',
19345 ))
19346 ->values(array(
19347   'lid' => '1291',
19348   'location' => '/?q=fr/admin/by-module',
19349   'textgroup' => 'default',
19350   'source' => 'Phone Numbers - Netherland',
19351   'version' => '6.38-dev',
19352 ))
19353 ->values(array(
19354   'lid' => '1292',
19355   'location' => '/?q=fr/admin/by-module',
19356   'textgroup' => 'default',
19357   'source' => 'Phone Numbers - Sweden',
19358   'version' => '6.38-dev',
19359 ))
19360 ->values(array(
19361   'lid' => '1293',
19362   'location' => '/?q=fr/admin/by-module',
19363   'textgroup' => 'default',
19364   'source' => 'Phone Numbers - South Africa',
19365   'version' => '6.38-dev',
19366 ))
19367 ->values(array(
19368   'lid' => '1294',
19369   'location' => '/?q=fr/admin/by-module',
19370   'textgroup' => 'default',
19371   'source' => 'Phone Numbers - Israel',
19372   'version' => '6.38-dev',
19373 ))
19374 ->values(array(
19375   'lid' => '1295',
19376   'location' => '/?q=fr/admin/by-module',
19377   'textgroup' => 'default',
19378   'source' => 'Phone Numbers - New Zealand',
19379   'version' => '6.38-dev',
19380 ))
19381 ->values(array(
19382   'lid' => '1296',
19383   'location' => '/?q=fr/admin/by-module',
19384   'textgroup' => 'default',
19385   'source' => 'Phone Numbers - Brazil',
19386   'version' => '6.38-dev',
19387 ))
19388 ->values(array(
19389   'lid' => '1297',
19390   'location' => '/?q=fr/admin/by-module',
19391   'textgroup' => 'default',
19392   'source' => 'Phone Numbers - Chile',
19393   'version' => '6.38-dev',
19394 ))
19395 ->values(array(
19396   'lid' => '1298',
19397   'location' => '/?q=fr/admin/by-module',
19398   'textgroup' => 'default',
19399   'source' => 'Phone Numbers - China',
19400   'version' => '6.38-dev',
19401 ))
19402 ->values(array(
19403   'lid' => '1299',
19404   'location' => '/?q=fr/admin/by-module',
19405   'textgroup' => 'default',
19406   'source' => 'Phone Numbers - Hong-Kong',
19407   'version' => '6.38-dev',
19408 ))
19409 ->values(array(
19410   'lid' => '1300',
19411   'location' => '/?q=fr/admin/by-module',
19412   'textgroup' => 'default',
19413   'source' => 'Phone Numbers - Macao',
19414   'version' => '6.38-dev',
19415 ))
19416 ->values(array(
19417   'lid' => '1301',
19418   'location' => '/?q=fr/admin/by-module',
19419   'textgroup' => 'default',
19420   'source' => 'Phone Numbers - The Philippines',
19421   'version' => '6.38-dev',
19422 ))
19423 ->values(array(
19424   'lid' => '1302',
19425   'location' => '/?q=fr/admin/by-module',
19426   'textgroup' => 'default',
19427   'source' => 'Phone Numbers - Singapore',
19428   'version' => '6.38-dev',
19429 ))
19430 ->values(array(
19431   'lid' => '1303',
19432   'location' => '/?q=fr/admin/by-module',
19433   'textgroup' => 'default',
19434   'source' => 'Phone Numbers - Jordan',
19435   'version' => '6.38-dev',
19436 ))
19437 ->values(array(
19438   'lid' => '1304',
19439   'location' => '/?q=fr/admin/by-module',
19440   'textgroup' => 'default',
19441   'source' => 'Phone Numbers - Egypt',
19442   'version' => '6.38-dev',
19443 ))
19444 ->values(array(
19445   'lid' => '1305',
19446   'location' => '/?q=fr/admin/by-module',
19447   'textgroup' => 'default',
19448   'source' => 'Phone Numbers - Pakistan',
19449   'version' => '6.38-dev',
19450 ))
19451 ->values(array(
19452   'lid' => '1306',
19453   'location' => '/?q=fr/admin/by-module',
19454   'textgroup' => 'default',
19455   'source' => 'Phone Numbers - International Phone Numbers per E.123',
19456   'version' => '6.38-dev',
19457 ))
19458 ->values(array(
19459   'lid' => '1307',
19460   'location' => '/?q=fr/admin/by-module',
19461   'textgroup' => 'default',
19462   'source' => 'Select List',
19463   'version' => '6.38-dev',
19464 ))
19465 ->values(array(
19466   'lid' => '1308',
19467   'location' => '/?q=fr/admin/by-module',
19468   'textgroup' => 'default',
19469   'source' => 'Select List with Repeat options',
19470   'version' => '6.38-dev',
19471 ))
19472 ->values(array(
19473   'lid' => '1309',
19474   'location' => '/?q=fr/admin/by-module',
19475   'textgroup' => 'default',
19476   'source' => 'Text Field with custom input format',
19477   'version' => '6.38-dev',
19478 ))
19479 ->values(array(
19480   'lid' => '1310',
19481   'location' => '/?q=fr/admin/by-module',
19482   'textgroup' => 'default',
19483   'source' => 'Text Field with Repeat options',
19484   'version' => '6.38-dev',
19485 ))
19486 ->values(array(
19487   'lid' => '1311',
19488   'location' => '/?q=fr/admin/by-module',
19489   'textgroup' => 'default',
19490   'source' => 'As Time Ago',
19491   'version' => '6.38-dev',
19492 ))
19493 ->values(array(
19494   'lid' => '1312',
19495   'location' => '/?q=fr/admin/by-module',
19496   'textgroup' => 'default',
19497   'source' => 'Default email link',
19498   'version' => '6.38-dev',
19499 ))
19500 ->values(array(
19501   'lid' => '1313',
19502   'location' => '/?q=fr/admin/by-module',
19503   'textgroup' => 'default',
19504   'source' => 'Email contact form',
19505   'version' => '6.38-dev',
19506 ))
19507 ->values(array(
19508   'lid' => '1314',
19509   'location' => '/?q=fr/admin/by-module',
19510   'textgroup' => 'default',
19511   'source' => 'Email plain text',
19512   'version' => '6.38-dev',
19513 ))
19514 ->values(array(
19515   'lid' => '1315',
19516   'location' => '/?q=fr/admin/by-module',
19517   'textgroup' => 'default',
19518   'source' => 'File Upload',
19519   'version' => '6.38-dev',
19520 ))
19521 ->values(array(
19522   'lid' => '1316',
19523   'location' => '/?q=fr/admin/by-module',
19524   'textgroup' => 'default',
19525   'source' => 'A plain file upload widget.',
19526   'version' => '6.38-dev',
19527 ))
19528 ->values(array(
19529   'lid' => '1317',
19530   'location' => '/?q=fr/admin/by-module',
19531   'textgroup' => 'default',
19532   'source' => 'Generic files',
19533   'version' => '6.38-dev',
19534 ))
19535 ->values(array(
19536   'lid' => '1318',
19537   'location' => '/?q=fr/admin/by-module',
19538   'textgroup' => 'default',
19539   'source' => 'Displays all kinds of files with an icon and a linked file description.',
19540   'version' => '6.38-dev',
19541 ))
19542 ->values(array(
19543   'lid' => '1319',
19544   'location' => '/?q=fr/admin/by-module',
19545   'textgroup' => 'default',
19546   'source' => 'Path to file',
19547   'version' => '6.38-dev',
19548 ))
19549 ->values(array(
19550   'lid' => '1320',
19551   'location' => '/?q=fr/admin/by-module',
19552   'textgroup' => 'default',
19553   'source' => 'Displays the file system path to the file.',
19554   'version' => '6.38-dev',
19555 ))
19556 ->values(array(
19557   'lid' => '1321',
19558   'location' => '/?q=fr/admin/by-module',
19559   'textgroup' => 'default',
19560   'source' => 'URL to file',
19561   'version' => '6.38-dev',
19562 ))
19563 ->values(array(
19564   'lid' => '1322',
19565   'location' => '/?q=fr/admin/by-module',
19566   'textgroup' => 'default',
19567   'source' => 'Displays a full URL to the file.',
19568   'version' => '6.38-dev',
19569 ))
19570 ->values(array(
19571   'lid' => '1323',
19572   'location' => '/?q=fr/admin/by-module',
19573   'textgroup' => 'default',
19574   'source' => '@preset image',
19575   'version' => '6.38-dev',
19576 ))
19577 ->values(array(
19578   'lid' => '1324',
19579   'location' => '/?q=fr/admin/by-module',
19580   'textgroup' => 'default',
19581   'source' => '@preset image linked to node',
19582   'version' => '6.38-dev',
19583 ))
19584 ->values(array(
19585   'lid' => '1325',
19586   'location' => '/?q=fr/admin/by-module',
19587   'textgroup' => 'default',
19588   'source' => '@preset image linked to image',
19589   'version' => '6.38-dev',
19590 ))
19591 ->values(array(
19592   'lid' => '1326',
19593   'location' => '/?q=fr/admin/by-module',
19594   'textgroup' => 'default',
19595   'source' => '@preset file path',
19596   'version' => '6.38-dev',
19597 ))
19598 ->values(array(
19599   'lid' => '1327',
19600   'location' => '/?q=fr/admin/by-module',
19601   'textgroup' => 'default',
19602   'source' => '@preset URL',
19603   'version' => '6.38-dev',
19604 ))
19605 ->values(array(
19606   'lid' => '1328',
19607   'location' => '/?q=fr/admin/by-module',
19608   'textgroup' => 'default',
19609   'source' => 'Image',
19610   'version' => '6.38-dev',
19611 ))
19612 ->values(array(
19613   'lid' => '1329',
19614   'location' => '/?q=fr/admin/by-module',
19615   'textgroup' => 'default',
19616   'source' => 'An edit widget for image files, including a preview of the image.',
19617   'version' => '6.38-dev',
19618 ))
19619 ->values(array(
19620   'lid' => '1330',
19621   'location' => '/?q=fr/admin/by-module',
19622   'textgroup' => 'default',
19623   'source' => 'Displays image files in their original size.',
19624   'version' => '6.38-dev',
19625 ))
19626 ->values(array(
19627   'lid' => '1331',
19628   'location' => '/?q=fr/admin/by-module',
19629   'textgroup' => 'default',
19630   'source' => 'Image linked to node',
19631   'version' => '6.38-dev',
19632 ))
19633 ->values(array(
19634   'lid' => '1332',
19635   'location' => '/?q=fr/admin/by-module',
19636   'textgroup' => 'default',
19637   'source' => 'Image linked to file',
19638   'version' => '6.38-dev',
19639 ))
19640 ->values(array(
19641   'lid' => '1333',
19642   'location' => '/?q=fr/admin/by-module',
19643   'textgroup' => 'default',
19644   'source' => 'Title, as link (default)',
19645   'version' => '6.38-dev',
19646 ))
19647 ->values(array(
19648   'lid' => '1334',
19649   'location' => '/?q=fr/admin/by-module',
19650   'textgroup' => 'default',
19651   'source' => 'Title, as plain text',
19652   'version' => '6.38-dev',
19653 ))
19654 ->values(array(
19655   'lid' => '1335',
19656   'location' => '/?q=fr/admin/by-module',
19657   'textgroup' => 'default',
19658   'source' => 'URL, as link',
19659   'version' => '6.38-dev',
19660 ))
19661 ->values(array(
19662   'lid' => '1336',
19663   'location' => '/?q=fr/admin/by-module',
19664   'textgroup' => 'default',
19665   'source' => 'URL, as plain text',
19666   'version' => '6.38-dev',
19667 ))
19668 ->values(array(
19669   'lid' => '1337',
19670   'location' => '/?q=fr/admin/by-module',
19671   'textgroup' => 'default',
19672   'source' => 'URL, as absolute URL',
19673   'version' => '6.38-dev',
19674 ))
19675 ->values(array(
19676   'lid' => '1338',
19677   'location' => '/?q=fr/admin/by-module',
19678   'textgroup' => 'default',
19679   'source' => 'Short, as link with title "Link"',
19680   'version' => '6.38-dev',
19681 ))
19682 ->values(array(
19683   'lid' => '1339',
19684   'location' => '/?q=fr/admin/by-module',
19685   'textgroup' => 'default',
19686   'source' => 'Label, as link with label as title',
19687   'version' => '6.38-dev',
19688 ))
19689 ->values(array(
19690   'lid' => '1340',
19691   'location' => '/?q=fr/admin/by-module',
19692   'textgroup' => 'default',
19693   'source' => 'Separate title and URL',
19694   'version' => '6.38-dev',
19695 ))
19696 ->values(array(
19697   'lid' => '1341',
19698   'location' => '/?q=fr/admin/by-module',
19699   'textgroup' => 'default',
19700   'source' => 'Textfield',
19701   'version' => '6.38-dev',
19702 ))
19703 ->values(array(
19704   'lid' => '1342',
19705   'location' => '/?q=fr/admin/by-module',
19706   'textgroup' => 'default',
19707   'source' => 'Revision information',
19708   'version' => '6.38-dev',
19709 ))
19710 ->values(array(
19711   'lid' => '1343',
19712   'location' => '/?q=fr/admin/by-module',
19713   'textgroup' => 'default',
19714   'source' => 'Authoring information',
19715   'version' => '6.38-dev',
19716 ))
19717 ->values(array(
19718   'lid' => '1344',
19719   'location' => '/?q=fr/admin/by-module',
19720   'textgroup' => 'default',
19721   'source' => 'Publishing options',
19722   'version' => '6.38-dev',
19723 ))
19724 ->values(array(
19725   'lid' => '1345',
19726   'location' => '/?q=fr/admin/by-module',
19727   'textgroup' => 'default',
19728   'source' => 'Comment settings',
19729   'version' => '6.38-dev',
19730 ))
19731 ->values(array(
19732   'lid' => '1346',
19733   'location' => '/?q=fr/admin/by-module',
19734   'textgroup' => 'default',
19735   'source' => 'Comment module form.',
19736   'version' => '6.38-dev',
19737 ))
19738 ->values(array(
19739   'lid' => '1347',
19740   'location' => '/?q=fr/admin/by-module',
19741   'textgroup' => 'default',
19742   'source' => 'Translation settings',
19743   'version' => '6.38-dev',
19744 ))
19745 ->values(array(
19746   'lid' => '1348',
19747   'location' => '/?q=fr/admin/by-module',
19748   'textgroup' => 'default',
19749   'source' => 'Translation module form.',
19750   'version' => '6.38-dev',
19751 ))
19752 ->values(array(
19753   'lid' => '1349',
19754   'location' => '/?q=fr/admin/by-module',
19755   'textgroup' => 'default',
19756   'source' => 'Path settings',
19757   'version' => '6.38-dev',
19758 ))
19759 ->values(array(
19760   'lid' => '1350',
19761   'location' => '/?q=fr/admin/by-module',
19762   'textgroup' => 'default',
19763   'source' => 'Path module form.',
19764   'version' => '6.38-dev',
19765 ))
19766 ->values(array(
19767   'lid' => '1351',
19768   'location' => 'content.module:1897;1900,  fuzzy',
19769   'textgroup' => 'default',
19770   'source' => 'Print',
19771   'version' => '6.38-dev',
19772 ))
19773 ->values(array(
19774   'lid' => '1352',
19775   'location' => '/?q=fr/admin/by-module',
19776   'textgroup' => 'default',
19777   'source' => 'Account settings',
19778   'version' => '6.38-dev',
19779 ))
19780 ->values(array(
19781   'lid' => '1353',
19782   'location' => '/?q=fr/admin/by-module',
19783   'textgroup' => 'default',
19784   'source' => 'Aggregates syndicated content (RSS, RDF, and Atom feeds).',
19785   'version' => '6.38-dev',
19786 ))
19787 ->values(array(
19788   'lid' => '1354',
19789   'location' => '/?q=fr/admin/by-module',
19790   'textgroup' => 'default',
19791   'source' => 'Controls the boxes that are displayed around the main content.',
19792   'version' => '6.38-dev',
19793 ))
19794 ->values(array(
19795   'lid' => '1355',
19796   'location' => '/?q=fr/admin/by-module',
19797   'textgroup' => 'default',
19798   'source' => 'Allows users to structure site pages in a hierarchy or outline.',
19799   'version' => '6.38-dev',
19800 ))
19801 ->values(array(
19802   'lid' => '1356',
19803   'location' => '/?q=fr/admin/by-module',
19804   'textgroup' => 'default',
19805   'source' => 'Allows users to comment on and discuss published content.',
19806   'version' => '6.38-dev',
19807 ))
19808 ->values(array(
19809   'lid' => '1357',
19810   'location' => '/?q=fr/admin/by-module',
19811   'textgroup' => 'default',
19812   'source' => 'Enables the use of both personal and site-wide contact forms.',
19813   'version' => '6.38-dev',
19814 ))
19815 ->values(array(
19816   'lid' => '1358',
19817   'location' => '/?q=fr/admin/by-module',
19818   'textgroup' => 'default',
19819   'source' => 'Defines CCK date/time fields and widgets.',
19820   'version' => '6.38-dev',
19821 ))
19822 ->values(array(
19823   'lid' => '1359',
19824   'location' => '/?q=fr/admin/by-module',
19825   'textgroup' => 'default',
19826   'source' => 'Defines an email field type for cck',
19827   'version' => '6.38-dev',
19828 ))
19829 ->values(array(
19830   'lid' => '1360',
19831   'location' => '/?q=fr/admin/by-module',
19832   'textgroup' => 'default',
19833   'source' => 'Calendaring API, calendar display and export',
19834   'version' => '6.38-dev',
19835 ))
19836 ->values(array(
19837   'lid' => '1361',
19838   'location' => '/?q=fr/admin/by-module',
19839   'textgroup' => 'default',
19840   'source' => 'Handles the filtering of content in preparation for display.',
19841   'version' => '6.38-dev',
19842 ))
19843 ->values(array(
19844   'lid' => '1362',
19845   'location' => '/?q=fr/admin/by-module',
19846   'textgroup' => 'default',
19847   'source' => 'Extends Drupal support for multilingual features.',
19848   'version' => '6.38-dev',
19849 ))
19850 ->values(array(
19851   'lid' => '1363',
19852   'location' => '/?q=fr/admin/by-module',
19853   'textgroup' => 'default',
19854   'source' => 'ImageAPI supporting multiple toolkits.',
19855   'version' => '6.38-dev',
19856 ))
19857 ->values(array(
19858   'lid' => '1364',
19859   'location' => '/?q=fr/admin/by-module',
19860   'textgroup' => 'default',
19861   'source' => 'Dynamic image manipulator and cache.',
19862   'version' => '6.38-dev',
19863 ))
19864 ->values(array(
19865   'lid' => '1365',
19866   'location' => '/?q=fr/admin/by-module',
19867   'textgroup' => 'default',
19868   'source' => 'Adds language handling functionality and enables the translation of the user interface to languages other than English.',
19869   'version' => '6.38-dev',
19870 ))
19871 ->values(array(
19872   'lid' => '1366',
19873   'location' => '/?q=fr/admin/by-module',
19874   'textgroup' => 'default',
19875   'source' => 'Allows administrators to customize the site navigation menu.',
19876   'version' => '6.38-dev',
19877 ))
19878 ->values(array(
19879   'lid' => '1367',
19880   'location' => '/?q=fr/admin/by-module',
19881   'textgroup' => 'default',
19882   'source' => 'Allows content to be submitted to the site and displayed on pages.',
19883   'version' => '6.38-dev',
19884 ))
19885 ->values(array(
19886   'lid' => '1368',
19887   'location' => '/?q=fr/admin/by-module',
19888   'textgroup' => 'default',
19889   'source' => 'Allows users to rename URLs.',
19890   'version' => '6.38-dev',
19891 ))
19892 ->values(array(
19893   'lid' => '1369',
19894   'location' => '/?q=fr/admin/by-module',
19895   'textgroup' => 'default',
19896   'source' => 'Supports configurable user profiles.',
19897   'version' => '6.38-dev',
19898 ))
19899 ->values(array(
19900   'lid' => '1370',
19901   'location' => '/?q=fr/admin/by-module',
19902   'textgroup' => 'default',
19903   'source' => 'Handles general site configuration for administrators.',
19904   'version' => '6.38-dev',
19905 ))
19906 ->values(array(
19907   'lid' => '1371',
19908   'location' => '/?q=fr/admin/by-module',
19909   'textgroup' => 'default',
19910   'source' => 'Enables the categorization of content.',
19911   'version' => '6.38-dev',
19912 ))
19913 ->values(array(
19914   'lid' => '1372',
19915   'location' => '/?q=fr/admin/by-module',
19916   'textgroup' => 'default',
19917   'source' => 'Allows content to be translated into different languages.',
19918   'version' => '6.38-dev',
19919 ))
19920 ->values(array(
19921   'lid' => '1373',
19922   'location' => '/?q=fr/admin/by-module',
19923   'textgroup' => 'default',
19924   'source' => 'Allows users to upload and attach files to content.',
19925   'version' => '6.38-dev',
19926 ))
19927 ->values(array(
19928   'lid' => '1374',
19929   'location' => '/?q=fr/admin/by-module',
19930   'textgroup' => 'default',
19931   'source' => 'Manages the user registration and login system.',
19932   'version' => '6.38-dev',
19933 ))
19934 ->values(array(
19935   'lid' => '1375',
19936   'location' => '/?q=fr/admin/by-module',
19937   'textgroup' => 'default',
19938   'source' => 'Variable API - Admin UI',
19939   'version' => '6.38-dev',
19940 ))
19941 ->values(array(
19942   'lid' => '1376',
19943   'location' => '/?q=fr/admin/by-module',
19944   'textgroup' => 'default',
19945   'source' => 'This page shows you all available administration tasks for each module.',
19946   'version' => '6.38-dev',
19947 ))
19948 ->values(array(
19949   'lid' => '1377',
19950   'location' => 'field.php:102 number.module:82 text.module:80',
19951   'textgroup' => 'default',
19952   'source' => 'is equal to',
19953   'version' => 'none',
19954 ))
19955 ->values(array(
19956   'lid' => '1378',
19957   'location' => 'field.php:103 number.module:83 text.module:81',
19958   'textgroup' => 'default',
19959   'source' => 'is not equal to',
19960   'version' => 'none',
19961 ))
19962 ->values(array(
19963   'lid' => '1379',
19964   'location' => 'field.php:104 text.module:82',
19965   'textgroup' => 'default',
19966   'source' => 'matches the pattern',
19967   'version' => 'none',
19968 ))
19969 ->values(array(
19970   'lid' => '1380',
19971   'location' => 'content_admin.inc:25 content.module:119',
19972   'textgroup' => 'default',
19973   'source' => 'duplicate',
19974   'version' => 'none',
19975 ))
19976 ->values(array(
19977   'lid' => '1381',
19978   'location' => 'number.module:52,  text.module:55',
19979   'textgroup' => 'default',
19980   'source' => 'The possible values this field can contain. Any other values will result in an error. Enter one value per line.',
19981   'version' => 'none',
19982 ))
19983 ->values(array(
19984   'lid' => '1382',
19985   'location' => 'content.module:73',
19986   'textgroup' => 'default',
19987   'source' => 'add content type',
19988   'version' => 'none',
19989 ))
19990 ->values(array(
19991   'lid' => '1383',
19992   'location' => 'content.module:80',
19993   'textgroup' => 'default',
19994   'source' => 'fields',
19995   'version' => 'none',
19996 ))
19997 ->values(array(
19998   'lid' => '1384',
19999   'location' => 'content.module:164',
20000   'textgroup' => 'default',
20001   'source' => 'remove field',
20002   'version' => 'none',
20003 ))
20004 ->values(array(
20005   'lid' => '1385',
20006   'location' => 'nodereference.module:15',
20007   'textgroup' => 'default',
20008   'source' => 'Defines a field type for referencing one node from another. <em>Note: Requires content.module.</em>',
20009   'version' => 'none',
20010 ))
20011 ->values(array(
20012   'lid' => '1386',
20013   'location' => 'nodereference.module:26',
20014   'textgroup' => 'default',
20015   'source' => 'node reference autocomplete',
20016   'version' => 'none',
20017 ))
20018 ->values(array(
20019   'lid' => '1387',
20020   'location' => 'nodereference.module:204',
20021   'textgroup' => 'default',
20022   'source' => 'No post with that title exists.',
20023   'version' => 'none',
20024 ))
20025 ->values(array(
20026   'lid' => '1388',
20027   'location' => 'number.module:15',
20028   'textgroup' => 'default',
20029   'source' => 'Defines numeric field types. <em>Note: Requires content.module.</em>',
20030   'version' => 'none',
20031 ))
20032 ->values(array(
20033   'lid' => '1389',
20034   'location' => 'optionwidgets.module:15',
20035   'textgroup' => 'default',
20036   '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>',
20037   'version' => 'none',
20038 ))
20039 ->values(array(
20040   'lid' => '1390',
20041   'location' => 'text.module:15',
20042   'textgroup' => 'default',
20043   'source' => 'Defines simple text field types. <em>Note: Requires content.module.</em>',
20044   'version' => 'none',
20045 ))
20046 ->values(array(
20047   'lid' => '1391',
20048   'location' => 'userreference.module:15',
20049   'textgroup' => 'default',
20050   'source' => 'Defines a field type for referencing a user from a node. <em>Note: Requires content.module.</em>',
20051   'version' => 'none',
20052 ))
20053 ->values(array(
20054   'lid' => '1392',
20055   'location' => 'userreference.module:176',
20056   'textgroup' => 'default',
20057   'source' => 'Invalid user name.',
20058   'version' => 'none',
20059 ))
20060 ->values(array(
20061   'lid' => '1393',
20062   'location' => 'weburl.module:15',
20063   'textgroup' => 'default',
20064   'source' => 'Defines simple weburl field types. <em>Note: Requires content.module.</em>',
20065   'version' => 'none',
20066 ))
20067 ->values(array(
20068   'lid' => '1394',
20069   'location' => 'weburl.module:164;172',
20070   'textgroup' => 'default',
20071   'source' => 'Not a valid Web URL.',
20072   'version' => 'none',
20073 ))
20074 ->values(array(
20075   'lid' => '1395',
20076   'location' => 'weburl.module:0',
20077   'textgroup' => 'default',
20078   'source' => 'weburl',
20079   'version' => 'none',
20080 ))
20081 ->values(array(
20082   'lid' => '1396',
20083   'location' => 'content_admin.inc:90',
20084   'textgroup' => 'default',
20085   'source' => 'The human-readable name of this content type.',
20086   'version' => 'none',
20087 ))
20088 ->values(array(
20089   'lid' => '1397',
20090   'location' => 'content_admin.inc:98',
20091   'textgroup' => 'default',
20092   'source' => 'A brief description of the content type.',
20093   'version' => 'none',
20094 ))
20095 ->values(array(
20096   'lid' => '1398',
20097   'location' => 'content_admin.inc:106',
20098   'textgroup' => 'default',
20099   'source' => 'Instructions to present to the user when adding new content of this type.',
20100   'version' => 'none',
20101 ))
20102 ->values(array(
20103   'lid' => '1399',
20104   'location' => 'content_admin.inc:110',
20105   'textgroup' => 'default',
20106   'source' => 'Title field label',
20107   'version' => 'none',
20108 ))
20109 ->values(array(
20110   'lid' => '1400',
20111   'location' => 'content_admin.inc:113',
20112   'textgroup' => 'default',
20113   'source' => 'The label for the title field.',
20114   'version' => 'none',
20115 ))
20116 ->values(array(
20117   'lid' => '1401',
20118   'location' => 'content_admin.inc:118',
20119   'textgroup' => 'default',
20120   'source' => 'Save content type',
20121   'version' => 'none',
20122 ))
20123 ->values(array(
20124   'lid' => '1402',
20125   'location' => 'content_admin.inc:182',
20126   'textgroup' => 'default',
20127   'source' => 'Saved content type %type.',
20128   'version' => 'none',
20129 ))
20130 ->values(array(
20131   'lid' => '1403',
20132   'location' => 'content_admin.inc:198',
20133   'textgroup' => 'default',
20134   'source' => 'Are you sure you want to delete the content type %type?',
20135   'version' => 'none',
20136 ))
20137 ->values(array(
20138   'lid' => '1404',
20139   'location' => 'content_admin.inc:198',
20140   'textgroup' => 'default',
20141   'source' => 'If you have any content left in this content type, it will be permanently deleted. This action cannot be undone.',
20142   'version' => 'none',
20143 ))
20144 ->values(array(
20145   'lid' => '1405',
20146   'location' => 'content_admin.inc:220',
20147   'textgroup' => 'default',
20148   'source' => 'Deleted content type %type.',
20149   'version' => 'none',
20150 ))
20151 ->values(array(
20152   'lid' => '1406',
20153   'location' => 'content_admin.inc:251',
20154   'textgroup' => 'default',
20155   'source' => 'remove',
20156   'version' => 'none',
20157 ))
20158 ->values(array(
20159   'lid' => '1407',
20160   'location' => 'content_admin.inc:313',
20161   'textgroup' => 'default',
20162   'source' => 'The human-readable name of this field.',
20163   'version' => 'none',
20164 ))
20165 ->values(array(
20166   'lid' => '1408',
20167   'location' => 'content_admin.inc:326',
20168   'textgroup' => 'default',
20169   'source' => 'Create field',
20170   'version' => 'none',
20171 ))
20172 ->values(array(
20173   'lid' => '1409',
20174   'location' => 'content_admin.inc:335',
20175   'textgroup' => 'default',
20176   '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.',
20177   'version' => 'none',
20178 ))
20179 ->values(array(
20180   'lid' => '1410',
20181   'location' => 'content_admin.inc:487',
20182   'textgroup' => 'default',
20183   'source' => 'The field %field no longer exists in any content type, so it was deleted.',
20184   'version' => 'none',
20185 ))
20186 ->values(array(
20187   'lid' => '1411',
20188   'location' => 'content_admin.inc:522',
20189   'textgroup' => 'default',
20190   'source' => 'Widget settings',
20191   'version' => 'none',
20192 ))
20193 ->values(array(
20194   'lid' => '1412',
20195   'location' => 'content_admin.inc:526',
20196   'textgroup' => 'default',
20197   'source' => 'Widget',
20198   'version' => 'none',
20199 ))
20200 ->values(array(
20201   'lid' => '1413',
20202   'location' => 'content_admin.inc:541',
20203   'textgroup' => 'default',
20204   'source' => 'In the node editing form, the heavier fields will sink and the lighter fields will be positioned nearer the top.',
20205   'version' => 'none',
20206 ))
20207 ->values(array(
20208   'lid' => '1414',
20209   'location' => 'content_admin.inc:552',
20210   'textgroup' => 'default',
20211   'source' => 'Instructions to present to the user below this field on the editing form.',
20212   'version' => 'none',
20213 ))
20214 ->values(array(
20215   'lid' => '1415',
20216   'location' => 'content_admin.inc:569',
20217   'textgroup' => 'default',
20218   'source' => 'Data settings',
20219   'version' => 'none',
20220 ))
20221 ->values(array(
20222   'lid' => '1416',
20223   'location' => 'content_admin.inc:579',
20224   'textgroup' => 'default',
20225   'source' => 'Multiple values',
20226   'version' => 'none',
20227 ))
20228 ->values(array(
20229   'lid' => '1417',
20230   'location' => 'content_admin.inc:652',
20231   'textgroup' => 'default',
20232   'source' => 'Saved field %field.',
20233   'version' => 'none',
20234 ))
20235 ->values(array(
20236   'lid' => '1418',
20237   'location' => 'content_admin.inc:882;971',
20238   'textgroup' => 'default',
20239   'source' => 'No PostgreSQL mapping found for %type data type.',
20240   'version' => 'none',
20241 ))
20242 ->values(array(
20243   'lid' => '1419',
20244   'location' => 'content_admin.inc:896;985',
20245   'textgroup' => 'default',
20246   'source' => 'database',
20247   'version' => 'none',
20248 ))
20249 ->values(array(
20250   'lid' => '1420',
20251   'location' => 'date.module:15',
20252   'textgroup' => 'default',
20253   'source' => 'Defines a date/time field type. <em>Note: Requires content.module.</em>',
20254   'version' => 'none',
20255 ))
20256 ->values(array(
20257   'lid' => '1421',
20258   'location' => 'date.module:36',
20259   'textgroup' => 'default',
20260   'source' => 'Year',
20261   'version' => 'none',
20262 ))
20263 ->values(array(
20264   'lid' => '1422',
20265   'location' => 'date.module:37',
20266   'textgroup' => 'default',
20267   'source' => 'Year and month',
20268   'version' => 'none',
20269 ))
20270 ->values(array(
20271   'lid' => '1423',
20272   'location' => 'date.module:40',
20273   'textgroup' => 'default',
20274   'source' => 'Time only',
20275   'version' => 'none',
20276 ))
20277 ->values(array(
20278   'lid' => '1424',
20279   'location' => 'date.module:44',
20280   'textgroup' => 'default',
20281   'source' => 'Granularity',
20282   'version' => 'none',
20283 ))
20284 ->values(array(
20285   'lid' => '1425',
20286   'location' => 'date.module:102',
20287   'textgroup' => 'default',
20288   'source' => "Times are entered and displayed with site's time zone",
20289   'version' => 'none',
20290 ))
20291 ->values(array(
20292   'lid' => '1426',
20293   'location' => 'date.module:103',
20294   'textgroup' => 'default',
20295   'source' => "Times are entered and displayed with user's time zone",
20296   'version' => 'none',
20297 ))
20298 ->values(array(
20299   'lid' => '1427',
20300   'location' => 'date.module:107',
20301   'textgroup' => 'default',
20302   'source' => 'Time zone handling',
20303   'version' => 'none',
20304 ))
20305 ->values(array(
20306   'lid' => '1428',
20307   'location' => 'date.module:153',
20308   'textgroup' => 'default',
20309   'source' => '%name must be entered in ISO 8601 format (YYYYMMDDThh:mm:ss).',
20310   'version' => 'none',
20311 ))
20312 ->values(array(
20313   'lid' => '1429',
20314   'location' => 'content.module:61',
20315   'textgroup' => 'default',
20316   'source' => 'content types',
20317   'version' => 'none',
20318 ))
20319 ->values(array(
20320   'lid' => '1430',
20321   'location' => 'content.module:67',
20322   'textgroup' => 'default',
20323   'source' => 'list',
20324   'version' => 'none',
20325 ))
20326 ->values(array(
20327   'lid' => '1431',
20328   'location' => 'modules/optionwidgets/optionwidgets.module:326',
20329   'textgroup' => 'default',
20330   'source' => '%name: this field cannot hold more than @count values.',
20331   'version' => 'none',
20332 ))
20333 ->values(array(
20334   'lid' => '1432',
20335   'location' => 'includes/panels/content_types/content_field.inc:37',
20336   'textgroup' => 'default',
20337   'source' => '@type: (@field_type) @field',
20338   'version' => 'none',
20339 ))
20340 ->values(array(
20341   'lid' => '1433',
20342   'location' => 'includes/panels/content_types/content_field.inc:44',
20343   'textgroup' => 'default',
20344   'source' => 'Field on the referenced node.',
20345   'version' => 'none',
20346 ))
20347 ->values(array(
20348   'lid' => '1434',
20349   'location' => 'includes/panels/content_types/content_field.inc:128',
20350   'textgroup' => 'default',
20351   'source' => 'Formatter',
20352   'version' => 'none',
20353 ))
20354 ->values(array(
20355   'lid' => '1435',
20356   'location' => 'includes/panels/content_types/content_field.inc:131',
20357   'textgroup' => 'default',
20358   'source' => 'Select a formatter.',
20359   'version' => 'none',
20360 ))
20361 ->values(array(
20362   'lid' => '1436',
20363   'location' => 'includes/panels/content_types/content_field.inc:147',
20364   'textgroup' => 'default',
20365   'source' => '"@s" field (@name)',
20366   'version' => 'none',
20367 ))
20368 ->values(array(
20369   'lid' => '1437',
20370   'location' => '/?q=zu/admin/settingsjhkjg',
20371   'textgroup' => 'default',
20372   'source' => 'Page not found',
20373   'version' => '6.38-dev',
20374 ))
20375 ->values(array(
20376   'lid' => '1438',
20377   'location' => '/?q=zu/admin/settingsjhkjg',
20378   'textgroup' => 'default',
20379   'source' => 'The requested page could not be found.',
20380   'version' => '6.38-dev',
20381 ))
20382 ->values(array(
20383   'lid' => '1439',
20384   'location' => '/?q=zu/admin/build/translate',
20385   'textgroup' => 'default',
20386   'source' => 'English (built-in)',
20387   'version' => '6.38-dev',
20388 ))
20389 ->values(array(
20390   'lid' => '1440',
20391   'location' => '/?q=zu/admin/build/translate',
20392   'textgroup' => 'default',
20393   'source' => 'n/a',
20394   'version' => '6.38-dev',
20395 ))
20396 ->values(array(
20397   'lid' => '1441',
20398   'location' => '/?q=zu/admin/build/translate',
20399   'textgroup' => 'default',
20400   'source' => 'Zulu',
20401   'version' => '6.38-dev',
20402 ))
20403 ->values(array(
20404   'lid' => '1442',
20405   'location' => '/?q=zu/admin/build/translate',
20406   'textgroup' => 'default',
20407   'source' => 'Overview',
20408   'version' => '6.38-dev',
20409 ))
20410 ->values(array(
20411   'lid' => '1443',
20412   'location' => '/?q=zu/admin/build/translate',
20413   'textgroup' => 'default',
20414   'source' => 'Refresh',
20415   'version' => '6.38-dev',
20416 ))
20417 ->values(array(
20418   'lid' => '1444',
20419   'location' => '/?q=zu/admin/build/translate',
20420   'textgroup' => 'default',
20421   '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.',
20422   'version' => '6.38-dev',
20423 ))
20424 ->values(array(
20425   'lid' => '1445',
20426   'location' => '/?q=zu/admin/build/translate',
20427   'textgroup' => 'default',
20428   'source' => 'Review the <a href="@languages">languages page</a> for more information on adding support for additional languages.',
20429   'version' => '6.38-dev',
20430 ))
20431 ->values(array(
20432   'lid' => '1446',
20433   'location' => '/?q=zu/admin/build/translate/search',
20434   'textgroup' => 'default',
20435   'source' => 'English',
20436   'version' => '6.38-dev',
20437 ))
20438 ->values(array(
20439   'lid' => '1447',
20440   'location' => '/?q=zu/admin/build/translate/search',
20441   'textgroup' => 'default',
20442   'source' => 'String contains',
20443   'version' => '6.38-dev',
20444 ))
20445 ->values(array(
20446   'lid' => '1448',
20447   'location' => '/?q=zu/admin/build/translate/search',
20448   'textgroup' => 'default',
20449   'source' => 'Leave blank to show all strings. The search is case sensitive.',
20450   'version' => '6.38-dev',
20451 ))
20452 ->values(array(
20453   'lid' => '1449',
20454   'location' => '/?q=zu/admin/build/translate/search',
20455   'textgroup' => 'default',
20456   'source' => 'All languages',
20457   'version' => '6.38-dev',
20458 ))
20459 ->values(array(
20460   'lid' => '1450',
20461   'location' => '/?q=zu/admin/build/translate/search',
20462   'textgroup' => 'default',
20463   'source' => 'English (provided by Drupal)',
20464   'version' => '6.38-dev',
20465 ))
20466 ->values(array(
20467   'lid' => '1451',
20468   'location' => '/?q=zu/admin/build/translate/search',
20469   'textgroup' => 'default',
20470   'source' => 'Search in',
20471   'version' => '6.38-dev',
20472 ))
20473 ->values(array(
20474   'lid' => '1452',
20475   'location' => '/?q=zu/admin/build/translate/search',
20476   'textgroup' => 'default',
20477   'source' => 'Both translated and untranslated strings',
20478   'version' => '6.38-dev',
20479 ))
20480 ->values(array(
20481   'lid' => '1453',
20482   'location' => '/?q=zu/admin/build/translate/search',
20483   'textgroup' => 'default',
20484   'source' => 'Only translated strings',
20485   'version' => '6.38-dev',
20486 ))
20487 ->values(array(
20488   'lid' => '1454',
20489   'location' => '/?q=zu/admin/build/translate/search',
20490   'textgroup' => 'default',
20491   'source' => 'Only untranslated strings',
20492   'version' => '6.38-dev',
20493 ))
20494 ->values(array(
20495   'lid' => '1455',
20496   'location' => '/?q=zu/admin/build/translate/search',
20497   'textgroup' => 'default',
20498   'source' => 'Limit search to',
20499   'version' => '6.38-dev',
20500 ))
20501 ->values(array(
20502   'lid' => '1456',
20503   'location' => '/?q=zu/admin/build/translate/search',
20504   'textgroup' => 'default',
20505   'source' => 'All text groups',
20506   'version' => '6.38-dev',
20507 ))
20508 ->values(array(
20509   'lid' => '1457',
20510   'location' => '/?q=zu/admin/build/translate/search',
20511   'textgroup' => 'default',
20512   '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.',
20513   'version' => '6.38-dev',
20514 ))
20515 ->values(array(
20516   'lid' => '1458',
20517   'location' => '/?q=zu/admin/build/translate/import',
20518   'textgroup' => 'default',
20519   'source' => 'Already added languages',
20520   'version' => '6.38-dev',
20521 ))
20522 ->values(array(
20523   'lid' => '1459',
20524   'location' => '/?q=zu/admin/build/translate/import',
20525   'textgroup' => 'default',
20526   'source' => 'Languages not yet added',
20527   'version' => '6.38-dev',
20528 ))
20529 ->values(array(
20530   'lid' => '1460',
20531   'location' => '/?q=zu/admin/build/translate/import',
20532   'textgroup' => 'default',
20533   'source' => 'Afar',
20534   'version' => '6.38-dev',
20535 ))
20536 ->values(array(
20537   'lid' => '1461',
20538   'location' => '/?q=zu/admin/build/translate/import',
20539   'textgroup' => 'default',
20540   'source' => 'Abkhazian',
20541   'version' => '6.38-dev',
20542 ))
20543 ->values(array(
20544   'lid' => '1462',
20545   'location' => '/?q=zu/admin/build/translate/import',
20546   'textgroup' => 'default',
20547   'source' => 'Avestan',
20548   'version' => '6.38-dev',
20549 ))
20550 ->values(array(
20551   'lid' => '1463',
20552   'location' => '/?q=zu/admin/build/translate/import',
20553   'textgroup' => 'default',
20554   'source' => 'Afrikaans',
20555   'version' => '6.38-dev',
20556 ))
20557 ->values(array(
20558   'lid' => '1464',
20559   'location' => '/?q=zu/admin/build/translate/import',
20560   'textgroup' => 'default',
20561   'source' => 'Akan',
20562   'version' => '6.38-dev',
20563 ))
20564 ->values(array(
20565   'lid' => '1465',
20566   'location' => '/?q=zu/admin/build/translate/import',
20567   'textgroup' => 'default',
20568   'source' => 'Amharic',
20569   'version' => '6.38-dev',
20570 ))
20571 ->values(array(
20572   'lid' => '1466',
20573   'location' => '/?q=zu/admin/build/translate/import',
20574   'textgroup' => 'default',
20575   'source' => 'Arabic',
20576   'version' => '6.38-dev',
20577 ))
20578 ->values(array(
20579   'lid' => '1467',
20580   'location' => '/?q=zu/admin/build/translate/import',
20581   'textgroup' => 'default',
20582   'source' => 'Assamese',
20583   'version' => '6.38-dev',
20584 ))
20585 ->values(array(
20586   'lid' => '1468',
20587   'location' => '/?q=zu/admin/build/translate/import',
20588   'textgroup' => 'default',
20589   'source' => 'Avar',
20590   'version' => '6.38-dev',
20591 ))
20592 ->values(array(
20593   'lid' => '1469',
20594   'location' => '/?q=zu/admin/build/translate/import',
20595   'textgroup' => 'default',
20596   'source' => 'Aymara',
20597   'version' => '6.38-dev',
20598 ))
20599 ->values(array(
20600   'lid' => '1470',
20601   'location' => '/?q=zu/admin/build/translate/import',
20602   'textgroup' => 'default',
20603   'source' => 'Azerbaijani',
20604   'version' => '6.38-dev',
20605 ))
20606 ->values(array(
20607   'lid' => '1471',
20608   'location' => '/?q=zu/admin/build/translate/import',
20609   'textgroup' => 'default',
20610   'source' => 'Bashkir',
20611   'version' => '6.38-dev',
20612 ))
20613 ->values(array(
20614   'lid' => '1472',
20615   'location' => '/?q=zu/admin/build/translate/import',
20616   'textgroup' => 'default',
20617   'source' => 'Belarusian',
20618   'version' => '6.38-dev',
20619 ))
20620 ->values(array(
20621   'lid' => '1473',
20622   'location' => '/?q=zu/admin/build/translate/import',
20623   'textgroup' => 'default',
20624   'source' => 'Bulgarian',
20625   'version' => '6.38-dev',
20626 ))
20627 ->values(array(
20628   'lid' => '1474',
20629   'location' => '/?q=zu/admin/build/translate/import',
20630   'textgroup' => 'default',
20631   'source' => 'Bihari',
20632   'version' => '6.38-dev',
20633 ))
20634 ->values(array(
20635   'lid' => '1475',
20636   'location' => '/?q=zu/admin/build/translate/import',
20637   'textgroup' => 'default',
20638   'source' => 'Bislama',
20639   'version' => '6.38-dev',
20640 ))
20641 ->values(array(
20642   'lid' => '1476',
20643   'location' => '/?q=zu/admin/build/translate/import',
20644   'textgroup' => 'default',
20645   'source' => 'Bambara',
20646   'version' => '6.38-dev',
20647 ))
20648 ->values(array(
20649   'lid' => '1477',
20650   'location' => '/?q=zu/admin/build/translate/import',
20651   'textgroup' => 'default',
20652   'source' => 'Bengali',
20653   'version' => '6.38-dev',
20654 ))
20655 ->values(array(
20656   'lid' => '1478',
20657   'location' => '/?q=zu/admin/build/translate/import',
20658   'textgroup' => 'default',
20659   'source' => 'Tibetan',
20660   'version' => '6.38-dev',
20661 ))
20662 ->values(array(
20663   'lid' => '1479',
20664   'location' => '/?q=zu/admin/build/translate/import',
20665   'textgroup' => 'default',
20666   'source' => 'Breton',
20667   'version' => '6.38-dev',
20668 ))
20669 ->values(array(
20670   'lid' => '1480',
20671   'location' => '/?q=zu/admin/build/translate/import',
20672   'textgroup' => 'default',
20673   'source' => 'Bosnian',
20674   'version' => '6.38-dev',
20675 ))
20676 ->values(array(
20677   'lid' => '1481',
20678   'location' => '/?q=zu/admin/build/translate/import',
20679   'textgroup' => 'default',
20680   'source' => 'Catalan',
20681   'version' => '6.38-dev',
20682 ))
20683 ->values(array(
20684   'lid' => '1482',
20685   'location' => '/?q=zu/admin/build/translate/import',
20686   'textgroup' => 'default',
20687   'source' => 'Chechen',
20688   'version' => '6.38-dev',
20689 ))
20690 ->values(array(
20691   'lid' => '1483',
20692   'location' => '/?q=zu/admin/build/translate/import',
20693   'textgroup' => 'default',
20694   'source' => 'Chamorro',
20695   'version' => '6.38-dev',
20696 ))
20697 ->values(array(
20698   'lid' => '1484',
20699   'location' => '/?q=zu/admin/build/translate/import',
20700   'textgroup' => 'default',
20701   'source' => 'Corsican',
20702   'version' => '6.38-dev',
20703 ))
20704 ->values(array(
20705   'lid' => '1485',
20706   'location' => '/?q=zu/admin/build/translate/import',
20707   'textgroup' => 'default',
20708   'source' => 'Cree',
20709   'version' => '6.38-dev',
20710 ))
20711 ->values(array(
20712   'lid' => '1486',
20713   'location' => '/?q=zu/admin/build/translate/import',
20714   'textgroup' => 'default',
20715   'source' => 'Czech',
20716   'version' => '6.38-dev',
20717 ))
20718 ->values(array(
20719   'lid' => '1487',
20720   'location' => '/?q=zu/admin/build/translate/import',
20721   'textgroup' => 'default',
20722   'source' => 'Old Slavonic',
20723   'version' => '6.38-dev',
20724 ))
20725 ->values(array(
20726   'lid' => '1488',
20727   'location' => '/?q=zu/admin/build/translate/import',
20728   'textgroup' => 'default',
20729   'source' => 'Chuvash',
20730   'version' => '6.38-dev',
20731 ))
20732 ->values(array(
20733   'lid' => '1489',
20734   'location' => '/?q=zu/admin/build/translate/import',
20735   'textgroup' => 'default',
20736   'source' => 'Welsh',
20737   'version' => '6.38-dev',
20738 ))
20739 ->values(array(
20740   'lid' => '1490',
20741   'location' => '/?q=zu/admin/build/translate/import',
20742   'textgroup' => 'default',
20743   'source' => 'Danish',
20744   'version' => '6.38-dev',
20745 ))
20746 ->values(array(
20747   'lid' => '1491',
20748   'location' => '/?q=zu/admin/build/translate/import',
20749   'textgroup' => 'default',
20750   'source' => 'German',
20751   'version' => '6.38-dev',
20752 ))
20753 ->values(array(
20754   'lid' => '1492',
20755   'location' => '/?q=zu/admin/build/translate/import',
20756   'textgroup' => 'default',
20757   'source' => 'Maldivian',
20758   'version' => '6.38-dev',
20759 ))
20760 ->values(array(
20761   'lid' => '1493',
20762   'location' => '/?q=zu/admin/build/translate/import',
20763   'textgroup' => 'default',
20764   'source' => 'Bhutani',
20765   'version' => '6.38-dev',
20766 ))
20767 ->values(array(
20768   'lid' => '1494',
20769   'location' => '/?q=zu/admin/build/translate/import',
20770   'textgroup' => 'default',
20771   'source' => 'Ewe',
20772   'version' => '6.38-dev',
20773 ))
20774 ->values(array(
20775   'lid' => '1495',
20776   'location' => '/?q=zu/admin/build/translate/import',
20777   'textgroup' => 'default',
20778   'source' => 'Greek',
20779   'version' => '6.38-dev',
20780 ))
20781 ->values(array(
20782   'lid' => '1496',
20783   'location' => '/?q=zu/admin/build/translate/import',
20784   'textgroup' => 'default',
20785   'source' => 'Esperanto',
20786   'version' => '6.38-dev',
20787 ))
20788 ->values(array(
20789   'lid' => '1497',
20790   'location' => '/?q=zu/admin/build/translate/import',
20791   'textgroup' => 'default',
20792   'source' => 'Spanish',
20793   'version' => '6.38-dev',
20794 ))
20795 ->values(array(
20796   'lid' => '1498',
20797   'location' => '/?q=zu/admin/build/translate/import',
20798   'textgroup' => 'default',
20799   'source' => 'Estonian',
20800   'version' => '6.38-dev',
20801 ))
20802 ->values(array(
20803   'lid' => '1499',
20804   'location' => '/?q=zu/admin/build/translate/import',
20805   'textgroup' => 'default',
20806   'source' => 'Basque',
20807   'version' => '6.38-dev',
20808 ))
20809 ->values(array(
20810   'lid' => '1500',
20811   'location' => '/?q=zu/admin/build/translate/import',
20812   'textgroup' => 'default',
20813   'source' => 'Persian',
20814   'version' => '6.38-dev',
20815 ))
20816 ->values(array(
20817   'lid' => '1501',
20818   'location' => '/?q=zu/admin/build/translate/import',
20819   'textgroup' => 'default',
20820   'source' => 'Fulah',
20821   'version' => '6.38-dev',
20822 ))
20823 ->values(array(
20824   'lid' => '1502',
20825   'location' => '/?q=zu/admin/build/translate/import',
20826   'textgroup' => 'default',
20827   'source' => 'Finnish',
20828   'version' => '6.38-dev',
20829 ))
20830 ->values(array(
20831   'lid' => '1503',
20832   'location' => '/?q=zu/admin/build/translate/import',
20833   'textgroup' => 'default',
20834   'source' => 'Fiji',
20835   'version' => '6.38-dev',
20836 ))
20837 ->values(array(
20838   'lid' => '1504',
20839   'location' => '/?q=zu/admin/build/translate/import',
20840   'textgroup' => 'default',
20841   'source' => 'Faeroese',
20842   'version' => '6.38-dev',
20843 ))
20844 ->values(array(
20845   'lid' => '1505',
20846   'location' => '/?q=zu/admin/build/translate/import',
20847   'textgroup' => 'default',
20848   'source' => 'Frisian',
20849   'version' => '6.38-dev',
20850 ))
20851 ->values(array(
20852   'lid' => '1506',
20853   'location' => '/?q=zu/admin/build/translate/import',
20854   'textgroup' => 'default',
20855   'source' => 'Irish',
20856   'version' => '6.38-dev',
20857 ))
20858 ->values(array(
20859   'lid' => '1507',
20860   'location' => '/?q=zu/admin/build/translate/import',
20861   'textgroup' => 'default',
20862   'source' => 'Scots Gaelic',
20863   'version' => '6.38-dev',
20864 ))
20865 ->values(array(
20866   'lid' => '1508',
20867   'location' => '/?q=zu/admin/build/translate/import',
20868   'textgroup' => 'default',
20869   'source' => 'Galician',
20870   'version' => '6.38-dev',
20871 ))
20872 ->values(array(
20873   'lid' => '1509',
20874   'location' => '/?q=zu/admin/build/translate/import',
20875   'textgroup' => 'default',
20876   'source' => 'Guarani',
20877   'version' => '6.38-dev',
20878 ))
20879 ->values(array(
20880   'lid' => '1510',
20881   'location' => '/?q=zu/admin/build/translate/import',
20882   'textgroup' => 'default',
20883   'source' => 'Gujarati',
20884   'version' => '6.38-dev',
20885 ))
20886 ->values(array(
20887   'lid' => '1511',
20888   'location' => '/?q=zu/admin/build/translate/import',
20889   'textgroup' => 'default',
20890   'source' => 'Manx',
20891   'version' => '6.38-dev',
20892 ))
20893 ->values(array(
20894   'lid' => '1512',
20895   'location' => '/?q=zu/admin/build/translate/import',
20896   'textgroup' => 'default',
20897   'source' => 'Hausa',
20898   'version' => '6.38-dev',
20899 ))
20900 ->values(array(
20901   'lid' => '1513',
20902   'location' => '/?q=zu/admin/build/translate/import',
20903   'textgroup' => 'default',
20904   'source' => 'Hebrew',
20905   'version' => '6.38-dev',
20906 ))
20907 ->values(array(
20908   'lid' => '1514',
20909   'location' => '/?q=zu/admin/build/translate/import',
20910   'textgroup' => 'default',
20911   'source' => 'Hindi',
20912   'version' => '6.38-dev',
20913 ))
20914 ->values(array(
20915   'lid' => '1515',
20916   'location' => '/?q=zu/admin/build/translate/import',
20917   'textgroup' => 'default',
20918   'source' => 'Hiri Motu',
20919   'version' => '6.38-dev',
20920 ))
20921 ->values(array(
20922   'lid' => '1516',
20923   'location' => '/?q=zu/admin/build/translate/import',
20924   'textgroup' => 'default',
20925   'source' => 'Croatian',
20926   'version' => '6.38-dev',
20927 ))
20928 ->values(array(
20929   'lid' => '1517',
20930   'location' => '/?q=zu/admin/build/translate/import',
20931   'textgroup' => 'default',
20932   'source' => 'Hungarian',
20933   'version' => '6.38-dev',
20934 ))
20935 ->values(array(
20936   'lid' => '1518',
20937   'location' => '/?q=zu/admin/build/translate/import',
20938   'textgroup' => 'default',
20939   'source' => 'Armenian',
20940   'version' => '6.38-dev',
20941 ))
20942 ->values(array(
20943   'lid' => '1519',
20944   'location' => '/?q=zu/admin/build/translate/import',
20945   'textgroup' => 'default',
20946   'source' => 'Herero',
20947   'version' => '6.38-dev',
20948 ))
20949 ->values(array(
20950   'lid' => '1520',
20951   'location' => '/?q=zu/admin/build/translate/import',
20952   'textgroup' => 'default',
20953   'source' => 'Interlingua',
20954   'version' => '6.38-dev',
20955 ))
20956 ->values(array(
20957   'lid' => '1521',
20958   'location' => '/?q=zu/admin/build/translate/import',
20959   'textgroup' => 'default',
20960   'source' => 'Indonesian',
20961   'version' => '6.38-dev',
20962 ))
20963 ->values(array(
20964   'lid' => '1522',
20965   'location' => '/?q=zu/admin/build/translate/import',
20966   'textgroup' => 'default',
20967   'source' => 'Interlingue',
20968   'version' => '6.38-dev',
20969 ))
20970 ->values(array(
20971   'lid' => '1523',
20972   'location' => '/?q=zu/admin/build/translate/import',
20973   'textgroup' => 'default',
20974   'source' => 'Igbo',
20975   'version' => '6.38-dev',
20976 ))
20977 ->values(array(
20978   'lid' => '1524',
20979   'location' => '/?q=zu/admin/build/translate/import',
20980   'textgroup' => 'default',
20981   'source' => 'Inupiak',
20982   'version' => '6.38-dev',
20983 ))
20984 ->values(array(
20985   'lid' => '1525',
20986   'location' => '/?q=zu/admin/build/translate/import',
20987   'textgroup' => 'default',
20988   'source' => 'Icelandic',
20989   'version' => '6.38-dev',
20990 ))
20991 ->values(array(
20992   'lid' => '1526',
20993   'location' => '/?q=zu/admin/build/translate/import',
20994   'textgroup' => 'default',
20995   'source' => 'Italian',
20996   'version' => '6.38-dev',
20997 ))
20998 ->values(array(
20999   'lid' => '1527',
21000   'location' => '/?q=zu/admin/build/translate/import',
21001   'textgroup' => 'default',
21002   'source' => 'Inuktitut',
21003   'version' => '6.38-dev',
21004 ))
21005 ->values(array(
21006   'lid' => '1528',
21007   'location' => '/?q=zu/admin/build/translate/import',
21008   'textgroup' => 'default',
21009   'source' => 'Japanese',
21010   'version' => '6.38-dev',
21011 ))
21012 ->values(array(
21013   'lid' => '1529',
21014   'location' => '/?q=zu/admin/build/translate/import',
21015   'textgroup' => 'default',
21016   'source' => 'Javanese',
21017   'version' => '6.38-dev',
21018 ))
21019 ->values(array(
21020   'lid' => '1530',
21021   'location' => '/?q=zu/admin/build/translate/import',
21022   'textgroup' => 'default',
21023   'source' => 'Georgian',
21024   'version' => '6.38-dev',
21025 ))
21026 ->values(array(
21027   'lid' => '1531',
21028   'location' => '/?q=zu/admin/build/translate/import',
21029   'textgroup' => 'default',
21030   'source' => 'Kongo',
21031   'version' => '6.38-dev',
21032 ))
21033 ->values(array(
21034   'lid' => '1532',
21035   'location' => '/?q=zu/admin/build/translate/import',
21036   'textgroup' => 'default',
21037   'source' => 'Kikuyu',
21038   'version' => '6.38-dev',
21039 ))
21040 ->values(array(
21041   'lid' => '1533',
21042   'location' => '/?q=zu/admin/build/translate/import',
21043   'textgroup' => 'default',
21044   'source' => 'Kwanyama',
21045   'version' => '6.38-dev',
21046 ))
21047 ->values(array(
21048   'lid' => '1534',
21049   'location' => '/?q=zu/admin/build/translate/import',
21050   'textgroup' => 'default',
21051   'source' => 'Kazakh',
21052   'version' => '6.38-dev',
21053 ))
21054 ->values(array(
21055   'lid' => '1535',
21056   'location' => '/?q=zu/admin/build/translate/import',
21057   'textgroup' => 'default',
21058   'source' => 'Greenlandic',
21059   'version' => '6.38-dev',
21060 ))
21061 ->values(array(
21062   'lid' => '1536',
21063   'location' => '/?q=zu/admin/build/translate/import',
21064   'textgroup' => 'default',
21065   'source' => 'Cambodian',
21066   'version' => '6.38-dev',
21067 ))
21068 ->values(array(
21069   'lid' => '1537',
21070   'location' => '/?q=zu/admin/build/translate/import',
21071   'textgroup' => 'default',
21072   'source' => 'Kannada',
21073   'version' => '6.38-dev',
21074 ))
21075 ->values(array(
21076   'lid' => '1538',
21077   'location' => '/?q=zu/admin/build/translate/import',
21078   'textgroup' => 'default',
21079   'source' => 'Korean',
21080   'version' => '6.38-dev',
21081 ))
21082 ->values(array(
21083   'lid' => '1539',
21084   'location' => '/?q=zu/admin/build/translate/import',
21085   'textgroup' => 'default',
21086   'source' => 'Kanuri',
21087   'version' => '6.38-dev',
21088 ))
21089 ->values(array(
21090   'lid' => '1540',
21091   'location' => '/?q=zu/admin/build/translate/import',
21092   'textgroup' => 'default',
21093   'source' => 'Kashmiri',
21094   'version' => '6.38-dev',
21095 ))
21096 ->values(array(
21097   'lid' => '1541',
21098   'location' => '/?q=zu/admin/build/translate/import',
21099   'textgroup' => 'default',
21100   'source' => 'Kurdish',
21101   'version' => '6.38-dev',
21102 ))
21103 ->values(array(
21104   'lid' => '1542',
21105   'location' => '/?q=zu/admin/build/translate/import',
21106   'textgroup' => 'default',
21107   'source' => 'Komi',
21108   'version' => '6.38-dev',
21109 ))
21110 ->values(array(
21111   'lid' => '1543',
21112   'location' => '/?q=zu/admin/build/translate/import',
21113   'textgroup' => 'default',
21114   'source' => 'Cornish',
21115   'version' => '6.38-dev',
21116 ))
21117 ->values(array(
21118   'lid' => '1544',
21119   'location' => '/?q=zu/admin/build/translate/import',
21120   'textgroup' => 'default',
21121   'source' => 'Kirghiz',
21122   'version' => '6.38-dev',
21123 ))
21124 ->values(array(
21125   'lid' => '1545',
21126   'location' => '/?q=zu/admin/build/translate/import',
21127   'textgroup' => 'default',
21128   'source' => 'Latin',
21129   'version' => '6.38-dev',
21130 ))
21131 ->values(array(
21132   'lid' => '1546',
21133   'location' => '/?q=zu/admin/build/translate/import',
21134   'textgroup' => 'default',
21135   'source' => 'Luxembourgish',
21136   'version' => '6.38-dev',
21137 ))
21138 ->values(array(
21139   'lid' => '1547',
21140   'location' => '/?q=zu/admin/build/translate/import',
21141   'textgroup' => 'default',
21142   'source' => 'Luganda',
21143   'version' => '6.38-dev',
21144 ))
21145 ->values(array(
21146   'lid' => '1548',
21147   'location' => '/?q=zu/admin/build/translate/import',
21148   'textgroup' => 'default',
21149   'source' => 'Lingala',
21150   'version' => '6.38-dev',
21151 ))
21152 ->values(array(
21153   'lid' => '1549',
21154   'location' => '/?q=zu/admin/build/translate/import',
21155   'textgroup' => 'default',
21156   'source' => 'Laothian',
21157   'version' => '6.38-dev',
21158 ))
21159 ->values(array(
21160   'lid' => '1550',
21161   'location' => '/?q=zu/admin/build/translate/import',
21162   'textgroup' => 'default',
21163   'source' => 'Lithuanian',
21164   'version' => '6.38-dev',
21165 ))
21166 ->values(array(
21167   'lid' => '1551',
21168   'location' => '/?q=zu/admin/build/translate/import',
21169   'textgroup' => 'default',
21170   'source' => 'Latvian',
21171   'version' => '6.38-dev',
21172 ))
21173 ->values(array(
21174   'lid' => '1552',
21175   'location' => '/?q=zu/admin/build/translate/import',
21176   'textgroup' => 'default',
21177   'source' => 'Malagasy',
21178   'version' => '6.38-dev',
21179 ))
21180 ->values(array(
21181   'lid' => '1553',
21182   'location' => '/?q=zu/admin/build/translate/import',
21183   'textgroup' => 'default',
21184   'source' => 'Marshallese',
21185   'version' => '6.38-dev',
21186 ))
21187 ->values(array(
21188   'lid' => '1554',
21189   'location' => '/?q=zu/admin/build/translate/import',
21190   'textgroup' => 'default',
21191   'source' => 'Maori',
21192   'version' => '6.38-dev',
21193 ))
21194 ->values(array(
21195   'lid' => '1555',
21196   'location' => '/?q=zu/admin/build/translate/import',
21197   'textgroup' => 'default',
21198   'source' => 'Macedonian',
21199   'version' => '6.38-dev',
21200 ))
21201 ->values(array(
21202   'lid' => '1556',
21203   'location' => '/?q=zu/admin/build/translate/import',
21204   'textgroup' => 'default',
21205   'source' => 'Malayalam',
21206   'version' => '6.38-dev',
21207 ))
21208 ->values(array(
21209   'lid' => '1557',
21210   'location' => '/?q=zu/admin/build/translate/import',
21211   'textgroup' => 'default',
21212   'source' => 'Mongolian',
21213   'version' => '6.38-dev',
21214 ))
21215 ->values(array(
21216   'lid' => '1558',
21217   'location' => '/?q=zu/admin/build/translate/import',
21218   'textgroup' => 'default',
21219   'source' => 'Moldavian',
21220   'version' => '6.38-dev',
21221 ))
21222 ->values(array(
21223   'lid' => '1559',
21224   'location' => '/?q=zu/admin/build/translate/import',
21225   'textgroup' => 'default',
21226   'source' => 'Marathi',
21227   'version' => '6.38-dev',
21228 ))
21229 ->values(array(
21230   'lid' => '1560',
21231   'location' => '/?q=zu/admin/build/translate/import',
21232   'textgroup' => 'default',
21233   'source' => 'Malay',
21234   'version' => '6.38-dev',
21235 ))
21236 ->values(array(
21237   'lid' => '1561',
21238   'location' => '/?q=zu/admin/build/translate/import',
21239   'textgroup' => 'default',
21240   'source' => 'Maltese',
21241   'version' => '6.38-dev',
21242 ))
21243 ->values(array(
21244   'lid' => '1562',
21245   'location' => '/?q=zu/admin/build/translate/import',
21246   'textgroup' => 'default',
21247   'source' => 'Burmese',
21248   'version' => '6.38-dev',
21249 ))
21250 ->values(array(
21251   'lid' => '1563',
21252   'location' => '/?q=zu/admin/build/translate/import',
21253   'textgroup' => 'default',
21254   'source' => 'Nauru',
21255   'version' => '6.38-dev',
21256 ))
21257 ->values(array(
21258   'lid' => '1564',
21259   'location' => '/?q=zu/admin/build/translate/import',
21260   'textgroup' => 'default',
21261   'source' => 'North Ndebele',
21262   'version' => '6.38-dev',
21263 ))
21264 ->values(array(
21265   'lid' => '1565',
21266   'location' => '/?q=zu/admin/build/translate/import',
21267   'textgroup' => 'default',
21268   'source' => 'Nepali',
21269   'version' => '6.38-dev',
21270 ))
21271 ->values(array(
21272   'lid' => '1566',
21273   'location' => '/?q=zu/admin/build/translate/import',
21274   'textgroup' => 'default',
21275   'source' => 'Ndonga',
21276   'version' => '6.38-dev',
21277 ))
21278 ->values(array(
21279   'lid' => '1567',
21280   'location' => '/?q=zu/admin/build/translate/import',
21281   'textgroup' => 'default',
21282   'source' => 'Dutch',
21283   'version' => '6.38-dev',
21284 ))
21285 ->values(array(
21286   'lid' => '1568',
21287   'location' => '/?q=zu/admin/build/translate/import',
21288   'textgroup' => 'default',
21289   'source' => 'Norwegian BokmÃ¥l',
21290   'version' => '6.38-dev',
21291 ))
21292 ->values(array(
21293   'lid' => '1569',
21294   'location' => '/?q=zu/admin/build/translate/import',
21295   'textgroup' => 'default',
21296   'source' => 'Norwegian Nynorsk',
21297   'version' => '6.38-dev',
21298 ))
21299 ->values(array(
21300   'lid' => '1570',
21301   'location' => '/?q=zu/admin/build/translate/import',
21302   'textgroup' => 'default',
21303   'source' => 'South Ndebele',
21304   'version' => '6.38-dev',
21305 ))
21306 ->values(array(
21307   'lid' => '1571',
21308   'location' => '/?q=zu/admin/build/translate/import',
21309   'textgroup' => 'default',
21310   'source' => 'Navajo',
21311   'version' => '6.38-dev',
21312 ))
21313 ->values(array(
21314   'lid' => '1572',
21315   'location' => '/?q=zu/admin/build/translate/import',
21316   'textgroup' => 'default',
21317   'source' => 'Chichewa',
21318   'version' => '6.38-dev',
21319 ))
21320 ->values(array(
21321   'lid' => '1573',
21322   'location' => '/?q=zu/admin/build/translate/import',
21323   'textgroup' => 'default',
21324   'source' => 'Occitan',
21325   'version' => '6.38-dev',
21326 ))
21327 ->values(array(
21328   'lid' => '1574',
21329   'location' => '/?q=zu/admin/build/translate/import',
21330   'textgroup' => 'default',
21331   'source' => 'Oromo',
21332   'version' => '6.38-dev',
21333 ))
21334 ->values(array(
21335   'lid' => '1575',
21336   'location' => '/?q=zu/admin/build/translate/import',
21337   'textgroup' => 'default',
21338   'source' => 'Oriya',
21339   'version' => '6.38-dev',
21340 ))
21341 ->values(array(
21342   'lid' => '1576',
21343   'location' => '/?q=zu/admin/build/translate/import',
21344   'textgroup' => 'default',
21345   'source' => 'Ossetian',
21346   'version' => '6.38-dev',
21347 ))
21348 ->values(array(
21349   'lid' => '1577',
21350   'location' => '/?q=zu/admin/build/translate/import',
21351   'textgroup' => 'default',
21352   'source' => 'Punjabi',
21353   'version' => '6.38-dev',
21354 ))
21355 ->values(array(
21356   'lid' => '1578',
21357   'location' => '/?q=zu/admin/build/translate/import',
21358   'textgroup' => 'default',
21359   'source' => 'Pali',
21360   'version' => '6.38-dev',
21361 ))
21362 ->values(array(
21363   'lid' => '1579',
21364   'location' => '/?q=zu/admin/build/translate/import',
21365   'textgroup' => 'default',
21366   'source' => 'Polish',
21367   'version' => '6.38-dev',
21368 ))
21369 ->values(array(
21370   'lid' => '1580',
21371   'location' => '/?q=zu/admin/build/translate/import',
21372   'textgroup' => 'default',
21373   'source' => 'Pashto',
21374   'version' => '6.38-dev',
21375 ))
21376 ->values(array(
21377   'lid' => '1581',
21378   'location' => '/?q=zu/admin/build/translate/import',
21379   'textgroup' => 'default',
21380   'source' => 'Portuguese, Portugal',
21381   'version' => '6.38-dev',
21382 ))
21383 ->values(array(
21384   'lid' => '1582',
21385   'location' => '/?q=zu/admin/build/translate/import',
21386   'textgroup' => 'default',
21387   'source' => 'Portuguese, Brazil',
21388   'version' => '6.38-dev',
21389 ))
21390 ->values(array(
21391   'lid' => '1583',
21392   'location' => '/?q=zu/admin/build/translate/import',
21393   'textgroup' => 'default',
21394   'source' => 'Quechua',
21395   'version' => '6.38-dev',
21396 ))
21397 ->values(array(
21398   'lid' => '1584',
21399   'location' => '/?q=zu/admin/build/translate/import',
21400   'textgroup' => 'default',
21401   'source' => 'Rhaeto-Romance',
21402   'version' => '6.38-dev',
21403 ))
21404 ->values(array(
21405   'lid' => '1585',
21406   'location' => '/?q=zu/admin/build/translate/import',
21407   'textgroup' => 'default',
21408   'source' => 'Kirundi',
21409   'version' => '6.38-dev',
21410 ))
21411 ->values(array(
21412   'lid' => '1586',
21413   'location' => '/?q=zu/admin/build/translate/import',
21414   'textgroup' => 'default',
21415   'source' => 'Romanian',
21416   'version' => '6.38-dev',
21417 ))
21418 ->values(array(
21419   'lid' => '1587',
21420   'location' => '/?q=zu/admin/build/translate/import',
21421   'textgroup' => 'default',
21422   'source' => 'Russian',
21423   'version' => '6.38-dev',
21424 ))
21425 ->values(array(
21426   'lid' => '1588',
21427   'location' => '/?q=zu/admin/build/translate/import',
21428   'textgroup' => 'default',
21429   'source' => 'Kinyarwanda',
21430   'version' => '6.38-dev',
21431 ))
21432 ->values(array(
21433   'lid' => '1589',
21434   'location' => '/?q=zu/admin/build/translate/import',
21435   'textgroup' => 'default',
21436   'source' => 'Sanskrit',
21437   'version' => '6.38-dev',
21438 ))
21439 ->values(array(
21440   'lid' => '1590',
21441   'location' => '/?q=zu/admin/build/translate/import',
21442   'textgroup' => 'default',
21443   'source' => 'Sardinian',
21444   'version' => '6.38-dev',
21445 ))
21446 ->values(array(
21447   'lid' => '1591',
21448   'location' => '/?q=zu/admin/build/translate/import',
21449   'textgroup' => 'default',
21450   'source' => 'Sindhi',
21451   'version' => '6.38-dev',
21452 ))
21453 ->values(array(
21454   'lid' => '1592',
21455   'location' => '/?q=zu/admin/build/translate/import',
21456   'textgroup' => 'default',
21457   'source' => 'Northern Sami',
21458   'version' => '6.38-dev',
21459 ))
21460 ->values(array(
21461   'lid' => '1593',
21462   'location' => '/?q=zu/admin/build/translate/import',
21463   'textgroup' => 'default',
21464   'source' => 'Sango',
21465   'version' => '6.38-dev',
21466 ))
21467 ->values(array(
21468   'lid' => '1594',
21469   'location' => '/?q=zu/admin/build/translate/import',
21470   'textgroup' => 'default',
21471   'source' => 'Serbo-Croatian',
21472   'version' => '6.38-dev',
21473 ))
21474 ->values(array(
21475   'lid' => '1595',
21476   'location' => '/?q=zu/admin/build/translate/import',
21477   'textgroup' => 'default',
21478   'source' => 'Sinhala',
21479   'version' => '6.38-dev',
21480 ))
21481 ->values(array(
21482   'lid' => '1596',
21483   'location' => '/?q=zu/admin/build/translate/import',
21484   'textgroup' => 'default',
21485   'source' => 'Slovak',
21486   'version' => '6.38-dev',
21487 ))
21488 ->values(array(
21489   'lid' => '1597',
21490   'location' => '/?q=zu/admin/build/translate/import',
21491   'textgroup' => 'default',
21492   'source' => 'Slovenian',
21493   'version' => '6.38-dev',
21494 ))
21495 ->values(array(
21496   'lid' => '1598',
21497   'location' => '/?q=zu/admin/build/translate/import',
21498   'textgroup' => 'default',
21499   'source' => 'Samoan',
21500   'version' => '6.38-dev',
21501 ))
21502 ->values(array(
21503   'lid' => '1599',
21504   'location' => '/?q=zu/admin/build/translate/import',
21505   'textgroup' => 'default',
21506   'source' => 'Shona',
21507   'version' => '6.38-dev',
21508 ))
21509 ->values(array(
21510   'lid' => '1600',
21511   'location' => '/?q=zu/admin/build/translate/import',
21512   'textgroup' => 'default',
21513   'source' => 'Somali',
21514   'version' => '6.38-dev',
21515 ))
21516 ->values(array(
21517   'lid' => '1601',
21518   'location' => '/?q=zu/admin/build/translate/import',
21519   'textgroup' => 'default',
21520   'source' => 'Albanian',
21521   'version' => '6.38-dev',
21522 ))
21523 ->values(array(
21524   'lid' => '1602',
21525   'location' => '/?q=zu/admin/build/translate/import',
21526   'textgroup' => 'default',
21527   'source' => 'Serbian',
21528   'version' => '6.38-dev',
21529 ))
21530 ->values(array(
21531   'lid' => '1603',
21532   'location' => '/?q=zu/admin/build/translate/import',
21533   'textgroup' => 'default',
21534   'source' => 'Siswati',
21535   'version' => '6.38-dev',
21536 ))
21537 ->values(array(
21538   'lid' => '1604',
21539   'location' => '/?q=zu/admin/build/translate/import',
21540   'textgroup' => 'default',
21541   'source' => 'Sesotho',
21542   'version' => '6.38-dev',
21543 ))
21544 ->values(array(
21545   'lid' => '1605',
21546   'location' => '/?q=zu/admin/build/translate/import',
21547   'textgroup' => 'default',
21548   'source' => 'Sudanese',
21549   'version' => '6.38-dev',
21550 ))
21551 ->values(array(
21552   'lid' => '1606',
21553   'location' => '/?q=zu/admin/build/translate/import',
21554   'textgroup' => 'default',
21555   'source' => 'Swedish',
21556   'version' => '6.38-dev',
21557 ))
21558 ->values(array(
21559   'lid' => '1607',
21560   'location' => '/?q=zu/admin/build/translate/import',
21561   'textgroup' => 'default',
21562   'source' => 'Swahili',
21563   'version' => '6.38-dev',
21564 ))
21565 ->values(array(
21566   'lid' => '1608',
21567   'location' => '/?q=zu/admin/build/translate/import',
21568   'textgroup' => 'default',
21569   'source' => 'Tamil',
21570   'version' => '6.38-dev',
21571 ))
21572 ->values(array(
21573   'lid' => '1609',
21574   'location' => '/?q=zu/admin/build/translate/import',
21575   'textgroup' => 'default',
21576   'source' => 'Telugu',
21577   'version' => '6.38-dev',
21578 ))
21579 ->values(array(
21580   'lid' => '1610',
21581   'location' => '/?q=zu/admin/build/translate/import',
21582   'textgroup' => 'default',
21583   'source' => 'Tajik',
21584   'version' => '6.38-dev',
21585 ))
21586 ->values(array(
21587   'lid' => '1611',
21588   'location' => '/?q=zu/admin/build/translate/import',
21589   'textgroup' => 'default',
21590   'source' => 'Thai',
21591   'version' => '6.38-dev',
21592 ))
21593 ->values(array(
21594   'lid' => '1612',
21595   'location' => '/?q=zu/admin/build/translate/import',
21596   'textgroup' => 'default',
21597   'source' => 'Tigrinya',
21598   'version' => '6.38-dev',
21599 ))
21600 ->values(array(
21601   'lid' => '1613',
21602   'location' => '/?q=zu/admin/build/translate/import',
21603   'textgroup' => 'default',
21604   'source' => 'Turkmen',
21605   'version' => '6.38-dev',
21606 ))
21607 ->values(array(
21608   'lid' => '1614',
21609   'location' => '/?q=zu/admin/build/translate/import',
21610   'textgroup' => 'default',
21611   'source' => 'Tagalog',
21612   'version' => '6.38-dev',
21613 ))
21614 ->values(array(
21615   'lid' => '1615',
21616   'location' => '/?q=zu/admin/build/translate/import',
21617   'textgroup' => 'default',
21618   'source' => 'Setswana',
21619   'version' => '6.38-dev',
21620 ))
21621 ->values(array(
21622   'lid' => '1616',
21623   'location' => '/?q=zu/admin/build/translate/import',
21624   'textgroup' => 'default',
21625   'source' => 'Tonga',
21626   'version' => '6.38-dev',
21627 ))
21628 ->values(array(
21629   'lid' => '1617',
21630   'location' => '/?q=zu/admin/build/translate/import',
21631   'textgroup' => 'default',
21632   'source' => 'Turkish',
21633   'version' => '6.38-dev',
21634 ))
21635 ->values(array(
21636   'lid' => '1618',
21637   'location' => '/?q=zu/admin/build/translate/import',
21638   'textgroup' => 'default',
21639   'source' => 'Tsonga',
21640   'version' => '6.38-dev',
21641 ))
21642 ->values(array(
21643   'lid' => '1619',
21644   'location' => '/?q=zu/admin/build/translate/import',
21645   'textgroup' => 'default',
21646   'source' => 'Tatar',
21647   'version' => '6.38-dev',
21648 ))
21649 ->values(array(
21650   'lid' => '1620',
21651   'location' => '/?q=zu/admin/build/translate/import',
21652   'textgroup' => 'default',
21653   'source' => 'Twi',
21654   'version' => '6.38-dev',
21655 ))
21656 ->values(array(
21657   'lid' => '1621',
21658   'location' => '/?q=zu/admin/build/translate/import',
21659   'textgroup' => 'default',
21660   'source' => 'Tahitian',
21661   'version' => '6.38-dev',
21662 ))
21663 ->values(array(
21664   'lid' => '1622',
21665   'location' => '/?q=zu/admin/build/translate/import',
21666   'textgroup' => 'default',
21667   'source' => 'Uighur',
21668   'version' => '6.38-dev',
21669 ))
21670 ->values(array(
21671   'lid' => '1623',
21672   'location' => '/?q=zu/admin/build/translate/refresh',
21673   'textgroup' => 'default',
21674   'source' => 'Select text groups',
21675   'version' => '6.38-dev',
21676 ))
21677 ->values(array(
21678   'lid' => '1624',
21679   'location' => '/?q=zu/admin/build/translate/import',
21680   'textgroup' => 'default',
21681   'source' => 'Ukrainian',
21682   'version' => '6.38-dev',
21683 ))
21684 ->values(array(
21685   'lid' => '1625',
21686   'location' => '/?q=zu/admin/build/translate/refresh',
21687   'textgroup' => 'default',
21688   'source' => 'If a text group is no showing up here it means this feature is not implemented for it.',
21689   'version' => '6.38-dev',
21690 ))
21691 ->values(array(
21692   'lid' => '1626',
21693   'location' => '/?q=zu/admin/build/translate/import',
21694   'textgroup' => 'default',
21695   'source' => 'Urdu',
21696   'version' => '6.38-dev',
21697 ))
21698 ->values(array(
21699   'lid' => '1627',
21700   'location' => '/?q=zu/admin/build/translate/refresh',
21701   'textgroup' => 'default',
21702   'source' => 'Refresh strings',
21703   'version' => '6.38-dev',
21704 ))
21705 ->values(array(
21706   'lid' => '1628',
21707   'location' => '/?q=zu/admin/build/translate/import',
21708   'textgroup' => 'default',
21709   'source' => 'Uzbek',
21710   'version' => '6.38-dev',
21711 ))
21712 ->values(array(
21713   'lid' => '1629',
21714   'location' => '/?q=zu/admin/build/translate/refresh',
21715   'textgroup' => 'default',
21716   'source' => 'This will create all the missing strings for the selected text groups.',
21717   'version' => '6.38-dev',
21718 ))
21719 ->values(array(
21720   'lid' => '1630',
21721   'location' => '/?q=zu/admin/build/translate/import',
21722   'textgroup' => 'default',
21723   'source' => 'Venda',
21724   'version' => '6.38-dev',
21725 ))
21726 ->values(array(
21727   'lid' => '1631',
21728   'location' => '/?q=zu/admin/build/translate/refresh',
21729   'textgroup' => 'default',
21730   'source' => 'Select languages',
21731   'version' => '6.38-dev',
21732 ))
21733 ->values(array(
21734   'lid' => '1632',
21735   'location' => '/?q=zu/admin/build/translate/import',
21736   'textgroup' => 'default',
21737   'source' => 'Vietnamese',
21738   'version' => '6.38-dev',
21739 ))
21740 ->values(array(
21741   'lid' => '1633',
21742   'location' => '/?q=zu/admin/build/translate/refresh',
21743   'textgroup' => 'default',
21744   'source' => 'Update translations',
21745   'version' => '6.38-dev',
21746 ))
21747 ->values(array(
21748   'lid' => '1634',
21749   'location' => '/?q=zu/admin/build/translate/import',
21750   'textgroup' => 'default',
21751   'source' => 'Wolof',
21752   'version' => '6.38-dev',
21753 ))
21754 ->values(array(
21755   'lid' => '1635',
21756   'location' => '/?q=zu/admin/build/translate/refresh',
21757   'textgroup' => 'default',
21758   'source' => 'This will fetch all existing translations from the localization tables for the selected text groups and languages.',
21759   'version' => '6.38-dev',
21760 ))
21761 ->values(array(
21762   'lid' => '1636',
21763   'location' => '/?q=zu/admin/build/translate/import',
21764   'textgroup' => 'default',
21765   'source' => 'Xhosa',
21766   'version' => '6.38-dev',
21767 ))
21768 ->values(array(
21769   'lid' => '1637',
21770   'location' => '/?q=zu/admin/build/translate/import',
21771   'textgroup' => 'default',
21772   'source' => 'Yiddish',
21773   'version' => '6.38-dev',
21774 ))
21775 ->values(array(
21776   'lid' => '1638',
21777   'location' => '/?q=zu/admin/build/translate/import',
21778   'textgroup' => 'default',
21779   'source' => 'Yoruba',
21780   'version' => '6.38-dev',
21781 ))
21782 ->values(array(
21783   'lid' => '1639',
21784   'location' => '/?q=zu/admin/build/translate/refresh',
21785   'textgroup' => 'default',
21786   'source' => 'On this page you can refresh and update values for user defined strings.',
21787   'version' => '6.38-dev',
21788 ))
21789 ->values(array(
21790   'lid' => '1640',
21791   'location' => '/?q=zu/admin/build/translate/import',
21792   'textgroup' => 'default',
21793   'source' => 'Zhuang',
21794   'version' => '6.38-dev',
21795 ))
21796 ->values(array(
21797   'lid' => '1641',
21798   'location' => '/?q=zu/admin/build/translate/refresh',
21799   'textgroup' => 'default',
21800   '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.',
21801   'version' => '6.38-dev',
21802 ))
21803 ->values(array(
21804   'lid' => '1642',
21805   'location' => '/?q=zu/admin/build/translate/import',
21806   'textgroup' => 'default',
21807   'source' => 'Chinese, Simplified',
21808   'version' => '6.38-dev',
21809 ))
21810 ->values(array(
21811   'lid' => '1643',
21812   'location' => '/?q=zu/admin/build/translate/refresh',
21813   'textgroup' => 'default',
21814   '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.',
21815   'version' => '6.38-dev',
21816 ))
21817 ->values(array(
21818   'lid' => '1644',
21819   'location' => '/?q=zu/admin/build/translate/import',
21820   'textgroup' => 'default',
21821   'source' => 'Chinese, Traditional',
21822   'version' => '6.38-dev',
21823 ))
21824 ->values(array(
21825   'lid' => '1645',
21826   'location' => '/?q=zu/admin/build/translate/refresh',
21827   'textgroup' => 'default',
21828   'source' => 'To search and translate strings, use the <a href="@translate-interface">translation interface</a> pages.',
21829   'version' => '6.38-dev',
21830 ))
21831 ->values(array(
21832   'lid' => '1646',
21833   'location' => '/?q=zu/admin/build/translate/import',
21834   'textgroup' => 'default',
21835   'source' => 'Import translation',
21836   'version' => '6.38-dev',
21837 ))
21838 ->values(array(
21839   'lid' => '1647',
21840   'location' => '/?q=zu/admin/build/translate/refresh',
21841   'textgroup' => 'default',
21842   '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.',
21843   'version' => '6.38-dev',
21844 ))
21845 ->values(array(
21846   'lid' => '1648',
21847   'location' => '/?q=zu/admin/build/translate/import',
21848   'textgroup' => 'default',
21849   'source' => 'Language file',
21850   'version' => '6.38-dev',
21851 ))
21852 ->values(array(
21853   'lid' => '1649',
21854   'location' => '/?q=zu/admin/build/translate/import',
21855   'textgroup' => 'default',
21856   'source' => 'A Gettext Portable Object (<em>.po</em>) file.',
21857   'version' => '6.38-dev',
21858 ))
21859 ->values(array(
21860   'lid' => '1650',
21861   'location' => '/?q=zu/admin/build/translate/import',
21862   'textgroup' => 'default',
21863   'source' => 'Import into',
21864   'version' => '6.38-dev',
21865 ))
21866 ->values(array(
21867   'lid' => '1651',
21868   'location' => '/?q=zu/admin/build/translate/import',
21869   'textgroup' => 'default',
21870   '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.',
21871   'version' => '6.38-dev',
21872 ))
21873 ->values(array(
21874   'lid' => '1652',
21875   'location' => '/?q=zu/admin/build/translate/import',
21876   'textgroup' => 'default',
21877   'source' => 'Text group',
21878   'version' => '6.38-dev',
21879 ))
21880 ->values(array(
21881   'lid' => '1653',
21882   'location' => '/?q=zu/admin/build/translate/import',
21883   'textgroup' => 'default',
21884   'source' => 'Imported translations will be added to this text group.',
21885   'version' => '6.38-dev',
21886 ))
21887 ->values(array(
21888   'lid' => '1654',
21889   'location' => '/?q=zu/admin/build/translate/import',
21890   'textgroup' => 'default',
21891   'source' => 'Mode',
21892   'version' => '6.38-dev',
21893 ))
21894 ->values(array(
21895   'lid' => '1655',
21896   'location' => '/?q=zu/admin/build/translate/import',
21897   'textgroup' => 'default',
21898   'source' => 'Strings in the uploaded file replace existing ones, new ones are added',
21899   'version' => '6.38-dev',
21900 ))
21901 ->values(array(
21902   'lid' => '1656',
21903   'location' => '/?q=zu/admin/build/translate/import',
21904   'textgroup' => 'default',
21905   'source' => 'Existing strings are kept, only new strings are added',
21906   'version' => '6.38-dev',
21907 ))
21908 ->values(array(
21909   'lid' => '1657',
21910   'location' => '/?q=zu/admin/build/translate/import',
21911   'textgroup' => 'default',
21912   '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.',
21913   'version' => '6.38-dev',
21914 ))
21915 ->values(array(
21916   'lid' => '1658',
21917   'location' => '/?q=zu/admin/build/translate/import',
21918   'textgroup' => 'default',
21919   '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>.',
21920   'version' => '6.38-dev',
21921 ))
21922 ->values(array(
21923   'lid' => '1659',
21924   'location' => '/?q=zu/admin/settings/language/i18n/variables',
21925   'textgroup' => 'default',
21926   'source' => 'Variable name',
21927   'version' => '6.38-dev',
21928 ))
21929 ->values(array(
21930   'lid' => '1660',
21931   'location' => '/?q=zu/admin/settings/language/i18n/variables',
21932   'textgroup' => 'default',
21933   'source' => 'Is multilingual',
21934   'version' => '6.38-dev',
21935 ))
21936 ->values(array(
21937   'lid' => '1661',
21938   'location' => '/?q=zu/admin/settings/language/i18n/variables',
21939   'textgroup' => 'default',
21940   'source' => 'Has translations',
21941   'version' => '6.38-dev',
21942 ))
21943 ->values(array(
21944   'lid' => '1662',
21945   'location' => '/?q=zu/admin/settings/language/i18n/variables',
21946   'textgroup' => 'default',
21947   'source' => 'Delete all existing translations for variables.',
21948   'version' => '6.38-dev',
21949 ))
21950 ->values(array(
21951   'lid' => '1663',
21952   'location' => '/?q=zu/admin/settings/language/i18n/variables',
21953   'textgroup' => 'default',
21954   'source' => 'Delete all translations',
21955   'version' => '6.38-dev',
21956 ))
21957 ->values(array(
21958   'lid' => '1664',
21959   'location' => 'type:forum:name',
21960   'textgroup' => 'nodetype',
21961   'source' => 'Forum topic',
21962   'version' => '1',
21963 ))
21964 ->values(array(
21965   'lid' => '1665',
21966   'location' => 'type:forum:title',
21967   'textgroup' => 'nodetype',
21968   'source' => 'Subject',
21969   'version' => '1',
21970 ))
21971 ->values(array(
21972   'lid' => '1666',
21973   'location' => 'type:forum:body',
21974   'textgroup' => 'nodetype',
21975   'source' => 'Body',
21976   'version' => '1',
21977 ))
21978 ->values(array(
21979   'lid' => '1667',
21980   'location' => 'type:forum:description',
21981   'textgroup' => 'nodetype',
21982   'source' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
21983   'version' => '1',
21984 ))
21985 ->values(array(
21986   'lid' => '1668',
21987   'location' => 'modules/block/block.js',
21988   'textgroup' => 'default',
21989   'source' => 'The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.',
21990   'version' => 'none',
21991 ))
21992 ->values(array(
21993   'lid' => '1669',
21994   'location' => 'modules/nodereference/nodereference.module:117',
21995   'textgroup' => 'default',
21996   '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>",
21997   'version' => 'none',
21998 ))
21999 ->values(array(
22000   'lid' => '1670',
22001   'location' => 'modules/nodereference/nodereference.module:175',
22002   'textgroup' => 'default',
22003   'source' => "%name: This post can't be referenced.",
22004   'version' => 'none',
22005 ))
22006 ->values(array(
22007   'lid' => '1671',
22008   'location' => 'modules/nodereference/nodereference.module:518',
22009   'textgroup' => 'default',
22010   'source' => '%name: Title mismatch. Please check your selection.',
22011   'version' => 'none',
22012 ))
22013 ->execute();
22014
22015 $connection->schema()->createTable('locales_target', array(
22016   'fields' => array(
22017     'lid' => array(
22018       'type' => 'int',
22019       'not null' => TRUE,
22020       'size' => 'normal',
22021       'default' => '0',
22022     ),
22023     'translation' => array(
22024       'type' => 'blob',
22025       'not null' => TRUE,
22026       'size' => 'normal',
22027     ),
22028     'language' => array(
22029       'type' => 'varchar',
22030       'not null' => TRUE,
22031       'length' => '12',
22032       'default' => '',
22033     ),
22034     'plid' => array(
22035       'type' => 'int',
22036       'not null' => TRUE,
22037       'size' => 'normal',
22038       'default' => '0',
22039     ),
22040     'plural' => array(
22041       'type' => 'int',
22042       'not null' => TRUE,
22043       'size' => 'normal',
22044       'default' => '0',
22045     ),
22046     'i18n_status' => array(
22047       'type' => 'int',
22048       'not null' => TRUE,
22049       'size' => 'normal',
22050       'default' => '0',
22051     ),
22052   ),
22053   'primary key' => array(
22054     'language',
22055     'lid',
22056     'plural',
22057   ),
22058   'indexes' => array(
22059     'lid' => array(
22060       'lid',
22061     ),
22062     'plid' => array(
22063       'plid',
22064     ),
22065     'plural' => array(
22066       'plural',
22067     ),
22068   ),
22069   'mysql_character_set' => 'utf8',
22070 ));
22071
22072 $connection->insert('locales_target')
22073 ->fields(array(
22074   'lid',
22075   'translation',
22076   'language',
22077   'plid',
22078   'plural',
22079   'i18n_status',
22080 ))
22081 ->values(array(
22082   'lid' => '5',
22083   '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).",
22084   'language' => 'fr',
22085   'plid' => '0',
22086   'plural' => '0',
22087   'i18n_status' => '0',
22088 ))
22089 ->values(array(
22090   'lid' => '6',
22091   '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.",
22092   'language' => 'fr',
22093   'plid' => '0',
22094   'plural' => '0',
22095   'i18n_status' => '0',
22096 ))
22097 ->values(array(
22098   'lid' => '7',
22099   '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 :",
22100   'language' => 'fr',
22101   'plid' => '0',
22102   'plural' => '0',
22103   'i18n_status' => '0',
22104 ))
22105 ->values(array(
22106   'lid' => '8',
22107   '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.",
22108   'language' => 'fr',
22109   'plid' => '0',
22110   'plural' => '0',
22111   'i18n_status' => '0',
22112 ))
22113 ->values(array(
22114   'lid' => '9',
22115   '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.",
22116   'language' => 'fr',
22117   'plid' => '0',
22118   'plural' => '0',
22119   'i18n_status' => '0',
22120 ))
22121 ->values(array(
22122   'lid' => '10',
22123   '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").',
22124   'language' => 'fr',
22125   'plid' => '0',
22126   'plural' => '0',
22127   'i18n_status' => '0',
22128 ))
22129 ->values(array(
22130   'lid' => '11',
22131   '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.",
22132   'language' => 'fr',
22133   'plid' => '0',
22134   'plural' => '0',
22135   'i18n_status' => '0',
22136 ))
22137 ->values(array(
22138   'lid' => '12',
22139   '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.",
22140   'language' => 'fr',
22141   'plid' => '0',
22142   'plural' => '0',
22143   'i18n_status' => '0',
22144 ))
22145 ->values(array(
22146   'lid' => '13',
22147   '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>.",
22148   'language' => 'fr',
22149   'plid' => '0',
22150   'plural' => '0',
22151   'i18n_status' => '0',
22152 ))
22153 ->values(array(
22154   'lid' => '14',
22155   '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.',
22156   'language' => 'fr',
22157   'plid' => '0',
22158   'plural' => '0',
22159   'i18n_status' => '0',
22160 ))
22161 ->values(array(
22162   'lid' => '15',
22163   '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.",
22164   'language' => 'fr',
22165   'plid' => '0',
22166   'plural' => '0',
22167   'i18n_status' => '0',
22168 ))
22169 ->values(array(
22170   'lid' => '16',
22171   'translation' => "Contrôlez ici l'ordre des champs dans le formulaire de saisie.",
22172   'language' => 'fr',
22173   'plid' => '0',
22174   'plural' => '0',
22175   'i18n_status' => '0',
22176 ))
22177 ->values(array(
22178   'lid' => '17',
22179   'translation' => 'Ce champ est obligatoire.',
22180   'language' => 'fr',
22181   'plid' => '0',
22182   'plural' => '0',
22183   'i18n_status' => '0',
22184 ))
22185 ->values(array(
22186   'lid' => '18',
22187   'translation' => '!title : !required',
22188   'language' => 'fr',
22189   'plid' => '0',
22190   'plural' => '0',
22191   'i18n_status' => '0',
22192 ))
22193 ->values(array(
22194   'lid' => '19',
22195   'translation' => 'Ordre',
22196   'language' => 'fr',
22197   'plid' => '0',
22198   'plural' => '0',
22199   'i18n_status' => '0',
22200 ))
22201 ->values(array(
22202   'lid' => '20',
22203   'translation' => 'Élément de flux RSS',
22204   'language' => 'fr',
22205   'plid' => '0',
22206   'plural' => '0',
22207   'i18n_status' => '0',
22208 ))
22209 ->values(array(
22210   'lid' => '21',
22211   'translation' => 'Index de recherche',
22212   'language' => 'fr',
22213   'plid' => '0',
22214   'plural' => '0',
22215   'i18n_status' => '0',
22216 ))
22217 ->values(array(
22218   'lid' => '22',
22219   'translation' => 'Résultat de recherche',
22220   'language' => 'fr',
22221   'plid' => '0',
22222   'plural' => '0',
22223   'i18n_status' => '0',
22224 ))
22225 ->values(array(
22226   'lid' => '23',
22227   'translation' => 'Langue',
22228   'language' => 'fr',
22229   'plid' => '0',
22230   'plural' => '0',
22231   'i18n_status' => '0',
22232 ))
22233 ->values(array(
22234   'lid' => '24',
22235   'translation' => 'Taxonomie',
22236   'language' => 'fr',
22237   'plid' => '0',
22238   'plural' => '0',
22239   'i18n_status' => '0',
22240 ))
22241 ->values(array(
22242   'lid' => '25',
22243   'translation' => 'Fichiers attachés',
22244   'language' => 'fr',
22245   'plid' => '0',
22246   'plural' => '0',
22247   'i18n_status' => '0',
22248 ))
22249 ->values(array(
22250   'lid' => '26',
22251   'translation' => 'Mise Ã  jour du type de champ %type avec le module %module.',
22252   'language' => 'fr',
22253   'plid' => '0',
22254   'plural' => '0',
22255   'i18n_status' => '0',
22256 ))
22257 ->values(array(
22258   'lid' => '27',
22259   'translation' => 'Mise Ã  jour du type de widget %widget avec le module %module.',
22260   'language' => 'fr',
22261   'plid' => '0',
22262   'plural' => '0',
22263   'i18n_status' => '0',
22264 ))
22265 ->values(array(
22266   'lid' => '28',
22267   'translation' => "Utiliser du code PHP pour le paramétrage des champs (dangereux - Ã  n'autoriser qu'avec précautions)",
22268   'language' => 'fr',
22269   'plid' => '0',
22270   'plural' => '0',
22271   'i18n_status' => '0',
22272 ))
22273 ->values(array(
22274   'lid' => '29',
22275   'translation' => 'Gérer les champs',
22276   'language' => 'fr',
22277   'plid' => '0',
22278   'plural' => '0',
22279   'i18n_status' => '0',
22280 ))
22281 ->values(array(
22282   'lid' => '30',
22283   'translation' => 'Afficher les champs',
22284   'language' => 'fr',
22285   'plid' => '0',
22286   'plural' => '0',
22287   'i18n_status' => '0',
22288 ))
22289 ->values(array(
22290   'lid' => '31',
22291   'translation' => 'Général',
22292   'language' => 'fr',
22293   'plid' => '0',
22294   'plural' => '0',
22295   'i18n_status' => '0',
22296 ))
22297 ->values(array(
22298   'lid' => '32',
22299   'translation' => 'Avancé',
22300   'language' => 'fr',
22301   'plid' => '0',
22302   'plural' => '0',
22303   'i18n_status' => '0',
22304 ))
22305 ->values(array(
22306   'lid' => '33',
22307   'translation' => 'Supprimer un champ',
22308   'language' => 'fr',
22309   'plid' => '0',
22310   'plural' => '0',
22311   'i18n_status' => '0',
22312 ))
22313 ->values(array(
22314   'lid' => '34',
22315   'translation' => 'Content',
22316   'language' => 'fr',
22317   'plid' => '0',
22318   'plural' => '0',
22319   'i18n_status' => '0',
22320 ))
22321 ->values(array(
22322   'lid' => '35',
22323   'translation' => 'Permet aux administrateurs de définir des nouveaux types de contenu.',
22324   'language' => 'fr',
22325   'plid' => '0',
22326   'plural' => '0',
22327   'i18n_status' => '0',
22328 ))
22329 ->values(array(
22330   'lid' => '36',
22331   'translation' => 'CCK',
22332   'language' => 'fr',
22333   'plid' => '0',
22334   'plural' => '0',
22335   'i18n_status' => '0',
22336 ))
22337 ->values(array(
22338   'lid' => '37',
22339   'translation' => 'Texte',
22340   'language' => 'fr',
22341   'plid' => '0',
22342   'plural' => '0',
22343   'i18n_status' => '0',
22344 ))
22345 ->values(array(
22346   'lid' => '38',
22347   '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é.",
22348   'language' => 'fr',
22349   'plid' => '0',
22350   'plural' => '0',
22351   'i18n_status' => '0',
22352 ))
22353 ->values(array(
22354   'lid' => '39',
22355   'translation' => 'Zone de texte',
22356   'language' => 'fr',
22357   'plid' => '0',
22358   'plural' => '0',
22359   'i18n_status' => '0',
22360 ))
22361 ->values(array(
22362   'lid' => '40',
22363   'translation' => 'Ôter',
22364   'language' => 'fr',
22365   'plid' => '0',
22366   'plural' => '0',
22367   'i18n_status' => '0',
22368 ))
22369 ->values(array(
22370   'lid' => '41',
22371   'translation' => 'Basique',
22372   'language' => 'fr',
22373   'plid' => '0',
22374   'plural' => '0',
22375   'i18n_status' => '0',
22376 ))
22377 ->values(array(
22378   'lid' => '42',
22379   'translation' => 'Résumé',
22380   'language' => 'fr',
22381   'plid' => '0',
22382   'plural' => '0',
22383   'i18n_status' => '0',
22384 ))
22385 ->values(array(
22386   'lid' => '43',
22387   'translation' => 'NÅ“ud complet',
22388   'language' => 'fr',
22389   'plid' => '0',
22390   'plural' => '0',
22391   'i18n_status' => '0',
22392 ))
22393 ->values(array(
22394   'lid' => '44',
22395   'translation' => 'RSS',
22396   'language' => 'fr',
22397   'plid' => '0',
22398   'plural' => '0',
22399   'i18n_status' => '0',
22400 ))
22401 ->values(array(
22402   'lid' => '45',
22403   'translation' => 'Recherche',
22404   'language' => 'fr',
22405   'plid' => '0',
22406   'plural' => '0',
22407   'i18n_status' => '0',
22408 ))
22409 ->values(array(
22410   'lid' => '46',
22411   'translation' => 'Formulaire du module node.',
22412   'language' => 'fr',
22413   'plid' => '0',
22414   'plural' => '0',
22415   'i18n_status' => '0',
22416 ))
22417 ->values(array(
22418   'lid' => '47',
22419   'translation' => 'Formulaire du module locale.',
22420   'language' => 'fr',
22421   'plid' => '0',
22422   'plural' => '0',
22423   'i18n_status' => '0',
22424 ))
22425 ->values(array(
22426   'lid' => '48',
22427   'translation' => 'Paramètres du menu',
22428   'language' => 'fr',
22429   'plid' => '0',
22430   'plural' => '0',
22431   'i18n_status' => '0',
22432 ))
22433 ->values(array(
22434   'lid' => '49',
22435   'translation' => 'Formulaire du module menu.',
22436   'language' => 'fr',
22437   'plid' => '0',
22438   'plural' => '0',
22439   'i18n_status' => '0',
22440 ))
22441 ->values(array(
22442   'lid' => '50',
22443   'translation' => 'Formulaire du module taxonomy.',
22444   'language' => 'fr',
22445   'plid' => '0',
22446   'plural' => '0',
22447   'i18n_status' => '0',
22448 ))
22449 ->values(array(
22450   'lid' => '51',
22451   'translation' => 'Livre',
22452   'language' => 'fr',
22453   'plid' => '0',
22454   'plural' => '0',
22455   'i18n_status' => '0',
22456 ))
22457 ->values(array(
22458   'lid' => '52',
22459   'translation' => 'Formulaire du module livre (book).',
22460   'language' => 'fr',
22461   'plid' => '0',
22462   'plural' => '0',
22463   'i18n_status' => '0',
22464 ))
22465 ->values(array(
22466   'lid' => '53',
22467   'translation' => 'Titre du sondage',
22468   'language' => 'fr',
22469   'plid' => '0',
22470   'plural' => '0',
22471   'i18n_status' => '0',
22472 ))
22473 ->values(array(
22474   'lid' => '54',
22475   'translation' => 'Titre du module sondage (Poll)',
22476   'language' => 'fr',
22477   'plid' => '0',
22478   'plural' => '0',
22479   'i18n_status' => '0',
22480 ))
22481 ->values(array(
22482   'lid' => '55',
22483   'translation' => 'Choix du sondage',
22484   'language' => 'fr',
22485   'plid' => '0',
22486   'plural' => '0',
22487   'i18n_status' => '0',
22488 ))
22489 ->values(array(
22490   'lid' => '56',
22491   'translation' => 'Choix du module sondage (poll).',
22492   'language' => 'fr',
22493   'plid' => '0',
22494   'plural' => '0',
22495   'i18n_status' => '0',
22496 ))
22497 ->values(array(
22498   'lid' => '57',
22499   'translation' => 'Paramètrage du sondage',
22500   'language' => 'fr',
22501   'plid' => '0',
22502   'plural' => '0',
22503   'i18n_status' => '0',
22504 ))
22505 ->values(array(
22506   'lid' => '58',
22507   'translation' => 'Paramètres du module sondage (poll).',
22508   'language' => 'fr',
22509   'plid' => '0',
22510   'plural' => '0',
22511   'i18n_status' => '0',
22512 ))
22513 ->values(array(
22514   'lid' => '59',
22515   'translation' => 'Formulaire du module upload.',
22516   'language' => 'fr',
22517   'plid' => '0',
22518   'plural' => '0',
22519   'i18n_status' => '0',
22520 ))
22521 ->values(array(
22522   'lid' => '60',
22523   'translation' => 'contenu',
22524   'language' => 'fr',
22525   'plid' => '0',
22526   'plural' => '0',
22527   'i18n_status' => '0',
22528 ))
22529 ->values(array(
22530   'lid' => '61',
22531   'translation' => 'Champs',
22532   'language' => 'fr',
22533   'plid' => '0',
22534   'plural' => '0',
22535   'i18n_status' => '0',
22536 ))
22537 ->values(array(
22538   'lid' => '62',
22539   '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.",
22540   'language' => 'fr',
22541   'plid' => '0',
22542   'plural' => '0',
22543   'i18n_status' => '0',
22544 ))
22545 ->values(array(
22546   'lid' => '63',
22547   '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.",
22548   'language' => 'fr',
22549   'plid' => '0',
22550   'plural' => '0',
22551   'i18n_status' => '0',
22552 ))
22553 ->values(array(
22554   'lid' => '64',
22555   '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. ",
22556   'language' => 'fr',
22557   'plid' => '0',
22558   'plural' => '0',
22559   'i18n_status' => '0',
22560 ))
22561 ->values(array(
22562   'lid' => '65',
22563   '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.',
22564   'language' => 'fr',
22565   'plid' => '0',
22566   'plural' => '0',
22567   'i18n_status' => '0',
22568 ))
22569 ->values(array(
22570   'lid' => '66',
22571   'translation' => 'CCK - Aucune Intégration aux Vues',
22572   'language' => 'fr',
22573   'plid' => '0',
22574   'plural' => '0',
22575   'i18n_status' => '0',
22576 ))
22577 ->values(array(
22578   'lid' => '67',
22579   'translation' => 'L"intégration de CCK avec le module Views requiert Views 6.x-2.0-rc2 ou une version supérieure.',
22580   'language' => 'fr',
22581   'plid' => '0',
22582   'plural' => '0',
22583   'i18n_status' => '0',
22584 ))
22585 ->values(array(
22586   'lid' => '68',
22587   'translation' => 'Nom',
22588   'language' => 'fr',
22589   'plid' => '0',
22590   'plural' => '0',
22591   'i18n_status' => '0',
22592 ))
22593 ->values(array(
22594   'lid' => '69',
22595   'translation' => 'Type',
22596   'language' => 'fr',
22597   'plid' => '0',
22598   'plural' => '0',
22599   'i18n_status' => '0',
22600 ))
22601 ->values(array(
22602   'lid' => '70',
22603   'translation' => 'Description',
22604   'language' => 'fr',
22605   'plid' => '0',
22606   'plural' => '0',
22607   'i18n_status' => '0',
22608 ))
22609 ->values(array(
22610   'lid' => '71',
22611   'translation' => 'Opérations',
22612   'language' => 'fr',
22613   'plid' => '0',
22614   'plural' => '0',
22615   'i18n_status' => '0',
22616 ))
22617 ->values(array(
22618   'lid' => '72',
22619   'translation' => 'éditer',
22620   'language' => 'fr',
22621   'plid' => '0',
22622   'plural' => '0',
22623   'i18n_status' => '0',
22624 ))
22625 ->values(array(
22626   'lid' => '73',
22627   'translation' => 'gérer les champs',
22628   'language' => 'fr',
22629   'plid' => '0',
22630   'plural' => '0',
22631   'i18n_status' => '0',
22632 ))
22633 ->values(array(
22634   'lid' => '74',
22635   'translation' => 'supprimer',
22636   'language' => 'fr',
22637   'plid' => '0',
22638   'plural' => '0',
22639   'i18n_status' => '0',
22640 ))
22641 ->values(array(
22642   'lid' => '75',
22643   'translation' => 'Aucun type de contenu disponible.',
22644   'language' => 'fr',
22645   'plid' => '0',
22646   'plural' => '0',
22647   'i18n_status' => '0',
22648 ))
22649 ->values(array(
22650   'lid' => '76',
22651   'translation' => '» Ajouter un nouveau type de contenu',
22652   'language' => 'fr',
22653   'plid' => '0',
22654   'plural' => '0',
22655   'i18n_status' => '0',
22656 ))
22657 ->values(array(
22658   'lid' => '77',
22659   'translation' => 'Nom du champ',
22660   'language' => 'fr',
22661   'plid' => '0',
22662   'plural' => '0',
22663   'i18n_status' => '0',
22664 ))
22665 ->values(array(
22666   'lid' => '78',
22667   'translation' => 'Type de champ',
22668   'language' => 'fr',
22669   'plid' => '0',
22670   'plural' => '0',
22671   'i18n_status' => '0',
22672 ))
22673 ->values(array(
22674   'lid' => '79',
22675   'translation' => 'Utilisé dans',
22676   'language' => 'fr',
22677   'plid' => '0',
22678   'plural' => '0',
22679   'i18n_status' => '0',
22680 ))
22681 ->values(array(
22682   'lid' => '80',
22683   'translation' => '@field_name (Verrouillé)',
22684   'language' => 'fr',
22685   'plid' => '0',
22686   'plural' => '0',
22687   'i18n_status' => '0',
22688 ))
22689 ->values(array(
22690   'lid' => '81',
22691   'translation' => "Aucun champ n'est pour l'instant défini sur l'ensemble des types de contenu.",
22692   'language' => 'fr',
22693   'plid' => '0',
22694   'plural' => '0',
22695   'i18n_status' => '0',
22696 ))
22697 ->values(array(
22698   'lid' => '82',
22699   '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.",
22700   'language' => 'fr',
22701   'plid' => '0',
22702   'plural' => '0',
22703   'i18n_status' => '0',
22704 ))
22705 ->values(array(
22706   'lid' => '83',
22707   'translation' => '!field (!field_name) est un champ inactif de type !field_type, qui utilise un widget de type !widget_type.',
22708   'language' => 'fr',
22709   'plid' => '0',
22710   'plural' => '0',
22711   'i18n_status' => '0',
22712 ))
22713 ->values(array(
22714   'lid' => '84',
22715   'translation' => 'Configurer',
22716   'language' => 'fr',
22717   'plid' => '0',
22718   'plural' => '0',
22719   'i18n_status' => '0',
22720 ))
22721 ->values(array(
22722   'lid' => '85',
22723   'translation' => 'Verrouillé',
22724   'language' => 'fr',
22725   'plid' => '0',
22726   'plural' => '0',
22727   'i18n_status' => '0',
22728 ))
22729 ->values(array(
22730   'lid' => '86',
22731   'translation' => '- Sélectionnez un type de champ -',
22732   'language' => 'fr',
22733   'plid' => '0',
22734   'plural' => '0',
22735   'i18n_status' => '0',
22736 ))
22737 ->values(array(
22738   'lid' => '87',
22739   'translation' => '- Sélectionnez un widget -',
22740   'language' => 'fr',
22741   'plid' => '0',
22742   'plural' => '0',
22743   'i18n_status' => '0',
22744 ))
22745 ->values(array(
22746   'lid' => '88',
22747   'translation' => 'Étiquette',
22748   'language' => 'fr',
22749   'plid' => '0',
22750   'plural' => '0',
22751   'i18n_status' => '0',
22752 ))
22753 ->values(array(
22754   'lid' => '89',
22755   'translation' => 'Nom du champ (a-z, 0-9, _)',
22756   'language' => 'fr',
22757   'plid' => '0',
22758   'plural' => '0',
22759   'i18n_status' => '0',
22760 ))
22761 ->values(array(
22762   'lid' => '90',
22763   'translation' => 'Type de données Ã  stocker.',
22764   'language' => 'fr',
22765   'plid' => '0',
22766   'plural' => '0',
22767   'i18n_status' => '0',
22768 ))
22769 ->values(array(
22770   'lid' => '91',
22771   'translation' => "Elément du formulaire pour l'édition des données.",
22772   'language' => 'fr',
22773   'plid' => '0',
22774   'plural' => '0',
22775   'i18n_status' => '0',
22776 ))
22777 ->values(array(
22778   'lid' => '92',
22779   'translation' => '- Sélectionnez un champ existant -',
22780   'language' => 'fr',
22781   'plid' => '0',
22782   'plural' => '0',
22783   'i18n_status' => '0',
22784 ))
22785 ->values(array(
22786   'lid' => '93',
22787   'translation' => 'Champ Ã  partager',
22788   'language' => 'fr',
22789   'plid' => '0',
22790   'plural' => '0',
22791   'i18n_status' => '0',
22792 ))
22793 ->values(array(
22794   'lid' => '94',
22795   'translation' => 'Nom du groupe (a-z, 0-9, _)',
22796   'language' => 'fr',
22797   'plid' => '0',
22798   'plural' => '0',
22799   'i18n_status' => '0',
22800 ))
22801 ->values(array(
22802   'lid' => '95',
22803   'translation' => 'Enregistrer',
22804   'language' => 'fr',
22805   'plid' => '0',
22806   'plural' => '0',
22807   'i18n_status' => '0',
22808 ))
22809 ->values(array(
22810   'lid' => '96',
22811   'translation' => 'Ajouter un nouveau champ : vous devez fournir une Ã©tiquette.',
22812   'language' => 'fr',
22813   'plid' => '0',
22814   'plural' => '0',
22815   'i18n_status' => '0',
22816 ))
22817 ->values(array(
22818   'lid' => '97',
22819   'translation' => 'Ajouter un nouveau champ : vous devez fournir un nom de champ.',
22820   'language' => 'fr',
22821   'plid' => '0',
22822   'plural' => '0',
22823   'i18n_status' => '0',
22824 ))
22825 ->values(array(
22826   'lid' => '98',
22827   '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. ",
22828   'language' => 'fr',
22829   'plid' => '0',
22830   'plural' => '0',
22831   'i18n_status' => '0',
22832 ))
22833 ->values(array(
22834   'lid' => '99',
22835   '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_'.",
22836   'language' => 'fr',
22837   'plid' => '0',
22838   'plural' => '0',
22839   'i18n_status' => '0',
22840 ))
22841 ->values(array(
22842   'lid' => '100',
22843   'translation' => "Ajouter un nouveau champ : le nom 'field_instance' est un nom réservé.",
22844   'language' => 'fr',
22845   'plid' => '0',
22846   'plural' => '0',
22847   'i18n_status' => '0',
22848 ))
22849 ->values(array(
22850   'lid' => '101',
22851   'translation' => 'Ajouter un nouveau champ : le nom du champ %field_name existe déjà.',
22852   'language' => 'fr',
22853   'plid' => '0',
22854   'plural' => '0',
22855   'i18n_status' => '0',
22856 ))
22857 ->values(array(
22858   'lid' => '102',
22859   'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un type de champ.',
22860   'language' => 'fr',
22861   'plid' => '0',
22862   'plural' => '0',
22863   'i18n_status' => '0',
22864 ))
22865 ->values(array(
22866   'lid' => '103',
22867   'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un widget.',
22868   'language' => 'fr',
22869   'plid' => '0',
22870   'plural' => '0',
22871   'i18n_status' => '0',
22872 ))
22873 ->values(array(
22874   'lid' => '104',
22875   'translation' => 'Ajouter un nouveau champ : widget non valide.',
22876   'language' => 'fr',
22877   'plid' => '0',
22878   'plural' => '0',
22879   'i18n_status' => '0',
22880 ))
22881 ->values(array(
22882   'lid' => '105',
22883   'translation' => 'Ajouter un champ existant : vous devez fournir une Ã©tiquette.',
22884   'language' => 'fr',
22885   'plid' => '0',
22886   'plural' => '0',
22887   'i18n_status' => '0',
22888 ))
22889 ->values(array(
22890   'lid' => '106',
22891   'translation' => 'Ajouter un champ existant : vous devez sélectionner un champ.',
22892   'language' => 'fr',
22893   'plid' => '0',
22894   'plural' => '0',
22895   'i18n_status' => '0',
22896 ))
22897 ->values(array(
22898   'lid' => '107',
22899   'translation' => 'Ajouter un champ existant: vous devez sélectionner un widget.',
22900   'language' => 'fr',
22901   'plid' => '0',
22902   'plural' => '0',
22903   'i18n_status' => '0',
22904 ))
22905 ->values(array(
22906   'lid' => '108',
22907   'translation' => 'Ajouter un champ existant : widget non valide.',
22908   'language' => 'fr',
22909   'plid' => '0',
22910   'plural' => '0',
22911   'i18n_status' => '0',
22912 ))
22913 ->values(array(
22914   'lid' => '109',
22915   'translation' => "Un problème est survenu Ã  la création du champ '%label'.",
22916   'language' => 'fr',
22917   'plid' => '0',
22918   'plural' => '0',
22919   'i18n_status' => '0',
22920 ))
22921 ->values(array(
22922   'lid' => '110',
22923   'translation' => "Le champ %label n'a pas pu Ãªtre ajouté au type de contenu car il est verrouillé.",
22924   'language' => 'fr',
22925   'plid' => '0',
22926   'plural' => '0',
22927   'i18n_status' => '0',
22928 ))
22929 ->values(array(
22930   'lid' => '111',
22931   'translation' => "Un problème est survenu lors de l'ajout du champ '%label'.",
22932   'language' => 'fr',
22933   'plid' => '0',
22934   'plural' => '0',
22935   'i18n_status' => '0',
22936 ))
22937 ->values(array(
22938   'lid' => '112',
22939   '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>.",
22940   'language' => 'fr',
22941   'plid' => '0',
22942   'plural' => '0',
22943   'i18n_status' => '0',
22944 ))
22945 ->values(array(
22946   'lid' => '113',
22947   'translation' => 'Au dessus',
22948   'language' => 'fr',
22949   'plid' => '0',
22950   'plural' => '0',
22951   'i18n_status' => '0',
22952 ))
22953 ->values(array(
22954   'lid' => '114',
22955   'translation' => 'Sur la même ligne',
22956   'language' => 'fr',
22957   'plid' => '0',
22958   'plural' => '0',
22959   'i18n_status' => '0',
22960 ))
22961 ->values(array(
22962   'lid' => '115',
22963   'translation' => 'Inclure',
22964   'language' => 'fr',
22965   'plid' => '0',
22966   'plural' => '0',
22967   'i18n_status' => '0',
22968 ))
22969 ->values(array(
22970   'lid' => '116',
22971   'translation' => 'Exclure',
22972   'language' => 'fr',
22973   'plid' => '0',
22974   'plural' => '0',
22975   'i18n_status' => '0',
22976 ))
22977 ->values(array(
22978   'lid' => '117',
22979   'translation' => 'aucune mise en forme',
22980   'language' => 'fr',
22981   'plid' => '0',
22982   'plural' => '0',
22983   'i18n_status' => '0',
22984 ))
22985 ->values(array(
22986   'lid' => '118',
22987   'translation' => 'simple',
22988   'language' => 'fr',
22989   'plid' => '0',
22990   'plural' => '0',
22991   'i18n_status' => '0',
22992 ))
22993 ->values(array(
22994   'lid' => '119',
22995   'translation' => 'groupe de champs',
22996   'language' => 'fr',
22997   'plid' => '0',
22998   'plural' => '0',
22999   'i18n_status' => '0',
23000 ))
23001 ->values(array(
23002   'lid' => '120',
23003   'translation' => 'groupe de champs - repliable',
23004   'language' => 'fr',
23005   'plid' => '0',
23006   'plural' => '0',
23007   'i18n_status' => '0',
23008 ))
23009 ->values(array(
23010   'lid' => '121',
23011   'translation' => 'groupe de champs - replié',
23012   'language' => 'fr',
23013   'plid' => '0',
23014   'plural' => '0',
23015   'i18n_status' => '0',
23016 ))
23017 ->values(array(
23018   'lid' => '122',
23019   'translation' => 'Vos paramètres ont Ã©té enregistrés.',
23020   'language' => 'fr',
23021   'plid' => '0',
23022   'plural' => '0',
23023   'i18n_status' => '0',
23024 ))
23025 ->values(array(
23026   'lid' => '123',
23027   'translation' => '@type : @field (@label)',
23028   'language' => 'fr',
23029   'plid' => '0',
23030   'plural' => '0',
23031   'i18n_status' => '0',
23032 ))
23033 ->values(array(
23034   'lid' => '124',
23035   'translation' => 'Éditer les informations de base',
23036   'language' => 'fr',
23037   'plid' => '0',
23038   'plural' => '0',
23039   'i18n_status' => '0',
23040 ))
23041 ->values(array(
23042   'lid' => '125',
23043   'translation' => 'Le nom lisible par une machine du champ. Ce nom ne peut Ãªtre changé.',
23044   'language' => 'fr',
23045   'plid' => '0',
23046   'plural' => '0',
23047   'i18n_status' => '0',
23048 ))
23049 ->values(array(
23050   'lid' => '126',
23051   'translation' => "Nom lisible par une personne, destiné Ã  servir d'étiquette pour ce champ au sein du type de contenu '%type'.",
23052   'language' => 'fr',
23053   'plid' => '0',
23054   'plural' => '0',
23055   'i18n_status' => '0',
23056 ))
23057 ->values(array(
23058   'lid' => '127',
23059   '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.',
23060   'language' => 'fr',
23061   'plid' => '0',
23062   'plural' => '0',
23063   'i18n_status' => '0',
23064 ))
23065 ->values(array(
23066   'lid' => '128',
23067   'translation' => 'Type de widget',
23068   'language' => 'fr',
23069   'plid' => '0',
23070   'plural' => '0',
23071   'i18n_status' => '0',
23072 ))
23073 ->values(array(
23074   'lid' => '129',
23075   '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'.",
23076   'language' => 'fr',
23077   'plid' => '0',
23078   'plural' => '0',
23079   'i18n_status' => '0',
23080 ))
23081 ->values(array(
23082   'lid' => '130',
23083   'translation' => 'Continuer',
23084   'language' => 'fr',
23085   'plid' => '0',
23086   'plural' => '0',
23087   'i18n_status' => '0',
23088 ))
23089 ->values(array(
23090   'lid' => '131',
23091   'translation' => 'Les paramètres basiques du champ %label ont Ã©té mis Ã  jour.',
23092   'language' => 'fr',
23093   'plid' => '0',
23094   'plural' => '0',
23095   'i18n_status' => '0',
23096 ))
23097 ->values(array(
23098   'lid' => '132',
23099   'translation' => 'Un problème a Ã©té rencontré lors de la mise Ã  jour des paramètres basiques du champ %label.',
23100   'language' => 'fr',
23101   'plid' => '0',
23102   'plural' => '0',
23103   'i18n_status' => '0',
23104 ))
23105 ->values(array(
23106   'lid' => '133',
23107   'translation' => "Êtes-vous certain de vouloir enlever le champ '%field' ?",
23108   'language' => 'fr',
23109   'plid' => '0',
23110   'plural' => '0',
23111   'i18n_status' => '0',
23112 ))
23113 ->values(array(
23114   'lid' => '134',
23115   'translation' => 'Si vous avez encore du contenu dans ce champ, il sera perdu. Cette action est irréversible.',
23116   'language' => 'fr',
23117   'plid' => '0',
23118   'plural' => '0',
23119   'i18n_status' => '0',
23120 ))
23121 ->values(array(
23122   'lid' => '135',
23123   'translation' => 'Annuler',
23124   'language' => 'fr',
23125   'plid' => '0',
23126   'plural' => '0',
23127   'i18n_status' => '0',
23128 ))
23129 ->values(array(
23130   'lid' => '136',
23131   'translation' => 'Ce champ est <strong>verrouillé</strong> et ne peut Ãªtre supprimé.',
23132   'language' => 'fr',
23133   'plid' => '0',
23134   'plural' => '0',
23135   'i18n_status' => '0',
23136 ))
23137 ->values(array(
23138   'lid' => '137',
23139   'translation' => "Le champ '%field' de '%type' a Ã©té enlevé.",
23140   'language' => 'fr',
23141   'plid' => '0',
23142   'plural' => '0',
23143   'i18n_status' => '0',
23144 ))
23145 ->values(array(
23146   'lid' => '138',
23147   'translation' => "Un problème est survenu Ã  la suppression du champ '%field' du type '%type'.",
23148   'language' => 'fr',
23149   'plid' => '0',
23150   'plural' => '0',
23151   'i18n_status' => '0',
23152 ))
23153 ->values(array(
23154   'lid' => '139',
23155   'translation' => 'Le champ %field est verouillé et ne peut Ãªtre Ã©dité.',
23156   'language' => 'fr',
23157   'plid' => '0',
23158   'plural' => '0',
23159   'i18n_status' => '0',
23160 ))
23161 ->values(array(
23162   'lid' => '140',
23163   'translation' => "Informations de base pour '%type'",
23164   'language' => 'fr',
23165   'plid' => '0',
23166   'plural' => '0',
23167   'i18n_status' => '0',
23168 ))
23169 ->values(array(
23170   'lid' => '141',
23171   'translation' => 'Modifier les informations de base',
23172   'language' => 'fr',
23173   'plid' => '0',
23174   'plural' => '0',
23175   'i18n_status' => '0',
23176 ))
23177 ->values(array(
23178   'lid' => '142',
23179   'translation' => "Paramètres de '%type'",
23180   'language' => 'fr',
23181   'plid' => '0',
23182   'plural' => '0',
23183   'i18n_status' => '0',
23184 ))
23185 ->values(array(
23186   'lid' => '143',
23187   'translation' => "Ces paramètres ne s'applique qu'au champ '%field' tel qu'il apparaît dans le type contenu '%type'.",
23188   'language' => 'fr',
23189   'plid' => '0',
23190   'plural' => '0',
23191   'i18n_status' => '0',
23192 ))
23193 ->values(array(
23194   'lid' => '144',
23195   'translation' => "Texte d'aide",
23196   'language' => 'fr',
23197   'plid' => '0',
23198   'plural' => '0',
23199   'i18n_status' => '0',
23200 ))
23201 ->values(array(
23202   'lid' => '145',
23203   'translation' => "Instructions Ã  présenter Ã  l'utilisateur sous ce champ, dans le formulaire d'édition.<br />Balises HTML autorisées : @tags",
23204   'language' => 'fr',
23205   'plid' => '0',
23206   'plural' => '0',
23207   'i18n_status' => '0',
23208 ))
23209 ->values(array(
23210   'lid' => '146',
23211   'translation' => 'Valeur par défaut',
23212   'language' => 'fr',
23213   'plid' => '0',
23214   'plural' => '0',
23215   'i18n_status' => '0',
23216 ))
23217 ->values(array(
23218   'lid' => '147',
23219   'translation' => 'Code PHP',
23220   'language' => 'fr',
23221   'plid' => '0',
23222   'plural' => '0',
23223   'i18n_status' => '0',
23224 ))
23225 ->values(array(
23226   'lid' => '148',
23227   'translation' => "'@column' => valeur de @column",
23228   'language' => 'fr',
23229   'plid' => '0',
23230   'plural' => '0',
23231   'i18n_status' => '0',
23232 ))
23233 ->values(array(
23234   'lid' => '149',
23235   '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);",
23236   'language' => 'fr',
23237   'plid' => '0',
23238   'plural' => '0',
23239   'i18n_status' => '0',
23240 ))
23241 ->values(array(
23242   'lid' => '150',
23243   'translation' => 'Code',
23244   'language' => 'fr',
23245   'plid' => '0',
23246   'plural' => '0',
23247   'i18n_status' => '0',
23248 ))
23249 ->values(array(
23250   'lid' => '151',
23251   '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.",
23252   'language' => 'fr',
23253   'plid' => '0',
23254   'plural' => '0',
23255   'i18n_status' => '0',
23256 ))
23257 ->values(array(
23258   'lid' => '152',
23259   'translation' => '&lt;aucun&gt;',
23260   'language' => 'fr',
23261   'plid' => '0',
23262   'plural' => '0',
23263   'i18n_status' => '0',
23264 ))
23265 ->values(array(
23266   'lid' => '153',
23267   'translation' => "Vous n'êtes pas autorisé Ã  saisir du code PHP.",
23268   'language' => 'fr',
23269   'plid' => '0',
23270   'plural' => '0',
23271   'i18n_status' => '0',
23272 ))
23273 ->values(array(
23274   'lid' => '154',
23275   'translation' => 'Ce code PHP a Ã©té inséré par un administrateur et supplantera toute valeur spécifiée ci-dessus.',
23276   'language' => 'fr',
23277   'plid' => '0',
23278   'plural' => '0',
23279   'i18n_status' => '0',
23280 ))
23281 ->values(array(
23282   'lid' => '155',
23283   'translation' => 'Paramètres globaux',
23284   'language' => 'fr',
23285   'plid' => '0',
23286   'plural' => '0',
23287   'i18n_status' => '0',
23288 ))
23289 ->values(array(
23290   'lid' => '156',
23291   'translation' => "Ces paramètres s'appliquent au champ '%field' dans tous les types de contenu où il apparaît.",
23292   'language' => 'fr',
23293   'plid' => '0',
23294   'plural' => '0',
23295   'i18n_status' => '0',
23296 ))
23297 ->values(array(
23298   'lid' => '157',
23299   'translation' => 'Obligatoire',
23300   'language' => 'fr',
23301   'plid' => '0',
23302   'plural' => '0',
23303   'i18n_status' => '0',
23304 ))
23305 ->values(array(
23306   'lid' => '158',
23307   'translation' => "Le nombre maximum de valeurs qu'un utilisateur peut entrer pour ce champ.",
23308   'language' => 'fr',
23309   'plid' => '0',
23310   'plural' => '0',
23311   'i18n_status' => '0',
23312 ))
23313 ->values(array(
23314   'lid' => '159',
23315   'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter autant de valeurs qu'ils le souhaitent.",
23316   'language' => 'fr',
23317   'plid' => '0',
23318   'plural' => '0',
23319   'i18n_status' => '0',
23320 ))
23321 ->values(array(
23322   'lid' => '160',
23323   'translation' => 'Attention ! Changer ce paramètre alors que des données ont déjà Ã©té créées peut conduire Ã  perdre des données !',
23324   'language' => 'fr',
23325   'plid' => '0',
23326   'plural' => '0',
23327   'i18n_status' => '0',
23328 ))
23329 ->values(array(
23330   'lid' => '161',
23331   'translation' => 'Nombre de valeurs',
23332   'language' => 'fr',
23333   'plid' => '0',
23334   'plural' => '0',
23335   'i18n_status' => '0',
23336 ))
23337 ->values(array(
23338   'lid' => '162',
23339   'translation' => 'Illimité',
23340   'language' => 'fr',
23341   'plid' => '0',
23342   'plural' => '0',
23343   'i18n_status' => '0',
23344 ))
23345 ->values(array(
23346   'lid' => '163',
23347   'translation' => 'Enregistrer les paramètres du champ',
23348   'language' => 'fr',
23349   'plid' => '0',
23350   'plural' => '0',
23351   'i18n_status' => '0',
23352 ))
23353 ->values(array(
23354   'lid' => '164',
23355   'translation' => "Le code PHP pour la 'valeur par défaut' a retourné @value, qui n'est pas valide.",
23356   'language' => 'fr',
23357   'plid' => '0',
23358   'plural' => '0',
23359   'i18n_status' => '0',
23360 ))
23361 ->values(array(
23362   'lid' => '165',
23363   'translation' => 'La valeur par défaut est invalide.',
23364   'language' => 'fr',
23365   'plid' => '0',
23366   'plural' => '0',
23367   'i18n_status' => '0',
23368 ))
23369 ->values(array(
23370   'lid' => '166',
23371   'translation' => "Le champ '%label' a Ã©té ajouté.",
23372   'language' => 'fr',
23373   'plid' => '0',
23374   'plural' => '0',
23375   'i18n_status' => '0',
23376 ))
23377 ->values(array(
23378   'lid' => '167',
23379   'translation' => "Champ '%label' enregistré.",
23380   'language' => 'fr',
23381   'plid' => '0',
23382   'plural' => '0',
23383   'i18n_status' => '0',
23384 ))
23385 ->values(array(
23386   'lid' => '168',
23387   'translation' => 'Exécution',
23388   'language' => 'fr',
23389   'plid' => '0',
23390   'plural' => '0',
23391   'i18n_status' => '0',
23392 ))
23393 ->values(array(
23394   'lid' => '169',
23395   'translation' => 'La mise Ã  jour a Ã©choué.',
23396   'language' => 'fr',
23397   'plid' => '0',
23398   'plural' => '0',
23399   'i18n_status' => '0',
23400 ))
23401 ->values(array(
23402   'lid' => '170',
23403   'translation' => 'La base de données a Ã©té modifiée et des données ont Ã©té déplacées ou supprimées.',
23404   'language' => 'fr',
23405   'plid' => '0',
23406   'plural' => '0',
23407   'i18n_status' => '0',
23408 ))
23409 ->values(array(
23410   'lid' => '171',
23411   'translation' => 'Une erreur est survenue et a interrompu la modification de la base de données.',
23412   'language' => 'fr',
23413   'plid' => '0',
23414   'plural' => '0',
23415   'i18n_status' => '0',
23416 ))
23417 ->values(array(
23418   'lid' => '172',
23419   'translation' => "'%title' en cours de traitement",
23420   'language' => 'fr',
23421   'plid' => '0',
23422   'plural' => '0',
23423   'i18n_status' => '0',
23424 ))
23425 ->values(array(
23426   'lid' => '173',
23427   'translation' => '%name doit Ãªtre un entier.',
23428   'language' => 'fr',
23429   'plid' => '0',
23430   'plural' => '0',
23431   'i18n_status' => '0',
23432 ))
23433 ->values(array(
23434   'lid' => '174',
23435   'translation' => '%name doit Ãªtre un entier positif.',
23436   'language' => 'fr',
23437   'plid' => '0',
23438   'plural' => '0',
23439   'i18n_status' => '0',
23440 ))
23441 ->values(array(
23442   'lid' => '175',
23443   'translation' => '%name doit Ãªtre un nombre.',
23444   'language' => 'fr',
23445   'plid' => '0',
23446   'plural' => '0',
23447   'i18n_status' => '0',
23448 ))
23449 ->values(array(
23450   'lid' => '176',
23451   'translation' => '1 Ã©lément traité avec succès&nbsp:',
23452   'language' => 'fr',
23453   'plid' => '0',
23454   'plural' => '0',
23455   'i18n_status' => '0',
23456 ))
23457 ->values(array(
23458   'lid' => '177',
23459   'translation' => '@count Ã©léments traités avec succès&nbsp:',
23460   'language' => 'fr',
23461   'plid' => '176',
23462   'plural' => '1',
23463   'i18n_status' => '0',
23464 ))
23465 ->values(array(
23466   'lid' => '178',
23467   'translation' => "La table de champs a Ã©té renommée de '%old_name' Ã  '%new_name' et les instances des champs ont Ã©té mises Ã  jour.",
23468   'language' => 'fr',
23469   'plid' => '0',
23470   'plural' => '0',
23471   'i18n_status' => '0',
23472 ))
23473 ->values(array(
23474   'lid' => '179',
23475   'translation' => "La table de champs '%name' a Ã©té supprimée.",
23476   'language' => 'fr',
23477   'plid' => '0',
23478   'plural' => '0',
23479   'i18n_status' => '0',
23480 ))
23481 ->values(array(
23482   'lid' => '180',
23483   'translation' => 'Ajouter un autre Ã©lément',
23484   'language' => 'fr',
23485   'plid' => '0',
23486   'plural' => '0',
23487   'i18n_status' => '0',
23488 ))
23489 ->values(array(
23490   'lid' => '181',
23491   'translation' => 'Contenu du champ',
23492   'language' => 'fr',
23493   'plid' => '0',
23494   'plural' => '0',
23495   'i18n_status' => '0',
23496 ))
23497 ->values(array(
23498   'lid' => '182',
23499   'translation' => 'Un champ de contenu du node référencé.',
23500   'language' => 'fr',
23501   'plid' => '0',
23502   'plural' => '0',
23503   'i18n_status' => '0',
23504 ))
23505 ->values(array(
23506   'lid' => '183',
23507   'translation' => 'Noeud',
23508   'language' => 'fr',
23509   'plid' => '0',
23510   'plural' => '0',
23511   'i18n_status' => '0',
23512 ))
23513 ->values(array(
23514   'lid' => '184',
23515   'translation' => 'Contexte du noeud',
23516   'language' => 'fr',
23517   'plid' => '0',
23518   'plural' => '0',
23519   'i18n_status' => '0',
23520 ))
23521 ->values(array(
23522   'lid' => '185',
23523   'translation' => 'Titre du bloc',
23524   'language' => 'fr',
23525   'plid' => '0',
23526   'plural' => '0',
23527   'i18n_status' => '0',
23528 ))
23529 ->values(array(
23530   'lid' => '186',
23531   'translation' => 'Caché',
23532   'language' => 'fr',
23533   'plid' => '0',
23534   'plural' => '0',
23535   'i18n_status' => '0',
23536 ))
23537 ->values(array(
23538   'lid' => '187',
23539   'translation' => "Configurer la manière dont l'étiquette est affichée.",
23540   'language' => 'fr',
23541   'plid' => '0',
23542   'plural' => '0',
23543   'i18n_status' => '0',
23544 ))
23545 ->values(array(
23546   'lid' => '188',
23547   'translation' => 'Champ / Formateur',
23548   'language' => 'fr',
23549   'plid' => '0',
23550   'plural' => '0',
23551   'i18n_status' => '0',
23552 ))
23553 ->values(array(
23554   'lid' => '189',
23555   'translation' => 'Sélectionner un champ et un formateur.',
23556   'language' => 'fr',
23557   'plid' => '0',
23558   'plural' => '0',
23559   'i18n_status' => '0',
23560 ))
23561 ->values(array(
23562   'lid' => '190',
23563   'translation' => '"@s" champ @name',
23564   'language' => 'fr',
23565   'plid' => '0',
23566   'plural' => '0',
23567   'i18n_status' => '0',
23568 ))
23569 ->values(array(
23570   'lid' => '191',
23571   'translation' => 'Remplir un champ',
23572   'language' => 'fr',
23573   'plid' => '0',
23574   'plural' => '0',
23575   'i18n_status' => '0',
23576 ))
23577 ->values(array(
23578   'lid' => '192',
23579   'translation' => 'Vous devez vous assurer que le champ existe pour le type de contenu donné.',
23580   'language' => 'fr',
23581   'plid' => '0',
23582   'plural' => '0',
23583   'i18n_status' => '0',
23584 ))
23585 ->values(array(
23586   'lid' => '193',
23587   'translation' => 'Champ',
23588   'language' => 'fr',
23589   'plid' => '0',
23590   'plural' => '0',
23591   'i18n_status' => '0',
23592 ))
23593 ->values(array(
23594   'lid' => '194',
23595   'translation' => 'Sélectionnez le nom-machine du champ.',
23596   'language' => 'fr',
23597   'plid' => '0',
23598   'plural' => '0',
23599   'i18n_status' => '0',
23600 ))
23601 ->values(array(
23602   'lid' => '195',
23603   'translation' => 'Avancé : Préciser les valeurs des champs avec du code PHP',
23604   'language' => 'fr',
23605   'plid' => '0',
23606   'plural' => '0',
23607   'i18n_status' => '0',
23608 ))
23609 ->values(array(
23610   'lid' => '196',
23611   '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.",
23612   'language' => 'fr',
23613   'plid' => '0',
23614   'plural' => '0',
23615   'i18n_status' => '0',
23616 ))
23617 ->values(array(
23618   'lid' => '197',
23619   'translation' => 'Vous devez retourner la valeur par défaut dans le format attendu.',
23620   'language' => 'fr',
23621   'plid' => '0',
23622   'plural' => '0',
23623   'i18n_status' => '0',
23624 ))
23625 ->values(array(
23626   'lid' => '198',
23627   'translation' => "Remplir le champ '@field' de @node",
23628   'language' => 'fr',
23629   'plid' => '0',
23630   'plural' => '0',
23631   'i18n_status' => '0',
23632 ))
23633 ->values(array(
23634   'lid' => '199',
23635   'translation' => 'Le champ possède une valeur',
23636   'language' => 'fr',
23637   'plid' => '0',
23638   'plural' => '0',
23639   'i18n_status' => '0',
23640 ))
23641 ->values(array(
23642   'lid' => '200',
23643   '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.',
23644   'language' => 'fr',
23645   'plid' => '0',
23646   'plural' => '0',
23647   'i18n_status' => '0',
23648 ))
23649 ->values(array(
23650   'lid' => '201',
23651   'translation' => 'Le champ a Ã©té modifié',
23652   'language' => 'fr',
23653   'plid' => '0',
23654   'plural' => '0',
23655   'i18n_status' => '0',
23656 ))
23657 ->values(array(
23658   'lid' => '202',
23659   'translation' => 'Contenu contenant des modifications',
23660   'language' => 'fr',
23661   'plid' => '0',
23662   'plural' => '0',
23663   'i18n_status' => '0',
23664 ))
23665 ->values(array(
23666   'lid' => '203',
23667   'translation' => 'Contenu ne contenant pas de modification',
23668   'language' => 'fr',
23669   'plid' => '0',
23670   'plural' => '0',
23671   'i18n_status' => '0',
23672 ))
23673 ->values(array(
23674   'lid' => '204',
23675   'translation' => "Le champ '@field' de @node possède une valeur",
23676   'language' => 'fr',
23677   'plid' => '0',
23678   'plural' => '0',
23679   'i18n_status' => '0',
23680 ))
23681 ->values(array(
23682   'lid' => '205',
23683   'translation' => 'Sélectionnez le nom-machine du champ Ã  voir.',
23684   'language' => 'fr',
23685   'plid' => '0',
23686   'plural' => '0',
23687   'i18n_status' => '0',
23688 ))
23689 ->values(array(
23690   'lid' => '206',
23691   'translation' => "Le champ '@field' de @node a Ã©té modifié",
23692   'language' => 'fr',
23693   'plid' => '0',
23694   'plural' => '0',
23695   'i18n_status' => '0',
23696 ))
23697 ->values(array(
23698   'lid' => '207',
23699   'translation' => 'Jeton (Token)',
23700   'language' => 'fr',
23701   'plid' => '0',
23702   'plural' => '0',
23703   'i18n_status' => '0',
23704 ))
23705 ->values(array(
23706   'lid' => '208',
23707   'translation' => 'Identifiant du nÅ“ud référencé',
23708   'language' => 'fr',
23709   'plid' => '0',
23710   'plural' => '0',
23711   'i18n_status' => '0',
23712 ))
23713 ->values(array(
23714   'lid' => '209',
23715   'translation' => 'Titre du nÅ“ud référencé',
23716   'language' => 'fr',
23717   'plid' => '0',
23718   'plural' => '0',
23719   'i18n_status' => '0',
23720 ))
23721 ->values(array(
23722   'lid' => '210',
23723   'translation' => 'Titre non filtré du noeud référencé. ATTENTION - saisie brute utilisateur.',
23724   'language' => 'fr',
23725   'plid' => '0',
23726   'plural' => '0',
23727   'i18n_status' => '0',
23728 ))
23729 ->values(array(
23730   'lid' => '211',
23731   'translation' => 'Lien html formaté vers le noeud référencé.',
23732   'language' => 'fr',
23733   'plid' => '0',
23734   'plural' => '0',
23735   'i18n_status' => '0',
23736 ))
23737 ->values(array(
23738   'lid' => '212',
23739   'translation' => 'Alias de chemin relatif vers le noeud référencé.',
23740   'language' => 'fr',
23741   'plid' => '0',
23742   'plural' => '0',
23743   'i18n_status' => '0',
23744 ))
23745 ->values(array(
23746   'lid' => '213',
23747   'translation' => 'Alias de chemin absolu vers le noeud référencé.',
23748   'language' => 'fr',
23749   'plid' => '0',
23750   'plural' => '0',
23751   'i18n_status' => '0',
23752 ))
23753 ->values(array(
23754   'lid' => '214',
23755   'translation' => 'Valeur numérique brute',
23756   'language' => 'fr',
23757   'plid' => '0',
23758   'plural' => '0',
23759   'i18n_status' => '0',
23760 ))
23761 ->values(array(
23762   'lid' => '215',
23763   'translation' => 'Valeur numérique mise en forme',
23764   'language' => 'fr',
23765   'plid' => '0',
23766   'plural' => '0',
23767   'i18n_status' => '0',
23768 ))
23769 ->values(array(
23770   'lid' => '216',
23771   'translation' => 'Texte brut, non filtré',
23772   'language' => 'fr',
23773   'plid' => '0',
23774   'plural' => '0',
23775   'i18n_status' => '0',
23776 ))
23777 ->values(array(
23778   'lid' => '217',
23779   'translation' => 'Texte filtré et mis en forme',
23780   'language' => 'fr',
23781   'plid' => '0',
23782   'plural' => '0',
23783   'i18n_status' => '0',
23784 ))
23785 ->values(array(
23786   'lid' => '218',
23787   'translation' => "Identifiant de l'utilisateur référencé",
23788   'language' => 'fr',
23789   'plid' => '0',
23790   'plural' => '0',
23791   'i18n_status' => '0',
23792 ))
23793 ->values(array(
23794   'lid' => '219',
23795   'translation' => "Nom de l'utilisateur référencé",
23796   'language' => 'fr',
23797   'plid' => '0',
23798   'plural' => '0',
23799   'i18n_status' => '0',
23800 ))
23801 ->values(array(
23802   'lid' => '220',
23803   'translation' => "Lien HTML mis en forme vers l'utilisateur référencé",
23804   'language' => 'fr',
23805   'plid' => '0',
23806   'plural' => '0',
23807   'i18n_status' => '0',
23808 ))
23809 ->values(array(
23810   'lid' => '221',
23811   'translation' => "Alias de chemin relatif vers l'utilisateur référencé.",
23812   'language' => 'fr',
23813   'plid' => '0',
23814   'plural' => '0',
23815   'i18n_status' => '0',
23816 ))
23817 ->values(array(
23818   'lid' => '222',
23819   'translation' => "Alias de chemin absolu vers l'utilisateur référencé.",
23820   'language' => 'fr',
23821   'plid' => '0',
23822   'plural' => '0',
23823   'i18n_status' => '0',
23824 ))
23825 ->values(array(
23826   'lid' => '223',
23827   'translation' => '@label (!name)',
23828   'language' => 'fr',
23829   'plid' => '0',
23830   'plural' => '0',
23831   'i18n_status' => '0',
23832 ))
23833 ->values(array(
23834   'lid' => '224',
23835   'translation' => '@label (!name) - !column',
23836   'language' => 'fr',
23837   'plid' => '0',
23838   'plural' => '0',
23839   'i18n_status' => '0',
23840 ))
23841 ->values(array(
23842   'lid' => '225',
23843   'translation' => '@label-truncated - !column',
23844   'language' => 'fr',
23845   'plid' => '0',
23846   'plural' => '0',
23847   'i18n_status' => '0',
23848 ))
23849 ->values(array(
23850   'lid' => '226',
23851   'translation' => 'Apparaît dans : @types',
23852   'language' => 'fr',
23853   'plid' => '0',
23854   'plural' => '0',
23855   'i18n_status' => '0',
23856 ))
23857 ->values(array(
23858   'lid' => '227',
23859   'translation' => 'Aucun',
23860   'language' => 'fr',
23861   'plid' => '0',
23862   'plural' => '0',
23863   'i18n_status' => '0',
23864 ))
23865 ->values(array(
23866   'lid' => '228',
23867   'translation' => 'Étiquette du widget (@label)',
23868   'language' => 'fr',
23869   'plid' => '0',
23870   'plural' => '0',
23871   'i18n_status' => '0',
23872 ))
23873 ->values(array(
23874   'lid' => '229',
23875   'translation' => 'Personnalisé',
23876   'language' => 'fr',
23877   'plid' => '0',
23878   'plural' => '0',
23879   'i18n_status' => '0',
23880 ))
23881 ->values(array(
23882   'lid' => '230',
23883   'translation' => 'Étiquette personnalisée',
23884   'language' => 'fr',
23885   'plid' => '0',
23886   'plural' => '0',
23887   'i18n_status' => '0',
23888 ))
23889 ->values(array(
23890   'lid' => '231',
23891   'translation' => 'Format',
23892   'language' => 'fr',
23893   'plid' => '0',
23894   'plural' => '0',
23895   'i18n_status' => '0',
23896 ))
23897 ->values(array(
23898   'lid' => '232',
23899   'translation' => 'Grouper plusieurs valeurs',
23900   'language' => 'fr',
23901   'plid' => '0',
23902   'plural' => '0',
23903   'i18n_status' => '0',
23904 ))
23905 ->values(array(
23906   'lid' => '233',
23907   '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. ",
23908   'language' => 'fr',
23909   'plid' => '0',
23910   'plural' => '0',
23911   'i18n_status' => '0',
23912 ))
23913 ->values(array(
23914   'lid' => '234',
23915   'translation' => 'Afficher @count valeur(s)',
23916   'language' => 'fr',
23917   'plid' => '0',
23918   'plural' => '0',
23919   'i18n_status' => '0',
23920 ))
23921 ->values(array(
23922   'lid' => '235',
23923   'translation' => 'en commençant Ã  @count',
23924   'language' => 'fr',
23925   'plid' => '0',
23926   'plural' => '0',
23927   'i18n_status' => '0',
23928 ))
23929 ->values(array(
23930   'lid' => '236',
23931   'translation' => 'Inversé (commencer Ã  partir des dernières valeurs)',
23932   'language' => 'fr',
23933   'plid' => '0',
23934   'plural' => '0',
23935   'i18n_status' => '0',
23936 ))
23937 ->values(array(
23938   'lid' => '237',
23939   'translation' => 'Tous / Toutes',
23940   'language' => 'fr',
23941   'plid' => '0',
23942   'plural' => '0',
23943   'i18n_status' => '0',
23944 ))
23945 ->values(array(
23946   'lid' => '238',
23947   'translation' => 'Delta',
23948   'language' => 'fr',
23949   'plid' => '0',
23950   'plural' => '0',
23951   'i18n_status' => '0',
23952 ))
23953 ->values(array(
23954   'lid' => '239',
23955   '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.",
23956   'language' => 'fr',
23957   'plid' => '0',
23958   'plural' => '0',
23959   'i18n_status' => '0',
23960 ))
23961 ->values(array(
23962   'lid' => '240',
23963   '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.",
23964   'language' => 'fr',
23965   'plid' => '0',
23966   'plural' => '0',
23967   'i18n_status' => '0',
23968 ))
23969 ->values(array(
23970   'lid' => '241',
23971   'translation' => 'Exporter',
23972   'language' => 'fr',
23973   'plid' => '0',
23974   'plural' => '0',
23975   'i18n_status' => '0',
23976 ))
23977 ->values(array(
23978   'lid' => '242',
23979   '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.",
23980   'language' => 'fr',
23981   'plid' => '0',
23982   'plural' => '0',
23983   'i18n_status' => '0',
23984 ))
23985 ->values(array(
23986   'lid' => '243',
23987   'translation' => 'Types',
23988   'language' => 'fr',
23989   'plid' => '0',
23990   'plural' => '0',
23991   'i18n_status' => '0',
23992 ))
23993 ->values(array(
23994   'lid' => '244',
23995   'translation' => 'Sélectionner le type de contenu Ã  exporter.',
23996   'language' => 'fr',
23997   'plid' => '0',
23998   'plural' => '0',
23999   'i18n_status' => '0',
24000 ))
24001 ->values(array(
24002   'lid' => '245',
24003   'translation' => 'Données exportée',
24004   'language' => 'fr',
24005   'plid' => '0',
24006   'plural' => '0',
24007   'i18n_status' => '0',
24008 ))
24009 ->values(array(
24010   'lid' => '246',
24011   'translation' => "Copiez le texte exporté et collez-le dans le type de contenu de votre choix, Ã  l'aide de la fonction d'import.",
24012   'language' => 'fr',
24013   'plid' => '0',
24014   'plural' => '0',
24015   'i18n_status' => '0',
24016 ))
24017 ->values(array(
24018   'lid' => '247',
24019   'translation' => 'Types de contenu',
24020   'language' => 'fr',
24021   'plid' => '0',
24022   'plural' => '0',
24023   'i18n_status' => '0',
24024 ))
24025 ->values(array(
24026   'lid' => '248',
24027   'translation' => 'Type de contenu',
24028   'language' => 'fr',
24029   'plid' => '0',
24030   'plural' => '0',
24031   'i18n_status' => '0',
24032 ))
24033 ->values(array(
24034   'lid' => '249',
24035   '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.',
24036   'language' => 'fr',
24037   'plid' => '0',
24038   'plural' => '0',
24039   'i18n_status' => '0',
24040 ))
24041 ->values(array(
24042   'lid' => '250',
24043   'translation' => 'Données Ã  importer',
24044   'language' => 'fr',
24045   'plid' => '0',
24046   'plural' => '0',
24047   'i18n_status' => '0',
24048 ))
24049 ->values(array(
24050   'lid' => '251',
24051   'translation' => 'Collez dans ce champ le texte créé par un export de contenu.',
24052   'language' => 'fr',
24053   'plid' => '0',
24054   'plural' => '0',
24055   'i18n_status' => '0',
24056 ))
24057 ->values(array(
24058   'lid' => '252',
24059   'translation' => 'Importer',
24060   'language' => 'fr',
24061   'plid' => '0',
24062   'plural' => '0',
24063   'i18n_status' => '0',
24064 ))
24065 ->values(array(
24066   'lid' => '253',
24067   'translation' => "Un fichier a Ã©té préchargé pour l'import.",
24068   'language' => 'fr',
24069   'plid' => '0',
24070   'plural' => '0',
24071   'i18n_status' => '0',
24072 ))
24073 ->values(array(
24074   'lid' => '254',
24075   'translation' => "Les données d'import ne sont valides.",
24076   'language' => 'fr',
24077   'plid' => '0',
24078   'plural' => '0',
24079   'i18n_status' => '0',
24080 ))
24081 ->values(array(
24082   'lid' => '255',
24083   'translation' => "Les modules suivants doivent Ãªtre activés pour que l'import fonctionne : '%modules'.",
24084   'language' => 'fr',
24085   'plid' => '0',
24086   'plural' => '0',
24087   'i18n_status' => '0',
24088 ))
24089 ->values(array(
24090   'lid' => '256',
24091   'translation' => "Le type de contenu '%type' existe déjà dans cette base de données.",
24092   'language' => 'fr',
24093   'plid' => '0',
24094   'plural' => '0',
24095   'i18n_status' => '0',
24096 ))
24097 ->values(array(
24098   'lid' => '257',
24099   'translation' => "Abandon. L'import n'a pas Ã©té réalisé.",
24100   'language' => 'fr',
24101   'plid' => '0',
24102   'plural' => '0',
24103   'i18n_status' => '0',
24104 ))
24105 ->values(array(
24106   'lid' => '258',
24107   '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.",
24108   'language' => 'fr',
24109   'plid' => '0',
24110   'plural' => '0',
24111   'i18n_status' => '0',
24112 ))
24113 ->values(array(
24114   'lid' => '259',
24115   'translation' => "Le champ importé '%field_label' (%field_name) n'a pas Ã©té ajouté Ã  '%type' car ce champ existe déjà.",
24116   'language' => 'fr',
24117   'plid' => '0',
24118   'plural' => '0',
24119   'i18n_status' => '0',
24120 ))
24121 ->values(array(
24122   'lid' => '260',
24123   'translation' => "Le champ importé '%field_label' (%field_name) a Ã©té ajouté au type de contenu '%type'.",
24124   'language' => 'fr',
24125   'plid' => '0',
24126   'plural' => '0',
24127   'i18n_status' => '0',
24128 ))
24129 ->values(array(
24130   'lid' => '261',
24131   'translation' => 'content_copy',
24132   'language' => 'fr',
24133   'plid' => '0',
24134   'plural' => '0',
24135   'i18n_status' => '0',
24136 ))
24137 ->values(array(
24138   'lid' => '262',
24139   'translation' => 'Content Copy',
24140   'language' => 'fr',
24141   'plid' => '0',
24142   'plural' => '0',
24143   'i18n_status' => '0',
24144 ))
24145 ->values(array(
24146   'lid' => '263',
24147   'translation' => "Permet d'importer et d'exporter des définitions de champs.",
24148   'language' => 'fr',
24149   'plid' => '0',
24150   'plural' => '0',
24151   'i18n_status' => '0',
24152 ))
24153 ->values(array(
24154   'lid' => '264',
24155   '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.",
24156   'language' => 'fr',
24157   'plid' => '0',
24158   'plural' => '0',
24159   'i18n_status' => '0',
24160 ))
24161 ->values(array(
24162   'lid' => '265',
24163   'translation' => 'Multigroupe',
24164   'language' => 'fr',
24165   'plid' => '0',
24166   'plural' => '0',
24167   'i18n_status' => '0',
24168 ))
24169 ->values(array(
24170   'lid' => '266',
24171   'translation' => 'Standard',
24172   'language' => 'fr',
24173   'plid' => '0',
24174   'plural' => '0',
24175   'i18n_status' => '0',
24176 ))
24177 ->values(array(
24178   'lid' => '267',
24179   'translation' => 'Type de groupe.',
24180   'language' => 'fr',
24181   'plid' => '0',
24182   'plural' => '0',
24183   'i18n_status' => '0',
24184 ))
24185 ->values(array(
24186   'lid' => '268',
24187   '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.",
24188   'language' => 'fr',
24189   'plid' => '0',
24190   'plural' => '0',
24191   'i18n_status' => '0',
24192 ))
24193 ->values(array(
24194   'lid' => '269',
24195   '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. ",
24196   'language' => 'fr',
24197   'plid' => '0',
24198   'plural' => '0',
24199   'i18n_status' => '0',
24200 ))
24201 ->values(array(
24202   'lid' => '270',
24203   '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. ",
24204   'language' => 'fr',
24205   'plid' => '0',
24206   'plural' => '0',
24207   'i18n_status' => '0',
24208 ))
24209 ->values(array(
24210   'lid' => '271',
24211   'translation' => "Vous Ãªtes en train d'inclure le champ %field dans un Multigroupe",
24212   'language' => 'fr',
24213   'plid' => '0',
24214   'plural' => '0',
24215   'i18n_status' => '0',
24216 ))
24217 ->values(array(
24218   'lid' => '272',
24219   '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.",
24220   'language' => 'fr',
24221   'plid' => '0',
24222   'plural' => '0',
24223   'i18n_status' => '0',
24224 ))
24225 ->values(array(
24226   'lid' => '273',
24227   'translation' => "Vous Ãªtes en train de retirer le champ %field d'un Multigroupe",
24228   'language' => 'fr',
24229   'plid' => '0',
24230   'plural' => '0',
24231   'i18n_status' => '0',
24232 ))
24233 ->values(array(
24234   'lid' => '274',
24235   'translation' => 'Simple',
24236   'language' => 'fr',
24237   'plid' => '0',
24238   'plural' => '0',
24239   'i18n_status' => '0',
24240 ))
24241 ->values(array(
24242   'lid' => '275',
24243   'translation' => 'Groupe de champs',
24244   'language' => 'fr',
24245   'plid' => '0',
24246   'plural' => '0',
24247   'i18n_status' => '0',
24248 ))
24249 ->values(array(
24250   'lid' => '276',
24251   'translation' => 'Ligne horizontale',
24252   'language' => 'fr',
24253   'plid' => '0',
24254   'plural' => '0',
24255   'i18n_status' => '0',
24256 ))
24257 ->values(array(
24258   'lid' => '277',
24259   'translation' => 'Tableau - Colonne unique',
24260   'language' => 'fr',
24261   'plid' => '0',
24262   'plural' => '0',
24263   'i18n_status' => '0',
24264 ))
24265 ->values(array(
24266   'lid' => '278',
24267   'translation' => 'Tableau - Colonnes multiples',
24268   'language' => 'fr',
24269   'plid' => '0',
24270   'plural' => '0',
24271   'i18n_status' => '0',
24272 ))
24273 ->values(array(
24274   'lid' => '279',
24275   'translation' => '[Format du sous-groupe]',
24276   'language' => 'fr',
24277   'plid' => '0',
24278   'plural' => '0',
24279   'i18n_status' => '0',
24280 ))
24281 ->values(array(
24282   'lid' => '280',
24283   'translation' => 'Paramètres multigroupe',
24284   'language' => 'fr',
24285   'plid' => '0',
24286   'plural' => '0',
24287   'i18n_status' => '0',
24288 ))
24289 ->values(array(
24290   'lid' => '281',
24291   'translation' => 'Colonnes multiples',
24292   'language' => 'fr',
24293   'plid' => '0',
24294   'plural' => '0',
24295   'i18n_status' => '0',
24296 ))
24297 ->values(array(
24298   'lid' => '282',
24299   'translation' => "Activez cette option pour rendre chaque champs dans une colonne disctincte sur le formulaire d'édition de noeud.",
24300   'language' => 'fr',
24301   'plid' => '0',
24302   'plural' => '0',
24303   'i18n_status' => '0',
24304 ))
24305 ->values(array(
24306   'lid' => '283',
24307   'translation' => "Activez cette option pour rendre obligatoire un minimum d'une collection de champs dans ce Multigroupe.",
24308   'language' => 'fr',
24309   'plid' => '0',
24310   'plural' => '0',
24311   'i18n_status' => '0',
24312 ))
24313 ->values(array(
24314   'lid' => '284',
24315   'translation' => "Nombre de fois où répéter l'ensemble Multigroupe de champs.",
24316   'language' => 'fr',
24317   'plid' => '0',
24318   'plural' => '0',
24319   'i18n_status' => '0',
24320 ))
24321 ->values(array(
24322   'lid' => '285',
24323   'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter des Ã©léments autant de fois qu'ils le souhaitent.",
24324   'language' => 'fr',
24325   'plid' => '0',
24326   'plural' => '0',
24327   'i18n_status' => '0',
24328 ))
24329 ->values(array(
24330   'lid' => '286',
24331   'translation' => 'Tous les champs de ce groupe seront automatiquement paramétrés pour autoriser ce nombre de valeurs.',
24332   'language' => 'fr',
24333   'plid' => '0',
24334   'plural' => '0',
24335   'i18n_status' => '0',
24336 ))
24337 ->values(array(
24338   'lid' => '287',
24339   'translation' => 'Nombre de répétitions',
24340   'language' => 'fr',
24341   'plid' => '0',
24342   'plural' => '0',
24343   'i18n_status' => '0',
24344 ))
24345 ->values(array(
24346   'lid' => '288',
24347   'translation' => 'Etiquettes',
24348   'language' => 'fr',
24349   'plid' => '0',
24350   'plural' => '0',
24351   'i18n_status' => '0',
24352 ))
24353 ->values(array(
24354   'lid' => '289',
24355   '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'.",
24356   'language' => 'fr',
24357   'plid' => '0',
24358   'plural' => '0',
24359   'i18n_status' => '0',
24360 ))
24361 ->values(array(
24362   'lid' => '290',
24363   'translation' => 'Etiquette du sous-groupe %number',
24364   'language' => 'fr',
24365   'plid' => '0',
24366   'plural' => '0',
24367   'i18n_status' => '0',
24368 ))
24369 ->values(array(
24370   'lid' => '291',
24371   '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.',
24372   'language' => 'fr',
24373   'plid' => '0',
24374   'plural' => '0',
24375   'i18n_status' => '0',
24376 ))
24377 ->values(array(
24378   'lid' => '292',
24379   'translation' => 'Le champ !name est obligatoire dans le groupe @group.',
24380   'language' => 'fr',
24381   'plid' => '0',
24382   'plural' => '0',
24383   'i18n_status' => '0',
24384 ))
24385 ->values(array(
24386   'lid' => '293',
24387   'translation' => 'Le groupe @name requiert au minimum un groupe de champs.',
24388   'language' => 'fr',
24389   'plid' => '0',
24390   'plural' => '0',
24391   'i18n_status' => '0',
24392 ))
24393 ->values(array(
24394   'lid' => '294',
24395   'translation' => 'Ajouter plus de valeurs',
24396   'language' => 'fr',
24397   'plid' => '0',
24398   'plural' => '0',
24399   'i18n_status' => '0',
24400 ))
24401 ->values(array(
24402   'lid' => '295',
24403   'translation' => 'content_multigroup',
24404   'language' => 'fr',
24405   'plid' => '0',
24406   'plural' => '0',
24407   'i18n_status' => '0',
24408 ))
24409 ->values(array(
24410   'lid' => '296',
24411   'translation' => 'Contenu Multigroupe',
24412   'language' => 'fr',
24413   'plid' => '0',
24414   'plural' => '0',
24415   'i18n_status' => '0',
24416 ))
24417 ->values(array(
24418   'lid' => '297',
24419   'translation' => "Combinez de multiples champs CCK au sein de collections de champs qui fonctionnent Ã  l'unisson.",
24420   'language' => 'fr',
24421   'plid' => '0',
24422   'plural' => '0',
24423   'i18n_status' => '0',
24424 ))
24425 ->values(array(
24426   'lid' => '298',
24427   'translation' => 'éditer',
24428   'language' => 'fr',
24429   'plid' => '0',
24430   'plural' => '0',
24431   'i18n_status' => '0',
24432 ))
24433 ->values(array(
24434   'lid' => '299',
24435   'translation' => 'field_name',
24436   'language' => 'fr',
24437   'plid' => '0',
24438   'plural' => '0',
24439   'i18n_status' => '0',
24440 ))
24441 ->values(array(
24442   'lid' => '300',
24443   'translation' => 'voir',
24444   'language' => 'fr',
24445   'plid' => '0',
24446   'plural' => '0',
24447   'i18n_status' => '0',
24448 ))
24449 ->values(array(
24450   'lid' => '301',
24451   'translation' => 'content_permissions',
24452   'language' => 'fr',
24453   'plid' => '0',
24454   'plural' => '0',
24455   'i18n_status' => '0',
24456 ))
24457 ->values(array(
24458   'lid' => '302',
24459   'translation' => 'Veuillez <a href="!url">configurer vos permissions sur les champs</a> immédiatement. Tous les champs sont inaccessibles par défaut.',
24460   'language' => 'fr',
24461   'plid' => '0',
24462   'plural' => '0',
24463   'i18n_status' => '0',
24464 ))
24465 ->values(array(
24466   'lid' => '303',
24467   'translation' => 'Permissions sur les Contenus',
24468   'language' => 'fr',
24469   'plid' => '0',
24470   'plural' => '0',
24471   'i18n_status' => '0',
24472 ))
24473 ->values(array(
24474   'lid' => '304',
24475   'translation' => 'Définit un niveau de permission par champ pour les champs CCK.',
24476   'language' => 'fr',
24477   'plid' => '0',
24478   'plural' => '0',
24479   'i18n_status' => '0',
24480 ))
24481 ->values(array(
24482   'lid' => '305',
24483   'translation' => 'Contenu du groupe de champ',
24484   'language' => 'fr',
24485   'plid' => '0',
24486   'plural' => '0',
24487   'i18n_status' => '0',
24488 ))
24489 ->values(array(
24490   'lid' => '306',
24491   'translation' => "Tous les champs d'un groupe de champs sur le node référencé.",
24492   'language' => 'fr',
24493   'plid' => '0',
24494   'plural' => '0',
24495   'i18n_status' => '0',
24496 ))
24497 ->values(array(
24498   'lid' => '307',
24499   'translation' => '@group_label (@group_type_name)',
24500   'language' => 'fr',
24501   'plid' => '0',
24502   'plural' => '0',
24503   'i18n_status' => '0',
24504 ))
24505 ->values(array(
24506   'lid' => '308',
24507   'translation' => 'Fieldgroup',
24508   'language' => 'fr',
24509   'plid' => '0',
24510   'plural' => '0',
24511   'i18n_status' => '0',
24512 ))
24513 ->values(array(
24514   'lid' => '309',
24515   '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é.",
24516   'language' => 'fr',
24517   'plid' => '0',
24518   'plural' => '0',
24519   'i18n_status' => '0',
24520 ))
24521 ->values(array(
24522   'lid' => '310',
24523   'translation' => '"@s" groupe de champs @name',
24524   'language' => 'fr',
24525   'plid' => '0',
24526   'plural' => '0',
24527   'i18n_status' => '0',
24528 ))
24529 ->values(array(
24530   'lid' => '311',
24531   'translation' => 'Paramètres du formulaire',
24532   'language' => 'fr',
24533   'plid' => '0',
24534   'plural' => '0',
24535   'i18n_status' => '0',
24536 ))
24537 ->values(array(
24538   'lid' => '312',
24539   'translation' => "Ces paramètres s'appliquent au groupe dans le formulaire d'édition de nÅ“ud.",
24540   'language' => 'fr',
24541   'plid' => '0',
24542   'plural' => '0',
24543   'i18n_status' => '0',
24544 ))
24545 ->values(array(
24546   'lid' => '313',
24547   'translation' => 'Style',
24548   'language' => 'fr',
24549   'plid' => '0',
24550   'plural' => '0',
24551   'i18n_status' => '0',
24552 ))
24553 ->values(array(
24554   'lid' => '314',
24555   'translation' => 'toujours déplié',
24556   'language' => 'fr',
24557   'plid' => '0',
24558   'plural' => '0',
24559   'i18n_status' => '0',
24560 ))
24561 ->values(array(
24562   'lid' => '315',
24563   'translation' => 'repliable',
24564   'language' => 'fr',
24565   'plid' => '0',
24566   'plural' => '0',
24567   'i18n_status' => '0',
24568 ))
24569 ->values(array(
24570   'lid' => '316',
24571   'translation' => 'replié',
24572   'language' => 'fr',
24573   'plid' => '0',
24574   'plural' => '0',
24575   'i18n_status' => '0',
24576 ))
24577 ->values(array(
24578   'lid' => '317',
24579   'translation' => "Instructions Ã  présenter Ã  l'utilisateur dans le formulaire d'édition.",
24580   'language' => 'fr',
24581   'plid' => '0',
24582   'plural' => '0',
24583   'i18n_status' => '0',
24584 ))
24585 ->values(array(
24586   'lid' => '318',
24587   'translation' => "Paramètres d'affichage",
24588   'language' => 'fr',
24589   'plid' => '0',
24590   'plural' => '0',
24591   'i18n_status' => '0',
24592 ))
24593 ->values(array(
24594   'lid' => '319',
24595   'translation' => "Ces paramètres s'appliquent au groupe Ã  l'affichage du nÅ“ud.",
24596   'language' => 'fr',
24597   'plid' => '0',
24598   'plural' => '0',
24599   'i18n_status' => '0',
24600 ))
24601 ->values(array(
24602   'lid' => '320',
24603   'translation' => 'Description du groupe.',
24604   'language' => 'fr',
24605   'plid' => '0',
24606   'plural' => '0',
24607   'i18n_status' => '0',
24608 ))
24609 ->values(array(
24610   'lid' => '321',
24611   'translation' => "Êtes-vous sûr(e) de vouloir supprimer le groupe '%label' ?",
24612   'language' => 'fr',
24613   'plid' => '0',
24614   'plural' => '0',
24615   'i18n_status' => '0',
24616 ))
24617 ->values(array(
24618   'lid' => '322',
24619   'translation' => 'Cette action est irréversible.',
24620   'language' => 'fr',
24621   'plid' => '0',
24622   'plural' => '0',
24623   'i18n_status' => '0',
24624 ))
24625 ->values(array(
24626   'lid' => '323',
24627   'translation' => "Le groupe '%group_name' a Ã©té supprimé.",
24628   'language' => 'fr',
24629   'plid' => '0',
24630   'plural' => '0',
24631   'i18n_status' => '0',
24632 ))
24633 ->values(array(
24634   'lid' => '324',
24635   'translation' => 'aucun',
24636   'language' => 'fr',
24637   'plid' => '0',
24638   'plural' => '0',
24639   'i18n_status' => '0',
24640 ))
24641 ->values(array(
24642   'lid' => '325',
24643   'translation' => 'Vous devez fournir une Ã©tiquette.',
24644   'language' => 'fr',
24645   'plid' => '0',
24646   'plural' => '0',
24647   'i18n_status' => '0',
24648 ))
24649 ->values(array(
24650   'lid' => '326',
24651   'translation' => 'Vous devez fournir un nom de groupe',
24652   'language' => 'fr',
24653   'plid' => '0',
24654   'plural' => '0',
24655   'i18n_status' => '0',
24656 ))
24657 ->values(array(
24658   'lid' => '327',
24659   '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.",
24660   'language' => 'fr',
24661   'plid' => '0',
24662   'plural' => '0',
24663   'i18n_status' => '0',
24664 ))
24665 ->values(array(
24666   'lid' => '328',
24667   'translation' => "Le nom de groupe %group_name est trop long. Le nom est limité Ã  32 caractères, le préfixe 'group_' compris.",
24668   'language' => 'fr',
24669   'plid' => '0',
24670   'plural' => '0',
24671   'i18n_status' => '0',
24672 ))
24673 ->values(array(
24674   'lid' => '329',
24675   'translation' => 'Le nom de groupe %group_name existe déjà.',
24676   'language' => 'fr',
24677   'plid' => '0',
24678   'plural' => '0',
24679   'i18n_status' => '0',
24680 ))
24681 ->values(array(
24682   'lid' => '330',
24683   'translation' => 'Ajouter un nouveau groupe :',
24684   'language' => 'fr',
24685   'plid' => '0',
24686   'plural' => '0',
24687   'i18n_status' => '0',
24688 ))
24689 ->values(array(
24690   'lid' => '331',
24691   'translation' => 'Ajouter un nouveau groupe : vous devez fournir une Ã©tiquette.',
24692   'language' => 'fr',
24693   'plid' => '0',
24694   'plural' => '0',
24695   'i18n_status' => '0',
24696 ))
24697 ->values(array(
24698   'lid' => '332',
24699   'translation' => 'Ajouter un nouveau groupe : vous devez fournir un nom de groupe.',
24700   'language' => 'fr',
24701   'plid' => '0',
24702   'plural' => '0',
24703   'i18n_status' => '0',
24704 ))
24705 ->values(array(
24706   'lid' => '333',
24707   'translation' => 'Groupe standard',
24708   'language' => 'fr',
24709   'plid' => '0',
24710   'plural' => '0',
24711   'i18n_status' => '0',
24712 ))
24713 ->values(array(
24714   'lid' => '334',
24715   'translation' => 'Éditer le groupe',
24716   'language' => 'fr',
24717   'plid' => '0',
24718   'plural' => '0',
24719   'i18n_status' => '0',
24720 ))
24721 ->values(array(
24722   'lid' => '335',
24723   'translation' => 'fieldgroup',
24724   'language' => 'fr',
24725   'plid' => '0',
24726   'plural' => '0',
24727   'i18n_status' => '0',
24728 ))
24729 ->values(array(
24730   'lid' => '336',
24731   'translation' => "Créée des groupes d'affichage pour les champs CCK.",
24732   'language' => 'fr',
24733   'plid' => '0',
24734   'plural' => '0',
24735   'i18n_status' => '0',
24736 ))
24737 ->values(array(
24738   'lid' => '337',
24739   'translation' => 'Charge un noeud référencé',
24740   'language' => 'fr',
24741   'plid' => '0',
24742   'plural' => '0',
24743   'i18n_status' => '0',
24744 ))
24745 ->values(array(
24746   'lid' => '338',
24747   'translation' => 'Contenu contenant le champ node reference',
24748   'language' => 'fr',
24749   'plid' => '0',
24750   'plural' => '0',
24751   'i18n_status' => '0',
24752 ))
24753 ->values(array(
24754   'lid' => '339',
24755   'translation' => 'Contenu référencé',
24756   'language' => 'fr',
24757   'plid' => '0',
24758   'plural' => '0',
24759   'i18n_status' => '0',
24760 ))
24761 ->values(array(
24762   'lid' => '340',
24763   'translation' => 'Notez que si le champs possède des valeurs multiples, seul le premier contenu sera chargé.',
24764   'language' => 'fr',
24765   'plid' => '0',
24766   'plural' => '0',
24767   'i18n_status' => '0',
24768 ))
24769 ->values(array(
24770   'lid' => '341',
24771   'translation' => "Il n'y a aucun champ  nodereference défini.",
24772   'language' => 'fr',
24773   'plid' => '0',
24774   'plural' => '0',
24775   'i18n_status' => '0',
24776 ))
24777 ->values(array(
24778   'lid' => '342',
24779   'translation' => 'Node référence',
24780   'language' => 'fr',
24781   'plid' => '0',
24782   'plural' => '0',
24783   'i18n_status' => '0',
24784 ))
24785 ->values(array(
24786   'lid' => '343',
24787   'translation' => "Stocker l'ID du noeud lié en tant que valeur entière.",
24788   'language' => 'fr',
24789   'plid' => '0',
24790   'plural' => '0',
24791   'i18n_status' => '0',
24792 ))
24793 ->values(array(
24794   'lid' => '344',
24795   'translation' => 'Types de contenu pouvant Ãªtre référencés',
24796   'language' => 'fr',
24797   'plid' => '0',
24798   'plural' => '0',
24799   'i18n_status' => '0',
24800 ))
24801 ->values(array(
24802   'lid' => '345',
24803   'translation' => 'Vues par défaut',
24804   'language' => 'fr',
24805   'plid' => '0',
24806   'plural' => '0',
24807   'i18n_status' => '0',
24808 ))
24809 ->values(array(
24810   'lid' => '346',
24811   'translation' => 'Vues Ã©xistantes',
24812   'language' => 'fr',
24813   'plid' => '0',
24814   'plural' => '0',
24815   'i18n_status' => '0',
24816 ))
24817 ->values(array(
24818   'lid' => '347',
24819   'translation' => 'Avancé - NÅ“uds pouvant Ãªtre référencés (Vue)',
24820   'language' => 'fr',
24821   'plid' => '0',
24822   'plural' => '0',
24823   'i18n_status' => '0',
24824 ))
24825 ->values(array(
24826   'lid' => '348',
24827   'translation' => 'Vue utilisée pour sélectionner les noeuds',
24828   'language' => 'fr',
24829   'plid' => '0',
24830   'plural' => '0',
24831   'i18n_status' => '0',
24832 ))
24833 ->values(array(
24834   'lid' => '349',
24835   'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les noeuds pouvant Ãªtre référencés.<br />Note :</p>',
24836   'language' => 'fr',
24837   'plid' => '0',
24838   'plural' => '0',
24839   'i18n_status' => '0',
24840 ))
24841 ->values(array(
24842   'lid' => '350',
24843   '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>",
24844   'language' => 'fr',
24845   'plid' => '0',
24846   'plural' => '0',
24847   'i18n_status' => '0',
24848 ))
24849 ->values(array(
24850   'lid' => '351',
24851   'translation' => 'Arguments de la vue',
24852   'language' => 'fr',
24853   'plid' => '0',
24854   'plural' => '0',
24855   'i18n_status' => '0',
24856 ))
24857 ->values(array(
24858   'lid' => '352',
24859   'translation' => "Fournit une liste d'arguments, séparés par des virgules, Ã  transmettre Ã  la vue.",
24860   'language' => 'fr',
24861   'plid' => '0',
24862   'plural' => '0',
24863   'i18n_status' => '0',
24864 ))
24865 ->values(array(
24866   'lid' => '353',
24867   '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>",
24868   'language' => 'fr',
24869   'plid' => '0',
24870   'plural' => '0',
24871   'i18n_status' => '0',
24872 ))
24873 ->values(array(
24874   'lid' => '354',
24875   'translation' => '%name : saisie non valide.',
24876   'language' => 'fr',
24877   'plid' => '0',
24878   'plural' => '0',
24879   'i18n_status' => '0',
24880 ))
24881 ->values(array(
24882   'lid' => '355',
24883   'translation' => '%name : ce contenu ne peut Ãªtre référencé.',
24884   'language' => 'fr',
24885   'plid' => '0',
24886   'plural' => '0',
24887   'i18n_status' => '0',
24888 ))
24889 ->values(array(
24890   'lid' => '356',
24891   'translation' => 'Titre (avec lien)',
24892   'language' => 'fr',
24893   'plid' => '0',
24894   'plural' => '0',
24895   'i18n_status' => '0',
24896 ))
24897 ->values(array(
24898   'lid' => '357',
24899   'translation' => 'Titre (sans lien)',
24900   'language' => 'fr',
24901   'plid' => '0',
24902   'plural' => '0',
24903   'i18n_status' => '0',
24904 ))
24905 ->values(array(
24906   'lid' => '358',
24907   'translation' => 'Liste de sélection',
24908   'language' => 'fr',
24909   'plid' => '0',
24910   'plural' => '0',
24911   'i18n_status' => '0',
24912 ))
24913 ->values(array(
24914   'lid' => '359',
24915   'translation' => 'Cases Ã  cocher/boutons radio',
24916   'language' => 'fr',
24917   'plid' => '0',
24918   'plural' => '0',
24919   'i18n_status' => '0',
24920 ))
24921 ->values(array(
24922   'lid' => '360',
24923   'translation' => 'Champ texte Ã  auto-complètement',
24924   'language' => 'fr',
24925   'plid' => '0',
24926   'plural' => '0',
24927   'i18n_status' => '0',
24928 ))
24929 ->values(array(
24930   'lid' => '361',
24931   'translation' => "Correspondance de l'autocomplétion",
24932   'language' => 'fr',
24933   'plid' => '0',
24934   'plural' => '0',
24935   'i18n_status' => '0',
24936 ))
24937 ->values(array(
24938   'lid' => '362',
24939   'translation' => 'Commence par',
24940   'language' => 'fr',
24941   'plid' => '0',
24942   'plural' => '0',
24943   'i18n_status' => '0',
24944 ))
24945 ->values(array(
24946   'lid' => '363',
24947   'translation' => 'Contient',
24948   'language' => 'fr',
24949   'plid' => '0',
24950   'plural' => '0',
24951   'i18n_status' => '0',
24952 ))
24953 ->values(array(
24954   'lid' => '364',
24955   '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",
24956   'language' => 'fr',
24957   'plid' => '0',
24958   'plural' => '0',
24959   'i18n_status' => '0',
24960 ))
24961 ->values(array(
24962   'lid' => '365',
24963   'translation' => '%name : différence de titre. Veuillez vérifier votre sélection.',
24964   'language' => 'fr',
24965   'plid' => '0',
24966   'plural' => '0',
24967   'i18n_status' => '0',
24968 ))
24969 ->values(array(
24970   'lid' => '366',
24971   'translation' => "%name : aucun contenu valide n'a Ã©té trouvé pour ce titre.",
24972   'language' => 'fr',
24973   'plid' => '0',
24974   'plural' => '0',
24975   'i18n_status' => '0',
24976 ))
24977 ->values(array(
24978   'lid' => '367',
24979   'translation' => 'Autocomplétion de nodereference',
24980   'language' => 'fr',
24981   'plid' => '0',
24982   'plural' => '0',
24983   'i18n_status' => '0',
24984 ))
24985 ->values(array(
24986   'lid' => '368',
24987   'translation' => 'nodereference',
24988   'language' => 'fr',
24989   'plid' => '0',
24990   'plural' => '0',
24991   'i18n_status' => '0',
24992 ))
24993 ->values(array(
24994   'lid' => '369',
24995   'translation' => 'Node Reference',
24996   'language' => 'fr',
24997   'plid' => '0',
24998   'plural' => '0',
24999   'i18n_status' => '0',
25000 ))
25001 ->values(array(
25002   'lid' => '370',
25003   'translation' => 'Définit un type de champ pour référencer un noeud depuis un autre noeud.',
25004   'language' => 'fr',
25005   'plid' => '0',
25006   'plural' => '0',
25007   'i18n_status' => '0',
25008 ))
25009 ->values(array(
25010   'lid' => '371',
25011   'translation' => 'Entier',
25012   'language' => 'fr',
25013   'plid' => '0',
25014   'plural' => '0',
25015   'i18n_status' => '0',
25016 ))
25017 ->values(array(
25018   'lid' => '372',
25019   'translation' => 'Stocke un nombre dans la base de données en format entier.',
25020   'language' => 'fr',
25021   'plid' => '0',
25022   'plural' => '0',
25023   'i18n_status' => '0',
25024 ))
25025 ->values(array(
25026   'lid' => '373',
25027   'translation' => 'Décimal',
25028   'language' => 'fr',
25029   'plid' => '0',
25030   'plural' => '0',
25031   'i18n_status' => '0',
25032 ))
25033 ->values(array(
25034   'lid' => '374',
25035   'translation' => 'Stocke un nombre dans la base de données en format décimal fixe.',
25036   'language' => 'fr',
25037   'plid' => '0',
25038   'plural' => '0',
25039   'i18n_status' => '0',
25040 ))
25041 ->values(array(
25042   'lid' => '375',
25043   'translation' => 'Réel (Float)',
25044   'language' => 'fr',
25045   'plid' => '0',
25046   'plural' => '0',
25047   'i18n_status' => '0',
25048 ))
25049 ->values(array(
25050   'lid' => '376',
25051   'translation' => 'Stocke un nombre dans la base de données en format réel.',
25052   'language' => 'fr',
25053   'plid' => '0',
25054   'plural' => '0',
25055   'i18n_status' => '0',
25056 ))
25057 ->values(array(
25058   'lid' => '377',
25059   'translation' => 'Minimum',
25060   'language' => 'fr',
25061   'plid' => '0',
25062   'plural' => '0',
25063   'i18n_status' => '0',
25064 ))
25065 ->values(array(
25066   'lid' => '378',
25067   'translation' => 'Maximum',
25068   'language' => 'fr',
25069   'plid' => '0',
25070   'plural' => '0',
25071   'i18n_status' => '0',
25072 ))
25073 ->values(array(
25074   'lid' => '379',
25075   'translation' => 'Précision',
25076   'language' => 'fr',
25077   'plid' => '0',
25078   'plural' => '0',
25079   'i18n_status' => '0',
25080 ))
25081 ->values(array(
25082   'lid' => '380',
25083   'translation' => 'Le nombre total de chiffres Ã  stocker dans la base de données, en incluant ceux Ã  droite de la virgule.',
25084   'language' => 'fr',
25085   'plid' => '0',
25086   'plural' => '0',
25087   'i18n_status' => '0',
25088 ))
25089 ->values(array(
25090   'lid' => '381',
25091   'translation' => 'Echelle',
25092   'language' => 'fr',
25093   'plid' => '0',
25094   'plural' => '0',
25095   'i18n_status' => '0',
25096 ))
25097 ->values(array(
25098   'lid' => '382',
25099   'translation' => 'Le nombre de chiffres Ã  droite de la virgule',
25100   'language' => 'fr',
25101   'plid' => '0',
25102   'plural' => '0',
25103   'i18n_status' => '0',
25104 ))
25105 ->values(array(
25106   'lid' => '383',
25107   'translation' => 'Séparateur de décimales',
25108   'language' => 'fr',
25109   'plid' => '0',
25110   'plural' => '0',
25111   'i18n_status' => '0',
25112 ))
25113 ->values(array(
25114   'lid' => '384',
25115   'translation' => 'Le caractère que les utilisateurs saisiront pour séparer les décimales dans les formulaires.',
25116   'language' => 'fr',
25117   'plid' => '0',
25118   'plural' => '0',
25119   'i18n_status' => '0',
25120 ))
25121 ->values(array(
25122   'lid' => '385',
25123   'translation' => 'Préfixe',
25124   'language' => 'fr',
25125   'plid' => '0',
25126   'plural' => '0',
25127   'i18n_status' => '0',
25128 ))
25129 ->values(array(
25130   'lid' => '386',
25131   '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).',
25132   'language' => 'fr',
25133   'plid' => '0',
25134   'plural' => '0',
25135   'i18n_status' => '0',
25136 ))
25137 ->values(array(
25138   'lid' => '387',
25139   'translation' => 'Suffixe',
25140   'language' => 'fr',
25141   'plid' => '0',
25142   'plural' => '0',
25143   'i18n_status' => '0',
25144 ))
25145 ->values(array(
25146   'lid' => '388',
25147   '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).',
25148   'language' => 'fr',
25149   'plid' => '0',
25150   'plural' => '0',
25151   'i18n_status' => '0',
25152 ))
25153 ->values(array(
25154   'lid' => '389',
25155   'translation' => 'Valeurs autorisées',
25156   'language' => 'fr',
25157   'plid' => '0',
25158   'plural' => '0',
25159   'i18n_status' => '0',
25160 ))
25161 ->values(array(
25162   'lid' => '390',
25163   'translation' => 'Liste des valeurs autorisées',
25164   'language' => 'fr',
25165   'plid' => '0',
25166   'plural' => '0',
25167   'i18n_status' => '0',
25168 ))
25169 ->values(array(
25170   'lid' => '391',
25171   '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",
25172   'language' => 'fr',
25173   'plid' => '0',
25174   'plural' => '0',
25175   'i18n_status' => '0',
25176 ))
25177 ->values(array(
25178   'lid' => '392',
25179   '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.',
25180   'language' => 'fr',
25181   'plid' => '0',
25182   'plural' => '0',
25183   'i18n_status' => '0',
25184 ))
25185 ->values(array(
25186   'lid' => '393',
25187   'translation' => 'Ce code PHP a Ã©té saisi par un administrateur et supplantera la liste des valeurs permises ci-dessus.',
25188   'language' => 'fr',
25189   'plid' => '0',
25190   'plural' => '0',
25191   'i18n_status' => '0',
25192 ))
25193 ->values(array(
25194   'lid' => '394',
25195   'translation' => '@label (!name) - Valeurs autorisées',
25196   'language' => 'fr',
25197   'plid' => '0',
25198   'plural' => '0',
25199   'i18n_status' => '0',
25200 ))
25201 ->values(array(
25202   'lid' => '395',
25203   'translation' => '"Minimum" doit Ãªtre un nombre.',
25204   'language' => 'fr',
25205   'plid' => '0',
25206   'plural' => '0',
25207   'i18n_status' => '0',
25208 ))
25209 ->values(array(
25210   'lid' => '396',
25211   'translation' => '"Maximum" doit Ãªtre un nombre.',
25212   'language' => 'fr',
25213   'plid' => '0',
25214   'plural' => '0',
25215   'i18n_status' => '0',
25216 ))
25217 ->values(array(
25218   'lid' => '397',
25219   'translation' => '%name : la valeur ne peut Ãªtre inférieure Ã  %min.',
25220   'language' => 'fr',
25221   'plid' => '0',
25222   'plural' => '0',
25223   'i18n_status' => '0',
25224 ))
25225 ->values(array(
25226   'lid' => '398',
25227   'translation' => '%name : la valeur ne peut Ãªtre supérieure Ã  %max.',
25228   'language' => 'fr',
25229   'plid' => '0',
25230   'plural' => '0',
25231   'i18n_status' => '0',
25232 ))
25233 ->values(array(
25234   'lid' => '399',
25235   'translation' => '%name : valeur illégale.',
25236   'language' => 'fr',
25237   'plid' => '0',
25238   'plural' => '0',
25239   'i18n_status' => '0',
25240 ))
25241 ->values(array(
25242   'lid' => '400',
25243   'translation' => 'non mis en forme',
25244   'language' => 'fr',
25245   'plid' => '0',
25246   'plural' => '0',
25247   'i18n_status' => '0',
25248 ))
25249 ->values(array(
25250   'lid' => '401',
25251   'translation' => 'Champ texte',
25252   'language' => 'fr',
25253   'plid' => '0',
25254   'plural' => '0',
25255   'i18n_status' => '0',
25256 ))
25257 ->values(array(
25258   'lid' => '402',
25259   'translation' => 'Seuls les nombres et les décimaux sont autorisés dans %field.',
25260   'language' => 'fr',
25261   'plid' => '0',
25262   'plural' => '0',
25263   'i18n_status' => '0',
25264 ))
25265 ->values(array(
25266   'lid' => '403',
25267   'translation' => 'Seuls les nombres sont autorisés dans %field.',
25268   'language' => 'fr',
25269   'plid' => '0',
25270   'plural' => '0',
25271   'i18n_status' => '0',
25272 ))
25273 ->values(array(
25274   'lid' => '404',
25275   'translation' => 'Seuls les nombres et le caractère décimal (%decimal) sont autorisés dans %field.',
25276   'language' => 'fr',
25277   'plid' => '0',
25278   'plural' => '0',
25279   'i18n_status' => '0',
25280 ))
25281 ->values(array(
25282   'lid' => '405',
25283   'translation' => 'nombre',
25284   'language' => 'fr',
25285   'plid' => '0',
25286   'plural' => '0',
25287   'i18n_status' => '0',
25288 ))
25289 ->values(array(
25290   'lid' => '406',
25291   'translation' => 'Nombre',
25292   'language' => 'fr',
25293   'plid' => '0',
25294   'plural' => '0',
25295   'i18n_status' => '0',
25296 ))
25297 ->values(array(
25298   'lid' => '407',
25299   'translation' => 'Définit des types de champs numériques.',
25300   'language' => 'fr',
25301   'plid' => '0',
25302   'plural' => '0',
25303   'i18n_status' => '0',
25304 ))
25305 ->values(array(
25306   'lid' => '408',
25307   '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.",
25308   'language' => 'fr',
25309   'plid' => '0',
25310   'plural' => '0',
25311   'i18n_status' => '0',
25312 ))
25313 ->values(array(
25314   'lid' => '409',
25315   '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'.",
25316   'language' => 'fr',
25317   'plid' => '0',
25318   'plural' => '0',
25319   'i18n_status' => '0',
25320 ))
25321 ->values(array(
25322   'lid' => '410',
25323   '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.",
25324   'language' => 'fr',
25325   'plid' => '0',
25326   'plural' => '0',
25327   'i18n_status' => '0',
25328 ))
25329 ->values(array(
25330   'lid' => '411',
25331   'translation' => "Vous devez préciser les 'valeurs autorisées' pour ce champ.",
25332   'language' => 'fr',
25333   'plid' => '0',
25334   'plural' => '0',
25335   'i18n_status' => '0',
25336 ))
25337 ->values(array(
25338   'lid' => '412',
25339   'translation' => 'Case Ã  cocher on/off unique',
25340   'language' => 'fr',
25341   'plid' => '0',
25342   'plural' => '0',
25343   'i18n_status' => '0',
25344 ))
25345 ->values(array(
25346   'lid' => '413',
25347   'translation' => '%name : ce champ ne peut contenir plus de @count valeurs.',
25348   'language' => 'fr',
25349   'plid' => '0',
25350   'plural' => '0',
25351   'i18n_status' => '0',
25352 ))
25353 ->values(array(
25354   'lid' => '414',
25355   'translation' => 'N/A',
25356   'language' => 'fr',
25357   'plid' => '0',
25358   'plural' => '0',
25359   'i18n_status' => '0',
25360 ))
25361 ->values(array(
25362   'lid' => '415',
25363   'translation' => '- Aucun -',
25364   'language' => 'fr',
25365   'plid' => '0',
25366   'plural' => '0',
25367   'i18n_status' => '0',
25368 ))
25369 ->values(array(
25370   'lid' => '416',
25371   'translation' => 'optionwidgets',
25372   'language' => 'fr',
25373   'plid' => '0',
25374   'plural' => '0',
25375   'i18n_status' => '0',
25376 ))
25377 ->values(array(
25378   'lid' => '417',
25379   'translation' => 'Option Widgets',
25380   'language' => 'fr',
25381   'plid' => '0',
25382   'plural' => '0',
25383   'i18n_status' => '0',
25384 ))
25385 ->values(array(
25386   'lid' => '418',
25387   'translation' => 'Définit des widgets de liste déroulante, case Ã  cocher et bouton radio pour des champs texte et numériques.',
25388   'language' => 'fr',
25389   'plid' => '0',
25390   'plural' => '0',
25391   'i18n_status' => '0',
25392 ))
25393 ->values(array(
25394   'lid' => '419',
25395   'translation' => 'Enregistre le texte dans la base de données.',
25396   'language' => 'fr',
25397   'plid' => '0',
25398   'plural' => '0',
25399   'i18n_status' => '0',
25400 ))
25401 ->values(array(
25402   'lid' => '420',
25403   'translation' => 'Texte simple',
25404   'language' => 'fr',
25405   'plid' => '0',
25406   'plural' => '0',
25407   'i18n_status' => '0',
25408 ))
25409 ->values(array(
25410   'lid' => '421',
25411   'translation' => "Texte filtré (l'utilisateur choisit le format d'entrée)",
25412   'language' => 'fr',
25413   'plid' => '0',
25414   'plural' => '0',
25415   'i18n_status' => '0',
25416 ))
25417 ->values(array(
25418   'lid' => '422',
25419   'translation' => 'Traitement du texte',
25420   'language' => 'fr',
25421   'plid' => '0',
25422   'plural' => '0',
25423   'i18n_status' => '0',
25424 ))
25425 ->values(array(
25426   'lid' => '423',
25427   'translation' => 'Taille maximale',
25428   'language' => 'fr',
25429   'plid' => '0',
25430   'plural' => '0',
25431   'i18n_status' => '0',
25432 ))
25433 ->values(array(
25434   'lid' => '424',
25435   'translation' => 'La taille maximale des champs, en caractères. Laisser vide pour ne pas limiter la taille.',
25436   'language' => 'fr',
25437   'plid' => '0',
25438   'plural' => '0',
25439   'i18n_status' => '0',
25440 ))
25441 ->values(array(
25442   'lid' => '425',
25443   'translation' => '%name : la valeur ne doit pas dépasser %max caractères.',
25444   'language' => 'fr',
25445   'plid' => '0',
25446   'plural' => '0',
25447   'i18n_status' => '0',
25448 ))
25449 ->values(array(
25450   'lid' => '426',
25451   'translation' => 'Par défaut',
25452   'language' => 'fr',
25453   'plid' => '0',
25454   'plural' => '0',
25455   'i18n_status' => '0',
25456 ))
25457 ->values(array(
25458   'lid' => '427',
25459   'translation' => 'Coupé',
25460   'language' => 'fr',
25461   'plid' => '0',
25462   'plural' => '0',
25463   'i18n_status' => '0',
25464 ))
25465 ->values(array(
25466   'lid' => '428',
25467   'translation' => 'Zone de texte (plusieurs lignes)',
25468   'language' => 'fr',
25469   'plid' => '0',
25470   'plural' => '0',
25471   'i18n_status' => '0',
25472 ))
25473 ->values(array(
25474   'lid' => '429',
25475   'translation' => 'Taille du champ texte',
25476   'language' => 'fr',
25477   'plid' => '0',
25478   'plural' => '0',
25479   'i18n_status' => '0',
25480 ))
25481 ->values(array(
25482   'lid' => '430',
25483   'translation' => 'Rangées',
25484   'language' => 'fr',
25485   'plid' => '0',
25486   'plural' => '0',
25487   'i18n_status' => '0',
25488 ))
25489 ->values(array(
25490   'lid' => '431',
25491   'translation' => 'texte',
25492   'language' => 'fr',
25493   'plid' => '0',
25494   'plural' => '0',
25495   'i18n_status' => '0',
25496 ))
25497 ->values(array(
25498   'lid' => '432',
25499   'translation' => 'Définit les types de champs en texte simple.',
25500   'language' => 'fr',
25501   'plid' => '0',
25502   'plural' => '0',
25503   'i18n_status' => '0',
25504 ))
25505 ->values(array(
25506   'lid' => '433',
25507   'translation' => 'Charge un utilisateur référencé',
25508   'language' => 'fr',
25509   'plid' => '0',
25510   'plural' => '0',
25511   'i18n_status' => '0',
25512 ))
25513 ->values(array(
25514   'lid' => '434',
25515   'translation' => 'Contenu contenant le champ userrefernece',
25516   'language' => 'fr',
25517   'plid' => '0',
25518   'plural' => '0',
25519   'i18n_status' => '0',
25520 ))
25521 ->values(array(
25522   'lid' => '435',
25523   'translation' => 'Utilisateur référencé',
25524   'language' => 'fr',
25525   'plid' => '0',
25526   'plural' => '0',
25527   'i18n_status' => '0',
25528 ))
25529 ->values(array(
25530   'lid' => '436',
25531   'translation' => 'Noter que si le champ possède des valeurs multiples, seul le premier utilisateur sera chargé',
25532   'language' => 'fr',
25533   'plid' => '0',
25534   'plural' => '0',
25535   'i18n_status' => '0',
25536 ))
25537 ->values(array(
25538   'lid' => '437',
25539   'translation' => "Il n'y a aucun champ userreference défini",
25540   'language' => 'fr',
25541   'plid' => '0',
25542   'plural' => '0',
25543   'i18n_status' => '0',
25544 ))
25545 ->values(array(
25546   'lid' => '438',
25547   'translation' => 'User reference',
25548   'language' => 'fr',
25549   'plid' => '0',
25550   'plural' => '0',
25551   'i18n_status' => '0',
25552 ))
25553 ->values(array(
25554   'lid' => '439',
25555   'translation' => "Stocke l'ID d'un utilisateur lié sous forme d'entier",
25556   'language' => 'fr',
25557   'plid' => '0',
25558   'plural' => '0',
25559   'i18n_status' => '0',
25560 ))
25561 ->values(array(
25562   'lid' => '440',
25563   'translation' => 'Rôles utilisateur pouvant Ãªtre référencés',
25564   'language' => 'fr',
25565   'plid' => '0',
25566   'plural' => '0',
25567   'i18n_status' => '0',
25568 ))
25569 ->values(array(
25570   'lid' => '441',
25571   'translation' => 'Statuts utilisateur pouvant Ãªtre référencés',
25572   'language' => 'fr',
25573   'plid' => '0',
25574   'plural' => '0',
25575   'i18n_status' => '0',
25576 ))
25577 ->values(array(
25578   'lid' => '442',
25579   'translation' => 'Actif',
25580   'language' => 'fr',
25581   'plid' => '0',
25582   'plural' => '0',
25583   'i18n_status' => '0',
25584 ))
25585 ->values(array(
25586   'lid' => '443',
25587   'translation' => 'Bloqué',
25588   'language' => 'fr',
25589   'plid' => '0',
25590   'plural' => '0',
25591   'i18n_status' => '0',
25592 ))
25593 ->values(array(
25594   'lid' => '444',
25595   'translation' => 'Avancé - Utilisateurs pouvant Ãªtre référencés (Vue)',
25596   'language' => 'fr',
25597   'plid' => '0',
25598   'plural' => '0',
25599   'i18n_status' => '0',
25600 ))
25601 ->values(array(
25602   'lid' => '445',
25603   'translation' => 'Vue utilisée pour sélectionner les utilisateurs',
25604   'language' => 'fr',
25605   'plid' => '0',
25606   'plural' => '0',
25607   'i18n_status' => '0',
25608 ))
25609 ->values(array(
25610   'lid' => '446',
25611   'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les utilisateurs pouvant Ãªtre référencés.<br />Note :</p>',
25612   'language' => 'fr',
25613   'plid' => '0',
25614   'plural' => '0',
25615   'i18n_status' => '0',
25616 ))
25617 ->values(array(
25618   'lid' => '447',
25619   '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>",
25620   'language' => 'fr',
25621   'plid' => '0',
25622   'plural' => '0',
25623   'i18n_status' => '0',
25624 ))
25625 ->values(array(
25626   'lid' => '448',
25627   '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>",
25628   'language' => 'fr',
25629   'plid' => '0',
25630   'plural' => '0',
25631   'i18n_status' => '0',
25632 ))
25633 ->values(array(
25634   'lid' => '449',
25635   'translation' => '%name : utilisateur invalide.',
25636   'language' => 'fr',
25637   'plid' => '0',
25638   'plural' => '0',
25639   'i18n_status' => '0',
25640 ))
25641 ->values(array(
25642   'lid' => '450',
25643   '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.",
25644   'language' => 'fr',
25645   'plid' => '0',
25646   'plural' => '0',
25647   'i18n_status' => '0',
25648 ))
25649 ->values(array(
25650   'lid' => '451',
25651   'translation' => 'Lien retour',
25652   'language' => 'fr',
25653   'plid' => '0',
25654   'plural' => '0',
25655   'i18n_status' => '0',
25656 ))
25657 ->values(array(
25658   'lid' => '452',
25659   '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é.",
25660   'language' => 'fr',
25661   'plid' => '0',
25662   'plural' => '0',
25663   'i18n_status' => '0',
25664 ))
25665 ->values(array(
25666   'lid' => '453',
25667   'translation' => "%name : nous n'avons pas trouvé d'utilisateur valide pour ce nom.",
25668   'language' => 'fr',
25669   'plid' => '0',
25670   'plural' => '0',
25671   'i18n_status' => '0',
25672 ))
25673 ->values(array(
25674   'lid' => '454',
25675   'translation' => 'Contenu lié',
25676   'language' => 'fr',
25677   'plid' => '0',
25678   'plural' => '0',
25679   'i18n_status' => '0',
25680 ))
25681 ->values(array(
25682   'lid' => '455',
25683   'translation' => 'Autocomplétion Userreference',
25684   'language' => 'fr',
25685   'plid' => '0',
25686   'plural' => '0',
25687   'i18n_status' => '0',
25688 ))
25689 ->values(array(
25690   'lid' => '456',
25691   'translation' => 'userreference',
25692   'language' => 'fr',
25693   'plid' => '0',
25694   'plural' => '0',
25695   'i18n_status' => '0',
25696 ))
25697 ->values(array(
25698   'lid' => '457',
25699   'translation' => 'User Reference',
25700   'language' => 'fr',
25701   'plid' => '0',
25702   'plural' => '0',
25703   'i18n_status' => '0',
25704 ))
25705 ->values(array(
25706   'lid' => '458',
25707   'translation' => 'Définit un type de champ pour référencer un utilisateur depuis un noeud.',
25708   'language' => 'fr',
25709   'plid' => '0',
25710   'plural' => '0',
25711   'i18n_status' => '0',
25712 ))
25713 ->values(array(
25714   'lid' => '459',
25715   'translation' => 'Poids',
25716   'language' => 'fr',
25717   'plid' => '0',
25718   'plural' => '0',
25719   'i18n_status' => '0',
25720 ))
25721 ->values(array(
25722   'lid' => '460',
25723   'translation' => 'Ajouter',
25724   'language' => 'fr',
25725   'plid' => '0',
25726   'plural' => '0',
25727   'i18n_status' => '0',
25728 ))
25729 ->values(array(
25730   'lid' => '461',
25731   'translation' => 'Nouveau champ',
25732   'language' => 'fr',
25733   'plid' => '0',
25734   'plural' => '0',
25735   'i18n_status' => '0',
25736 ))
25737 ->values(array(
25738   'lid' => '462',
25739   'translation' => 'Champ existant',
25740   'language' => 'fr',
25741   'plid' => '0',
25742   'plural' => '0',
25743   'i18n_status' => '0',
25744 ))
25745 ->values(array(
25746   'lid' => '463',
25747   'translation' => 'Nouveau groupe',
25748   'language' => 'fr',
25749   'plid' => '0',
25750   'plural' => '0',
25751   'i18n_status' => '0',
25752 ))
25753 ->values(array(
25754   'lid' => '464',
25755   '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.",
25756   'language' => 'fr',
25757   'plid' => '0',
25758   'plural' => '0',
25759   'i18n_status' => '0',
25760 ))
25761 ->values(array(
25762   'lid' => '465',
25763   'translation' => 'Vous pouvez ajouter un champ Ã  un groupe en le faisant glisser ci-dessous et Ã  la droite du groupe.',
25764   'language' => 'fr',
25765   'plid' => '0',
25766   'plural' => '0',
25767   'i18n_status' => '0',
25768 ))
25769 ->values(array(
25770   'lid' => '466',
25771   '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é.",
25772   'language' => 'fr',
25773   'plid' => '0',
25774   'plural' => '0',
25775   'i18n_status' => '0',
25776 ))
25777 ->values(array(
25778   'lid' => '467',
25779   'translation' => "Utiliser la case Ã  cocher 'Exclure' pour exclure un Ã©lément de la valeur de !content transmis au gabarit du node.",
25780   'language' => 'fr',
25781   'plid' => '0',
25782   'plural' => '0',
25783   'i18n_status' => '0',
25784 ))
25785 ->values(array(
25786   'lid' => '468',
25787   'translation' => 'Supprimer cet Ã©lément',
25788   'language' => 'fr',
25789   'plid' => '0',
25790   'plural' => '0',
25791   'i18n_status' => '0',
25792 ))
25793 ->values(array(
25794   'lid' => '469',
25795   'translation' => 'Ajouter un champ',
25796   'language' => 'fr',
25797   'plid' => '0',
25798   'plural' => '0',
25799   'i18n_status' => '0',
25800 ))
25801 ->values(array(
25802   'lid' => '470',
25803   'translation' => "Valeur illégale pour le champ '%name'.",
25804   'language' => 'fr',
25805   'plid' => '0',
25806   'plural' => '0',
25807   'i18n_status' => '0',
25808 ))
25809 ->values(array(
25810   'lid' => '471',
25811   'translation' => "La longueur de '%label' dépasse %max caractères.",
25812   'language' => 'fr',
25813   'plid' => '0',
25814   'plural' => '0',
25815   'i18n_status' => '0',
25816 ))
25817 ->values(array(
25818   'lid' => '472',
25819   'translation' => "Le champ 'Rangées' doit Ãªtre un entier positif.",
25820   'language' => 'fr',
25821   'plid' => '0',
25822   'plural' => '0',
25823   'i18n_status' => '0',
25824 ))
25825 ->values(array(
25826   'lid' => '473',
25827   '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",
25828   'language' => 'fr',
25829   'plid' => '0',
25830   'plural' => '0',
25831   'i18n_status' => '0',
25832 ))
25833 ->values(array(
25834   'lid' => '474',
25835   'translation' => 'ajouter un champ',
25836   'language' => 'fr',
25837   'plid' => '0',
25838   'plural' => '0',
25839   'i18n_status' => '0',
25840 ))
25841 ->values(array(
25842   'lid' => '475',
25843   'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez néanmoins dès maintenant !link.",
25844   'language' => 'fr',
25845   'plid' => '0',
25846   'plural' => '0',
25847   'i18n_status' => '0',
25848 ))
25849 ->values(array(
25850   'lid' => '476',
25851   'translation' => 'ajouter un nouveau champ',
25852   'language' => 'fr',
25853   'plid' => '0',
25854   'plural' => '0',
25855   'i18n_status' => '0',
25856 ))
25857 ->values(array(
25858   'lid' => '477',
25859   '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.",
25860   'language' => 'fr',
25861   'plid' => '0',
25862   'plural' => '0',
25863   'i18n_status' => '0',
25864 ))
25865 ->values(array(
25866   'lid' => '478',
25867   '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.",
25868   'language' => 'fr',
25869   'plid' => '0',
25870   'plural' => '0',
25871   'i18n_status' => '0',
25872 ))
25873 ->values(array(
25874   'lid' => '479',
25875   'translation' => 'Ajouter un champ existant',
25876   'language' => 'fr',
25877   'plid' => '0',
25878   'plural' => '0',
25879   'i18n_status' => '0',
25880 ))
25881 ->values(array(
25882   'lid' => '480',
25883   'translation' => 'Créer un nouveau champ',
25884   'language' => 'fr',
25885   'plid' => '0',
25886   'plural' => '0',
25887   'i18n_status' => '0',
25888 ))
25889 ->values(array(
25890   'lid' => '481',
25891   'translation' => 'Nom du champ, lisible par une machine.',
25892   'language' => 'fr',
25893   'plid' => '0',
25894   'plural' => '0',
25895   'i18n_status' => '0',
25896 ))
25897 ->values(array(
25898   'lid' => '482',
25899   'translation' => ' Ce nom ne peut Ãªtre modifié.',
25900   'language' => 'fr',
25901   'plid' => '0',
25902   'plural' => '0',
25903   'i18n_status' => '0',
25904 ))
25905 ->values(array(
25906   'lid' => '483',
25907   '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.",
25908   'language' => 'fr',
25909   'plid' => '0',
25910   'plural' => '0',
25911   'i18n_status' => '0',
25912 ))
25913 ->values(array(
25914   'lid' => '484',
25915   'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données.',
25916   'language' => 'fr',
25917   'plid' => '0',
25918   'plural' => '0',
25919   'i18n_status' => '0',
25920 ))
25921 ->values(array(
25922   'lid' => '485',
25923   '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.",
25924   'language' => 'fr',
25925   'plid' => '0',
25926   'plural' => '0',
25927   'i18n_status' => '0',
25928 ))
25929 ->values(array(
25930   'lid' => '486',
25931   '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_'.",
25932   'language' => 'fr',
25933   'plid' => '0',
25934   'plural' => '0',
25935   'i18n_status' => '0',
25936 ))
25937 ->values(array(
25938   'lid' => '487',
25939   'translation' => "Le nom de champ '%field_name' existe déjà.",
25940   'language' => 'fr',
25941   'plid' => '0',
25942   'plural' => '0',
25943   'i18n_status' => '0',
25944 ))
25945 ->values(array(
25946   'lid' => '488',
25947   'translation' => "Le nom 'field_instance' est un nom réservé.",
25948   'language' => 'fr',
25949   'plid' => '0',
25950   'plural' => '0',
25951   'i18n_status' => '0',
25952 ))
25953 ->values(array(
25954   'lid' => '489',
25955   'translation' => "Le champ '%label' a Ã©té créé.",
25956   'language' => 'fr',
25957   'plid' => '0',
25958   'plural' => '0',
25959   'i18n_status' => '0',
25960 ))
25961 ->values(array(
25962   'lid' => '490',
25963   'translation' => "Mettre Ã  jour le champ '%label'.",
25964   'language' => 'fr',
25965   'plid' => '0',
25966   'plural' => '0',
25967   'i18n_status' => '0',
25968 ))
25969 ->values(array(
25970   'lid' => '491',
25971   'translation' => "Un problème est survenu Ã  la mise Ã  jour du champ '%label'.",
25972   'language' => 'fr',
25973   'plid' => '0',
25974   'plural' => '0',
25975   'i18n_status' => '0',
25976 ))
25977 ->values(array(
25978   'lid' => '492',
25979   '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.",
25980   'language' => 'fr',
25981   'plid' => '0',
25982   'plural' => '0',
25983   'i18n_status' => '0',
25984 ))
25985 ->values(array(
25986   'lid' => '493',
25987   '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.",
25988   'language' => 'fr',
25989   'plid' => '0',
25990   'plural' => '0',
25991   'i18n_status' => '0',
25992 ))
25993 ->values(array(
25994   'lid' => '494',
25995   'translation' => 'Le code PHP de valeur par défaut a créé @value, qui est invalide.',
25996   'language' => 'fr',
25997   'plid' => '0',
25998   'plural' => '0',
25999   'i18n_status' => '0',
26000 ))
26001 ->values(array(
26002   'lid' => '495',
26003   'translation' => 'Lien HTML mis en forme vers le nÅ“ud',
26004   'language' => 'fr',
26005   'plid' => '0',
26006   'plural' => '0',
26007   'i18n_status' => '0',
26008 ))
26009 ->values(array(
26010   'lid' => '496',
26011   'translation' => "La valeur de '%name 'ne peut Ãªtre plus petite que %min.",
26012   'language' => 'fr',
26013   'plid' => '0',
26014   'plural' => '0',
26015   'i18n_status' => '0',
26016 ))
26017 ->values(array(
26018   'lid' => '497',
26019   'translation' => "La valeur de '%name' ne peut pas Ãªtre plus grande que %max.",
26020   'language' => 'fr',
26021   'plid' => '0',
26022   'plural' => '0',
26023   'i18n_status' => '0',
26024 ))
26025 ->values(array(
26026   'lid' => '498',
26027   'translation' => "Seuls des nombres et des décimaux sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26028   'language' => 'fr',
26029   'plid' => '0',
26030   'plural' => '0',
26031   'i18n_status' => '0',
26032 ))
26033 ->values(array(
26034   'lid' => '499',
26035   'translation' => "Seuls des nombres sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26036   'language' => 'fr',
26037   'plid' => '0',
26038   'plural' => '0',
26039   'i18n_status' => '0',
26040 ))
26041 ->values(array(
26042   'lid' => '500',
26043   'translation' => "Seuls des nombres et le marqueur décimal (%decimal) sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26044   'language' => 'fr',
26045   'plid' => '0',
26046   'plural' => '0',
26047   'i18n_status' => '0',
26048 ))
26049 ->values(array(
26050   'lid' => '501',
26051   '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.",
26052   'language' => 'fr',
26053   'plid' => '0',
26054   'plural' => '0',
26055   'i18n_status' => '0',
26056 ))
26057 ->values(array(
26058   'lid' => '504',
26059   'translation' => 'fr - Favorite color',
26060   'language' => 'fr',
26061   'plid' => '0',
26062   'plural' => '0',
26063   'i18n_status' => '0',
26064 ))
26065 ->values(array(
26066   'lid' => '505',
26067   'translation' => 'Inscrivez votre couleur préférée',
26068   'language' => 'fr',
26069   'plid' => '0',
26070   'plural' => '0',
26071   'i18n_status' => '0',
26072 ))
26073 ->values(array(
26074   'lid' => '506',
26075   'translation' => 'fr - Personal information',
26076   'language' => 'fr',
26077   'plid' => '0',
26078   'plural' => '0',
26079   'i18n_status' => '0',
26080 ))
26081 ->values(array(
26082   'lid' => '507',
26083   'translation' => 'fr - Biography',
26084   'language' => 'fr',
26085   'plid' => '0',
26086   'plural' => '0',
26087   'i18n_status' => '0',
26088 ))
26089 ->values(array(
26090   'lid' => '508',
26091   'translation' => 'fr - Tell people a little bit about yourself',
26092   'language' => 'fr',
26093   'plid' => '0',
26094   'plural' => '0',
26095   'i18n_status' => '0',
26096 ))
26097 ->values(array(
26098   'lid' => '509',
26099   'translation' => 'fr - Sell your email address?',
26100   'language' => 'fr',
26101   'plid' => '0',
26102   'plural' => '0',
26103   'i18n_status' => '0',
26104 ))
26105 ->values(array(
26106   'lid' => '510',
26107   'translation' => "fr - If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
26108   'language' => 'fr',
26109   'plid' => '0',
26110   'plural' => '0',
26111   'i18n_status' => '0',
26112 ))
26113 ->values(array(
26114   'lid' => '511',
26115   'translation' => 'fr - Communication preferences',
26116   'language' => 'fr',
26117   'plid' => '0',
26118   'plural' => '0',
26119   'i18n_status' => '0',
26120 ))
26121 ->values(array(
26122   'lid' => '512',
26123   'translation' => 'fr - Sales Category',
26124   'language' => 'fr',
26125   'plid' => '0',
26126   'plural' => '0',
26127   'i18n_status' => '0',
26128 ))
26129 ->values(array(
26130   'lid' => '513',
26131   'translation' => "fr - Select the sales categories to which this user's address was sold.",
26132   'language' => 'fr',
26133   'plid' => '0',
26134   'plural' => '0',
26135   'i18n_status' => '0',
26136 ))
26137 ->values(array(
26138   'lid' => '514',
26139   'translation' => 'fr - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
26140   'language' => 'fr',
26141   'plid' => '0',
26142   'plural' => '0',
26143   'i18n_status' => '0',
26144 ))
26145 ->values(array(
26146   'lid' => '515',
26147   'translation' => 'fr - Administrative data',
26148   'language' => 'fr',
26149   'plid' => '0',
26150   'plural' => '0',
26151   'i18n_status' => '0',
26152 ))
26153 ->values(array(
26154   'lid' => '516',
26155   'translation' => 'Mes groupes préférés',
26156   'language' => 'fr',
26157   'plid' => '0',
26158   'plural' => '0',
26159   'i18n_status' => '0',
26160 ))
26161 ->values(array(
26162   'lid' => '517',
26163   'translation' => "fr - Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
26164   'language' => 'fr',
26165   'plid' => '0',
26166   'plural' => '0',
26167   'i18n_status' => '0',
26168 ))
26169 ->values(array(
26170   'lid' => '518',
26171   'translation' => 'fr - Birthdate',
26172   'language' => 'fr',
26173   'plid' => '0',
26174   'plural' => '0',
26175   'i18n_status' => '0',
26176 ))
26177 ->values(array(
26178   'lid' => '519',
26179   'translation' => "fr - Enter your birth date and we'll send you a coupon.",
26180   'language' => 'fr',
26181   'plid' => '0',
26182   'plural' => '0',
26183   'i18n_status' => '0',
26184 ))
26185 ->values(array(
26186   'lid' => '520',
26187   'translation' => "J'aime les migrations",
26188   'language' => 'fr',
26189   'plid' => '0',
26190   'plural' => '0',
26191   'i18n_status' => '0',
26192 ))
26193 ->values(array(
26194   'lid' => '521',
26195   'translation' => 'Si vous cochez cette case, vous aimez les migrations.',
26196   'language' => 'fr',
26197   'plid' => '0',
26198   'plural' => '0',
26199   'i18n_status' => '0',
26200 ))
26201 ->values(array(
26202   'lid' => '522',
26203   'translation' => 'fr - Blog',
26204   'language' => 'fr',
26205   'plid' => '0',
26206   'plural' => '0',
26207   'i18n_status' => '0',
26208 ))
26209 ->values(array(
26210   'lid' => '523',
26211   'translation' => 'fr - Paste the full URL, including http://, of your personal blog.',
26212   'language' => 'fr',
26213   'plid' => '0',
26214   'plural' => '0',
26215   'i18n_status' => '0',
26216 ))
26217 ->values(array(
26218   'lid' => '524',
26219   'translation' => 'fr - Static Block',
26220   'language' => 'fr',
26221   'plid' => '0',
26222   'plural' => '0',
26223   'i18n_status' => '0',
26224 ))
26225 ->values(array(
26226   'lid' => '525',
26227   'translation' => '<h3>fr - My first custom block body</h3>',
26228   'language' => 'fr',
26229   'plid' => '0',
26230   'plural' => '0',
26231   'i18n_status' => '0',
26232 ))
26233 ->values(array(
26234   'lid' => '526',
26235   'translation' => 'Encore un bloc statique',
26236   'language' => 'fr',
26237   'plid' => '0',
26238   'plural' => '0',
26239   'i18n_status' => '0',
26240 ))
26241 ->values(array(
26242   'lid' => '527',
26243   'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
26244   'language' => 'fr',
26245   'plid' => '0',
26246   'plural' => '0',
26247   'i18n_status' => '0',
26248 ))
26249 ->values(array(
26250   'lid' => '528',
26251   'translation' => 'fr - Tags',
26252   'language' => 'fr',
26253   'plid' => '0',
26254   'plural' => '0',
26255   'i18n_status' => '0',
26256 ))
26257 ->values(array(
26258   'lid' => '529',
26259   'translation' => 'fr - vocabulary 1 (i=0)',
26260   'language' => 'fr',
26261   'plid' => '0',
26262   'plural' => '0',
26263   'i18n_status' => '0',
26264 ))
26265 ->values(array(
26266   'lid' => '530',
26267   'translation' => 'fr - vocabulary 2 (i=1)',
26268   'language' => 'fr',
26269   'plid' => '0',
26270   'plural' => '0',
26271   'i18n_status' => '0',
26272 ))
26273 ->values(array(
26274   'lid' => '531',
26275   'translation' => 'fr - vocabulary 3 (i=2)',
26276   'language' => 'fr',
26277   'plid' => '0',
26278   'plural' => '0',
26279   'i18n_status' => '0',
26280 ))
26281 ->values(array(
26282   'lid' => '532',
26283   'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
26284   'language' => 'fr',
26285   'plid' => '0',
26286   'plural' => '0',
26287   'i18n_status' => '0',
26288 ))
26289 ->values(array(
26290   'lid' => '533',
26291   'translation' => 'fr - Article',
26292   'language' => 'fr',
26293   'plid' => '0',
26294   'plural' => '0',
26295   'i18n_status' => '0',
26296 ))
26297 ->values(array(
26298   'lid' => '534',
26299   'translation' => 'fr - Title',
26300   'language' => 'fr',
26301   'plid' => '0',
26302   'plural' => '0',
26303   'i18n_status' => '0',
26304 ))
26305 ->values(array(
26306   'lid' => '535',
26307   'translation' => 'fr - Body',
26308   'language' => 'fr',
26309   'plid' => '0',
26310   'plural' => '0',
26311   'i18n_status' => '0',
26312 ))
26313 ->values(array(
26314   'lid' => '536',
26315   'translation' => 'fr - An <em>article</em>, content type.',
26316   'language' => 'fr',
26317   'plid' => '0',
26318   'plural' => '0',
26319   'i18n_status' => '0',
26320 ))
26321 ->values(array(
26322   'lid' => '537',
26323   'translation' => 'fr - Company',
26324   'language' => 'fr',
26325   'plid' => '0',
26326   'plural' => '0',
26327   'i18n_status' => '0',
26328 ))
26329 ->values(array(
26330   'lid' => '538',
26331   'translation' => 'fr - Name',
26332   'language' => 'fr',
26333   'plid' => '0',
26334   'plural' => '0',
26335   'i18n_status' => '0',
26336 ))
26337 ->values(array(
26338   'lid' => '539',
26339   'translation' => 'fr - Description',
26340   'language' => 'fr',
26341   'plid' => '0',
26342   'plural' => '0',
26343   'i18n_status' => '0',
26344 ))
26345 ->values(array(
26346   'lid' => '540',
26347   'translation' => 'fr - Company node type',
26348   'language' => 'fr',
26349   'plid' => '0',
26350   'plural' => '0',
26351   'i18n_status' => '0',
26352 ))
26353 ->values(array(
26354   'lid' => '541',
26355   'translation' => 'fr - Employee',
26356   'language' => 'fr',
26357   'plid' => '0',
26358   'plural' => '0',
26359   'i18n_status' => '0',
26360 ))
26361 ->values(array(
26362   'lid' => '542',
26363   'translation' => 'fr - Name',
26364   'language' => 'fr',
26365   'plid' => '0',
26366   'plural' => '0',
26367   'i18n_status' => '0',
26368 ))
26369 ->values(array(
26370   'lid' => '543',
26371   'translation' => 'fr - Bio',
26372   'language' => 'fr',
26373   'plid' => '0',
26374   'plural' => '0',
26375   'i18n_status' => '0',
26376 ))
26377 ->values(array(
26378   'lid' => '544',
26379   'translation' => 'fr - Employee node type',
26380   'language' => 'fr',
26381   'plid' => '0',
26382   'plural' => '0',
26383   'i18n_status' => '0',
26384 ))
26385 ->values(array(
26386   'lid' => '545',
26387   'translation' => 'fr - Sponsor',
26388   'language' => 'fr',
26389   'plid' => '0',
26390   'plural' => '0',
26391   'i18n_status' => '0',
26392 ))
26393 ->values(array(
26394   'lid' => '546',
26395   'translation' => 'fr - Name',
26396   'language' => 'fr',
26397   'plid' => '0',
26398   'plural' => '0',
26399   'i18n_status' => '0',
26400 ))
26401 ->values(array(
26402   'lid' => '547',
26403   'translation' => 'fr - Body',
26404   'language' => 'fr',
26405   'plid' => '0',
26406   'plural' => '0',
26407   'i18n_status' => '0',
26408 ))
26409 ->values(array(
26410   'lid' => '548',
26411   'translation' => 'fr - Sponsor node type',
26412   'language' => 'fr',
26413   'plid' => '0',
26414   'plural' => '0',
26415   'i18n_status' => '0',
26416 ))
26417 ->values(array(
26418   'lid' => '549',
26419   'translation' => 'fr - Story',
26420   'language' => 'fr',
26421   'plid' => '0',
26422   'plural' => '0',
26423   'i18n_status' => '0',
26424 ))
26425 ->values(array(
26426   'lid' => '550',
26427   'translation' => 'fr - Title',
26428   'language' => 'fr',
26429   'plid' => '0',
26430   'plural' => '0',
26431   'i18n_status' => '0',
26432 ))
26433 ->values(array(
26434   'lid' => '551',
26435   'translation' => 'fr - Body',
26436   'language' => 'fr',
26437   'plid' => '0',
26438   'plural' => '0',
26439   'i18n_status' => '0',
26440 ))
26441 ->values(array(
26442   'lid' => '552',
26443   '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.",
26444   'language' => 'fr',
26445   'plid' => '0',
26446   'plural' => '0',
26447   'i18n_status' => '0',
26448 ))
26449 ->values(array(
26450   'lid' => '553',
26451   'translation' => 'fr - Migrate test event',
26452   'language' => 'fr',
26453   'plid' => '0',
26454   'plural' => '0',
26455   'i18n_status' => '0',
26456 ))
26457 ->values(array(
26458   'lid' => '554',
26459   'translation' => 'fr - Event Name',
26460   'language' => 'fr',
26461   'plid' => '0',
26462   'plural' => '0',
26463   'i18n_status' => '0',
26464 ))
26465 ->values(array(
26466   'lid' => '555',
26467   'translation' => 'fr - Body',
26468   'language' => 'fr',
26469   'plid' => '0',
26470   'plural' => '0',
26471   'i18n_status' => '0',
26472 ))
26473 ->values(array(
26474   'lid' => '556',
26475   'translation' => 'fr - test event description here',
26476   'language' => 'fr',
26477   'plid' => '0',
26478   'plural' => '0',
26479   'i18n_status' => '0',
26480 ))
26481 ->values(array(
26482   'lid' => '558',
26483   'translation' => 'fr - Migrate test page',
26484   'language' => 'fr',
26485   'plid' => '0',
26486   'plural' => '0',
26487   'i18n_status' => '0',
26488 ))
26489 ->values(array(
26490   'lid' => '559',
26491   'translation' => 'fr - Title',
26492   'language' => 'fr',
26493   'plid' => '0',
26494   'plural' => '0',
26495   'i18n_status' => '0',
26496 ))
26497 ->values(array(
26498   'lid' => '560',
26499   'translation' => 'fr - This is the body field label',
26500   'language' => 'fr',
26501   'plid' => '0',
26502   'plural' => '0',
26503   'i18n_status' => '0',
26504 ))
26505 ->values(array(
26506   'lid' => '561',
26507   '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.",
26508   'language' => 'fr',
26509   'plid' => '0',
26510   'plural' => '0',
26511   'i18n_status' => '0',
26512 ))
26513 ->values(array(
26514   'lid' => '562',
26515   'translation' => 'fr - Migrate test planet',
26516   'language' => 'fr',
26517   'plid' => '0',
26518   'plural' => '0',
26519   'i18n_status' => '0',
26520 ))
26521 ->values(array(
26522   'lid' => '563',
26523   'translation' => 'fr - Title',
26524   'language' => 'fr',
26525   'plid' => '0',
26526   'plural' => '0',
26527   'i18n_status' => '0',
26528 ))
26529 ->values(array(
26530   'lid' => '564',
26531   'translation' => 'fr - Body',
26532   'language' => 'fr',
26533   'plid' => '0',
26534   'plural' => '0',
26535   'i18n_status' => '0',
26536 ))
26537 ->values(array(
26538   'lid' => '565',
26539   '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.",
26540   'language' => 'fr',
26541   'plid' => '0',
26542   'plural' => '0',
26543   'i18n_status' => '0',
26544 ))
26545 ->values(array(
26546   'lid' => '566',
26547   'translation' => 'Migrer histoire de test',
26548   'language' => 'fr',
26549   'plid' => '0',
26550   'plural' => '0',
26551   'i18n_status' => '0',
26552 ))
26553 ->values(array(
26554   'lid' => '567',
26555   'translation' => 'Titre',
26556   'language' => 'fr',
26557   'plid' => '0',
26558   'plural' => '0',
26559   'i18n_status' => '0',
26560 ))
26561 ->values(array(
26562   'lid' => '568',
26563   'translation' => 'Le corps',
26564   'language' => 'fr',
26565   'plid' => '0',
26566   'plural' => '0',
26567   'i18n_status' => '0',
26568 ))
26569 ->values(array(
26570   'lid' => '569',
26571   '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.",
26572   'language' => 'fr',
26573   'plid' => '0',
26574   'plural' => '0',
26575   'i18n_status' => '0',
26576 ))
26577 ->values(array(
26578   'lid' => '570',
26579   'translation' => 'fr - Text Field',
26580   'language' => 'fr',
26581   'plid' => '0',
26582   'plural' => '0',
26583   'i18n_status' => '0',
26584 ))
26585 ->values(array(
26586   'lid' => '571',
26587   'translation' => 'fr - An example text field without exclude.',
26588   'language' => 'fr',
26589   'plid' => '0',
26590   'plural' => '0',
26591   'i18n_status' => '0',
26592 ))
26593 ->values(array(
26594   'lid' => '572',
26595   'translation' => 'fr - Integer Field',
26596   'language' => 'fr',
26597   'plid' => '0',
26598   'plural' => '0',
26599   'i18n_status' => '0',
26600 ))
26601 ->values(array(
26602   'lid' => '573',
26603   'translation' => 'fr - An example integer field.',
26604   'language' => 'fr',
26605   'plid' => '0',
26606   'plural' => '0',
26607   'i18n_status' => '0',
26608 ))
26609 ->values(array(
26610   'lid' => '574',
26611   'translation' => 'fr - Text Field',
26612   'language' => 'fr',
26613   'plid' => '0',
26614   'plural' => '0',
26615   'i18n_status' => '0',
26616 ))
26617 ->values(array(
26618   'lid' => '575',
26619   'translation' => 'fr -  An example text field.',
26620   'language' => 'fr',
26621   'plid' => '0',
26622   'plural' => '0',
26623   'i18n_status' => '0',
26624 ))
26625 ->values(array(
26626   'lid' => '576',
26627   'translation' => 'fr - Decimal Field',
26628   'language' => 'fr',
26629   'plid' => '0',
26630   'plural' => '0',
26631   'i18n_status' => '0',
26632 ))
26633 ->values(array(
26634   'lid' => '577',
26635   'translation' => 'fr - An example decimal field.',
26636   'language' => 'fr',
26637   'plid' => '0',
26638   'plural' => '0',
26639   'i18n_status' => '0',
26640 ))
26641 ->values(array(
26642   'lid' => '578',
26643   'translation' => 'fr - Float Field',
26644   'language' => 'fr',
26645   'plid' => '0',
26646   'plural' => '0',
26647   'i18n_status' => '0',
26648 ))
26649 ->values(array(
26650   'lid' => '579',
26651   'translation' => 'fr - An example float field.',
26652   'language' => 'fr',
26653   'plid' => '0',
26654   'plural' => '0',
26655   'i18n_status' => '0',
26656 ))
26657 ->values(array(
26658   'lid' => '580',
26659   'translation' => 'fr - Integer Field',
26660   'language' => 'fr',
26661   'plid' => '0',
26662   'plural' => '0',
26663   'i18n_status' => '0',
26664 ))
26665 ->values(array(
26666   'lid' => '581',
26667   'translation' => 'fr - An example integer field.',
26668   'language' => 'fr',
26669   'plid' => '0',
26670   'plural' => '0',
26671   'i18n_status' => '0',
26672 ))
26673 ->values(array(
26674   'lid' => '582',
26675   'translation' => 'fr - Integer Field',
26676   'language' => 'fr',
26677   'plid' => '0',
26678   'plural' => '0',
26679   'i18n_status' => '0',
26680 ))
26681 ->values(array(
26682   'lid' => '583',
26683   'translation' => 'fr - An example integer field.',
26684   'language' => 'fr',
26685   'plid' => '0',
26686   'plural' => '0',
26687   'i18n_status' => '0',
26688 ))
26689 ->values(array(
26690   'lid' => '584',
26691   'translation' => 'fr - Email Field',
26692   'language' => 'fr',
26693   'plid' => '0',
26694   'plural' => '0',
26695   'i18n_status' => '0',
26696 ))
26697 ->values(array(
26698   'lid' => '585',
26699   'translation' => 'fr - An example email field.',
26700   'language' => 'fr',
26701   'plid' => '0',
26702   'plural' => '0',
26703   'i18n_status' => '0',
26704 ))
26705 ->values(array(
26706   'lid' => '586',
26707   'translation' => 'fr - Link Field',
26708   'language' => 'fr',
26709   'plid' => '0',
26710   'plural' => '0',
26711   'i18n_status' => '0',
26712 ))
26713 ->values(array(
26714   'lid' => '587',
26715   'translation' => 'fr - An example link field.',
26716   'language' => 'fr',
26717   'plid' => '0',
26718   'plural' => '0',
26719   'i18n_status' => '0',
26720 ))
26721 ->values(array(
26722   'lid' => '588',
26723   'translation' => 'fr - File Field',
26724   'language' => 'fr',
26725   'plid' => '0',
26726   'plural' => '0',
26727   'i18n_status' => '0',
26728 ))
26729 ->values(array(
26730   'lid' => '589',
26731   'translation' => 'fr - An example image field.',
26732   'language' => 'fr',
26733   'plid' => '0',
26734   'plural' => '0',
26735   'i18n_status' => '0',
26736 ))
26737 ->values(array(
26738   'lid' => '590',
26739   'translation' => 'fr - Image Field',
26740   'language' => 'fr',
26741   'plid' => '0',
26742   'plural' => '0',
26743   'i18n_status' => '0',
26744 ))
26745 ->values(array(
26746   'lid' => '591',
26747   'translation' => 'fr - An example image field.',
26748   'language' => 'fr',
26749   'plid' => '0',
26750   'plural' => '0',
26751   'i18n_status' => '0',
26752 ))
26753 ->values(array(
26754   'lid' => '592',
26755   'translation' => 'fr - Date Field',
26756   'language' => 'fr',
26757   'plid' => '0',
26758   'plural' => '0',
26759   'i18n_status' => '0',
26760 ))
26761 ->values(array(
26762   'lid' => '593',
26763   'translation' => 'fr - An example date field.',
26764   'language' => 'fr',
26765   'plid' => '0',
26766   'plural' => '0',
26767   'i18n_status' => '0',
26768 ))
26769 ->values(array(
26770   'lid' => '594',
26771   'translation' => 'fr - Date Stamp Field',
26772   'language' => 'fr',
26773   'plid' => '0',
26774   'plural' => '0',
26775   'i18n_status' => '0',
26776 ))
26777 ->values(array(
26778   'lid' => '595',
26779   'translation' => 'fr - An example date stamp field.',
26780   'language' => 'fr',
26781   'plid' => '0',
26782   'plural' => '0',
26783   'i18n_status' => '0',
26784 ))
26785 ->values(array(
26786   'lid' => '596',
26787   'translation' => 'fr - Datetime Field',
26788   'language' => 'fr',
26789   'plid' => '0',
26790   'plural' => '0',
26791   'i18n_status' => '0',
26792 ))
26793 ->values(array(
26794   'lid' => '597',
26795   'translation' => 'fr - An example datetime field.',
26796   'language' => 'fr',
26797   'plid' => '0',
26798   'plural' => '0',
26799   'i18n_status' => '0',
26800 ))
26801 ->values(array(
26802   'lid' => '598',
26803   'translation' => 'fr - Phone Field',
26804   'language' => 'fr',
26805   'plid' => '0',
26806   'plural' => '0',
26807   'i18n_status' => '0',
26808 ))
26809 ->values(array(
26810   'lid' => '599',
26811   'translation' => 'fr - An example phone field.',
26812   'language' => 'fr',
26813   'plid' => '0',
26814   'plural' => '0',
26815   'i18n_status' => '0',
26816 ))
26817 ->values(array(
26818   'lid' => '600',
26819   'translation' => 'fr - Decimal Radio Buttons Field',
26820   'language' => 'fr',
26821   'plid' => '0',
26822   'plural' => '0',
26823   'i18n_status' => '0',
26824 ))
26825 ->values(array(
26826   'lid' => '601',
26827   'translation' => 'fr - An example decimal field using radio buttons.',
26828   'language' => 'fr',
26829   'plid' => '0',
26830   'plural' => '0',
26831   'i18n_status' => '0',
26832 ))
26833 ->values(array(
26834   'lid' => '604',
26835   'translation' => 'fr - Float Single Checkbox Field',
26836   'language' => 'fr',
26837   'plid' => '0',
26838   'plural' => '0',
26839   'i18n_status' => '0',
26840 ))
26841 ->values(array(
26842   'lid' => '605',
26843   'translation' => 'fr - An example float field using a single on/off checkbox.',
26844   'language' => 'fr',
26845   'plid' => '0',
26846   'plural' => '0',
26847   'i18n_status' => '0',
26848 ))
26849 ->values(array(
26850   'lid' => '608',
26851   'translation' => 'fr - Integer Select List Field',
26852   'language' => 'fr',
26853   'plid' => '0',
26854   'plural' => '0',
26855   'i18n_status' => '0',
26856 ))
26857 ->values(array(
26858   'lid' => '609',
26859   'translation' => 'fr - An example integer field using a select list.',
26860   'language' => 'fr',
26861   'plid' => '0',
26862   'plural' => '0',
26863   'i18n_status' => '0',
26864 ))
26865 ->values(array(
26866   'lid' => '614',
26867   'translation' => 'fr - Text Single Checkbox Field',
26868   'language' => 'fr',
26869   'plid' => '0',
26870   'plural' => '0',
26871   'i18n_status' => '0',
26872 ))
26873 ->values(array(
26874   'lid' => '615',
26875   'translation' => 'fr - An example text field using a single on/off checkbox.',
26876   'language' => 'fr',
26877   'plid' => '0',
26878   'plural' => '0',
26879   'i18n_status' => '0',
26880 ))
26881 ->values(array(
26882   'lid' => '616',
26883   'translation' => 'fr - Hello',
26884   'language' => 'fr',
26885   'plid' => '0',
26886   'plural' => '0',
26887   'i18n_status' => '0',
26888 ))
26889 ->values(array(
26890   'lid' => '617',
26891   'translation' => 'fr - Goodbye',
26892   'language' => 'fr',
26893   'plid' => '0',
26894   'plural' => '0',
26895   'i18n_status' => '0',
26896 ))
26897 ->values(array(
26898   'lid' => '618',
26899   'translation' => 'fr - Text Single Checkbox Field 2',
26900   'language' => 'fr',
26901   'plid' => '0',
26902   'plural' => '0',
26903   'i18n_status' => '0',
26904 ))
26905 ->values(array(
26906   'lid' => '619',
26907   'translation' => 'fr - Checkbox that uses keys only and no label.',
26908   'language' => 'fr',
26909   'plid' => '0',
26910   'plural' => '0',
26911   'i18n_status' => '0',
26912 ))
26913 ->values(array(
26914   'lid' => '620',
26915   'translation' => 'fr - Off',
26916   'language' => 'fr',
26917   'plid' => '0',
26918   'plural' => '0',
26919   'i18n_status' => '0',
26920 ))
26921 ->values(array(
26922   'lid' => '621',
26923   'translation' => 'fr - Hello',
26924   'language' => 'fr',
26925   'plid' => '0',
26926   'plural' => '0',
26927   'i18n_status' => '0',
26928 ))
26929 ->values(array(
26930   'lid' => '622',
26931   'translation' => 'Champ de texte',
26932   'language' => 'fr',
26933   'plid' => '0',
26934   'plural' => '0',
26935   'i18n_status' => '0',
26936 ))
26937 ->values(array(
26938   'lid' => '623',
26939   'translation' => 'fr - An example text field.',
26940   'language' => 'fr',
26941   'plid' => '0',
26942   'plural' => '0',
26943   'i18n_status' => '0',
26944 ))
26945 ->values(array(
26946   'lid' => '624',
26947   'translation' => 'fr - Decimal Field',
26948   'language' => 'fr',
26949   'plid' => '0',
26950   'plural' => '0',
26951   'i18n_status' => '0',
26952 ))
26953 ->values(array(
26954   'lid' => '625',
26955   'translation' => 'Un exemple plusieurs valeurs champ décimal.',
26956   'language' => 'fr',
26957   'plid' => '0',
26958   'plural' => '0',
26959   'i18n_status' => '0',
26960 ))
26961 ->values(array(
26962   'lid' => '626',
26963   'translation' => 'fr - Text Single Checkbox Field',
26964   'language' => 'fr',
26965   'plid' => '0',
26966   'plural' => '0',
26967   'i18n_status' => '0',
26968 ))
26969 ->values(array(
26970   'lid' => '627',
26971   'translation' => 'fr - An example text field using a single on/off checkbox.',
26972   'language' => 'fr',
26973   'plid' => '0',
26974   'plural' => '0',
26975   'i18n_status' => '0',
26976 ))
26977 ->values(array(
26978   'lid' => '633',
26979   'translation' => 'fr - Drupal.org',
26980   'language' => 'fr',
26981   'plid' => '0',
26982   'plural' => '0',
26983   'i18n_status' => '0',
26984 ))
26985 ->values(array(
26986   'lid' => '634',
26987   'translation' => 'fr - Test 2',
26988   'language' => 'fr',
26989   'plid' => '0',
26990   'plural' => '0',
26991   'i18n_status' => '0',
26992 ))
26993 ->values(array(
26994   'lid' => '635',
26995   'translation' => 'fr - Test menu link 2',
26996   'language' => 'fr',
26997   'plid' => '0',
26998   'plural' => '0',
26999   'i18n_status' => '0',
27000 ))
27001 ->values(array(
27002   'lid' => '663',
27003   'translation' => 'fr - Content management',
27004   'language' => 'fr',
27005   'plid' => '0',
27006   'plural' => '0',
27007   'i18n_status' => '0',
27008 ))
27009 ->values(array(
27010   'lid' => '1254',
27011   'translation' => 'fr - Modules',
27012   'language' => 'fr',
27013   'plid' => '0',
27014   'plural' => '0',
27015   'i18n_status' => '0',
27016 ))
27017 ->values(array(
27018   'lid' => '1264',
27019   'translation' => 'fr - By task',
27020   'language' => 'fr',
27021   'plid' => '0',
27022   'plural' => '0',
27023   'i18n_status' => '0',
27024 ))
27025 ->values(array(
27026   'lid' => '1265',
27027   'translation' => 'fr - By module',
27028   'language' => 'fr',
27029   'plid' => '0',
27030   'plural' => '0',
27031   'i18n_status' => '0',
27032 ))
27033 ->values(array(
27034   'lid' => '1669',
27035   '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>",
27036   'language' => 'fr',
27037   'plid' => '0',
27038   'plural' => '0',
27039   'i18n_status' => '0',
27040 ))
27041 ->values(array(
27042   'lid' => '1670',
27043   'translation' => "Champ '%name' : cette publication ne peut Ãªtre référencée.",
27044   'language' => 'fr',
27045   'plid' => '0',
27046   'plural' => '0',
27047   'i18n_status' => '0',
27048 ))
27049 ->values(array(
27050   'lid' => '1671',
27051   'translation' => "Champ '%name' : incohérence au niveau du titre. Merci de vérifier votre sélection.",
27052   'language' => 'fr',
27053   'plid' => '0',
27054   'plural' => '0',
27055   'i18n_status' => '0',
27056 ))
27057 ->values(array(
27058   'lid' => '66',
27059   'translation' => 'zu - CCK - Aucune Intégration aux Vues',
27060   'language' => 'zu',
27061   'plid' => '0',
27062   'plural' => '0',
27063   'i18n_status' => '0',
27064 ))
27065 ->values(array(
27066   'lid' => '506',
27067   'translation' => 'zu - Personal information',
27068   'language' => 'zu',
27069   'plid' => '0',
27070   'plural' => '0',
27071   'i18n_status' => '0',
27072 ))
27073 ->values(array(
27074   'lid' => '512',
27075   'translation' => 'zu - Sales Category',
27076   'language' => 'zu',
27077   'plid' => '0',
27078   'plural' => '0',
27079   'i18n_status' => '0',
27080 ))
27081 ->values(array(
27082   'lid' => '513',
27083   'translation' => "zu - Select the sales categories to which this user's address was sold.",
27084   'language' => 'zu',
27085   'plid' => '0',
27086   'plural' => '0',
27087   'i18n_status' => '0',
27088 ))
27089 ->values(array(
27090   'lid' => '514',
27091   'translation' => 'zu - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
27092   'language' => 'zu',
27093   'plid' => '0',
27094   'plural' => '0',
27095   'i18n_status' => '0',
27096 ))
27097 ->values(array(
27098   'lid' => '525',
27099   'translation' => '<h3>zu - My first custom block body</h3>',
27100   'language' => 'zu',
27101   'plid' => '0',
27102   'plural' => '0',
27103   'i18n_status' => '0',
27104 ))
27105 ->values(array(
27106   'lid' => '529',
27107   'translation' => 'zu - vocabulary 1 (i=0)',
27108   'language' => 'zu',
27109   'plid' => '0',
27110   'plural' => '0',
27111   'i18n_status' => '0',
27112 ))
27113 ->values(array(
27114   'lid' => '535',
27115   'translation' => 'zu - Body',
27116   'language' => 'zu',
27117   'plid' => '0',
27118   'plural' => '0',
27119   'i18n_status' => '0',
27120 ))
27121 ->values(array(
27122   'lid' => '590',
27123   'translation' => 'zu - Image Field',
27124   'language' => 'zu',
27125   'plid' => '0',
27126   'plural' => '0',
27127   'i18n_status' => '0',
27128 ))
27129 ->values(array(
27130   'lid' => '591',
27131   'translation' => 'zu - An example image field.',
27132   'language' => 'zu',
27133   'plid' => '0',
27134   'plural' => '0',
27135   'i18n_status' => '0',
27136 ))
27137 ->values(array(
27138   'lid' => '621',
27139   'translation' => 'zu - Hello',
27140   'language' => 'zu',
27141   'plid' => '0',
27142   'plural' => '0',
27143   'i18n_status' => '0',
27144 ))
27145 ->values(array(
27146   'lid' => '635',
27147   'translation' => 'zu - Test menu link 2',
27148   'language' => 'zu',
27149   'plid' => '0',
27150   'plural' => '0',
27151   'i18n_status' => '0',
27152 ))
27153 ->execute();
27154
27155 $connection->schema()->createTable('menu_custom', array(
27156   'fields' => array(
27157     'menu_name' => array(
27158       'type' => 'varchar',
27159       'not null' => TRUE,
27160       'length' => '32',
27161       'default' => '',
27162     ),
27163     'title' => array(
27164       'type' => 'varchar',
27165       'not null' => TRUE,
27166       'length' => '255',
27167       'default' => '',
27168     ),
27169     'description' => array(
27170       'type' => 'text',
27171       'not null' => FALSE,
27172       'size' => 'normal',
27173     ),
27174   ),
27175   'primary key' => array(
27176     'menu_name',
27177   ),
27178   'mysql_character_set' => 'utf8',
27179 ));
27180
27181 $connection->insert('menu_custom')
27182 ->fields(array(
27183   'menu_name',
27184   'title',
27185   'description',
27186 ))
27187 ->values(array(
27188   'menu_name' => 'navigation',
27189   'title' => 'Navigation',
27190   '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.',
27191 ))
27192 ->values(array(
27193   'menu_name' => 'primary-links',
27194   'title' => 'Primary links',
27195   '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.',
27196 ))
27197 ->values(array(
27198   'menu_name' => 'secondary-links',
27199   'title' => 'Secondary links',
27200   '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',
27201 ))
27202 ->execute();
27203
27204 $connection->schema()->createTable('menu_links', array(
27205   'fields' => array(
27206     'menu_name' => array(
27207       'type' => 'varchar',
27208       'not null' => TRUE,
27209       'length' => '32',
27210       'default' => '',
27211     ),
27212     'mlid' => array(
27213       'type' => 'serial',
27214       'not null' => TRUE,
27215       'size' => 'normal',
27216       'unsigned' => TRUE,
27217     ),
27218     'plid' => array(
27219       'type' => 'int',
27220       'not null' => TRUE,
27221       'size' => 'normal',
27222       'default' => '0',
27223       'unsigned' => TRUE,
27224     ),
27225     'link_path' => array(
27226       'type' => 'varchar',
27227       'not null' => TRUE,
27228       'length' => '255',
27229       'default' => '',
27230     ),
27231     'router_path' => array(
27232       'type' => 'varchar',
27233       'not null' => TRUE,
27234       'length' => '255',
27235       'default' => '',
27236     ),
27237     'link_title' => array(
27238       'type' => 'varchar',
27239       'not null' => TRUE,
27240       'length' => '255',
27241       'default' => '',
27242     ),
27243     'options' => array(
27244       'type' => 'text',
27245       'not null' => FALSE,
27246       'size' => 'normal',
27247     ),
27248     'module' => array(
27249       'type' => 'varchar',
27250       'not null' => TRUE,
27251       'length' => '255',
27252       'default' => 'system',
27253     ),
27254     'hidden' => array(
27255       'type' => 'int',
27256       'not null' => TRUE,
27257       'size' => 'normal',
27258       'default' => '0',
27259     ),
27260     'external' => array(
27261       'type' => 'int',
27262       'not null' => TRUE,
27263       'size' => 'normal',
27264       'default' => '0',
27265     ),
27266     'has_children' => array(
27267       'type' => 'int',
27268       'not null' => TRUE,
27269       'size' => 'normal',
27270       'default' => '0',
27271     ),
27272     'expanded' => array(
27273       'type' => 'int',
27274       'not null' => TRUE,
27275       'size' => 'normal',
27276       'default' => '0',
27277     ),
27278     'weight' => array(
27279       'type' => 'int',
27280       'not null' => TRUE,
27281       'size' => 'normal',
27282       'default' => '0',
27283     ),
27284     'depth' => array(
27285       'type' => 'int',
27286       'not null' => TRUE,
27287       'size' => 'normal',
27288       'default' => '0',
27289     ),
27290     'customized' => array(
27291       'type' => 'int',
27292       'not null' => TRUE,
27293       'size' => 'normal',
27294       'default' => '0',
27295     ),
27296     'p1' => array(
27297       'type' => 'int',
27298       'not null' => TRUE,
27299       'size' => 'normal',
27300       'default' => '0',
27301       'unsigned' => TRUE,
27302     ),
27303     'p2' => array(
27304       'type' => 'int',
27305       'not null' => TRUE,
27306       'size' => 'normal',
27307       'default' => '0',
27308       'unsigned' => TRUE,
27309     ),
27310     'p3' => array(
27311       'type' => 'int',
27312       'not null' => TRUE,
27313       'size' => 'normal',
27314       'default' => '0',
27315       'unsigned' => TRUE,
27316     ),
27317     'p4' => array(
27318       'type' => 'int',
27319       'not null' => TRUE,
27320       'size' => 'normal',
27321       'default' => '0',
27322       'unsigned' => TRUE,
27323     ),
27324     'p5' => array(
27325       'type' => 'int',
27326       'not null' => TRUE,
27327       'size' => 'normal',
27328       'default' => '0',
27329       'unsigned' => TRUE,
27330     ),
27331     'p6' => array(
27332       'type' => 'int',
27333       'not null' => TRUE,
27334       'size' => 'normal',
27335       'default' => '0',
27336       'unsigned' => TRUE,
27337     ),
27338     'p7' => array(
27339       'type' => 'int',
27340       'not null' => TRUE,
27341       'size' => 'normal',
27342       'default' => '0',
27343       'unsigned' => TRUE,
27344     ),
27345     'p8' => array(
27346       'type' => 'int',
27347       'not null' => TRUE,
27348       'size' => 'normal',
27349       'default' => '0',
27350       'unsigned' => TRUE,
27351     ),
27352     'p9' => array(
27353       'type' => 'int',
27354       'not null' => TRUE,
27355       'size' => 'normal',
27356       'default' => '0',
27357       'unsigned' => TRUE,
27358     ),
27359     'updated' => array(
27360       'type' => 'int',
27361       'not null' => TRUE,
27362       'size' => 'normal',
27363       'default' => '0',
27364     ),
27365   ),
27366   'primary key' => array(
27367     'mlid',
27368   ),
27369   'mysql_character_set' => 'utf8',
27370 ));
27371
27372 $connection->insert('menu_links')
27373 ->fields(array(
27374   'menu_name',
27375   'mlid',
27376   'plid',
27377   'link_path',
27378   'router_path',
27379   'link_title',
27380   'options',
27381   'module',
27382   'hidden',
27383   'external',
27384   'has_children',
27385   'expanded',
27386   'weight',
27387   'depth',
27388   'customized',
27389   'p1',
27390   'p2',
27391   'p3',
27392   'p4',
27393   'p5',
27394   'p6',
27395   'p7',
27396   'p8',
27397   'p9',
27398   'updated',
27399 ))
27400 ->values(array(
27401   'menu_name' => 'book-toc-1',
27402   'mlid' => '1',
27403   'plid' => '0',
27404   'link_path' => 'node/4',
27405   'router_path' => 'node/%',
27406   'link_title' => 'Test top book title',
27407   'options' => 'a:0:{}',
27408   'module' => 'book',
27409   'hidden' => '0',
27410   'external' => '0',
27411   'has_children' => '1',
27412   'expanded' => '0',
27413   'weight' => '-10',
27414   'depth' => '1',
27415   'customized' => '0',
27416   'p1' => '1',
27417   'p2' => '0',
27418   'p3' => '0',
27419   'p4' => '0',
27420   'p5' => '0',
27421   'p6' => '0',
27422   'p7' => '0',
27423   'p8' => '0',
27424   'p9' => '0',
27425   'updated' => '0',
27426 ))
27427 ->values(array(
27428   'menu_name' => 'book-toc-1',
27429   'mlid' => '2',
27430   'plid' => '1',
27431   'link_path' => 'node/5',
27432   'router_path' => 'node/%',
27433   'link_title' => 'Test book title child 1',
27434   'options' => 'a:0:{}',
27435   'module' => 'book',
27436   'hidden' => '0',
27437   'external' => '0',
27438   'has_children' => '1',
27439   'expanded' => '0',
27440   'weight' => '0',
27441   'depth' => '2',
27442   'customized' => '0',
27443   'p1' => '1',
27444   'p2' => '2',
27445   'p3' => '0',
27446   'p4' => '0',
27447   'p5' => '0',
27448   'p6' => '0',
27449   'p7' => '0',
27450   'p8' => '0',
27451   'p9' => '0',
27452   'updated' => '0',
27453 ))
27454 ->values(array(
27455   'menu_name' => 'book-toc-1',
27456   'mlid' => '3',
27457   'plid' => '2',
27458   'link_path' => 'node/6',
27459   'router_path' => 'node/%',
27460   'link_title' => 'Test book title child 1.1',
27461   'options' => 'a:0:{}',
27462   'module' => 'book',
27463   'hidden' => '0',
27464   'external' => '0',
27465   'has_children' => '0',
27466   'expanded' => '0',
27467   'weight' => '0',
27468   'depth' => '3',
27469   'customized' => '0',
27470   'p1' => '1',
27471   'p2' => '2',
27472   'p3' => '3',
27473   'p4' => '0',
27474   'p5' => '0',
27475   'p6' => '0',
27476   'p7' => '0',
27477   'p8' => '0',
27478   'p9' => '0',
27479   'updated' => '0',
27480 ))
27481 ->values(array(
27482   'menu_name' => 'book-toc-1',
27483   'mlid' => '4',
27484   'plid' => '2',
27485   'link_path' => 'node/7',
27486   'router_path' => 'node/%',
27487   'link_title' => 'Test book title child 1.2',
27488   'options' => 'a:0:{}',
27489   'module' => 'book',
27490   'hidden' => '0',
27491   'external' => '0',
27492   'has_children' => '0',
27493   'expanded' => '0',
27494   'weight' => '0',
27495   'depth' => '3',
27496   'customized' => '0',
27497   'p1' => '1',
27498   'p2' => '2',
27499   'p3' => '4',
27500   'p4' => '0',
27501   'p5' => '0',
27502   'p6' => '0',
27503   'p7' => '0',
27504   'p8' => '0',
27505   'p9' => '0',
27506   'updated' => '0',
27507 ))
27508 ->values(array(
27509   'menu_name' => 'book-toc-2',
27510   'mlid' => '5',
27511   'plid' => '0',
27512   'link_path' => 'node/8',
27513   'router_path' => 'node/%',
27514   'link_title' => 'Test top book 2 title',
27515   'options' => 'a:0:{}',
27516   'module' => 'book',
27517   'hidden' => '0',
27518   'external' => '0',
27519   'has_children' => '1',
27520   'expanded' => '0',
27521   'weight' => '-10',
27522   'depth' => '1',
27523   'customized' => '0',
27524   'p1' => '5',
27525   'p2' => '0',
27526   'p3' => '0',
27527   'p4' => '0',
27528   'p5' => '0',
27529   'p6' => '0',
27530   'p7' => '0',
27531   'p8' => '0',
27532   'p9' => '0',
27533   'updated' => '0',
27534 ))
27535 ->values(array(
27536   'menu_name' => 'secondary-links',
27537   'mlid' => '138',
27538   'plid' => '139',
27539   'link_path' => 'user/login',
27540   'router_path' => 'user/login',
27541   'link_title' => 'Test 1',
27542   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 1";}}',
27543   'module' => 'menu',
27544   'hidden' => '0',
27545   'external' => '0',
27546   'has_children' => '1',
27547   'expanded' => '0',
27548   'weight' => '-50',
27549   'depth' => '2',
27550   'customized' => '1',
27551   'p1' => '139',
27552   'p2' => '138',
27553   'p3' => '0',
27554   'p4' => '0',
27555   'p5' => '0',
27556   'p6' => '0',
27557   'p7' => '0',
27558   'p8' => '0',
27559   'p9' => '0',
27560   'updated' => '0',
27561 ))
27562 ->values(array(
27563   'menu_name' => 'secondary-links',
27564   'mlid' => '139',
27565   'plid' => '0',
27566   'link_path' => 'admin',
27567   'router_path' => 'admin',
27568   'link_title' => 'Test 2',
27569   'options' => 'a:2:{s:5:"query";s:7:"foo=bar";s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 2";}}',
27570   'module' => 'menu',
27571   'hidden' => '0',
27572   'external' => '0',
27573   'has_children' => '1',
27574   'expanded' => '1',
27575   'weight' => '-49',
27576   'depth' => '1',
27577   'customized' => '1',
27578   'p1' => '139',
27579   'p2' => '0',
27580   'p3' => '0',
27581   'p4' => '0',
27582   'p5' => '0',
27583   'p6' => '0',
27584   'p7' => '0',
27585   'p8' => '0',
27586   'p9' => '0',
27587   'updated' => '0',
27588 ))
27589 ->values(array(
27590   'menu_name' => 'secondary-links',
27591   'mlid' => '140',
27592   'plid' => '0',
27593   'link_path' => 'https://www.drupal.org',
27594   'router_path' => '',
27595   'link_title' => 'Drupal.org',
27596   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}}',
27597   'module' => 'menu',
27598   'hidden' => '0',
27599   'external' => '1',
27600   'has_children' => '0',
27601   'expanded' => '0',
27602   'weight' => '-50',
27603   'depth' => '1',
27604   'customized' => '1',
27605   'p1' => '140',
27606   'p2' => '0',
27607   'p3' => '0',
27608   'p4' => '0',
27609   'p5' => '0',
27610   'p6' => '0',
27611   'p7' => '0',
27612   'p8' => '0',
27613   'p9' => '0',
27614   'updated' => '0',
27615 ))
27616 ->values(array(
27617   'menu_name' => 'navigation',
27618   'mlid' => '141',
27619   'plid' => '0',
27620   'link_path' => 'node',
27621   'router_path' => 'node',
27622   'link_title' => 'Content',
27623   'options' => 'a:0:{}',
27624   'module' => 'system',
27625   'hidden' => '-1',
27626   'external' => '0',
27627   'has_children' => '0',
27628   'expanded' => '0',
27629   'weight' => '0',
27630   'depth' => '1',
27631   'customized' => '0',
27632   'p1' => '141',
27633   'p2' => '0',
27634   'p3' => '0',
27635   'p4' => '0',
27636   'p5' => '0',
27637   'p6' => '0',
27638   'p7' => '0',
27639   'p8' => '0',
27640   'p9' => '0',
27641   'updated' => '0',
27642 ))
27643 ->values(array(
27644   'menu_name' => 'navigation',
27645   'mlid' => '142',
27646   'plid' => '0',
27647   'link_path' => 'rss.xml',
27648   'router_path' => 'rss.xml',
27649   'link_title' => 'RSS feed',
27650   'options' => 'a:0:{}',
27651   'module' => 'system',
27652   'hidden' => '-1',
27653   'external' => '0',
27654   'has_children' => '0',
27655   'expanded' => '0',
27656   'weight' => '0',
27657   'depth' => '1',
27658   'customized' => '0',
27659   'p1' => '142',
27660   'p2' => '0',
27661   'p3' => '0',
27662   'p4' => '0',
27663   'p5' => '0',
27664   'p6' => '0',
27665   'p7' => '0',
27666   'p8' => '0',
27667   'p9' => '0',
27668   'updated' => '0',
27669 ))
27670 ->values(array(
27671   'menu_name' => 'navigation',
27672   'mlid' => '143',
27673   'plid' => '0',
27674   'link_path' => 'batch',
27675   'router_path' => 'batch',
27676   'link_title' => '',
27677   'options' => 'a:0:{}',
27678   'module' => 'system',
27679   'hidden' => '-1',
27680   'external' => '0',
27681   'has_children' => '0',
27682   'expanded' => '0',
27683   'weight' => '0',
27684   'depth' => '1',
27685   'customized' => '0',
27686   'p1' => '143',
27687   'p2' => '0',
27688   'p3' => '0',
27689   'p4' => '0',
27690   'p5' => '0',
27691   'p6' => '0',
27692   'p7' => '0',
27693   'p8' => '0',
27694   'p9' => '0',
27695   'updated' => '0',
27696 ))
27697 ->values(array(
27698   'menu_name' => 'navigation',
27699   'mlid' => '144',
27700   'plid' => '0',
27701   'link_path' => 'admin',
27702   'router_path' => 'admin',
27703   'link_title' => 'Administer',
27704   'options' => 'a:0:{}',
27705   'module' => 'system',
27706   'hidden' => '0',
27707   'external' => '0',
27708   'has_children' => '1',
27709   'expanded' => '0',
27710   'weight' => '9',
27711   'depth' => '1',
27712   'customized' => '0',
27713   'p1' => '144',
27714   'p2' => '0',
27715   'p3' => '0',
27716   'p4' => '0',
27717   'p5' => '0',
27718   'p6' => '0',
27719   'p7' => '0',
27720   'p8' => '0',
27721   'p9' => '0',
27722   'updated' => '0',
27723 ))
27724 ->values(array(
27725   'menu_name' => 'navigation',
27726   'mlid' => '145',
27727   'plid' => '0',
27728   'link_path' => 'contact',
27729   'router_path' => 'contact',
27730   'link_title' => 'Contact',
27731   'options' => 'a:0:{}',
27732   'module' => 'system',
27733   'hidden' => '1',
27734   'external' => '0',
27735   'has_children' => '0',
27736   'expanded' => '0',
27737   'weight' => '0',
27738   'depth' => '1',
27739   'customized' => '0',
27740   'p1' => '145',
27741   'p2' => '0',
27742   'p3' => '0',
27743   'p4' => '0',
27744   'p5' => '0',
27745   'p6' => '0',
27746   'p7' => '0',
27747   'p8' => '0',
27748   'p9' => '0',
27749   'updated' => '0',
27750 ))
27751 ->values(array(
27752   'menu_name' => 'navigation',
27753   'mlid' => '147',
27754   'plid' => '0',
27755   'link_path' => 'logout',
27756   'router_path' => 'logout',
27757   'link_title' => 'Log out',
27758   'options' => 'a:0:{}',
27759   'module' => 'system',
27760   'hidden' => '0',
27761   'external' => '0',
27762   'has_children' => '0',
27763   'expanded' => '0',
27764   'weight' => '10',
27765   'depth' => '1',
27766   'customized' => '0',
27767   'p1' => '147',
27768   'p2' => '0',
27769   'p3' => '0',
27770   'p4' => '0',
27771   'p5' => '0',
27772   'p6' => '0',
27773   'p7' => '0',
27774   'p8' => '0',
27775   'p9' => '0',
27776   'updated' => '0',
27777 ))
27778 ->values(array(
27779   'menu_name' => 'navigation',
27780   'mlid' => '148',
27781   'plid' => '0',
27782   'link_path' => 'user',
27783   'router_path' => 'user',
27784   'link_title' => 'User account',
27785   'options' => 'a:0:{}',
27786   'module' => 'system',
27787   'hidden' => '-1',
27788   'external' => '0',
27789   'has_children' => '0',
27790   'expanded' => '0',
27791   'weight' => '0',
27792   'depth' => '1',
27793   'customized' => '0',
27794   'p1' => '148',
27795   'p2' => '0',
27796   'p3' => '0',
27797   'p4' => '0',
27798   'p5' => '0',
27799   'p6' => '0',
27800   'p7' => '0',
27801   'p8' => '0',
27802   'p9' => '0',
27803   'updated' => '0',
27804 ))
27805 ->values(array(
27806   'menu_name' => 'navigation',
27807   'mlid' => '149',
27808   'plid' => '0',
27809   'link_path' => 'profile',
27810   'router_path' => 'profile',
27811   'link_title' => 'User list',
27812   'options' => 'a:0:{}',
27813   'module' => 'system',
27814   'hidden' => '1',
27815   'external' => '0',
27816   'has_children' => '0',
27817   'expanded' => '0',
27818   'weight' => '0',
27819   'depth' => '1',
27820   'customized' => '0',
27821   'p1' => '149',
27822   'p2' => '0',
27823   'p3' => '0',
27824   'p4' => '0',
27825   'p5' => '0',
27826   'p6' => '0',
27827   'p7' => '0',
27828   'p8' => '0',
27829   'p9' => '0',
27830   'updated' => '0',
27831 ))
27832 ->values(array(
27833   'menu_name' => 'navigation',
27834   'mlid' => '150',
27835   'plid' => '0',
27836   'link_path' => 'node/%',
27837   'router_path' => 'node/%',
27838   'link_title' => '',
27839   'options' => 'a:0:{}',
27840   'module' => 'system',
27841   'hidden' => '-1',
27842   'external' => '0',
27843   'has_children' => '0',
27844   'expanded' => '0',
27845   'weight' => '0',
27846   'depth' => '1',
27847   'customized' => '0',
27848   'p1' => '150',
27849   'p2' => '0',
27850   'p3' => '0',
27851   'p4' => '0',
27852   'p5' => '0',
27853   'p6' => '0',
27854   'p7' => '0',
27855   'p8' => '0',
27856   'p9' => '0',
27857   'updated' => '0',
27858 ))
27859 ->values(array(
27860   'menu_name' => 'navigation',
27861   'mlid' => '151',
27862   'plid' => '0',
27863   'link_path' => 'content/js_add_more',
27864   'router_path' => 'content/js_add_more',
27865   'link_title' => '',
27866   'options' => 'a:0:{}',
27867   'module' => 'system',
27868   'hidden' => '-1',
27869   'external' => '0',
27870   'has_children' => '0',
27871   'expanded' => '0',
27872   'weight' => '0',
27873   'depth' => '1',
27874   'customized' => '0',
27875   'p1' => '151',
27876   'p2' => '0',
27877   'p3' => '0',
27878   'p4' => '0',
27879   'p5' => '0',
27880   'p6' => '0',
27881   'p7' => '0',
27882   'p8' => '0',
27883   'p9' => '0',
27884   'updated' => '0',
27885 ))
27886 ->values(array(
27887   'menu_name' => 'navigation',
27888   'mlid' => '152',
27889   'plid' => '0',
27890   'link_path' => 'upload/js',
27891   'router_path' => 'upload/js',
27892   'link_title' => '',
27893   'options' => 'a:0:{}',
27894   'module' => 'system',
27895   'hidden' => '-1',
27896   'external' => '0',
27897   'has_children' => '0',
27898   'expanded' => '0',
27899   'weight' => '0',
27900   'depth' => '1',
27901   'customized' => '0',
27902   'p1' => '152',
27903   'p2' => '0',
27904   'p3' => '0',
27905   'p4' => '0',
27906   'p5' => '0',
27907   'p6' => '0',
27908   'p7' => '0',
27909   'p8' => '0',
27910   'p9' => '0',
27911   'updated' => '0',
27912 ))
27913 ->values(array(
27914   'menu_name' => 'navigation',
27915   'mlid' => '153',
27916   'plid' => '0',
27917   'link_path' => 'taxonomy/autocomplete',
27918   'router_path' => 'taxonomy/autocomplete',
27919   'link_title' => 'Autocomplete taxonomy',
27920   'options' => 'a:0:{}',
27921   'module' => 'system',
27922   'hidden' => '-1',
27923   'external' => '0',
27924   'has_children' => '0',
27925   'expanded' => '0',
27926   'weight' => '0',
27927   'depth' => '1',
27928   'customized' => '0',
27929   'p1' => '153',
27930   'p2' => '0',
27931   'p3' => '0',
27932   'p4' => '0',
27933   'p5' => '0',
27934   'p6' => '0',
27935   'p7' => '0',
27936   'p8' => '0',
27937   'p9' => '0',
27938   'updated' => '0',
27939 ))
27940 ->values(array(
27941   'menu_name' => 'navigation',
27942   'mlid' => '155',
27943   'plid' => '144',
27944   'link_path' => 'admin/compact',
27945   'router_path' => 'admin/compact',
27946   'link_title' => 'Compact mode',
27947   'options' => 'a:0:{}',
27948   'module' => 'system',
27949   'hidden' => '-1',
27950   'external' => '0',
27951   'has_children' => '0',
27952   'expanded' => '0',
27953   'weight' => '0',
27954   'depth' => '2',
27955   'customized' => '0',
27956   'p1' => '144',
27957   'p2' => '155',
27958   'p3' => '0',
27959   'p4' => '0',
27960   'p5' => '0',
27961   'p6' => '0',
27962   'p7' => '0',
27963   'p8' => '0',
27964   'p9' => '0',
27965   'updated' => '0',
27966 ))
27967 ->values(array(
27968   'menu_name' => 'navigation',
27969   'mlid' => '156',
27970   'plid' => '0',
27971   'link_path' => 'filter/tips',
27972   'router_path' => 'filter/tips',
27973   'link_title' => 'Compose tips',
27974   'options' => 'a:0:{}',
27975   'module' => 'system',
27976   'hidden' => '1',
27977   'external' => '0',
27978   'has_children' => '0',
27979   'expanded' => '0',
27980   'weight' => '0',
27981   'depth' => '1',
27982   'customized' => '0',
27983   'p1' => '156',
27984   'p2' => '0',
27985   'p3' => '0',
27986   'p4' => '0',
27987   'p5' => '0',
27988   'p6' => '0',
27989   'p7' => '0',
27990   'p8' => '0',
27991   'p9' => '0',
27992   'updated' => '0',
27993 ))
27994 ->values(array(
27995   'menu_name' => 'navigation',
27996   'mlid' => '157',
27997   'plid' => '144',
27998   'link_path' => 'admin/content',
27999   'router_path' => 'admin/content',
28000   'link_title' => 'Content management',
28001   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}",
28002   'module' => 'system',
28003   'hidden' => '0',
28004   'external' => '0',
28005   'has_children' => '1',
28006   'expanded' => '0',
28007   'weight' => '-10',
28008   'depth' => '2',
28009   'customized' => '0',
28010   'p1' => '144',
28011   'p2' => '157',
28012   'p3' => '0',
28013   'p4' => '0',
28014   'p5' => '0',
28015   'p6' => '0',
28016   'p7' => '0',
28017   'p8' => '0',
28018   'p9' => '0',
28019   'updated' => '0',
28020 ))
28021 ->values(array(
28022   'menu_name' => 'navigation',
28023   'mlid' => '158',
28024   'plid' => '0',
28025   'link_path' => 'node/add',
28026   'router_path' => 'node/add',
28027   'link_title' => 'Create content',
28028   'options' => 'a:0:{}',
28029   'module' => 'system',
28030   'hidden' => '0',
28031   'external' => '0',
28032   'has_children' => '1',
28033   'expanded' => '0',
28034   'weight' => '1',
28035   'depth' => '1',
28036   'customized' => '0',
28037   'p1' => '158',
28038   'p2' => '0',
28039   'p3' => '0',
28040   'p4' => '0',
28041   'p5' => '0',
28042   'p6' => '0',
28043   'p7' => '0',
28044   'p8' => '0',
28045   'p9' => '0',
28046   'updated' => '0',
28047 ))
28048 ->values(array(
28049   'menu_name' => 'navigation',
28050   'mlid' => '159',
28051   'plid' => '0',
28052   'link_path' => 'comment/delete',
28053   'router_path' => 'comment/delete',
28054   'link_title' => 'Delete comment',
28055   'options' => 'a:0:{}',
28056   'module' => 'system',
28057   'hidden' => '-1',
28058   'external' => '0',
28059   'has_children' => '0',
28060   'expanded' => '0',
28061   'weight' => '0',
28062   'depth' => '1',
28063   'customized' => '0',
28064   'p1' => '159',
28065   'p2' => '0',
28066   'p3' => '0',
28067   'p4' => '0',
28068   'p5' => '0',
28069   'p6' => '0',
28070   'p7' => '0',
28071   'p8' => '0',
28072   'p9' => '0',
28073   'updated' => '0',
28074 ))
28075 ->values(array(
28076   'menu_name' => 'navigation',
28077   'mlid' => '160',
28078   'plid' => '0',
28079   'link_path' => 'comment/edit',
28080   'router_path' => 'comment/edit',
28081   'link_title' => 'Edit comment',
28082   'options' => 'a:0:{}',
28083   'module' => 'system',
28084   'hidden' => '-1',
28085   'external' => '0',
28086   'has_children' => '0',
28087   'expanded' => '0',
28088   'weight' => '0',
28089   'depth' => '1',
28090   'customized' => '0',
28091   'p1' => '160',
28092   'p2' => '0',
28093   'p3' => '0',
28094   'p4' => '0',
28095   'p5' => '0',
28096   'p6' => '0',
28097   'p7' => '0',
28098   'p8' => '0',
28099   'p9' => '0',
28100   'updated' => '0',
28101 ))
28102 ->values(array(
28103   'menu_name' => 'navigation',
28104   'mlid' => '161',
28105   'plid' => '0',
28106   'link_path' => 'system/files',
28107   'router_path' => 'system/files',
28108   'link_title' => 'File download',
28109   'options' => 'a:0:{}',
28110   'module' => 'system',
28111   'hidden' => '-1',
28112   'external' => '0',
28113   'has_children' => '0',
28114   'expanded' => '0',
28115   'weight' => '0',
28116   'depth' => '1',
28117   'customized' => '0',
28118   'p1' => '161',
28119   'p2' => '0',
28120   'p3' => '0',
28121   'p4' => '0',
28122   'p5' => '0',
28123   'p6' => '0',
28124   'p7' => '0',
28125   'p8' => '0',
28126   'p9' => '0',
28127   'updated' => '0',
28128 ))
28129 ->values(array(
28130   'menu_name' => 'navigation',
28131   'mlid' => '163',
28132   'plid' => '149',
28133   'link_path' => 'profile/autocomplete',
28134   'router_path' => 'profile/autocomplete',
28135   'link_title' => 'Profile autocomplete',
28136   'options' => 'a:0:{}',
28137   'module' => 'system',
28138   'hidden' => '-1',
28139   'external' => '0',
28140   'has_children' => '0',
28141   'expanded' => '0',
28142   'weight' => '0',
28143   'depth' => '2',
28144   'customized' => '0',
28145   'p1' => '149',
28146   'p2' => '163',
28147   'p3' => '0',
28148   'p4' => '0',
28149   'p5' => '0',
28150   'p6' => '0',
28151   'p7' => '0',
28152   'p8' => '0',
28153   'p9' => '0',
28154   'updated' => '0',
28155 ))
28156 ->values(array(
28157   'menu_name' => 'navigation',
28158   'mlid' => '165',
28159   'plid' => '144',
28160   'link_path' => 'admin/reports',
28161   'router_path' => 'admin/reports',
28162   'link_title' => 'Reports',
28163   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}',
28164   'module' => 'system',
28165   'hidden' => '0',
28166   'external' => '0',
28167   'has_children' => '1',
28168   'expanded' => '0',
28169   'weight' => '5',
28170   'depth' => '2',
28171   'customized' => '0',
28172   'p1' => '144',
28173   'p2' => '165',
28174   'p3' => '0',
28175   'p4' => '0',
28176   'p5' => '0',
28177   'p6' => '0',
28178   'p7' => '0',
28179   'p8' => '0',
28180   'p9' => '0',
28181   'updated' => '0',
28182 ))
28183 ->values(array(
28184   'menu_name' => 'navigation',
28185   'mlid' => '166',
28186   'plid' => '144',
28187   'link_path' => 'admin/build',
28188   'router_path' => 'admin/build',
28189   'link_title' => 'Site building',
28190   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}',
28191   'module' => 'system',
28192   'hidden' => '0',
28193   'external' => '0',
28194   'has_children' => '1',
28195   'expanded' => '0',
28196   'weight' => '-10',
28197   'depth' => '2',
28198   'customized' => '0',
28199   'p1' => '144',
28200   'p2' => '166',
28201   'p3' => '0',
28202   'p4' => '0',
28203   'p5' => '0',
28204   'p6' => '0',
28205   'p7' => '0',
28206   'p8' => '0',
28207   'p9' => '0',
28208   'updated' => '0',
28209 ))
28210 ->values(array(
28211   'menu_name' => 'navigation',
28212   'mlid' => '167',
28213   'plid' => '144',
28214   'link_path' => 'admin/settings',
28215   'router_path' => 'admin/settings',
28216   'link_title' => 'Site configuration',
28217   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}',
28218   'module' => 'system',
28219   'hidden' => '0',
28220   'external' => '0',
28221   'has_children' => '1',
28222   'expanded' => '0',
28223   'weight' => '-5',
28224   'depth' => '2',
28225   'customized' => '0',
28226   'p1' => '144',
28227   'p2' => '167',
28228   'p3' => '0',
28229   'p4' => '0',
28230   'p5' => '0',
28231   'p6' => '0',
28232   'p7' => '0',
28233   'p8' => '0',
28234   'p9' => '0',
28235   'updated' => '0',
28236 ))
28237 ->values(array(
28238   'menu_name' => 'navigation',
28239   'mlid' => '169',
28240   'plid' => '0',
28241   'link_path' => 'user/autocomplete',
28242   'router_path' => 'user/autocomplete',
28243   'link_title' => 'User autocomplete',
28244   'options' => 'a:0:{}',
28245   'module' => 'system',
28246   'hidden' => '-1',
28247   'external' => '0',
28248   'has_children' => '0',
28249   'expanded' => '0',
28250   'weight' => '0',
28251   'depth' => '1',
28252   'customized' => '0',
28253   'p1' => '169',
28254   'p2' => '0',
28255   'p3' => '0',
28256   'p4' => '0',
28257   'p5' => '0',
28258   'p6' => '0',
28259   'p7' => '0',
28260   'p8' => '0',
28261   'p9' => '0',
28262   'updated' => '0',
28263 ))
28264 ->values(array(
28265   'menu_name' => 'navigation',
28266   'mlid' => '170',
28267   'plid' => '144',
28268   'link_path' => 'admin/user',
28269   'router_path' => 'admin/user',
28270   'link_title' => 'User management',
28271   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}",
28272   'module' => 'system',
28273   'hidden' => '0',
28274   'external' => '0',
28275   'has_children' => '1',
28276   'expanded' => '0',
28277   'weight' => '0',
28278   'depth' => '2',
28279   'customized' => '0',
28280   'p1' => '144',
28281   'p2' => '170',
28282   'p3' => '0',
28283   'p4' => '0',
28284   'p5' => '0',
28285   'p6' => '0',
28286   'p7' => '0',
28287   'p8' => '0',
28288   'p9' => '0',
28289   'updated' => '0',
28290 ))
28291 ->values(array(
28292   'menu_name' => 'navigation',
28293   'mlid' => '171',
28294   'plid' => '0',
28295   'link_path' => 'user/timezone',
28296   'router_path' => 'user/timezone',
28297   'link_title' => 'User timezone',
28298   'options' => 'a:0:{}',
28299   'module' => 'system',
28300   'hidden' => '-1',
28301   'external' => '0',
28302   'has_children' => '0',
28303   'expanded' => '0',
28304   'weight' => '0',
28305   'depth' => '1',
28306   'customized' => '0',
28307   'p1' => '171',
28308   'p2' => '0',
28309   'p3' => '0',
28310   'p4' => '0',
28311   'p5' => '0',
28312   'p6' => '0',
28313   'p7' => '0',
28314   'p8' => '0',
28315   'p9' => '0',
28316   'updated' => '0',
28317 ))
28318 ->values(array(
28319   'menu_name' => 'navigation',
28320   'mlid' => '172',
28321   'plid' => '0',
28322   'link_path' => 'user/%',
28323   'router_path' => 'user/%',
28324   'link_title' => 'My account',
28325   'options' => 'a:0:{}',
28326   'module' => 'system',
28327   'hidden' => '0',
28328   'external' => '0',
28329   'has_children' => '0',
28330   'expanded' => '0',
28331   'weight' => '0',
28332   'depth' => '1',
28333   'customized' => '0',
28334   'p1' => '172',
28335   'p2' => '0',
28336   'p3' => '0',
28337   'p4' => '0',
28338   'p5' => '0',
28339   'p6' => '0',
28340   'p7' => '0',
28341   'p8' => '0',
28342   'p9' => '0',
28343   'updated' => '0',
28344 ))
28345 ->values(array(
28346   'menu_name' => 'navigation',
28347   'mlid' => '175',
28348   'plid' => '170',
28349   'link_path' => 'admin/user/rules',
28350   'router_path' => 'admin/user/rules',
28351   'link_title' => 'Access rules',
28352   '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.";}}',
28353   'module' => 'system',
28354   'hidden' => '0',
28355   'external' => '0',
28356   'has_children' => '0',
28357   'expanded' => '0',
28358   'weight' => '0',
28359   'depth' => '3',
28360   'customized' => '0',
28361   'p1' => '144',
28362   'p2' => '170',
28363   'p3' => '175',
28364   'p4' => '0',
28365   'p5' => '0',
28366   'p6' => '0',
28367   'p7' => '0',
28368   'p8' => '0',
28369   'p9' => '0',
28370   'updated' => '0',
28371 ))
28372 ->values(array(
28373   'menu_name' => 'navigation',
28374   'mlid' => '176',
28375   'plid' => '167',
28376   'link_path' => 'admin/settings/actions',
28377   'router_path' => 'admin/settings/actions',
28378   'link_title' => 'Actions',
28379   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
28380   'module' => 'system',
28381   'hidden' => '0',
28382   'external' => '0',
28383   'has_children' => '0',
28384   'expanded' => '0',
28385   'weight' => '0',
28386   'depth' => '3',
28387   'customized' => '0',
28388   'p1' => '144',
28389   'p2' => '167',
28390   'p3' => '176',
28391   'p4' => '0',
28392   'p5' => '0',
28393   'p6' => '0',
28394   'p7' => '0',
28395   'p8' => '0',
28396   'p9' => '0',
28397   'updated' => '0',
28398 ))
28399 ->values(array(
28400   'menu_name' => 'navigation',
28401   'mlid' => '177',
28402   'plid' => '167',
28403   'link_path' => 'admin/settings/admin',
28404   'router_path' => 'admin/settings/admin',
28405   'link_title' => 'Administration theme',
28406   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}',
28407   'module' => 'system',
28408   'hidden' => '0',
28409   'external' => '0',
28410   'has_children' => '0',
28411   'expanded' => '0',
28412   'weight' => '0',
28413   'depth' => '3',
28414   'customized' => '0',
28415   'p1' => '144',
28416   'p2' => '167',
28417   'p3' => '177',
28418   'p4' => '0',
28419   'p5' => '0',
28420   'p6' => '0',
28421   'p7' => '0',
28422   'p8' => '0',
28423   'p9' => '0',
28424   'updated' => '0',
28425 ))
28426 ->values(array(
28427   'menu_name' => 'navigation',
28428   'mlid' => '178',
28429   'plid' => '158',
28430   'link_path' => 'node/add/article',
28431   'router_path' => 'node/add/article',
28432   'link_title' => 'Article',
28433   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"An <em>article</em>, content type.";}}',
28434   'module' => 'system',
28435   'hidden' => '0',
28436   'external' => '0',
28437   'has_children' => '0',
28438   'expanded' => '0',
28439   'weight' => '0',
28440   'depth' => '2',
28441   'customized' => '0',
28442   'p1' => '158',
28443   'p2' => '178',
28444   'p3' => '0',
28445   'p4' => '0',
28446   'p5' => '0',
28447   'p6' => '0',
28448   'p7' => '0',
28449   'p8' => '0',
28450   'p9' => '0',
28451   'updated' => '0',
28452 ))
28453 ->values(array(
28454   'menu_name' => 'navigation',
28455   'mlid' => '179',
28456   'plid' => '166',
28457   'link_path' => 'admin/build/block',
28458   'router_path' => 'admin/build/block',
28459   'link_title' => 'Blocks',
28460   '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.\";}}",
28461   'module' => 'system',
28462   'hidden' => '0',
28463   'external' => '0',
28464   'has_children' => '0',
28465   'expanded' => '0',
28466   'weight' => '0',
28467   'depth' => '3',
28468   'customized' => '0',
28469   'p1' => '144',
28470   'p2' => '166',
28471   'p3' => '179',
28472   'p4' => '0',
28473   'p5' => '0',
28474   'p6' => '0',
28475   'p7' => '0',
28476   'p8' => '0',
28477   'p9' => '0',
28478   'updated' => '0',
28479 ))
28480 ->values(array(
28481   'menu_name' => 'navigation',
28482   'mlid' => '180',
28483   'plid' => '167',
28484   'link_path' => 'admin/settings/clean-urls',
28485   'router_path' => 'admin/settings/clean-urls',
28486   'link_title' => 'Clean URLs',
28487   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
28488   'module' => 'system',
28489   'hidden' => '0',
28490   'external' => '0',
28491   'has_children' => '0',
28492   'expanded' => '0',
28493   'weight' => '0',
28494   'depth' => '3',
28495   'customized' => '0',
28496   'p1' => '144',
28497   'p2' => '167',
28498   'p3' => '180',
28499   'p4' => '0',
28500   'p5' => '0',
28501   'p6' => '0',
28502   'p7' => '0',
28503   'p8' => '0',
28504   'p9' => '0',
28505   'updated' => '0',
28506 ))
28507 ->values(array(
28508   'menu_name' => 'navigation',
28509   'mlid' => '181',
28510   'plid' => '157',
28511   'link_path' => 'admin/content/comment',
28512   'router_path' => 'admin/content/comment',
28513   'link_title' => 'Comments',
28514   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"List and edit site comments and the comment moderation queue.";}}',
28515   'module' => 'system',
28516   'hidden' => '0',
28517   'external' => '0',
28518   'has_children' => '0',
28519   'expanded' => '0',
28520   'weight' => '0',
28521   'depth' => '3',
28522   'customized' => '0',
28523   'p1' => '144',
28524   'p2' => '157',
28525   'p3' => '181',
28526   'p4' => '0',
28527   'p5' => '0',
28528   'p6' => '0',
28529   'p7' => '0',
28530   'p8' => '0',
28531   'p9' => '0',
28532   'updated' => '0',
28533 ))
28534 ->values(array(
28535   'menu_name' => 'navigation',
28536   'mlid' => '182',
28537   'plid' => '158',
28538   'link_path' => 'node/add/company',
28539   'router_path' => 'node/add/company',
28540   'link_title' => 'Company',
28541   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Company node type";}}',
28542   'module' => 'system',
28543   'hidden' => '0',
28544   'external' => '0',
28545   'has_children' => '0',
28546   'expanded' => '0',
28547   'weight' => '0',
28548   'depth' => '2',
28549   'customized' => '0',
28550   'p1' => '158',
28551   'p2' => '182',
28552   'p3' => '0',
28553   'p4' => '0',
28554   'p5' => '0',
28555   'p6' => '0',
28556   'p7' => '0',
28557   'p8' => '0',
28558   'p9' => '0',
28559   'updated' => '0',
28560 ))
28561 ->values(array(
28562   'menu_name' => 'navigation',
28563   'mlid' => '183',
28564   'plid' => '166',
28565   'link_path' => 'admin/build/contact',
28566   'router_path' => 'admin/build/contact',
28567   'link_title' => 'Contact form',
28568   '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.";}}',
28569   'module' => 'system',
28570   'hidden' => '0',
28571   'external' => '0',
28572   'has_children' => '0',
28573   'expanded' => '0',
28574   'weight' => '0',
28575   'depth' => '3',
28576   'customized' => '0',
28577   'p1' => '144',
28578   'p2' => '166',
28579   'p3' => '183',
28580   'p4' => '0',
28581   'p5' => '0',
28582   'p6' => '0',
28583   'p7' => '0',
28584   'p8' => '0',
28585   'p9' => '0',
28586   'updated' => '0',
28587 ))
28588 ->values(array(
28589   'menu_name' => 'navigation',
28590   'mlid' => '184',
28591   'plid' => '157',
28592   'link_path' => 'admin/content/node',
28593   'router_path' => 'admin/content/node',
28594   'link_title' => 'Content',
28595   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}",
28596   'module' => 'system',
28597   'hidden' => '0',
28598   'external' => '0',
28599   'has_children' => '0',
28600   'expanded' => '0',
28601   'weight' => '0',
28602   'depth' => '3',
28603   'customized' => '0',
28604   'p1' => '144',
28605   'p2' => '157',
28606   'p3' => '184',
28607   'p4' => '0',
28608   'p5' => '0',
28609   'p6' => '0',
28610   'p7' => '0',
28611   'p8' => '0',
28612   'p9' => '0',
28613   'updated' => '0',
28614 ))
28615 ->values(array(
28616   'menu_name' => 'navigation',
28617   'mlid' => '185',
28618   'plid' => '157',
28619   'link_path' => 'admin/content/types',
28620   'router_path' => 'admin/content/types',
28621   'link_title' => 'Content types',
28622   '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.";}}',
28623   'module' => 'system',
28624   'hidden' => '0',
28625   'external' => '0',
28626   'has_children' => '0',
28627   'expanded' => '0',
28628   'weight' => '0',
28629   'depth' => '3',
28630   'customized' => '0',
28631   'p1' => '144',
28632   'p2' => '157',
28633   'p3' => '185',
28634   'p4' => '0',
28635   'p5' => '0',
28636   'p6' => '0',
28637   'p7' => '0',
28638   'p8' => '0',
28639   'p9' => '0',
28640   'updated' => '0',
28641 ))
28642 ->values(array(
28643   'menu_name' => 'navigation',
28644   'mlid' => '186',
28645   'plid' => '167',
28646   'link_path' => 'admin/settings/date-time',
28647   'router_path' => 'admin/settings/date-time',
28648   'link_title' => 'Date and time',
28649   '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.\";}}",
28650   'module' => 'system',
28651   'hidden' => '0',
28652   'external' => '0',
28653   'has_children' => '0',
28654   'expanded' => '0',
28655   'weight' => '0',
28656   'depth' => '3',
28657   'customized' => '0',
28658   'p1' => '144',
28659   'p2' => '167',
28660   'p3' => '186',
28661   'p4' => '0',
28662   'p5' => '0',
28663   'p6' => '0',
28664   'p7' => '0',
28665   'p8' => '0',
28666   'p9' => '0',
28667   'updated' => '0',
28668 ))
28669 ->values(array(
28670   'menu_name' => 'navigation',
28671   'mlid' => '187',
28672   'plid' => '0',
28673   'link_path' => 'node/%/delete',
28674   'router_path' => 'node/%/delete',
28675   'link_title' => 'Delete',
28676   'options' => 'a:0:{}',
28677   'module' => 'system',
28678   'hidden' => '-1',
28679   'external' => '0',
28680   'has_children' => '0',
28681   'expanded' => '0',
28682   'weight' => '1',
28683   'depth' => '1',
28684   'customized' => '0',
28685   'p1' => '187',
28686   'p2' => '0',
28687   'p3' => '0',
28688   'p4' => '0',
28689   'p5' => '0',
28690   'p6' => '0',
28691   'p7' => '0',
28692   'p8' => '0',
28693   'p9' => '0',
28694   'updated' => '0',
28695 ))
28696 ->values(array(
28697   'menu_name' => 'navigation',
28698   'mlid' => '188',
28699   'plid' => '172',
28700   'link_path' => 'user/%/delete',
28701   'router_path' => 'user/%/delete',
28702   'link_title' => 'Delete',
28703   'options' => 'a:0:{}',
28704   'module' => 'system',
28705   'hidden' => '-1',
28706   'external' => '0',
28707   'has_children' => '0',
28708   'expanded' => '0',
28709   'weight' => '0',
28710   'depth' => '2',
28711   'customized' => '0',
28712   'p1' => '172',
28713   'p2' => '188',
28714   'p3' => '0',
28715   'p4' => '0',
28716   'p5' => '0',
28717   'p6' => '0',
28718   'p7' => '0',
28719   'p8' => '0',
28720   'p9' => '0',
28721   'updated' => '0',
28722 ))
28723 ->values(array(
28724   'menu_name' => 'navigation',
28725   'mlid' => '189',
28726   'plid' => '158',
28727   'link_path' => 'node/add/employee',
28728   'router_path' => 'node/add/employee',
28729   'link_title' => 'Employee',
28730   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Employee node type";}}',
28731   'module' => 'system',
28732   'hidden' => '0',
28733   'external' => '0',
28734   'has_children' => '0',
28735   'expanded' => '0',
28736   'weight' => '0',
28737   'depth' => '2',
28738   'customized' => '0',
28739   'p1' => '158',
28740   'p2' => '189',
28741   'p3' => '0',
28742   'p4' => '0',
28743   'p5' => '0',
28744   'p6' => '0',
28745   'p7' => '0',
28746   'p8' => '0',
28747   'p9' => '0',
28748   'updated' => '0',
28749 ))
28750 ->values(array(
28751   'menu_name' => 'navigation',
28752   'mlid' => '190',
28753   'plid' => '167',
28754   'link_path' => 'admin/settings/error-reporting',
28755   'router_path' => 'admin/settings/error-reporting',
28756   'link_title' => 'Error reporting',
28757   '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.";}}',
28758   'module' => 'system',
28759   'hidden' => '0',
28760   'external' => '0',
28761   'has_children' => '0',
28762   'expanded' => '0',
28763   'weight' => '0',
28764   'depth' => '3',
28765   'customized' => '0',
28766   'p1' => '144',
28767   'p2' => '167',
28768   'p3' => '190',
28769   'p4' => '0',
28770   'p5' => '0',
28771   'p6' => '0',
28772   'p7' => '0',
28773   'p8' => '0',
28774   'p9' => '0',
28775   'updated' => '0',
28776 ))
28777 ->values(array(
28778   'menu_name' => 'navigation',
28779   'mlid' => '192',
28780   'plid' => '167',
28781   'link_path' => 'admin/settings/file-system',
28782   'router_path' => 'admin/settings/file-system',
28783   'link_title' => 'File system',
28784   '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.";}}',
28785   'module' => 'system',
28786   'hidden' => '0',
28787   'external' => '0',
28788   'has_children' => '0',
28789   'expanded' => '0',
28790   'weight' => '0',
28791   'depth' => '3',
28792   'customized' => '0',
28793   'p1' => '144',
28794   'p2' => '167',
28795   'p3' => '192',
28796   'p4' => '0',
28797   'p5' => '0',
28798   'p6' => '0',
28799   'p7' => '0',
28800   'p8' => '0',
28801   'p9' => '0',
28802   'updated' => '0',
28803 ))
28804 ->values(array(
28805   'menu_name' => 'navigation',
28806   'mlid' => '193',
28807   'plid' => '167',
28808   'link_path' => 'admin/settings/uploads',
28809   'router_path' => 'admin/settings/uploads',
28810   'link_title' => 'File uploads',
28811   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Control how files may be attached to content.";}}',
28812   'module' => 'system',
28813   'hidden' => '0',
28814   'external' => '0',
28815   'has_children' => '0',
28816   'expanded' => '0',
28817   'weight' => '0',
28818   'depth' => '3',
28819   'customized' => '0',
28820   'p1' => '144',
28821   'p2' => '167',
28822   'p3' => '193',
28823   'p4' => '0',
28824   'p5' => '0',
28825   'p6' => '0',
28826   'p7' => '0',
28827   'p8' => '0',
28828   'p9' => '0',
28829   'updated' => '0',
28830 ))
28831 ->values(array(
28832   'menu_name' => 'navigation',
28833   'mlid' => '194',
28834   'plid' => '167',
28835   'link_path' => 'admin/settings/image-toolkit',
28836   'router_path' => 'admin/settings/image-toolkit',
28837   'link_title' => 'Image toolkit',
28838   '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.";}}',
28839   'module' => 'system',
28840   'hidden' => '0',
28841   'external' => '0',
28842   'has_children' => '0',
28843   'expanded' => '0',
28844   'weight' => '0',
28845   'depth' => '3',
28846   'customized' => '0',
28847   'p1' => '144',
28848   'p2' => '167',
28849   'p3' => '194',
28850   'p4' => '0',
28851   'p5' => '0',
28852   'p6' => '0',
28853   'p7' => '0',
28854   'p8' => '0',
28855   'p9' => '0',
28856   'updated' => '0',
28857 ))
28858 ->values(array(
28859   'menu_name' => 'navigation',
28860   'mlid' => '195',
28861   'plid' => '167',
28862   'link_path' => 'admin/settings/filters',
28863   'router_path' => 'admin/settings/filters',
28864   'link_title' => 'Input formats',
28865   '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.";}}',
28866   'module' => 'system',
28867   'hidden' => '0',
28868   'external' => '0',
28869   'has_children' => '0',
28870   'expanded' => '0',
28871   'weight' => '0',
28872   'depth' => '3',
28873   'customized' => '0',
28874   'p1' => '144',
28875   'p2' => '167',
28876   'p3' => '195',
28877   'p4' => '0',
28878   'p5' => '0',
28879   'p6' => '0',
28880   'p7' => '0',
28881   'p8' => '0',
28882   'p9' => '0',
28883   'updated' => '0',
28884 ))
28885 ->values(array(
28886   'menu_name' => 'navigation',
28887   'mlid' => '196',
28888   'plid' => '167',
28889   'link_path' => 'admin/settings/logging',
28890   'router_path' => 'admin/settings/logging',
28891   'link_title' => 'Logging and alerts',
28892   '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.\";}}",
28893   'module' => 'system',
28894   'hidden' => '0',
28895   'external' => '0',
28896   'has_children' => '0',
28897   'expanded' => '0',
28898   'weight' => '0',
28899   'depth' => '3',
28900   'customized' => '0',
28901   'p1' => '144',
28902   'p2' => '167',
28903   'p3' => '196',
28904   'p4' => '0',
28905   'p5' => '0',
28906   'p6' => '0',
28907   'p7' => '0',
28908   'p8' => '0',
28909   'p9' => '0',
28910   'updated' => '0',
28911 ))
28912 ->values(array(
28913   'menu_name' => 'navigation',
28914   'mlid' => '197',
28915   'plid' => '166',
28916   'link_path' => 'admin/build/menu',
28917   'router_path' => 'admin/build/menu',
28918   'link_title' => 'Menus',
28919   '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.\";}}",
28920   'module' => 'system',
28921   'hidden' => '0',
28922   'external' => '0',
28923   'has_children' => '0',
28924   'expanded' => '0',
28925   'weight' => '0',
28926   'depth' => '3',
28927   'customized' => '0',
28928   'p1' => '144',
28929   'p2' => '166',
28930   'p3' => '197',
28931   'p4' => '0',
28932   'p5' => '0',
28933   'p6' => '0',
28934   'p7' => '0',
28935   'p8' => '0',
28936   'p9' => '0',
28937   'updated' => '0',
28938 ))
28939 ->values(array(
28940   'menu_name' => 'navigation',
28941   'mlid' => '198',
28942   'plid' => '158',
28943   'link_path' => 'node/add/test-event',
28944   'router_path' => 'node/add/test-event',
28945   'link_title' => 'Migrate test event',
28946   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:27:"test event description here";}}',
28947   'module' => 'system',
28948   'hidden' => '0',
28949   'external' => '0',
28950   'has_children' => '0',
28951   'expanded' => '0',
28952   'weight' => '0',
28953   'depth' => '2',
28954   'customized' => '0',
28955   'p1' => '158',
28956   'p2' => '198',
28957   'p3' => '0',
28958   'p4' => '0',
28959   'p5' => '0',
28960   'p6' => '0',
28961   'p7' => '0',
28962   'p8' => '0',
28963   'p9' => '0',
28964   'updated' => '0',
28965 ))
28966 ->values(array(
28967   'menu_name' => 'navigation',
28968   'mlid' => '199',
28969   'plid' => '158',
28970   'link_path' => 'node/add/test-page',
28971   'router_path' => 'node/add/test-page',
28972   'link_title' => 'Migrate test page',
28973   '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.\";}}",
28974   'module' => 'system',
28975   'hidden' => '0',
28976   'external' => '0',
28977   'has_children' => '0',
28978   'expanded' => '0',
28979   'weight' => '0',
28980   'depth' => '2',
28981   'customized' => '0',
28982   'p1' => '158',
28983   'p2' => '199',
28984   'p3' => '0',
28985   'p4' => '0',
28986   'p5' => '0',
28987   'p6' => '0',
28988   'p7' => '0',
28989   'p8' => '0',
28990   'p9' => '0',
28991   'updated' => '0',
28992 ))
28993 ->values(array(
28994   'menu_name' => 'navigation',
28995   'mlid' => '200',
28996   'plid' => '158',
28997   'link_path' => 'node/add/test-planet',
28998   'router_path' => 'node/add/test-planet',
28999   'link_title' => 'Migrate test planet',
29000   '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.\";}}",
29001   'module' => 'system',
29002   'hidden' => '0',
29003   'external' => '0',
29004   'has_children' => '0',
29005   'expanded' => '0',
29006   'weight' => '0',
29007   'depth' => '2',
29008   'customized' => '0',
29009   'p1' => '158',
29010   'p2' => '200',
29011   'p3' => '0',
29012   'p4' => '0',
29013   'p5' => '0',
29014   'p6' => '0',
29015   'p7' => '0',
29016   'p8' => '0',
29017   'p9' => '0',
29018   'updated' => '0',
29019 ))
29020 ->values(array(
29021   'menu_name' => 'navigation',
29022   'mlid' => '201',
29023   'plid' => '158',
29024   'link_path' => 'node/add/test-story',
29025   'router_path' => 'node/add/test-story',
29026   'link_title' => 'Migrate test story',
29027   '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.\";}}",
29028   'module' => 'system',
29029   'hidden' => '0',
29030   'external' => '0',
29031   'has_children' => '0',
29032   'expanded' => '0',
29033   'weight' => '0',
29034   'depth' => '2',
29035   'customized' => '0',
29036   'p1' => '158',
29037   'p2' => '201',
29038   'p3' => '0',
29039   'p4' => '0',
29040   'p5' => '0',
29041   'p6' => '0',
29042   'p7' => '0',
29043   'p8' => '0',
29044   'p9' => '0',
29045   'updated' => '0',
29046 ))
29047 ->values(array(
29048   'menu_name' => 'navigation',
29049   'mlid' => '202',
29050   'plid' => '166',
29051   'link_path' => 'admin/build/modules',
29052   'router_path' => 'admin/build/modules',
29053   'link_title' => 'Modules',
29054   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}',
29055   'module' => 'system',
29056   'hidden' => '0',
29057   'external' => '0',
29058   'has_children' => '0',
29059   'expanded' => '0',
29060   'weight' => '0',
29061   'depth' => '3',
29062   'customized' => '0',
29063   'p1' => '144',
29064   'p2' => '166',
29065   'p3' => '202',
29066   'p4' => '0',
29067   'p5' => '0',
29068   'p6' => '0',
29069   'p7' => '0',
29070   'p8' => '0',
29071   'p9' => '0',
29072   'updated' => '0',
29073 ))
29074 ->values(array(
29075   'menu_name' => 'navigation',
29076   'mlid' => '203',
29077   'plid' => '167',
29078   'link_path' => 'admin/settings/performance',
29079   'router_path' => 'admin/settings/performance',
29080   'link_title' => 'Performance',
29081   '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.";}}',
29082   'module' => 'system',
29083   'hidden' => '0',
29084   'external' => '0',
29085   'has_children' => '0',
29086   'expanded' => '0',
29087   'weight' => '0',
29088   'depth' => '3',
29089   'customized' => '0',
29090   'p1' => '144',
29091   'p2' => '167',
29092   'p3' => '203',
29093   'p4' => '0',
29094   'p5' => '0',
29095   'p6' => '0',
29096   'p7' => '0',
29097   'p8' => '0',
29098   'p9' => '0',
29099   'updated' => '0',
29100 ))
29101 ->values(array(
29102   'menu_name' => 'navigation',
29103   'mlid' => '204',
29104   'plid' => '170',
29105   'link_path' => 'admin/user/permissions',
29106   'router_path' => 'admin/user/permissions',
29107   'link_title' => 'Permissions',
29108   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
29109   'module' => 'system',
29110   'hidden' => '0',
29111   'external' => '0',
29112   'has_children' => '0',
29113   'expanded' => '0',
29114   'weight' => '0',
29115   'depth' => '3',
29116   'customized' => '0',
29117   'p1' => '144',
29118   'p2' => '170',
29119   'p3' => '204',
29120   'p4' => '0',
29121   'p5' => '0',
29122   'p6' => '0',
29123   'p7' => '0',
29124   'p8' => '0',
29125   'p9' => '0',
29126   'updated' => '0',
29127 ))
29128 ->values(array(
29129   'menu_name' => 'navigation',
29130   'mlid' => '205',
29131   'plid' => '157',
29132   'link_path' => 'admin/content/node-settings',
29133   'router_path' => 'admin/content/node-settings',
29134   'link_title' => 'Post settings',
29135   '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.";}}',
29136   'module' => 'system',
29137   'hidden' => '0',
29138   'external' => '0',
29139   'has_children' => '0',
29140   'expanded' => '0',
29141   'weight' => '0',
29142   'depth' => '3',
29143   'customized' => '0',
29144   'p1' => '144',
29145   'p2' => '157',
29146   'p3' => '205',
29147   'p4' => '0',
29148   'p5' => '0',
29149   'p6' => '0',
29150   'p7' => '0',
29151   'p8' => '0',
29152   'p9' => '0',
29153   'updated' => '0',
29154 ))
29155 ->values(array(
29156   'menu_name' => 'navigation',
29157   'mlid' => '206',
29158   'plid' => '170',
29159   'link_path' => 'admin/user/profile',
29160   'router_path' => 'admin/user/profile',
29161   'link_title' => 'Profiles',
29162   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"Create customizable fields for your users.";}}',
29163   'module' => 'system',
29164   'hidden' => '0',
29165   'external' => '0',
29166   'has_children' => '0',
29167   'expanded' => '0',
29168   'weight' => '0',
29169   'depth' => '3',
29170   'customized' => '0',
29171   'p1' => '144',
29172   'p2' => '170',
29173   'p3' => '206',
29174   'p4' => '0',
29175   'p5' => '0',
29176   'p6' => '0',
29177   'p7' => '0',
29178   'p8' => '0',
29179   'p9' => '0',
29180   'updated' => '0',
29181 ))
29182 ->values(array(
29183   'menu_name' => 'navigation',
29184   'mlid' => '207',
29185   'plid' => '157',
29186   'link_path' => 'admin/content/rss-publishing',
29187   'router_path' => 'admin/content/rss-publishing',
29188   'link_title' => 'RSS publishing',
29189   '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.";}}',
29190   'module' => 'system',
29191   'hidden' => '0',
29192   'external' => '0',
29193   'has_children' => '0',
29194   'expanded' => '0',
29195   'weight' => '0',
29196   'depth' => '3',
29197   'customized' => '0',
29198   'p1' => '144',
29199   'p2' => '157',
29200   'p3' => '207',
29201   'p4' => '0',
29202   'p5' => '0',
29203   'p6' => '0',
29204   'p7' => '0',
29205   'p8' => '0',
29206   'p9' => '0',
29207   'updated' => '0',
29208 ))
29209 ->values(array(
29210   'menu_name' => 'navigation',
29211   'mlid' => '208',
29212   'plid' => '0',
29213   'link_path' => 'comment/reply/%',
29214   'router_path' => 'comment/reply/%',
29215   'link_title' => 'Reply to comment',
29216   'options' => 'a:0:{}',
29217   'module' => 'system',
29218   'hidden' => '-1',
29219   'external' => '0',
29220   'has_children' => '0',
29221   'expanded' => '0',
29222   'weight' => '0',
29223   'depth' => '1',
29224   'customized' => '0',
29225   'p1' => '208',
29226   'p2' => '0',
29227   'p3' => '0',
29228   'p4' => '0',
29229   'p5' => '0',
29230   'p6' => '0',
29231   'p7' => '0',
29232   'p8' => '0',
29233   'p9' => '0',
29234   'updated' => '0',
29235 ))
29236 ->values(array(
29237   'menu_name' => 'navigation',
29238   'mlid' => '209',
29239   'plid' => '170',
29240   'link_path' => 'admin/user/roles',
29241   'router_path' => 'admin/user/roles',
29242   'link_title' => 'Roles',
29243   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
29244   'module' => 'system',
29245   'hidden' => '0',
29246   'external' => '0',
29247   'has_children' => '0',
29248   'expanded' => '0',
29249   'weight' => '0',
29250   'depth' => '3',
29251   'customized' => '0',
29252   'p1' => '144',
29253   'p2' => '170',
29254   'p3' => '209',
29255   'p4' => '0',
29256   'p5' => '0',
29257   'p6' => '0',
29258   'p7' => '0',
29259   'p8' => '0',
29260   'p9' => '0',
29261   'updated' => '0',
29262 ))
29263 ->values(array(
29264   'menu_name' => 'navigation',
29265   'mlid' => '210',
29266   'plid' => '167',
29267   'link_path' => 'admin/settings/site-information',
29268   'router_path' => 'admin/settings/site-information',
29269   'link_title' => 'Site information',
29270   '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.";}}',
29271   'module' => 'system',
29272   'hidden' => '0',
29273   'external' => '0',
29274   'has_children' => '0',
29275   'expanded' => '0',
29276   'weight' => '0',
29277   'depth' => '3',
29278   'customized' => '0',
29279   'p1' => '144',
29280   'p2' => '167',
29281   'p3' => '210',
29282   'p4' => '0',
29283   'p5' => '0',
29284   'p6' => '0',
29285   'p7' => '0',
29286   'p8' => '0',
29287   'p9' => '0',
29288   'updated' => '0',
29289 ))
29290 ->values(array(
29291   'menu_name' => 'navigation',
29292   'mlid' => '211',
29293   'plid' => '167',
29294   'link_path' => 'admin/settings/site-maintenance',
29295   'router_path' => 'admin/settings/site-maintenance',
29296   'link_title' => 'Site maintenance',
29297   '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.";}}',
29298   'module' => 'system',
29299   'hidden' => '0',
29300   'external' => '0',
29301   'has_children' => '0',
29302   'expanded' => '0',
29303   'weight' => '0',
29304   'depth' => '3',
29305   'customized' => '0',
29306   'p1' => '144',
29307   'p2' => '167',
29308   'p3' => '211',
29309   'p4' => '0',
29310   'p5' => '0',
29311   'p6' => '0',
29312   'p7' => '0',
29313   'p8' => '0',
29314   'p9' => '0',
29315   'updated' => '0',
29316 ))
29317 ->values(array(
29318   'menu_name' => 'navigation',
29319   'mlid' => '212',
29320   'plid' => '158',
29321   'link_path' => 'node/add/sponsor',
29322   'router_path' => 'node/add/sponsor',
29323   'link_title' => 'Sponsor',
29324   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Sponsor node type";}}',
29325   'module' => 'system',
29326   'hidden' => '0',
29327   'external' => '0',
29328   'has_children' => '0',
29329   'expanded' => '0',
29330   'weight' => '0',
29331   'depth' => '2',
29332   'customized' => '0',
29333   'p1' => '158',
29334   'p2' => '212',
29335   'p3' => '0',
29336   'p4' => '0',
29337   'p5' => '0',
29338   'p6' => '0',
29339   'p7' => '0',
29340   'p8' => '0',
29341   'p9' => '0',
29342   'updated' => '0',
29343 ))
29344 ->values(array(
29345   'menu_name' => 'navigation',
29346   'mlid' => '213',
29347   'plid' => '165',
29348   'link_path' => 'admin/reports/status',
29349   'router_path' => 'admin/reports/status',
29350   'link_title' => 'Status report',
29351   '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.\";}}",
29352   'module' => 'system',
29353   'hidden' => '0',
29354   'external' => '0',
29355   'has_children' => '0',
29356   'expanded' => '0',
29357   'weight' => '10',
29358   'depth' => '3',
29359   'customized' => '0',
29360   'p1' => '144',
29361   'p2' => '165',
29362   'p3' => '213',
29363   'p4' => '0',
29364   'p5' => '0',
29365   'p6' => '0',
29366   'p7' => '0',
29367   'p8' => '0',
29368   'p9' => '0',
29369   'updated' => '0',
29370 ))
29371 ->values(array(
29372   'menu_name' => 'navigation',
29373   'mlid' => '214',
29374   'plid' => '157',
29375   'link_path' => 'admin/content/taxonomy',
29376   'router_path' => 'admin/content/taxonomy',
29377   'link_title' => 'Taxonomy',
29378   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
29379   'module' => 'system',
29380   'hidden' => '0',
29381   'external' => '0',
29382   'has_children' => '0',
29383   'expanded' => '0',
29384   'weight' => '0',
29385   'depth' => '3',
29386   'customized' => '0',
29387   'p1' => '144',
29388   'p2' => '157',
29389   'p3' => '214',
29390   'p4' => '0',
29391   'p5' => '0',
29392   'p6' => '0',
29393   'p7' => '0',
29394   'p8' => '0',
29395   'p9' => '0',
29396   'updated' => '0',
29397 ))
29398 ->values(array(
29399   'menu_name' => 'navigation',
29400   'mlid' => '215',
29401   'plid' => '0',
29402   'link_path' => 'taxonomy/term/%',
29403   'router_path' => 'taxonomy/term/%',
29404   'link_title' => 'Taxonomy term',
29405   'options' => 'a:0:{}',
29406   'module' => 'system',
29407   'hidden' => '-1',
29408   'external' => '0',
29409   'has_children' => '0',
29410   'expanded' => '0',
29411   'weight' => '0',
29412   'depth' => '1',
29413   'customized' => '0',
29414   'p1' => '215',
29415   'p2' => '0',
29416   'p3' => '0',
29417   'p4' => '0',
29418   'p5' => '0',
29419   'p6' => '0',
29420   'p7' => '0',
29421   'p8' => '0',
29422   'p9' => '0',
29423   'updated' => '0',
29424 ))
29425 ->values(array(
29426   'menu_name' => 'navigation',
29427   'mlid' => '216',
29428   'plid' => '166',
29429   'link_path' => 'admin/build/themes',
29430   'router_path' => 'admin/build/themes',
29431   'link_title' => 'Themes',
29432   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}',
29433   'module' => 'system',
29434   'hidden' => '0',
29435   'external' => '0',
29436   'has_children' => '0',
29437   'expanded' => '0',
29438   'weight' => '0',
29439   'depth' => '3',
29440   'customized' => '0',
29441   'p1' => '144',
29442   'p2' => '166',
29443   'p3' => '216',
29444   'p4' => '0',
29445   'p5' => '0',
29446   'p6' => '0',
29447   'p7' => '0',
29448   'p8' => '0',
29449   'p9' => '0',
29450   'updated' => '0',
29451 ))
29452 ->values(array(
29453   'menu_name' => 'navigation',
29454   'mlid' => '217',
29455   'plid' => '170',
29456   'link_path' => 'admin/user/settings',
29457   'router_path' => 'admin/user/settings',
29458   'link_title' => 'User settings',
29459   '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.";}}',
29460   'module' => 'system',
29461   'hidden' => '0',
29462   'external' => '0',
29463   'has_children' => '0',
29464   'expanded' => '0',
29465   'weight' => '0',
29466   'depth' => '3',
29467   'customized' => '0',
29468   'p1' => '144',
29469   'p2' => '170',
29470   'p3' => '217',
29471   'p4' => '0',
29472   'p5' => '0',
29473   'p6' => '0',
29474   'p7' => '0',
29475   'p8' => '0',
29476   'p9' => '0',
29477   'updated' => '0',
29478 ))
29479 ->values(array(
29480   'menu_name' => 'navigation',
29481   'mlid' => '218',
29482   'plid' => '170',
29483   'link_path' => 'admin/user/user',
29484   'router_path' => 'admin/user/user',
29485   'link_title' => 'Users',
29486   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}',
29487   'module' => 'system',
29488   'hidden' => '0',
29489   'external' => '0',
29490   'has_children' => '0',
29491   'expanded' => '0',
29492   'weight' => '0',
29493   'depth' => '3',
29494   'customized' => '0',
29495   'p1' => '144',
29496   'p2' => '170',
29497   'p3' => '218',
29498   'p4' => '0',
29499   'p5' => '0',
29500   'p6' => '0',
29501   'p7' => '0',
29502   'p8' => '0',
29503   'p9' => '0',
29504   'updated' => '0',
29505 ))
29506 ->values(array(
29507   'menu_name' => 'navigation',
29508   'mlid' => '219',
29509   'plid' => '195',
29510   'link_path' => 'admin/settings/filters/%',
29511   'router_path' => 'admin/settings/filters/%',
29512   'link_title' => '',
29513   'options' => 'a:0:{}',
29514   'module' => 'system',
29515   'hidden' => '-1',
29516   'external' => '0',
29517   'has_children' => '0',
29518   'expanded' => '0',
29519   'weight' => '0',
29520   'depth' => '4',
29521   'customized' => '0',
29522   'p1' => '144',
29523   'p2' => '167',
29524   'p3' => '195',
29525   'p4' => '219',
29526   'p5' => '0',
29527   'p6' => '0',
29528   'p7' => '0',
29529   'p8' => '0',
29530   'p9' => '0',
29531   'updated' => '0',
29532 ))
29533 ->values(array(
29534   'menu_name' => 'navigation',
29535   'mlid' => '220',
29536   'plid' => '206',
29537   'link_path' => 'admin/user/profile/add',
29538   'router_path' => 'admin/user/profile/add',
29539   'link_title' => 'Add field',
29540   'options' => 'a:0:{}',
29541   'module' => 'system',
29542   'hidden' => '-1',
29543   'external' => '0',
29544   'has_children' => '0',
29545   'expanded' => '0',
29546   'weight' => '0',
29547   'depth' => '4',
29548   'customized' => '0',
29549   'p1' => '144',
29550   'p2' => '170',
29551   'p3' => '206',
29552   'p4' => '220',
29553   'p5' => '0',
29554   'p6' => '0',
29555   'p7' => '0',
29556   'p8' => '0',
29557   'p9' => '0',
29558   'updated' => '0',
29559 ))
29560 ->values(array(
29561   'menu_name' => 'navigation',
29562   'mlid' => '221',
29563   'plid' => '157',
29564   'link_path' => 'admin/content/node-type/article',
29565   'router_path' => 'admin/content/node-type/article',
29566   'link_title' => 'Article',
29567   'options' => 'a:0:{}',
29568   'module' => 'system',
29569   'hidden' => '-1',
29570   'external' => '0',
29571   'has_children' => '0',
29572   'expanded' => '0',
29573   'weight' => '0',
29574   'depth' => '3',
29575   'customized' => '0',
29576   'p1' => '144',
29577   'p2' => '157',
29578   'p3' => '221',
29579   'p4' => '0',
29580   'p5' => '0',
29581   'p6' => '0',
29582   'p7' => '0',
29583   'p8' => '0',
29584   'p9' => '0',
29585   'updated' => '0',
29586 ))
29587 ->values(array(
29588   'menu_name' => 'navigation',
29589   'mlid' => '222',
29590   'plid' => '180',
29591   'link_path' => 'admin/settings/clean-urls/check',
29592   'router_path' => 'admin/settings/clean-urls/check',
29593   'link_title' => 'Clean URL check',
29594   'options' => 'a:0:{}',
29595   'module' => 'system',
29596   'hidden' => '-1',
29597   'external' => '0',
29598   'has_children' => '0',
29599   'expanded' => '0',
29600   'weight' => '0',
29601   'depth' => '4',
29602   'customized' => '0',
29603   'p1' => '144',
29604   'p2' => '167',
29605   'p3' => '180',
29606   'p4' => '222',
29607   'p5' => '0',
29608   'p6' => '0',
29609   'p7' => '0',
29610   'p8' => '0',
29611   'p9' => '0',
29612   'updated' => '0',
29613 ))
29614 ->values(array(
29615   'menu_name' => 'navigation',
29616   'mlid' => '223',
29617   'plid' => '157',
29618   'link_path' => 'admin/content/node-type/company',
29619   'router_path' => 'admin/content/node-type/company',
29620   'link_title' => 'Company',
29621   'options' => 'a:0:{}',
29622   'module' => 'system',
29623   'hidden' => '-1',
29624   'external' => '0',
29625   'has_children' => '0',
29626   'expanded' => '0',
29627   'weight' => '0',
29628   'depth' => '3',
29629   'customized' => '0',
29630   'p1' => '144',
29631   'p2' => '157',
29632   'p3' => '223',
29633   'p4' => '0',
29634   'p5' => '0',
29635   'p6' => '0',
29636   'p7' => '0',
29637   'p8' => '0',
29638   'p9' => '0',
29639   'updated' => '0',
29640 ))
29641 ->values(array(
29642   'menu_name' => 'navigation',
29643   'mlid' => '224',
29644   'plid' => '176',
29645   'link_path' => 'admin/settings/actions/configure',
29646   'router_path' => 'admin/settings/actions/configure',
29647   'link_title' => 'Configure an advanced action',
29648   'options' => 'a:0:{}',
29649   'module' => 'system',
29650   'hidden' => '-1',
29651   'external' => '0',
29652   'has_children' => '0',
29653   'expanded' => '0',
29654   'weight' => '0',
29655   'depth' => '4',
29656   'customized' => '0',
29657   'p1' => '144',
29658   'p2' => '167',
29659   'p3' => '176',
29660   'p4' => '224',
29661   'p5' => '0',
29662   'p6' => '0',
29663   'p7' => '0',
29664   'p8' => '0',
29665   'p9' => '0',
29666   'updated' => '0',
29667 ))
29668 ->values(array(
29669   'menu_name' => 'navigation',
29670   'mlid' => '225',
29671   'plid' => '179',
29672   'link_path' => 'admin/build/block/configure',
29673   'router_path' => 'admin/build/block/configure',
29674   'link_title' => 'Configure block',
29675   'options' => 'a:0:{}',
29676   'module' => 'system',
29677   'hidden' => '-1',
29678   'external' => '0',
29679   'has_children' => '0',
29680   'expanded' => '0',
29681   'weight' => '0',
29682   'depth' => '4',
29683   'customized' => '0',
29684   'p1' => '144',
29685   'p2' => '166',
29686   'p3' => '179',
29687   'p4' => '225',
29688   'p5' => '0',
29689   'p6' => '0',
29690   'p7' => '0',
29691   'p8' => '0',
29692   'p9' => '0',
29693   'updated' => '0',
29694 ))
29695 ->values(array(
29696   'menu_name' => 'navigation',
29697   'mlid' => '226',
29698   'plid' => '166',
29699   'link_path' => 'admin/build/menu-customize/%',
29700   'router_path' => 'admin/build/menu-customize/%',
29701   'link_title' => 'Customize menu',
29702   'options' => 'a:0:{}',
29703   'module' => 'system',
29704   'hidden' => '-1',
29705   'external' => '0',
29706   'has_children' => '0',
29707   'expanded' => '0',
29708   'weight' => '0',
29709   'depth' => '3',
29710   'customized' => '0',
29711   'p1' => '144',
29712   'p2' => '166',
29713   'p3' => '226',
29714   'p4' => '0',
29715   'p5' => '0',
29716   'p6' => '0',
29717   'p7' => '0',
29718   'p8' => '0',
29719   'p9' => '0',
29720   'updated' => '0',
29721 ))
29722 ->values(array(
29723   'menu_name' => 'navigation',
29724   'mlid' => '227',
29725   'plid' => '186',
29726   'link_path' => 'admin/settings/date-time/lookup',
29727   'router_path' => 'admin/settings/date-time/lookup',
29728   'link_title' => 'Date and time lookup',
29729   'options' => 'a:0:{}',
29730   'module' => 'system',
29731   'hidden' => '-1',
29732   'external' => '0',
29733   'has_children' => '0',
29734   'expanded' => '0',
29735   'weight' => '0',
29736   'depth' => '4',
29737   'customized' => '0',
29738   'p1' => '144',
29739   'p2' => '167',
29740   'p3' => '186',
29741   'p4' => '227',
29742   'p5' => '0',
29743   'p6' => '0',
29744   'p7' => '0',
29745   'p8' => '0',
29746   'p9' => '0',
29747   'updated' => '0',
29748 ))
29749 ->values(array(
29750   'menu_name' => 'navigation',
29751   'mlid' => '228',
29752   'plid' => '179',
29753   'link_path' => 'admin/build/block/delete',
29754   'router_path' => 'admin/build/block/delete',
29755   'link_title' => 'Delete block',
29756   'options' => 'a:0:{}',
29757   'module' => 'system',
29758   'hidden' => '-1',
29759   'external' => '0',
29760   'has_children' => '0',
29761   'expanded' => '0',
29762   'weight' => '0',
29763   'depth' => '4',
29764   'customized' => '0',
29765   'p1' => '144',
29766   'p2' => '166',
29767   'p3' => '179',
29768   'p4' => '228',
29769   'p5' => '0',
29770   'p6' => '0',
29771   'p7' => '0',
29772   'p8' => '0',
29773   'p9' => '0',
29774   'updated' => '0',
29775 ))
29776 ->values(array(
29777   'menu_name' => 'navigation',
29778   'mlid' => '229',
29779   'plid' => '206',
29780   'link_path' => 'admin/user/profile/delete',
29781   'router_path' => 'admin/user/profile/delete',
29782   'link_title' => 'Delete field',
29783   'options' => 'a:0:{}',
29784   'module' => 'system',
29785   'hidden' => '-1',
29786   'external' => '0',
29787   'has_children' => '0',
29788   'expanded' => '0',
29789   'weight' => '0',
29790   'depth' => '4',
29791   'customized' => '0',
29792   'p1' => '144',
29793   'p2' => '170',
29794   'p3' => '206',
29795   'p4' => '229',
29796   'p5' => '0',
29797   'p6' => '0',
29798   'p7' => '0',
29799   'p8' => '0',
29800   'p9' => '0',
29801   'updated' => '0',
29802 ))
29803 ->values(array(
29804   'menu_name' => 'navigation',
29805   'mlid' => '230',
29806   'plid' => '195',
29807   'link_path' => 'admin/settings/filters/delete',
29808   'router_path' => 'admin/settings/filters/delete',
29809   'link_title' => 'Delete input format',
29810   'options' => 'a:0:{}',
29811   'module' => 'system',
29812   'hidden' => '-1',
29813   'external' => '0',
29814   'has_children' => '0',
29815   'expanded' => '0',
29816   'weight' => '0',
29817   'depth' => '4',
29818   'customized' => '0',
29819   'p1' => '144',
29820   'p2' => '167',
29821   'p3' => '195',
29822   'p4' => '230',
29823   'p5' => '0',
29824   'p6' => '0',
29825   'p7' => '0',
29826   'p8' => '0',
29827   'p9' => '0',
29828   'updated' => '0',
29829 ))
29830 ->values(array(
29831   'menu_name' => 'navigation',
29832   'mlid' => '231',
29833   'plid' => '175',
29834   'link_path' => 'admin/user/rules/delete',
29835   'router_path' => 'admin/user/rules/delete',
29836   'link_title' => 'Delete rule',
29837   'options' => 'a:0:{}',
29838   'module' => 'system',
29839   'hidden' => '-1',
29840   'external' => '0',
29841   'has_children' => '0',
29842   'expanded' => '0',
29843   'weight' => '0',
29844   'depth' => '4',
29845   'customized' => '0',
29846   'p1' => '144',
29847   'p2' => '170',
29848   'p3' => '175',
29849   'p4' => '231',
29850   'p5' => '0',
29851   'p6' => '0',
29852   'p7' => '0',
29853   'p8' => '0',
29854   'p9' => '0',
29855   'updated' => '0',
29856 ))
29857 ->values(array(
29858   'menu_name' => 'navigation',
29859   'mlid' => '232',
29860   'plid' => '206',
29861   'link_path' => 'admin/user/profile/edit',
29862   'router_path' => 'admin/user/profile/edit',
29863   'link_title' => 'Edit field',
29864   'options' => 'a:0:{}',
29865   'module' => 'system',
29866   'hidden' => '-1',
29867   'external' => '0',
29868   'has_children' => '0',
29869   'expanded' => '0',
29870   'weight' => '0',
29871   'depth' => '4',
29872   'customized' => '0',
29873   'p1' => '144',
29874   'p2' => '170',
29875   'p3' => '206',
29876   'p4' => '232',
29877   'p5' => '0',
29878   'p6' => '0',
29879   'p7' => '0',
29880   'p8' => '0',
29881   'p9' => '0',
29882   'updated' => '0',
29883 ))
29884 ->values(array(
29885   'menu_name' => 'navigation',
29886   'mlid' => '233',
29887   'plid' => '209',
29888   'link_path' => 'admin/user/roles/edit',
29889   'router_path' => 'admin/user/roles/edit',
29890   'link_title' => 'Edit role',
29891   'options' => 'a:0:{}',
29892   'module' => 'system',
29893   'hidden' => '-1',
29894   'external' => '0',
29895   'has_children' => '0',
29896   'expanded' => '0',
29897   'weight' => '0',
29898   'depth' => '4',
29899   'customized' => '0',
29900   'p1' => '144',
29901   'p2' => '170',
29902   'p3' => '209',
29903   'p4' => '233',
29904   'p5' => '0',
29905   'p6' => '0',
29906   'p7' => '0',
29907   'p8' => '0',
29908   'p9' => '0',
29909   'updated' => '0',
29910 ))
29911 ->values(array(
29912   'menu_name' => 'navigation',
29913   'mlid' => '234',
29914   'plid' => '175',
29915   'link_path' => 'admin/user/rules/edit',
29916   'router_path' => 'admin/user/rules/edit',
29917   'link_title' => 'Edit rule',
29918   'options' => 'a:0:{}',
29919   'module' => 'system',
29920   'hidden' => '-1',
29921   'external' => '0',
29922   'has_children' => '0',
29923   'expanded' => '0',
29924   'weight' => '0',
29925   'depth' => '4',
29926   'customized' => '0',
29927   'p1' => '144',
29928   'p2' => '170',
29929   'p3' => '175',
29930   'p4' => '234',
29931   'p5' => '0',
29932   'p6' => '0',
29933   'p7' => '0',
29934   'p8' => '0',
29935   'p9' => '0',
29936   'updated' => '0',
29937 ))
29938 ->values(array(
29939   'menu_name' => 'navigation',
29940   'mlid' => '235',
29941   'plid' => '157',
29942   'link_path' => 'admin/content/node-type/employee',
29943   'router_path' => 'admin/content/node-type/employee',
29944   'link_title' => 'Employee',
29945   'options' => 'a:0:{}',
29946   'module' => 'system',
29947   'hidden' => '-1',
29948   'external' => '0',
29949   'has_children' => '0',
29950   'expanded' => '0',
29951   'weight' => '0',
29952   'depth' => '3',
29953   'customized' => '0',
29954   'p1' => '144',
29955   'p2' => '157',
29956   'p3' => '235',
29957   'p4' => '0',
29958   'p5' => '0',
29959   'p6' => '0',
29960   'p7' => '0',
29961   'p8' => '0',
29962   'p9' => '0',
29963   'updated' => '0',
29964 ))
29965 ->values(array(
29966   'menu_name' => 'navigation',
29967   'mlid' => '236',
29968   'plid' => '214',
29969   'link_path' => 'admin/content/taxonomy/%',
29970   'router_path' => 'admin/content/taxonomy/%',
29971   'link_title' => 'List terms',
29972   'options' => 'a:0:{}',
29973   'module' => 'system',
29974   'hidden' => '-1',
29975   'external' => '0',
29976   'has_children' => '0',
29977   'expanded' => '0',
29978   'weight' => '0',
29979   'depth' => '4',
29980   'customized' => '0',
29981   'p1' => '144',
29982   'p2' => '157',
29983   'p3' => '214',
29984   'p4' => '236',
29985   'p5' => '0',
29986   'p6' => '0',
29987   'p7' => '0',
29988   'p8' => '0',
29989   'p9' => '0',
29990   'updated' => '0',
29991 ))
29992 ->values(array(
29993   'menu_name' => 'navigation',
29994   'mlid' => '237',
29995   'plid' => '157',
29996   'link_path' => 'admin/content/node-type/test-event',
29997   'router_path' => 'admin/content/node-type/test-event',
29998   'link_title' => 'Migrate test event',
29999   'options' => 'a:0:{}',
30000   'module' => 'system',
30001   'hidden' => '-1',
30002   'external' => '0',
30003   'has_children' => '0',
30004   'expanded' => '0',
30005   'weight' => '0',
30006   'depth' => '3',
30007   'customized' => '0',
30008   'p1' => '144',
30009   'p2' => '157',
30010   'p3' => '237',
30011   'p4' => '0',
30012   'p5' => '0',
30013   'p6' => '0',
30014   'p7' => '0',
30015   'p8' => '0',
30016   'p9' => '0',
30017   'updated' => '0',
30018 ))
30019 ->values(array(
30020   'menu_name' => 'navigation',
30021   'mlid' => '238',
30022   'plid' => '157',
30023   'link_path' => 'admin/content/node-type/test-page',
30024   'router_path' => 'admin/content/node-type/test-page',
30025   'link_title' => 'Migrate test page',
30026   'options' => 'a:0:{}',
30027   'module' => 'system',
30028   'hidden' => '-1',
30029   'external' => '0',
30030   'has_children' => '0',
30031   'expanded' => '0',
30032   'weight' => '0',
30033   'depth' => '3',
30034   'customized' => '0',
30035   'p1' => '144',
30036   'p2' => '157',
30037   'p3' => '238',
30038   'p4' => '0',
30039   'p5' => '0',
30040   'p6' => '0',
30041   'p7' => '0',
30042   'p8' => '0',
30043   'p9' => '0',
30044   'updated' => '0',
30045 ))
30046 ->values(array(
30047   'menu_name' => 'navigation',
30048   'mlid' => '239',
30049   'plid' => '157',
30050   'link_path' => 'admin/content/node-type/test-planet',
30051   'router_path' => 'admin/content/node-type/test-planet',
30052   'link_title' => 'Migrate test planet',
30053   'options' => 'a:0:{}',
30054   'module' => 'system',
30055   'hidden' => '-1',
30056   'external' => '0',
30057   'has_children' => '0',
30058   'expanded' => '0',
30059   'weight' => '0',
30060   'depth' => '3',
30061   'customized' => '0',
30062   'p1' => '144',
30063   'p2' => '157',
30064   'p3' => '239',
30065   'p4' => '0',
30066   'p5' => '0',
30067   'p6' => '0',
30068   'p7' => '0',
30069   'p8' => '0',
30070   'p9' => '0',
30071   'updated' => '0',
30072 ))
30073 ->values(array(
30074   'menu_name' => 'navigation',
30075   'mlid' => '240',
30076   'plid' => '157',
30077   'link_path' => 'admin/content/node-type/test-story',
30078   'router_path' => 'admin/content/node-type/test-story',
30079   'link_title' => 'Migrate test story',
30080   'options' => 'a:0:{}',
30081   'module' => 'system',
30082   'hidden' => '-1',
30083   'external' => '0',
30084   'has_children' => '0',
30085   'expanded' => '0',
30086   'weight' => '0',
30087   'depth' => '3',
30088   'customized' => '0',
30089   'p1' => '144',
30090   'p2' => '157',
30091   'p3' => '240',
30092   'p4' => '0',
30093   'p5' => '0',
30094   'p6' => '0',
30095   'p7' => '0',
30096   'p8' => '0',
30097   'p9' => '0',
30098   'updated' => '0',
30099 ))
30100 ->values(array(
30101   'menu_name' => 'navigation',
30102   'mlid' => '241',
30103   'plid' => '213',
30104   'link_path' => 'admin/reports/status/php',
30105   'router_path' => 'admin/reports/status/php',
30106   'link_title' => 'PHP',
30107   'options' => 'a:0:{}',
30108   'module' => 'system',
30109   'hidden' => '-1',
30110   'external' => '0',
30111   'has_children' => '0',
30112   'expanded' => '0',
30113   'weight' => '0',
30114   'depth' => '4',
30115   'customized' => '0',
30116   'p1' => '144',
30117   'p2' => '165',
30118   'p3' => '213',
30119   'p4' => '241',
30120   'p5' => '0',
30121   'p6' => '0',
30122   'p7' => '0',
30123   'p8' => '0',
30124   'p9' => '0',
30125   'updated' => '0',
30126 ))
30127 ->values(array(
30128   'menu_name' => 'navigation',
30129   'mlid' => '242',
30130   'plid' => '206',
30131   'link_path' => 'admin/user/profile/autocomplete',
30132   'router_path' => 'admin/user/profile/autocomplete',
30133   'link_title' => 'Profile category autocomplete',
30134   'options' => 'a:0:{}',
30135   'module' => 'system',
30136   'hidden' => '-1',
30137   'external' => '0',
30138   'has_children' => '0',
30139   'expanded' => '0',
30140   'weight' => '0',
30141   'depth' => '4',
30142   'customized' => '0',
30143   'p1' => '144',
30144   'p2' => '170',
30145   'p3' => '206',
30146   'p4' => '242',
30147   'p5' => '0',
30148   'p6' => '0',
30149   'p7' => '0',
30150   'p8' => '0',
30151   'p9' => '0',
30152   'updated' => '0',
30153 ))
30154 ->values(array(
30155   'menu_name' => 'navigation',
30156   'mlid' => '243',
30157   'plid' => '205',
30158   'link_path' => 'admin/content/node-settings/rebuild',
30159   'router_path' => 'admin/content/node-settings/rebuild',
30160   'link_title' => 'Rebuild permissions',
30161   'options' => 'a:0:{}',
30162   'module' => 'system',
30163   'hidden' => '-1',
30164   'external' => '0',
30165   'has_children' => '0',
30166   'expanded' => '0',
30167   'weight' => '0',
30168   'depth' => '4',
30169   'customized' => '0',
30170   'p1' => '144',
30171   'p2' => '157',
30172   'p3' => '205',
30173   'p4' => '243',
30174   'p5' => '0',
30175   'p6' => '0',
30176   'p7' => '0',
30177   'p8' => '0',
30178   'p9' => '0',
30179   'updated' => '0',
30180 ))
30181 ->values(array(
30182   'menu_name' => 'navigation',
30183   'mlid' => '244',
30184   'plid' => '176',
30185   'link_path' => 'admin/settings/actions/orphan',
30186   'router_path' => 'admin/settings/actions/orphan',
30187   'link_title' => 'Remove orphans',
30188   'options' => 'a:0:{}',
30189   'module' => 'system',
30190   'hidden' => '-1',
30191   'external' => '0',
30192   'has_children' => '0',
30193   'expanded' => '0',
30194   'weight' => '0',
30195   'depth' => '4',
30196   'customized' => '0',
30197   'p1' => '144',
30198   'p2' => '167',
30199   'p3' => '176',
30200   'p4' => '244',
30201   'p5' => '0',
30202   'p6' => '0',
30203   'p7' => '0',
30204   'p8' => '0',
30205   'p9' => '0',
30206   'updated' => '0',
30207 ))
30208 ->values(array(
30209   'menu_name' => 'navigation',
30210   'mlid' => '245',
30211   'plid' => '213',
30212   'link_path' => 'admin/reports/status/run-cron',
30213   'router_path' => 'admin/reports/status/run-cron',
30214   'link_title' => 'Run cron',
30215   'options' => 'a:0:{}',
30216   'module' => 'system',
30217   'hidden' => '-1',
30218   'external' => '0',
30219   'has_children' => '0',
30220   'expanded' => '0',
30221   'weight' => '0',
30222   'depth' => '4',
30223   'customized' => '0',
30224   'p1' => '144',
30225   'p2' => '165',
30226   'p3' => '213',
30227   'p4' => '245',
30228   'p5' => '0',
30229   'p6' => '0',
30230   'p7' => '0',
30231   'p8' => '0',
30232   'p9' => '0',
30233   'updated' => '0',
30234 ))
30235 ->values(array(
30236   'menu_name' => 'navigation',
30237   'mlid' => '246',
30238   'plid' => '213',
30239   'link_path' => 'admin/reports/status/sql',
30240   'router_path' => 'admin/reports/status/sql',
30241   'link_title' => 'SQL',
30242   'options' => 'a:0:{}',
30243   'module' => 'system',
30244   'hidden' => '-1',
30245   'external' => '0',
30246   'has_children' => '0',
30247   'expanded' => '0',
30248   'weight' => '0',
30249   'depth' => '4',
30250   'customized' => '0',
30251   'p1' => '144',
30252   'p2' => '165',
30253   'p3' => '213',
30254   'p4' => '246',
30255   'p5' => '0',
30256   'p6' => '0',
30257   'p7' => '0',
30258   'p8' => '0',
30259   'p9' => '0',
30260   'updated' => '0',
30261 ))
30262 ->values(array(
30263   'menu_name' => 'navigation',
30264   'mlid' => '247',
30265   'plid' => '157',
30266   'link_path' => 'admin/content/node-type/sponsor',
30267   'router_path' => 'admin/content/node-type/sponsor',
30268   'link_title' => 'Sponsor',
30269   'options' => 'a:0:{}',
30270   'module' => 'system',
30271   'hidden' => '-1',
30272   'external' => '0',
30273   'has_children' => '0',
30274   'expanded' => '0',
30275   'weight' => '0',
30276   'depth' => '3',
30277   'customized' => '0',
30278   'p1' => '144',
30279   'p2' => '157',
30280   'p3' => '247',
30281   'p4' => '0',
30282   'p5' => '0',
30283   'p6' => '0',
30284   'p7' => '0',
30285   'p8' => '0',
30286   'p9' => '0',
30287   'updated' => '0',
30288 ))
30289 ->values(array(
30290   'menu_name' => 'navigation',
30291   'mlid' => '248',
30292   'plid' => '186',
30293   'link_path' => 'admin/settings/date-time/formats/lookup',
30294   'router_path' => 'admin/settings/date-time/formats/lookup',
30295   'link_title' => 'Date and time lookup',
30296   'options' => 'a:0:{}',
30297   'module' => 'system',
30298   'hidden' => '-1',
30299   'external' => '0',
30300   'has_children' => '0',
30301   'expanded' => '0',
30302   'weight' => '0',
30303   'depth' => '4',
30304   'customized' => '0',
30305   'p1' => '144',
30306   'p2' => '167',
30307   'p3' => '186',
30308   'p4' => '248',
30309   'p5' => '0',
30310   'p6' => '0',
30311   'p7' => '0',
30312   'p8' => '0',
30313   'p9' => '0',
30314   'updated' => '0',
30315 ))
30316 ->values(array(
30317   'menu_name' => 'navigation',
30318   'mlid' => '249',
30319   'plid' => '0',
30320   'link_path' => 'admin/content/node-type/article/delete',
30321   'router_path' => 'admin/content/node-type/article/delete',
30322   'link_title' => 'Delete',
30323   'options' => 'a:0:{}',
30324   'module' => 'system',
30325   'hidden' => '-1',
30326   'external' => '0',
30327   'has_children' => '0',
30328   'expanded' => '0',
30329   'weight' => '0',
30330   'depth' => '1',
30331   'customized' => '0',
30332   'p1' => '249',
30333   'p2' => '0',
30334   'p3' => '0',
30335   'p4' => '0',
30336   'p5' => '0',
30337   'p6' => '0',
30338   'p7' => '0',
30339   'p8' => '0',
30340   'p9' => '0',
30341   'updated' => '0',
30342 ))
30343 ->values(array(
30344   'menu_name' => 'navigation',
30345   'mlid' => '250',
30346   'plid' => '0',
30347   'link_path' => 'admin/content/node-type/company/delete',
30348   'router_path' => 'admin/content/node-type/company/delete',
30349   'link_title' => 'Delete',
30350   'options' => 'a:0:{}',
30351   'module' => 'system',
30352   'hidden' => '-1',
30353   'external' => '0',
30354   'has_children' => '0',
30355   'expanded' => '0',
30356   'weight' => '0',
30357   'depth' => '1',
30358   'customized' => '0',
30359   'p1' => '250',
30360   'p2' => '0',
30361   'p3' => '0',
30362   'p4' => '0',
30363   'p5' => '0',
30364   'p6' => '0',
30365   'p7' => '0',
30366   'p8' => '0',
30367   'p9' => '0',
30368   'updated' => '0',
30369 ))
30370 ->values(array(
30371   'menu_name' => 'navigation',
30372   'mlid' => '251',
30373   'plid' => '0',
30374   'link_path' => 'admin/content/node-type/employee/delete',
30375   'router_path' => 'admin/content/node-type/employee/delete',
30376   'link_title' => 'Delete',
30377   'options' => 'a:0:{}',
30378   'module' => 'system',
30379   'hidden' => '-1',
30380   'external' => '0',
30381   'has_children' => '0',
30382   'expanded' => '0',
30383   'weight' => '0',
30384   'depth' => '1',
30385   'customized' => '0',
30386   'p1' => '251',
30387   'p2' => '0',
30388   'p3' => '0',
30389   'p4' => '0',
30390   'p5' => '0',
30391   'p6' => '0',
30392   'p7' => '0',
30393   'p8' => '0',
30394   'p9' => '0',
30395   'updated' => '0',
30396 ))
30397 ->values(array(
30398   'menu_name' => 'navigation',
30399   'mlid' => '252',
30400   'plid' => '0',
30401   'link_path' => 'admin/content/node-type/sponsor/delete',
30402   'router_path' => 'admin/content/node-type/sponsor/delete',
30403   'link_title' => 'Delete',
30404   'options' => 'a:0:{}',
30405   'module' => 'system',
30406   'hidden' => '-1',
30407   'external' => '0',
30408   'has_children' => '0',
30409   'expanded' => '0',
30410   'weight' => '0',
30411   'depth' => '1',
30412   'customized' => '0',
30413   'p1' => '252',
30414   'p2' => '0',
30415   'p3' => '0',
30416   'p4' => '0',
30417   'p5' => '0',
30418   'p6' => '0',
30419   'p7' => '0',
30420   'p8' => '0',
30421   'p9' => '0',
30422   'updated' => '0',
30423 ))
30424 ->values(array(
30425   'menu_name' => 'navigation',
30426   'mlid' => '253',
30427   'plid' => '0',
30428   'link_path' => 'admin/content/node-type/test-event/delete',
30429   'router_path' => 'admin/content/node-type/test-event/delete',
30430   'link_title' => 'Delete',
30431   'options' => 'a:0:{}',
30432   'module' => 'system',
30433   'hidden' => '-1',
30434   'external' => '0',
30435   'has_children' => '0',
30436   'expanded' => '0',
30437   'weight' => '0',
30438   'depth' => '1',
30439   'customized' => '0',
30440   'p1' => '253',
30441   'p2' => '0',
30442   'p3' => '0',
30443   'p4' => '0',
30444   'p5' => '0',
30445   'p6' => '0',
30446   'p7' => '0',
30447   'p8' => '0',
30448   'p9' => '0',
30449   'updated' => '0',
30450 ))
30451 ->values(array(
30452   'menu_name' => 'navigation',
30453   'mlid' => '254',
30454   'plid' => '0',
30455   'link_path' => 'admin/content/node-type/test-page/delete',
30456   'router_path' => 'admin/content/node-type/test-page/delete',
30457   'link_title' => 'Delete',
30458   'options' => 'a:0:{}',
30459   'module' => 'system',
30460   'hidden' => '-1',
30461   'external' => '0',
30462   'has_children' => '0',
30463   'expanded' => '0',
30464   'weight' => '0',
30465   'depth' => '1',
30466   'customized' => '0',
30467   'p1' => '254',
30468   'p2' => '0',
30469   'p3' => '0',
30470   'p4' => '0',
30471   'p5' => '0',
30472   'p6' => '0',
30473   'p7' => '0',
30474   'p8' => '0',
30475   'p9' => '0',
30476   'updated' => '0',
30477 ))
30478 ->values(array(
30479   'menu_name' => 'navigation',
30480   'mlid' => '255',
30481   'plid' => '0',
30482   'link_path' => 'admin/content/node-type/test-planet/delete',
30483   'router_path' => 'admin/content/node-type/test-planet/delete',
30484   'link_title' => 'Delete',
30485   'options' => 'a:0:{}',
30486   'module' => 'system',
30487   'hidden' => '-1',
30488   'external' => '0',
30489   'has_children' => '0',
30490   'expanded' => '0',
30491   'weight' => '0',
30492   'depth' => '1',
30493   'customized' => '0',
30494   'p1' => '255',
30495   'p2' => '0',
30496   'p3' => '0',
30497   'p4' => '0',
30498   'p5' => '0',
30499   'p6' => '0',
30500   'p7' => '0',
30501   'p8' => '0',
30502   'p9' => '0',
30503   'updated' => '0',
30504 ))
30505 ->values(array(
30506   'menu_name' => 'navigation',
30507   'mlid' => '256',
30508   'plid' => '0',
30509   'link_path' => 'admin/content/node-type/test-story/delete',
30510   'router_path' => 'admin/content/node-type/test-story/delete',
30511   'link_title' => 'Delete',
30512   'options' => 'a:0:{}',
30513   'module' => 'system',
30514   'hidden' => '-1',
30515   'external' => '0',
30516   'has_children' => '0',
30517   'expanded' => '0',
30518   'weight' => '0',
30519   'depth' => '1',
30520   'customized' => '0',
30521   'p1' => '256',
30522   'p2' => '0',
30523   'p3' => '0',
30524   'p4' => '0',
30525   'p5' => '0',
30526   'p6' => '0',
30527   'p7' => '0',
30528   'p8' => '0',
30529   'p9' => '0',
30530   'updated' => '0',
30531 ))
30532 ->values(array(
30533   'menu_name' => 'navigation',
30534   'mlid' => '257',
30535   'plid' => '176',
30536   'link_path' => 'admin/settings/actions/delete/%',
30537   'router_path' => 'admin/settings/actions/delete/%',
30538   'link_title' => 'Delete action',
30539   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
30540   'module' => 'system',
30541   'hidden' => '-1',
30542   'external' => '0',
30543   'has_children' => '0',
30544   'expanded' => '0',
30545   'weight' => '0',
30546   'depth' => '4',
30547   'customized' => '0',
30548   'p1' => '144',
30549   'p2' => '167',
30550   'p3' => '176',
30551   'p4' => '257',
30552   'p5' => '0',
30553   'p6' => '0',
30554   'p7' => '0',
30555   'p8' => '0',
30556   'p9' => '0',
30557   'updated' => '0',
30558 ))
30559 ->values(array(
30560   'menu_name' => 'navigation',
30561   'mlid' => '258',
30562   'plid' => '183',
30563   'link_path' => 'admin/build/contact/delete/%',
30564   'router_path' => 'admin/build/contact/delete/%',
30565   'link_title' => 'Delete contact',
30566   'options' => 'a:0:{}',
30567   'module' => 'system',
30568   'hidden' => '-1',
30569   'external' => '0',
30570   'has_children' => '0',
30571   'expanded' => '0',
30572   'weight' => '0',
30573   'depth' => '4',
30574   'customized' => '0',
30575   'p1' => '144',
30576   'p2' => '166',
30577   'p3' => '183',
30578   'p4' => '258',
30579   'p5' => '0',
30580   'p6' => '0',
30581   'p7' => '0',
30582   'p8' => '0',
30583   'p9' => '0',
30584   'updated' => '0',
30585 ))
30586 ->values(array(
30587   'menu_name' => 'navigation',
30588   'mlid' => '259',
30589   'plid' => '186',
30590   'link_path' => 'admin/settings/date-time/delete/%',
30591   'router_path' => 'admin/settings/date-time/delete/%',
30592   'link_title' => 'Delete date format type',
30593   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:52:"Allow users to delete a configured date format type.";}}',
30594   'module' => 'system',
30595   'hidden' => '-1',
30596   'external' => '0',
30597   'has_children' => '0',
30598   'expanded' => '0',
30599   'weight' => '0',
30600   'depth' => '4',
30601   'customized' => '0',
30602   'p1' => '144',
30603   'p2' => '167',
30604   'p3' => '186',
30605   'p4' => '259',
30606   'p5' => '0',
30607   'p6' => '0',
30608   'p7' => '0',
30609   'p8' => '0',
30610   'p9' => '0',
30611   'updated' => '0',
30612 ))
30613 ->values(array(
30614   'menu_name' => 'navigation',
30615   'mlid' => '260',
30616   'plid' => '0',
30617   'link_path' => 'admin/build/menu-customize/%/delete',
30618   'router_path' => 'admin/build/menu-customize/%/delete',
30619   'link_title' => 'Delete menu',
30620   'options' => 'a:0:{}',
30621   'module' => 'system',
30622   'hidden' => '-1',
30623   'external' => '0',
30624   'has_children' => '0',
30625   'expanded' => '0',
30626   'weight' => '0',
30627   'depth' => '1',
30628   'customized' => '0',
30629   'p1' => '260',
30630   'p2' => '0',
30631   'p3' => '0',
30632   'p4' => '0',
30633   'p5' => '0',
30634   'p6' => '0',
30635   'p7' => '0',
30636   'p8' => '0',
30637   'p9' => '0',
30638   'updated' => '0',
30639 ))
30640 ->values(array(
30641   'menu_name' => 'navigation',
30642   'mlid' => '261',
30643   'plid' => '183',
30644   'link_path' => 'admin/build/contact/edit/%',
30645   'router_path' => 'admin/build/contact/edit/%',
30646   'link_title' => 'Edit contact category',
30647   'options' => 'a:0:{}',
30648   'module' => 'system',
30649   'hidden' => '-1',
30650   'external' => '0',
30651   'has_children' => '0',
30652   'expanded' => '0',
30653   'weight' => '0',
30654   'depth' => '4',
30655   'customized' => '0',
30656   'p1' => '144',
30657   'p2' => '166',
30658   'p3' => '183',
30659   'p4' => '261',
30660   'p5' => '0',
30661   'p6' => '0',
30662   'p7' => '0',
30663   'p8' => '0',
30664   'p9' => '0',
30665   'updated' => '0',
30666 ))
30667 ->values(array(
30668   'menu_name' => 'navigation',
30669   'mlid' => '262',
30670   'plid' => '214',
30671   'link_path' => 'admin/content/taxonomy/edit/term',
30672   'router_path' => 'admin/content/taxonomy/edit/term',
30673   'link_title' => 'Edit term',
30674   'options' => 'a:0:{}',
30675   'module' => 'system',
30676   'hidden' => '-1',
30677   'external' => '0',
30678   'has_children' => '0',
30679   'expanded' => '0',
30680   'weight' => '0',
30681   'depth' => '4',
30682   'customized' => '0',
30683   'p1' => '144',
30684   'p2' => '157',
30685   'p3' => '214',
30686   'p4' => '262',
30687   'p5' => '0',
30688   'p6' => '0',
30689   'p7' => '0',
30690   'p8' => '0',
30691   'p9' => '0',
30692   'updated' => '0',
30693 ))
30694 ->values(array(
30695   'menu_name' => 'navigation',
30696   'mlid' => '263',
30697   'plid' => '179',
30698   'link_path' => 'admin/build/block/list/js',
30699   'router_path' => 'admin/build/block/list/js',
30700   'link_title' => 'JavaScript List Form',
30701   'options' => 'a:0:{}',
30702   'module' => 'system',
30703   'hidden' => '-1',
30704   'external' => '0',
30705   'has_children' => '0',
30706   'expanded' => '0',
30707   'weight' => '0',
30708   'depth' => '4',
30709   'customized' => '0',
30710   'p1' => '144',
30711   'p2' => '166',
30712   'p3' => '179',
30713   'p4' => '263',
30714   'p5' => '0',
30715   'p6' => '0',
30716   'p7' => '0',
30717   'p8' => '0',
30718   'p9' => '0',
30719   'updated' => '0',
30720 ))
30721 ->values(array(
30722   'menu_name' => 'navigation',
30723   'mlid' => '264',
30724   'plid' => '202',
30725   'link_path' => 'admin/build/modules/list/confirm',
30726   'router_path' => 'admin/build/modules/list/confirm',
30727   'link_title' => 'List',
30728   'options' => 'a:0:{}',
30729   'module' => 'system',
30730   'hidden' => '-1',
30731   'external' => '0',
30732   'has_children' => '0',
30733   'expanded' => '0',
30734   'weight' => '0',
30735   'depth' => '4',
30736   'customized' => '0',
30737   'p1' => '144',
30738   'p2' => '166',
30739   'p3' => '202',
30740   'p4' => '264',
30741   'p5' => '0',
30742   'p6' => '0',
30743   'p7' => '0',
30744   'p8' => '0',
30745   'p9' => '0',
30746   'updated' => '0',
30747 ))
30748 ->values(array(
30749   'menu_name' => 'navigation',
30750   'mlid' => '266',
30751   'plid' => '0',
30752   'link_path' => 'user/reset/%/%/%',
30753   'router_path' => 'user/reset/%/%/%',
30754   'link_title' => 'Reset password',
30755   'options' => 'a:0:{}',
30756   'module' => 'system',
30757   'hidden' => '-1',
30758   'external' => '0',
30759   'has_children' => '0',
30760   'expanded' => '0',
30761   'weight' => '0',
30762   'depth' => '1',
30763   'customized' => '0',
30764   'p1' => '266',
30765   'p2' => '0',
30766   'p3' => '0',
30767   'p4' => '0',
30768   'p5' => '0',
30769   'p6' => '0',
30770   'p7' => '0',
30771   'p8' => '0',
30772   'p9' => '0',
30773   'updated' => '0',
30774 ))
30775 ->values(array(
30776   'menu_name' => 'navigation',
30777   'mlid' => '267',
30778   'plid' => '202',
30779   'link_path' => 'admin/build/modules/uninstall/confirm',
30780   'router_path' => 'admin/build/modules/uninstall/confirm',
30781   'link_title' => 'Uninstall',
30782   'options' => 'a:0:{}',
30783   'module' => 'system',
30784   'hidden' => '-1',
30785   'external' => '0',
30786   'has_children' => '0',
30787   'expanded' => '0',
30788   'weight' => '0',
30789   'depth' => '4',
30790   'customized' => '0',
30791   'p1' => '144',
30792   'p2' => '166',
30793   'p3' => '202',
30794   'p4' => '267',
30795   'p5' => '0',
30796   'p6' => '0',
30797   'p7' => '0',
30798   'p8' => '0',
30799   'p9' => '0',
30800   'updated' => '0',
30801 ))
30802 ->values(array(
30803   'menu_name' => 'navigation',
30804   'mlid' => '269',
30805   'plid' => '0',
30806   'link_path' => 'node/%/revisions/%/delete',
30807   'router_path' => 'node/%/revisions/%/delete',
30808   'link_title' => 'Delete earlier revision',
30809   'options' => 'a:0:{}',
30810   'module' => 'system',
30811   'hidden' => '-1',
30812   'external' => '0',
30813   'has_children' => '0',
30814   'expanded' => '0',
30815   'weight' => '0',
30816   'depth' => '1',
30817   'customized' => '0',
30818   'p1' => '269',
30819   'p2' => '0',
30820   'p3' => '0',
30821   'p4' => '0',
30822   'p5' => '0',
30823   'p6' => '0',
30824   'p7' => '0',
30825   'p8' => '0',
30826   'p9' => '0',
30827   'updated' => '0',
30828 ))
30829 ->values(array(
30830   'menu_name' => 'navigation',
30831   'mlid' => '270',
30832   'plid' => '0',
30833   'link_path' => 'node/%/revisions/%/revert',
30834   'router_path' => 'node/%/revisions/%/revert',
30835   'link_title' => 'Revert to earlier revision',
30836   'options' => 'a:0:{}',
30837   'module' => 'system',
30838   'hidden' => '-1',
30839   'external' => '0',
30840   'has_children' => '0',
30841   'expanded' => '0',
30842   'weight' => '0',
30843   'depth' => '1',
30844   'customized' => '0',
30845   'p1' => '270',
30846   'p2' => '0',
30847   'p3' => '0',
30848   'p4' => '0',
30849   'p5' => '0',
30850   'p6' => '0',
30851   'p7' => '0',
30852   'p8' => '0',
30853   'p9' => '0',
30854   'updated' => '0',
30855 ))
30856 ->values(array(
30857   'menu_name' => 'navigation',
30858   'mlid' => '271',
30859   'plid' => '0',
30860   'link_path' => 'node/%/revisions/%/view',
30861   'router_path' => 'node/%/revisions/%/view',
30862   'link_title' => 'Revisions',
30863   'options' => 'a:0:{}',
30864   'module' => 'system',
30865   'hidden' => '-1',
30866   'external' => '0',
30867   'has_children' => '0',
30868   'expanded' => '0',
30869   'weight' => '0',
30870   'depth' => '1',
30871   'customized' => '0',
30872   'p1' => '271',
30873   'p2' => '0',
30874   'p3' => '0',
30875   'p4' => '0',
30876   'p5' => '0',
30877   'p6' => '0',
30878   'p7' => '0',
30879   'p8' => '0',
30880   'p9' => '0',
30881   'updated' => '0',
30882 ))
30883 ->values(array(
30884   'menu_name' => 'navigation',
30885   'mlid' => '272',
30886   'plid' => '186',
30887   'link_path' => 'admin/settings/date-time/formats/delete/%',
30888   'router_path' => 'admin/settings/date-time/formats/delete/%',
30889   'link_title' => 'Delete date format',
30890   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Allow users to delete a configured date format.";}}',
30891   'module' => 'system',
30892   'hidden' => '-1',
30893   'external' => '0',
30894   'has_children' => '0',
30895   'expanded' => '0',
30896   'weight' => '0',
30897   'depth' => '4',
30898   'customized' => '0',
30899   'p1' => '144',
30900   'p2' => '167',
30901   'p3' => '186',
30902   'p4' => '272',
30903   'p5' => '0',
30904   'p6' => '0',
30905   'p7' => '0',
30906   'p8' => '0',
30907   'p9' => '0',
30908   'updated' => '0',
30909 ))
30910 ->values(array(
30911   'menu_name' => 'navigation',
30912   'mlid' => '273',
30913   'plid' => '197',
30914   'link_path' => 'admin/build/menu/item/%/delete',
30915   'router_path' => 'admin/build/menu/item/%/delete',
30916   'link_title' => 'Delete menu item',
30917   'options' => 'a:0:{}',
30918   'module' => 'system',
30919   'hidden' => '-1',
30920   'external' => '0',
30921   'has_children' => '0',
30922   'expanded' => '0',
30923   'weight' => '0',
30924   'depth' => '4',
30925   'customized' => '0',
30926   'p1' => '144',
30927   'p2' => '166',
30928   'p3' => '197',
30929   'p4' => '273',
30930   'p5' => '0',
30931   'p6' => '0',
30932   'p7' => '0',
30933   'p8' => '0',
30934   'p9' => '0',
30935   'updated' => '0',
30936 ))
30937 ->values(array(
30938   'menu_name' => 'navigation',
30939   'mlid' => '276',
30940   'plid' => '197',
30941   'link_path' => 'admin/build/menu/item/%/edit',
30942   'router_path' => 'admin/build/menu/item/%/edit',
30943   'link_title' => 'Edit menu item',
30944   'options' => 'a:0:{}',
30945   'module' => 'system',
30946   'hidden' => '-1',
30947   'external' => '0',
30948   'has_children' => '0',
30949   'expanded' => '0',
30950   'weight' => '0',
30951   'depth' => '4',
30952   'customized' => '0',
30953   'p1' => '144',
30954   'p2' => '166',
30955   'p3' => '197',
30956   'p4' => '276',
30957   'p5' => '0',
30958   'p6' => '0',
30959   'p7' => '0',
30960   'p8' => '0',
30961   'p9' => '0',
30962   'updated' => '0',
30963 ))
30964 ->values(array(
30965   'menu_name' => 'navigation',
30966   'mlid' => '277',
30967   'plid' => '214',
30968   'link_path' => 'admin/content/taxonomy/edit/vocabulary/%',
30969   'router_path' => 'admin/content/taxonomy/edit/vocabulary/%',
30970   'link_title' => 'Edit vocabulary',
30971   'options' => 'a:0:{}',
30972   'module' => 'system',
30973   'hidden' => '-1',
30974   'external' => '0',
30975   'has_children' => '0',
30976   'expanded' => '0',
30977   'weight' => '0',
30978   'depth' => '4',
30979   'customized' => '0',
30980   'p1' => '144',
30981   'p2' => '157',
30982   'p3' => '214',
30983   'p4' => '277',
30984   'p5' => '0',
30985   'p6' => '0',
30986   'p7' => '0',
30987   'p8' => '0',
30988   'p9' => '0',
30989   'updated' => '0',
30990 ))
30991 ->values(array(
30992   'menu_name' => 'navigation',
30993   'mlid' => '278',
30994   'plid' => '197',
30995   'link_path' => 'admin/build/menu/item/%/reset',
30996   'router_path' => 'admin/build/menu/item/%/reset',
30997   'link_title' => 'Reset menu item',
30998   'options' => 'a:0:{}',
30999   'module' => 'system',
31000   'hidden' => '-1',
31001   'external' => '0',
31002   'has_children' => '0',
31003   'expanded' => '0',
31004   'weight' => '0',
31005   'depth' => '4',
31006   'customized' => '0',
31007   'p1' => '144',
31008   'p2' => '166',
31009   'p3' => '197',
31010   'p4' => '278',
31011   'p5' => '0',
31012   'p6' => '0',
31013   'p7' => '0',
31014   'p8' => '0',
31015   'p9' => '0',
31016   'updated' => '0',
31017 ))
31018 ->values(array(
31019   'menu_name' => 'navigation',
31020   'mlid' => '299',
31021   'plid' => '0',
31022   'link_path' => 'event',
31023   'router_path' => 'event',
31024   'link_title' => 'Events',
31025   'options' => 'a:0:{}',
31026   'module' => 'system',
31027   'hidden' => '1',
31028   'external' => '0',
31029   'has_children' => '0',
31030   'expanded' => '0',
31031   'weight' => '0',
31032   'depth' => '1',
31033   'customized' => '0',
31034   'p1' => '299',
31035   'p2' => '0',
31036   'p3' => '0',
31037   'p4' => '0',
31038   'p5' => '0',
31039   'p6' => '0',
31040   'p7' => '0',
31041   'p8' => '0',
31042   'p9' => '0',
31043   'updated' => '0',
31044 ))
31045 ->values(array(
31046   'menu_name' => 'navigation',
31047   'mlid' => '300',
31048   'plid' => '299',
31049   'link_path' => 'event/dst',
31050   'router_path' => 'event/dst',
31051   'link_title' => 'Event dst view',
31052   'options' => 'a:0:{}',
31053   'module' => 'system',
31054   'hidden' => '-1',
31055   'external' => '0',
31056   'has_children' => '0',
31057   'expanded' => '0',
31058   'weight' => '0',
31059   'depth' => '2',
31060   'customized' => '0',
31061   'p1' => '299',
31062   'p2' => '300',
31063   'p3' => '0',
31064   'p4' => '0',
31065   'p5' => '0',
31066   'p6' => '0',
31067   'p7' => '0',
31068   'p8' => '0',
31069   'p9' => '0',
31070   'updated' => '0',
31071 ))
31072 ->values(array(
31073   'menu_name' => 'navigation',
31074   'mlid' => '301',
31075   'plid' => '299',
31076   'link_path' => 'event/ical',
31077   'router_path' => 'event/ical',
31078   'link_title' => 'Event ical feed',
31079   'options' => 'a:0:{}',
31080   'module' => 'system',
31081   'hidden' => '-1',
31082   'external' => '0',
31083   'has_children' => '0',
31084   'expanded' => '0',
31085   'weight' => '0',
31086   'depth' => '2',
31087   'customized' => '0',
31088   'p1' => '299',
31089   'p2' => '301',
31090   'p3' => '0',
31091   'p4' => '0',
31092   'p5' => '0',
31093   'p6' => '0',
31094   'p7' => '0',
31095   'p8' => '0',
31096   'p9' => '0',
31097   'updated' => '0',
31098 ))
31099 ->values(array(
31100   'menu_name' => 'navigation',
31101   'mlid' => '302',
31102   'plid' => '299',
31103   'link_path' => 'event/feed',
31104   'router_path' => 'event/feed',
31105   'link_title' => 'Event rss feed',
31106   'options' => 'a:0:{}',
31107   'module' => 'system',
31108   'hidden' => '-1',
31109   'external' => '0',
31110   'has_children' => '0',
31111   'expanded' => '0',
31112   'weight' => '0',
31113   'depth' => '2',
31114   'customized' => '0',
31115   'p1' => '299',
31116   'p2' => '302',
31117   'p3' => '0',
31118   'p4' => '0',
31119   'p5' => '0',
31120   'p6' => '0',
31121   'p7' => '0',
31122   'p8' => '0',
31123   'p9' => '0',
31124   'updated' => '0',
31125 ))
31126 ->values(array(
31127   'menu_name' => 'navigation',
31128   'mlid' => '303',
31129   'plid' => '299',
31130   'link_path' => 'event/type',
31131   'router_path' => 'event/type',
31132   'link_title' => 'Filter by content type',
31133   'options' => 'a:0:{}',
31134   'module' => 'system',
31135   'hidden' => '-1',
31136   'external' => '0',
31137   'has_children' => '0',
31138   'expanded' => '0',
31139   'weight' => '0',
31140   'depth' => '2',
31141   'customized' => '0',
31142   'p1' => '299',
31143   'p2' => '303',
31144   'p3' => '0',
31145   'p4' => '0',
31146   'p5' => '0',
31147   'p6' => '0',
31148   'p7' => '0',
31149   'p8' => '0',
31150   'p9' => '0',
31151   'updated' => '0',
31152 ))
31153 ->values(array(
31154   'menu_name' => 'navigation',
31155   'mlid' => '304',
31156   'plid' => '299',
31157   'link_path' => 'event/term',
31158   'router_path' => 'event/term',
31159   'link_title' => 'Filter by taxonomy',
31160   'options' => 'a:0:{}',
31161   'module' => 'system',
31162   'hidden' => '-1',
31163   'external' => '0',
31164   'has_children' => '0',
31165   'expanded' => '0',
31166   'weight' => '0',
31167   'depth' => '2',
31168   'customized' => '0',
31169   'p1' => '299',
31170   'p2' => '304',
31171   'p3' => '0',
31172   'p4' => '0',
31173   'p5' => '0',
31174   'p6' => '0',
31175   'p7' => '0',
31176   'p8' => '0',
31177   'p9' => '0',
31178   'updated' => '0',
31179 ))
31180 ->values(array(
31181   'menu_name' => 'navigation',
31182   'mlid' => '305',
31183   'plid' => '0',
31184   'link_path' => 'node/%/ical',
31185   'router_path' => 'node/%/ical',
31186   'link_title' => 'Event ical',
31187   'options' => 'a:0:{}',
31188   'module' => 'system',
31189   'hidden' => '-1',
31190   'external' => '0',
31191   'has_children' => '0',
31192   'expanded' => '0',
31193   'weight' => '0',
31194   'depth' => '1',
31195   'customized' => '0',
31196   'p1' => '305',
31197   'p2' => '0',
31198   'p3' => '0',
31199   'p4' => '0',
31200   'p5' => '0',
31201   'p6' => '0',
31202   'p7' => '0',
31203   'p8' => '0',
31204   'p9' => '0',
31205   'updated' => '0',
31206 ))
31207 ->values(array(
31208   'menu_name' => 'navigation',
31209   'mlid' => '306',
31210   'plid' => '167',
31211   'link_path' => 'admin/settings/event',
31212   'router_path' => 'admin/settings/event',
31213   'link_title' => 'Events',
31214   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Set up how your site handles events.";}}',
31215   'module' => 'system',
31216   'hidden' => '0',
31217   'external' => '0',
31218   'has_children' => '1',
31219   'expanded' => '0',
31220   'weight' => '0',
31221   'depth' => '3',
31222   'customized' => '0',
31223   'p1' => '144',
31224   'p2' => '167',
31225   'p3' => '306',
31226   'p4' => '0',
31227   'p5' => '0',
31228   'p6' => '0',
31229   'p7' => '0',
31230   'p8' => '0',
31231   'p9' => '0',
31232   'updated' => '0',
31233 ))
31234 ->values(array(
31235   'menu_name' => 'navigation',
31236   'mlid' => '307',
31237   'plid' => '306',
31238   'link_path' => 'admin/settings/event/overview',
31239   'router_path' => 'admin/settings/event/overview',
31240   'link_title' => 'Event overview',
31241   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Change how event summary information is displayed.";}}',
31242   'module' => 'system',
31243   'hidden' => '0',
31244   'external' => '0',
31245   'has_children' => '0',
31246   'expanded' => '0',
31247   'weight' => '0',
31248   'depth' => '4',
31249   'customized' => '0',
31250   'p1' => '144',
31251   'p2' => '167',
31252   'p3' => '306',
31253   'p4' => '307',
31254   'p5' => '0',
31255   'p6' => '0',
31256   'p7' => '0',
31257   'p8' => '0',
31258   'p9' => '0',
31259   'updated' => '0',
31260 ))
31261 ->values(array(
31262   'menu_name' => 'navigation',
31263   'mlid' => '308',
31264   'plid' => '306',
31265   'link_path' => 'admin/settings/event/timezone',
31266   'router_path' => 'admin/settings/event/timezone',
31267   'link_title' => 'Timezone handling',
31268   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Change how timezone information is saved and displayed.";}}',
31269   'module' => 'system',
31270   'hidden' => '0',
31271   'external' => '0',
31272   'has_children' => '0',
31273   'expanded' => '0',
31274   'weight' => '0',
31275   'depth' => '4',
31276   'customized' => '0',
31277   'p1' => '144',
31278   'p2' => '167',
31279   'p3' => '306',
31280   'p4' => '308',
31281   'p5' => '0',
31282   'p6' => '0',
31283   'p7' => '0',
31284   'p8' => '0',
31285   'p9' => '0',
31286   'updated' => '0',
31287 ))
31288 ->values(array(
31289   'menu_name' => 'navigation',
31290   'mlid' => '309',
31291   'plid' => '158',
31292   'link_path' => 'node/add/story',
31293   'router_path' => 'node/add/story',
31294   'link_title' => 'Story',
31295   '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.\";}}",
31296   'module' => 'system',
31297   'hidden' => '0',
31298   'external' => '0',
31299   'has_children' => '0',
31300   'expanded' => '0',
31301   'weight' => '0',
31302   'depth' => '2',
31303   'customized' => '0',
31304   'p1' => '158',
31305   'p2' => '309',
31306   'p3' => '0',
31307   'p4' => '0',
31308   'p5' => '0',
31309   'p6' => '0',
31310   'p7' => '0',
31311   'p8' => '0',
31312   'p9' => '0',
31313   'updated' => '0',
31314 ))
31315 ->values(array(
31316   'menu_name' => 'navigation',
31317   'mlid' => '310',
31318   'plid' => '157',
31319   'link_path' => 'admin/content/node-type/story',
31320   'router_path' => 'admin/content/node-type/story',
31321   'link_title' => 'Story',
31322   'options' => 'a:0:{}',
31323   'module' => 'system',
31324   'hidden' => '-1',
31325   'external' => '0',
31326   'has_children' => '0',
31327   'expanded' => '0',
31328   'weight' => '0',
31329   'depth' => '3',
31330   'customized' => '0',
31331   'p1' => '144',
31332   'p2' => '157',
31333   'p3' => '310',
31334   'p4' => '0',
31335   'p5' => '0',
31336   'p6' => '0',
31337   'p7' => '0',
31338   'p8' => '0',
31339   'p9' => '0',
31340   'updated' => '0',
31341 ))
31342 ->values(array(
31343   'menu_name' => 'navigation',
31344   'mlid' => '311',
31345   'plid' => '0',
31346   'link_path' => 'admin/content/node-type/story/delete',
31347   'router_path' => 'admin/content/node-type/story/delete',
31348   'link_title' => 'Delete',
31349   'options' => 'a:0:{}',
31350   'module' => 'system',
31351   'hidden' => '-1',
31352   'external' => '0',
31353   'has_children' => '0',
31354   'expanded' => '0',
31355   'weight' => '0',
31356   'depth' => '1',
31357   'customized' => '0',
31358   'p1' => '311',
31359   'p2' => '0',
31360   'p3' => '0',
31361   'p4' => '0',
31362   'p5' => '0',
31363   'p6' => '0',
31364   'p7' => '0',
31365   'p8' => '0',
31366   'p9' => '0',
31367   'updated' => '0',
31368 ))
31369 ->values(array(
31370   'menu_name' => 'navigation',
31371   'mlid' => '328',
31372   'plid' => '0',
31373   'link_path' => 'filefield/progress',
31374   'router_path' => 'filefield/progress',
31375   'link_title' => '',
31376   'options' => 'a:0:{}',
31377   'module' => 'system',
31378   'hidden' => '-1',
31379   'external' => '0',
31380   'has_children' => '0',
31381   'expanded' => '0',
31382   'weight' => '0',
31383   'depth' => '1',
31384   'customized' => '0',
31385   'p1' => '328',
31386   'p2' => '0',
31387   'p3' => '0',
31388   'p4' => '0',
31389   'p5' => '0',
31390   'p6' => '0',
31391   'p7' => '0',
31392   'p8' => '0',
31393   'p9' => '0',
31394   'updated' => '0',
31395 ))
31396 ->values(array(
31397   'menu_name' => 'navigation',
31398   'mlid' => '329',
31399   'plid' => '0',
31400   'link_path' => 'filefield/ahah/%/%/%',
31401   'router_path' => 'filefield/ahah/%/%/%',
31402   'link_title' => '',
31403   'options' => 'a:0:{}',
31404   'module' => 'system',
31405   'hidden' => '-1',
31406   'external' => '0',
31407   'has_children' => '0',
31408   'expanded' => '0',
31409   'weight' => '0',
31410   'depth' => '1',
31411   'customized' => '0',
31412   'p1' => '329',
31413   'p2' => '0',
31414   'p3' => '0',
31415   'p4' => '0',
31416   'p5' => '0',
31417   'p6' => '0',
31418   'p7' => '0',
31419   'p8' => '0',
31420   'p9' => '0',
31421   'updated' => '0',
31422 ))
31423 ->values(array(
31424   'menu_name' => 'navigation',
31425   'mlid' => '333',
31426   'plid' => '167',
31427   'link_path' => 'admin/settings/email',
31428   'router_path' => 'admin/settings/email',
31429   'link_title' => 'CCK Email Contact Form Settings',
31430   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Administer flood control settings for email contact forms";}}',
31431   'module' => 'system',
31432   'hidden' => '0',
31433   'external' => '0',
31434   'has_children' => '0',
31435   'expanded' => '0',
31436   'weight' => '0',
31437   'depth' => '3',
31438   'customized' => '0',
31439   'p1' => '144',
31440   'p2' => '167',
31441   'p3' => '333',
31442   'p4' => '0',
31443   'p5' => '0',
31444   'p6' => '0',
31445   'p7' => '0',
31446   'p8' => '0',
31447   'p9' => '0',
31448   'updated' => '0',
31449 ))
31450 ->values(array(
31451   'menu_name' => 'navigation',
31452   'mlid' => '334',
31453   'plid' => '0',
31454   'link_path' => 'email/%/%',
31455   'router_path' => 'email/%/%',
31456   'link_title' => 'Email Contact Form',
31457   'options' => 'a:0:{}',
31458   'module' => 'system',
31459   'hidden' => '-1',
31460   'external' => '0',
31461   'has_children' => '0',
31462   'expanded' => '0',
31463   'weight' => '0',
31464   'depth' => '1',
31465   'customized' => '0',
31466   'p1' => '334',
31467   'p2' => '0',
31468   'p3' => '0',
31469   'p4' => '0',
31470   'p5' => '0',
31471   'p6' => '0',
31472   'p7' => '0',
31473   'p8' => '0',
31474   'p9' => '0',
31475   'updated' => '0',
31476 ))
31477 ->values(array(
31478   'menu_name' => 'navigation',
31479   'mlid' => '350',
31480   'plid' => '0',
31481   'link_path' => 'aggregator',
31482   'router_path' => 'aggregator',
31483   'link_title' => 'Feed aggregator',
31484   'options' => 'a:0:{}',
31485   'module' => 'system',
31486   'hidden' => '0',
31487   'external' => '0',
31488   'has_children' => '1',
31489   'expanded' => '0',
31490   'weight' => '5',
31491   'depth' => '1',
31492   'customized' => '0',
31493   'p1' => '350',
31494   'p2' => '0',
31495   'p3' => '0',
31496   'p4' => '0',
31497   'p5' => '0',
31498   'p6' => '0',
31499   'p7' => '0',
31500   'p8' => '0',
31501   'p9' => '0',
31502   'updated' => '0',
31503 ))
31504 ->values(array(
31505   'menu_name' => 'navigation',
31506   'mlid' => '351',
31507   'plid' => '350',
31508   'link_path' => 'aggregator/categories',
31509   'router_path' => 'aggregator/categories',
31510   'link_title' => 'Categories',
31511   'options' => 'a:0:{}',
31512   'module' => 'system',
31513   'hidden' => '0',
31514   'external' => '0',
31515   'has_children' => '1',
31516   'expanded' => '0',
31517   'weight' => '0',
31518   'depth' => '2',
31519   'customized' => '0',
31520   'p1' => '350',
31521   'p2' => '351',
31522   'p3' => '0',
31523   'p4' => '0',
31524   'p5' => '0',
31525   'p6' => '0',
31526   'p7' => '0',
31527   'p8' => '0',
31528   'p9' => '0',
31529   'updated' => '0',
31530 ))
31531 ->values(array(
31532   'menu_name' => 'navigation',
31533   'mlid' => '352',
31534   'plid' => '350',
31535   'link_path' => 'aggregator/opml',
31536   'router_path' => 'aggregator/opml',
31537   'link_title' => 'OPML feed',
31538   'options' => 'a:0:{}',
31539   'module' => 'system',
31540   'hidden' => '-1',
31541   'external' => '0',
31542   'has_children' => '0',
31543   'expanded' => '0',
31544   'weight' => '0',
31545   'depth' => '2',
31546   'customized' => '0',
31547   'p1' => '350',
31548   'p2' => '352',
31549   'p3' => '0',
31550   'p4' => '0',
31551   'p5' => '0',
31552   'p6' => '0',
31553   'p7' => '0',
31554   'p8' => '0',
31555   'p9' => '0',
31556   'updated' => '0',
31557 ))
31558 ->values(array(
31559   'menu_name' => 'navigation',
31560   'mlid' => '353',
31561   'plid' => '350',
31562   'link_path' => 'aggregator/rss',
31563   'router_path' => 'aggregator/rss',
31564   'link_title' => 'RSS feed',
31565   'options' => 'a:0:{}',
31566   'module' => 'system',
31567   'hidden' => '-1',
31568   'external' => '0',
31569   'has_children' => '0',
31570   'expanded' => '0',
31571   'weight' => '0',
31572   'depth' => '2',
31573   'customized' => '0',
31574   'p1' => '350',
31575   'p2' => '353',
31576   'p3' => '0',
31577   'p4' => '0',
31578   'p5' => '0',
31579   'p6' => '0',
31580   'p7' => '0',
31581   'p8' => '0',
31582   'p9' => '0',
31583   'updated' => '0',
31584 ))
31585 ->values(array(
31586   'menu_name' => 'navigation',
31587   'mlid' => '354',
31588   'plid' => '350',
31589   'link_path' => 'aggregator/sources',
31590   'router_path' => 'aggregator/sources',
31591   'link_title' => 'Sources',
31592   'options' => 'a:0:{}',
31593   'module' => 'system',
31594   'hidden' => '0',
31595   'external' => '0',
31596   'has_children' => '0',
31597   'expanded' => '0',
31598   'weight' => '0',
31599   'depth' => '2',
31600   'customized' => '0',
31601   'p1' => '350',
31602   'p2' => '354',
31603   'p3' => '0',
31604   'p4' => '0',
31605   'p5' => '0',
31606   'p6' => '0',
31607   'p7' => '0',
31608   'p8' => '0',
31609   'p9' => '0',
31610   'updated' => '0',
31611 ))
31612 ->values(array(
31613   'menu_name' => 'navigation',
31614   'mlid' => '355',
31615   'plid' => '351',
31616   'link_path' => 'aggregator/categories/%',
31617   'router_path' => 'aggregator/categories/%',
31618   'link_title' => '',
31619   'options' => 'a:0:{}',
31620   'module' => 'system',
31621   'hidden' => '0',
31622   'external' => '0',
31623   'has_children' => '0',
31624   'expanded' => '0',
31625   'weight' => '0',
31626   'depth' => '3',
31627   'customized' => '0',
31628   'p1' => '350',
31629   'p2' => '351',
31630   'p3' => '355',
31631   'p4' => '0',
31632   'p5' => '0',
31633   'p6' => '0',
31634   'p7' => '0',
31635   'p8' => '0',
31636   'p9' => '0',
31637   'updated' => '0',
31638 ))
31639 ->values(array(
31640   'menu_name' => 'navigation',
31641   'mlid' => '356',
31642   'plid' => '354',
31643   'link_path' => 'aggregator/sources/%',
31644   'router_path' => 'aggregator/sources/%',
31645   'link_title' => '',
31646   'options' => 'a:0:{}',
31647   'module' => 'system',
31648   'hidden' => '-1',
31649   'external' => '0',
31650   'has_children' => '0',
31651   'expanded' => '0',
31652   'weight' => '0',
31653   'depth' => '3',
31654   'customized' => '0',
31655   'p1' => '350',
31656   'p2' => '354',
31657   'p3' => '356',
31658   'p4' => '0',
31659   'p5' => '0',
31660   'p6' => '0',
31661   'p7' => '0',
31662   'p8' => '0',
31663   'p9' => '0',
31664   'updated' => '0',
31665 ))
31666 ->values(array(
31667   'menu_name' => 'navigation',
31668   'mlid' => '357',
31669   'plid' => '157',
31670   'link_path' => 'admin/content/aggregator',
31671   'router_path' => 'admin/content/aggregator',
31672   'link_title' => 'Feed aggregator',
31673   '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.\";}}",
31674   'module' => 'system',
31675   'hidden' => '0',
31676   'external' => '0',
31677   'has_children' => '0',
31678   'expanded' => '0',
31679   'weight' => '0',
31680   'depth' => '3',
31681   'customized' => '0',
31682   'p1' => '144',
31683   'p2' => '157',
31684   'p3' => '357',
31685   'p4' => '0',
31686   'p5' => '0',
31687   'p6' => '0',
31688   'p7' => '0',
31689   'p8' => '0',
31690   'p9' => '0',
31691   'updated' => '0',
31692 ))
31693 ->values(array(
31694   'menu_name' => 'navigation',
31695   'mlid' => '358',
31696   'plid' => '357',
31697   'link_path' => 'admin/content/aggregator/remove/%',
31698   'router_path' => 'admin/content/aggregator/remove/%',
31699   'link_title' => 'Remove items',
31700   'options' => 'a:0:{}',
31701   'module' => 'system',
31702   'hidden' => '-1',
31703   'external' => '0',
31704   'has_children' => '0',
31705   'expanded' => '0',
31706   'weight' => '0',
31707   'depth' => '4',
31708   'customized' => '0',
31709   'p1' => '144',
31710   'p2' => '157',
31711   'p3' => '357',
31712   'p4' => '358',
31713   'p5' => '0',
31714   'p6' => '0',
31715   'p7' => '0',
31716   'p8' => '0',
31717   'p9' => '0',
31718   'updated' => '0',
31719 ))
31720 ->values(array(
31721   'menu_name' => 'navigation',
31722   'mlid' => '359',
31723   'plid' => '357',
31724   'link_path' => 'admin/content/aggregator/update/%',
31725   'router_path' => 'admin/content/aggregator/update/%',
31726   'link_title' => 'Update items',
31727   'options' => 'a:0:{}',
31728   'module' => 'system',
31729   'hidden' => '-1',
31730   'external' => '0',
31731   'has_children' => '0',
31732   'expanded' => '0',
31733   'weight' => '0',
31734   'depth' => '4',
31735   'customized' => '0',
31736   'p1' => '144',
31737   'p2' => '157',
31738   'p3' => '357',
31739   'p4' => '359',
31740   'p5' => '0',
31741   'p6' => '0',
31742   'p7' => '0',
31743   'p8' => '0',
31744   'p9' => '0',
31745   'updated' => '0',
31746 ))
31747 ->values(array(
31748   'menu_name' => 'navigation',
31749   'mlid' => '360',
31750   'plid' => '357',
31751   'link_path' => 'admin/content/aggregator/edit/category/%',
31752   'router_path' => 'admin/content/aggregator/edit/category/%',
31753   'link_title' => 'Edit category',
31754   'options' => 'a:0:{}',
31755   'module' => 'system',
31756   'hidden' => '-1',
31757   'external' => '0',
31758   'has_children' => '0',
31759   'expanded' => '0',
31760   'weight' => '0',
31761   'depth' => '4',
31762   'customized' => '0',
31763   'p1' => '144',
31764   'p2' => '157',
31765   'p3' => '357',
31766   'p4' => '360',
31767   'p5' => '0',
31768   'p6' => '0',
31769   'p7' => '0',
31770   'p8' => '0',
31771   'p9' => '0',
31772   'updated' => '0',
31773 ))
31774 ->values(array(
31775   'menu_name' => 'navigation',
31776   'mlid' => '361',
31777   'plid' => '357',
31778   'link_path' => 'admin/content/aggregator/edit/feed/%',
31779   'router_path' => 'admin/content/aggregator/edit/feed/%',
31780   'link_title' => 'Edit feed',
31781   'options' => 'a:0:{}',
31782   'module' => 'system',
31783   'hidden' => '-1',
31784   'external' => '0',
31785   'has_children' => '0',
31786   'expanded' => '0',
31787   'weight' => '0',
31788   'depth' => '4',
31789   'customized' => '0',
31790   'p1' => '144',
31791   'p2' => '157',
31792   'p3' => '357',
31793   'p4' => '361',
31794   'p5' => '0',
31795   'p6' => '0',
31796   'p7' => '0',
31797   'p8' => '0',
31798   'p9' => '0',
31799   'updated' => '0',
31800 ))
31801 ->values(array(
31802   'menu_name' => 'navigation',
31803   'mlid' => '363',
31804   'plid' => '0',
31805   'link_path' => 'book',
31806   'router_path' => 'book',
31807   'link_title' => 'Books',
31808   'options' => 'a:0:{}',
31809   'module' => 'system',
31810   'hidden' => '1',
31811   'external' => '0',
31812   'has_children' => '0',
31813   'expanded' => '0',
31814   'weight' => '0',
31815   'depth' => '1',
31816   'customized' => '0',
31817   'p1' => '363',
31818   'p2' => '0',
31819   'p3' => '0',
31820   'p4' => '0',
31821   'p5' => '0',
31822   'p6' => '0',
31823   'p7' => '0',
31824   'p8' => '0',
31825   'p9' => '0',
31826   'updated' => '0',
31827 ))
31828 ->values(array(
31829   'menu_name' => 'navigation',
31830   'mlid' => '364',
31831   'plid' => '363',
31832   'link_path' => 'book/js/form',
31833   'router_path' => 'book/js/form',
31834   'link_title' => '',
31835   'options' => 'a:0:{}',
31836   'module' => 'system',
31837   'hidden' => '-1',
31838   'external' => '0',
31839   'has_children' => '0',
31840   'expanded' => '0',
31841   'weight' => '0',
31842   'depth' => '2',
31843   'customized' => '0',
31844   'p1' => '363',
31845   'p2' => '364',
31846   'p3' => '0',
31847   'p4' => '0',
31848   'p5' => '0',
31849   'p6' => '0',
31850   'p7' => '0',
31851   'p8' => '0',
31852   'p9' => '0',
31853   'updated' => '0',
31854 ))
31855 ->values(array(
31856   'menu_name' => 'navigation',
31857   'mlid' => '366',
31858   'plid' => '157',
31859   'link_path' => 'admin/content/book',
31860   'router_path' => 'admin/content/book',
31861   'link_title' => 'Books',
31862   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}",
31863   'module' => 'system',
31864   'hidden' => '0',
31865   'external' => '0',
31866   'has_children' => '0',
31867   'expanded' => '0',
31868   'weight' => '0',
31869   'depth' => '3',
31870   'customized' => '0',
31871   'p1' => '144',
31872   'p2' => '157',
31873   'p3' => '366',
31874   'p4' => '0',
31875   'p5' => '0',
31876   'p6' => '0',
31877   'p7' => '0',
31878   'p8' => '0',
31879   'p9' => '0',
31880   'updated' => '0',
31881 ))
31882 ->values(array(
31883   'menu_name' => 'navigation',
31884   'mlid' => '367',
31885   'plid' => '363',
31886   'link_path' => 'book/export/%/%',
31887   'router_path' => 'book/export/%/%',
31888   'link_title' => '',
31889   'options' => 'a:0:{}',
31890   'module' => 'system',
31891   'hidden' => '-1',
31892   'external' => '0',
31893   'has_children' => '0',
31894   'expanded' => '0',
31895   'weight' => '0',
31896   'depth' => '2',
31897   'customized' => '0',
31898   'p1' => '363',
31899   'p2' => '367',
31900   'p3' => '0',
31901   'p4' => '0',
31902   'p5' => '0',
31903   'p6' => '0',
31904   'p7' => '0',
31905   'p8' => '0',
31906   'p9' => '0',
31907   'updated' => '0',
31908 ))
31909 ->values(array(
31910   'menu_name' => 'navigation',
31911   'mlid' => '369',
31912   'plid' => '366',
31913   'link_path' => 'admin/content/book/%',
31914   'router_path' => 'admin/content/book/%',
31915   'link_title' => 'Re-order book pages and change titles',
31916   'options' => 'a:0:{}',
31917   'module' => 'system',
31918   'hidden' => '-1',
31919   'external' => '0',
31920   'has_children' => '0',
31921   'expanded' => '0',
31922   'weight' => '0',
31923   'depth' => '4',
31924   'customized' => '0',
31925   'p1' => '144',
31926   'p2' => '157',
31927   'p3' => '366',
31928   'p4' => '369',
31929   'p5' => '0',
31930   'p6' => '0',
31931   'p7' => '0',
31932   'p8' => '0',
31933   'p9' => '0',
31934   'updated' => '0',
31935 ))
31936 ->values(array(
31937   'menu_name' => 'navigation',
31938   'mlid' => '370',
31939   'plid' => '0',
31940   'link_path' => 'node/%/outline/remove',
31941   'router_path' => 'node/%/outline/remove',
31942   'link_title' => 'Remove from outline',
31943   'options' => 'a:0:{}',
31944   'module' => 'system',
31945   'hidden' => '-1',
31946   'external' => '0',
31947   'has_children' => '0',
31948   'expanded' => '0',
31949   'weight' => '0',
31950   'depth' => '1',
31951   'customized' => '0',
31952   'p1' => '370',
31953   'p2' => '0',
31954   'p3' => '0',
31955   'p4' => '0',
31956   'p5' => '0',
31957   'p6' => '0',
31958   'p7' => '0',
31959   'p8' => '0',
31960   'p9' => '0',
31961   'updated' => '0',
31962 ))
31963 ->values(array(
31964   'menu_name' => 'secondary-links',
31965   'mlid' => '393',
31966   'plid' => '0',
31967   'link_path' => 'user/login',
31968   'router_path' => 'user/login',
31969   'link_title' => 'Test 3',
31970   'options' => 'a:0:{}',
31971   'module' => 'menu',
31972   'hidden' => '0',
31973   'external' => '0',
31974   'has_children' => '1',
31975   'expanded' => '0',
31976   'weight' => '-47',
31977   'depth' => '1',
31978   'customized' => '1',
31979   'p1' => '393',
31980   'p2' => '0',
31981   'p3' => '0',
31982   'p4' => '0',
31983   'p5' => '0',
31984   'p6' => '0',
31985   'p7' => '0',
31986   'p8' => '0',
31987   'p9' => '0',
31988   'updated' => '0',
31989 ))
31990 ->values(array(
31991   'menu_name' => 'navigation',
31992   'mlid' => '394',
31993   'plid' => '166',
31994   'link_path' => 'admin/build/path',
31995   'router_path' => 'admin/build/path',
31996   'link_title' => 'URL aliases',
31997   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
31998   'module' => 'system',
31999   'hidden' => '0',
32000   'external' => '0',
32001   'has_children' => '0',
32002   'expanded' => '0',
32003   'weight' => '0',
32004   'depth' => '3',
32005   'customized' => '0',
32006   'p1' => '144',
32007   'p2' => '166',
32008   'p3' => '394',
32009   'p4' => '0',
32010   'p5' => '0',
32011   'p6' => '0',
32012   'p7' => '0',
32013   'p8' => '0',
32014   'p9' => '0',
32015   'updated' => '0',
32016 ))
32017 ->values(array(
32018   'menu_name' => 'navigation',
32019   'mlid' => '395',
32020   'plid' => '394',
32021   'link_path' => 'admin/build/path/delete',
32022   'router_path' => 'admin/build/path/delete',
32023   'link_title' => 'Delete alias',
32024   'options' => 'a:0:{}',
32025   'module' => 'system',
32026   'hidden' => '-1',
32027   'external' => '0',
32028   'has_children' => '0',
32029   'expanded' => '0',
32030   'weight' => '0',
32031   'depth' => '4',
32032   'customized' => '0',
32033   'p1' => '144',
32034   'p2' => '166',
32035   'p3' => '394',
32036   'p4' => '395',
32037   'p5' => '0',
32038   'p6' => '0',
32039   'p7' => '0',
32040   'p8' => '0',
32041   'p9' => '0',
32042   'updated' => '0',
32043 ))
32044 ->values(array(
32045   'menu_name' => 'navigation',
32046   'mlid' => '396',
32047   'plid' => '394',
32048   'link_path' => 'admin/build/path/edit',
32049   'router_path' => 'admin/build/path/edit',
32050   'link_title' => 'Edit alias',
32051   'options' => 'a:0:{}',
32052   'module' => 'system',
32053   'hidden' => '-1',
32054   'external' => '0',
32055   'has_children' => '0',
32056   'expanded' => '0',
32057   'weight' => '0',
32058   'depth' => '4',
32059   'customized' => '0',
32060   'p1' => '144',
32061   'p2' => '166',
32062   'p3' => '394',
32063   'p4' => '396',
32064   'p5' => '0',
32065   'p6' => '0',
32066   'p7' => '0',
32067   'p8' => '0',
32068   'p9' => '0',
32069   'updated' => '0',
32070 ))
32071 ->values(array(
32072   'menu_name' => 'navigation',
32073   'mlid' => '397',
32074   'plid' => '0',
32075   'link_path' => 'system/files/imagecache',
32076   'router_path' => 'system/files/imagecache',
32077   'link_title' => '',
32078   'options' => 'a:0:{}',
32079   'module' => 'system',
32080   'hidden' => '-1',
32081   'external' => '0',
32082   'has_children' => '0',
32083   'expanded' => '0',
32084   'weight' => '0',
32085   'depth' => '1',
32086   'customized' => '0',
32087   'p1' => '397',
32088   'p2' => '0',
32089   'p3' => '0',
32090   'p4' => '0',
32091   'p5' => '0',
32092   'p6' => '0',
32093   'p7' => '0',
32094   'p8' => '0',
32095   'p9' => '0',
32096   'updated' => '0',
32097 ))
32098 ->values(array(
32099   'menu_name' => 'navigation',
32100   'mlid' => '398',
32101   'plid' => '167',
32102   'link_path' => 'admin/settings/imageapi',
32103   'router_path' => 'admin/settings/imageapi',
32104   'link_title' => 'ImageAPI',
32105   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"Configure ImageAPI.";}}',
32106   'module' => 'system',
32107   'hidden' => '0',
32108   'external' => '0',
32109   'has_children' => '0',
32110   'expanded' => '0',
32111   'weight' => '0',
32112   'depth' => '3',
32113   'customized' => '0',
32114   'p1' => '144',
32115   'p2' => '167',
32116   'p3' => '398',
32117   'p4' => '0',
32118   'p5' => '0',
32119   'p6' => '0',
32120   'p7' => '0',
32121   'p8' => '0',
32122   'p9' => '0',
32123   'updated' => '0',
32124 ))
32125 ->values(array(
32126   'menu_name' => 'navigation',
32127   'mlid' => '399',
32128   'plid' => '167',
32129   'link_path' => 'admin/settings/language',
32130   'router_path' => 'admin/settings/language',
32131   'link_title' => 'Languages',
32132   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}',
32133   'module' => 'system',
32134   'hidden' => '0',
32135   'external' => '0',
32136   'has_children' => '0',
32137   'expanded' => '0',
32138   'weight' => '0',
32139   'depth' => '3',
32140   'customized' => '0',
32141   'p1' => '144',
32142   'p2' => '167',
32143   'p3' => '399',
32144   'p4' => '0',
32145   'p5' => '0',
32146   'p6' => '0',
32147   'p7' => '0',
32148   'p8' => '0',
32149   'p9' => '0',
32150   'updated' => '0',
32151 ))
32152 ->values(array(
32153   'menu_name' => 'navigation',
32154   'mlid' => '400',
32155   'plid' => '166',
32156   'link_path' => 'admin/build/translate',
32157   'router_path' => 'admin/build/translate',
32158   'link_title' => 'Translate interface',
32159   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}',
32160   'module' => 'system',
32161   'hidden' => '0',
32162   'external' => '0',
32163   'has_children' => '0',
32164   'expanded' => '0',
32165   'weight' => '0',
32166   'depth' => '3',
32167   'customized' => '0',
32168   'p1' => '144',
32169   'p2' => '166',
32170   'p3' => '400',
32171   'p4' => '0',
32172   'p5' => '0',
32173   'p6' => '0',
32174   'p7' => '0',
32175   'p8' => '0',
32176   'p9' => '0',
32177   'updated' => '0',
32178 ))
32179 ->values(array(
32180   'menu_name' => 'navigation',
32181   'mlid' => '401',
32182   'plid' => '399',
32183   'link_path' => 'admin/settings/language/delete/%',
32184   'router_path' => 'admin/settings/language/delete/%',
32185   'link_title' => 'Confirm',
32186   'options' => 'a:0:{}',
32187   'module' => 'system',
32188   'hidden' => '-1',
32189   'external' => '0',
32190   'has_children' => '0',
32191   'expanded' => '0',
32192   'weight' => '0',
32193   'depth' => '4',
32194   'customized' => '0',
32195   'p1' => '144',
32196   'p2' => '167',
32197   'p3' => '399',
32198   'p4' => '401',
32199   'p5' => '0',
32200   'p6' => '0',
32201   'p7' => '0',
32202   'p8' => '0',
32203   'p9' => '0',
32204   'updated' => '0',
32205 ))
32206 ->values(array(
32207   'menu_name' => 'navigation',
32208   'mlid' => '403',
32209   'plid' => '400',
32210   'link_path' => 'admin/build/translate/delete/%',
32211   'router_path' => 'admin/build/translate/delete/%',
32212   'link_title' => 'Delete string',
32213   'options' => 'a:0:{}',
32214   'module' => 'system',
32215   'hidden' => '-1',
32216   'external' => '0',
32217   'has_children' => '0',
32218   'expanded' => '0',
32219   'weight' => '0',
32220   'depth' => '4',
32221   'customized' => '0',
32222   'p1' => '144',
32223   'p2' => '166',
32224   'p3' => '400',
32225   'p4' => '403',
32226   'p5' => '0',
32227   'p6' => '0',
32228   'p7' => '0',
32229   'p8' => '0',
32230   'p9' => '0',
32231   'updated' => '0',
32232 ))
32233 ->values(array(
32234   'menu_name' => 'navigation',
32235   'mlid' => '404',
32236   'plid' => '399',
32237   'link_path' => 'admin/settings/language/edit/%',
32238   'router_path' => 'admin/settings/language/edit/%',
32239   'link_title' => 'Edit language',
32240   'options' => 'a:0:{}',
32241   'module' => 'system',
32242   'hidden' => '-1',
32243   'external' => '0',
32244   'has_children' => '0',
32245   'expanded' => '0',
32246   'weight' => '0',
32247   'depth' => '4',
32248   'customized' => '0',
32249   'p1' => '144',
32250   'p2' => '167',
32251   'p3' => '399',
32252   'p4' => '404',
32253   'p5' => '0',
32254   'p6' => '0',
32255   'p7' => '0',
32256   'p8' => '0',
32257   'p9' => '0',
32258   'updated' => '0',
32259 ))
32260 ->values(array(
32261   'menu_name' => 'navigation',
32262   'mlid' => '405',
32263   'plid' => '400',
32264   'link_path' => 'admin/build/translate/edit/%',
32265   'router_path' => 'admin/build/translate/edit/%',
32266   'link_title' => 'Edit string',
32267   'options' => 'a:0:{}',
32268   'module' => 'system',
32269   'hidden' => '-1',
32270   'external' => '0',
32271   'has_children' => '0',
32272   'expanded' => '0',
32273   'weight' => '0',
32274   'depth' => '4',
32275   'customized' => '0',
32276   'p1' => '144',
32277   'p2' => '166',
32278   'p3' => '400',
32279   'p4' => '405',
32280   'p5' => '0',
32281   'p6' => '0',
32282   'p7' => '0',
32283   'p8' => '0',
32284   'p9' => '0',
32285   'updated' => '0',
32286 ))
32287 ->values(array(
32288   'menu_name' => 'navigation',
32289   'mlid' => '407',
32290   'plid' => '0',
32291   'link_path' => 'i18nstrings/save',
32292   'router_path' => 'i18nstrings/save',
32293   'link_title' => 'Save string',
32294   'options' => 'a:0:{}',
32295   'module' => 'system',
32296   'hidden' => '-1',
32297   'external' => '0',
32298   'has_children' => '0',
32299   'expanded' => '0',
32300   'weight' => '0',
32301   'depth' => '1',
32302   'customized' => '0',
32303   'p1' => '407',
32304   'p2' => '0',
32305   'p3' => '0',
32306   'p4' => '0',
32307   'p5' => '0',
32308   'p6' => '0',
32309   'p7' => '0',
32310   'p8' => '0',
32311   'p9' => '0',
32312   'updated' => '0',
32313 ))
32314 ->values(array(
32315   'menu_name' => 'navigation',
32316   'mlid' => '408',
32317   'plid' => '0',
32318   'link_path' => 'i18n/node/autocomplete',
32319   'router_path' => 'i18n/node/autocomplete',
32320   'link_title' => 'Node title autocomplete',
32321   'options' => 'a:0:{}',
32322   'module' => 'system',
32323   'hidden' => '-1',
32324   'external' => '0',
32325   'has_children' => '0',
32326   'expanded' => '0',
32327   'weight' => '0',
32328   'depth' => '1',
32329   'customized' => '0',
32330   'p1' => '408',
32331   'p2' => '0',
32332   'p3' => '0',
32333   'p4' => '0',
32334   'p5' => '0',
32335   'p6' => '0',
32336   'p7' => '0',
32337   'p8' => '0',
32338   'p9' => '0',
32339   'updated' => '0',
32340 ))
32341 ->values(array(
32342   'menu_name' => 'navigation',
32343   'mlid' => '411',
32344   'plid' => '0',
32345   'link_path' => 'core/modules/simpletest/files/imagecache',
32346   'router_path' => 'core/modules/simpletest/files/imagecache',
32347   'link_title' => '',
32348   'options' => 'a:0:{}',
32349   'module' => 'system',
32350   'hidden' => '-1',
32351   'external' => '0',
32352   'has_children' => '0',
32353   'expanded' => '0',
32354   'weight' => '0',
32355   'depth' => '1',
32356   'customized' => '0',
32357   'p1' => '411',
32358   'p2' => '0',
32359   'p3' => '0',
32360   'p4' => '0',
32361   'p5' => '0',
32362   'p6' => '0',
32363   'p7' => '0',
32364   'p8' => '0',
32365   'p9' => '0',
32366   'updated' => '0',
32367 ))
32368 ->values(array(
32369   'menu_name' => 'navigation',
32370   'mlid' => '412',
32371   'plid' => '0',
32372   'link_path' => 'admin/content/node-type/story/fields/field_test/remove',
32373   'router_path' => 'admin/content/node-type/story/fields/field_test/remove',
32374   'link_title' => 'Remove field',
32375   'options' => 'a:0:{}',
32376   'module' => 'system',
32377   'hidden' => '-1',
32378   'external' => '0',
32379   'has_children' => '0',
32380   'expanded' => '0',
32381   'weight' => '0',
32382   'depth' => '1',
32383   'customized' => '0',
32384   'p1' => '412',
32385   'p2' => '0',
32386   'p3' => '0',
32387   'p4' => '0',
32388   'p5' => '0',
32389   'p6' => '0',
32390   'p7' => '0',
32391   'p8' => '0',
32392   'p9' => '0',
32393   'updated' => '0',
32394 ))
32395 ->values(array(
32396   'menu_name' => 'navigation',
32397   'mlid' => '413',
32398   'plid' => '0',
32399   'link_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
32400   'router_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
32401   'link_title' => 'Remove field',
32402   'options' => 'a:0:{}',
32403   'module' => 'system',
32404   'hidden' => '-1',
32405   'external' => '0',
32406   'has_children' => '0',
32407   'expanded' => '0',
32408   'weight' => '0',
32409   'depth' => '1',
32410   'customized' => '0',
32411   'p1' => '413',
32412   'p2' => '0',
32413   'p3' => '0',
32414   'p4' => '0',
32415   'p5' => '0',
32416   'p6' => '0',
32417   'p7' => '0',
32418   'p8' => '0',
32419   'p9' => '0',
32420   'updated' => '0',
32421 ))
32422 ->values(array(
32423   'menu_name' => 'navigation',
32424   'mlid' => '414',
32425   'plid' => '0',
32426   'link_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
32427   'router_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
32428   'link_title' => 'Remove field',
32429   'options' => 'a:0:{}',
32430   'module' => 'system',
32431   'hidden' => '-1',
32432   'external' => '0',
32433   'has_children' => '0',
32434   'expanded' => '0',
32435   'weight' => '0',
32436   'depth' => '1',
32437   'customized' => '0',
32438   'p1' => '414',
32439   'p2' => '0',
32440   'p3' => '0',
32441   'p4' => '0',
32442   'p5' => '0',
32443   'p6' => '0',
32444   'p7' => '0',
32445   'p8' => '0',
32446   'p9' => '0',
32447   'updated' => '0',
32448 ))
32449 ->values(array(
32450   'menu_name' => 'navigation',
32451   'mlid' => '415',
32452   'plid' => '0',
32453   'link_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
32454   'router_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
32455   'link_title' => 'Remove field',
32456   'options' => 'a:0:{}',
32457   'module' => 'system',
32458   'hidden' => '-1',
32459   'external' => '0',
32460   'has_children' => '0',
32461   'expanded' => '0',
32462   'weight' => '0',
32463   'depth' => '1',
32464   'customized' => '0',
32465   'p1' => '415',
32466   'p2' => '0',
32467   'p3' => '0',
32468   'p4' => '0',
32469   'p5' => '0',
32470   'p6' => '0',
32471   'p7' => '0',
32472   'p8' => '0',
32473   'p9' => '0',
32474   'updated' => '0',
32475 ))
32476 ->values(array(
32477   'menu_name' => 'navigation',
32478   'mlid' => '416',
32479   'plid' => '0',
32480   'link_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
32481   'router_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
32482   'link_title' => 'Remove field',
32483   'options' => 'a:0:{}',
32484   'module' => 'system',
32485   'hidden' => '-1',
32486   'external' => '0',
32487   'has_children' => '0',
32488   'expanded' => '0',
32489   'weight' => '0',
32490   'depth' => '1',
32491   'customized' => '0',
32492   'p1' => '416',
32493   'p2' => '0',
32494   'p3' => '0',
32495   'p4' => '0',
32496   'p5' => '0',
32497   'p6' => '0',
32498   'p7' => '0',
32499   'p8' => '0',
32500   'p9' => '0',
32501   'updated' => '0',
32502 ))
32503 ->values(array(
32504   'menu_name' => 'navigation',
32505   'mlid' => '417',
32506   'plid' => '0',
32507   'link_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
32508   'router_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
32509   'link_title' => 'Remove field',
32510   'options' => 'a:0:{}',
32511   'module' => 'system',
32512   'hidden' => '-1',
32513   'external' => '0',
32514   'has_children' => '0',
32515   'expanded' => '0',
32516   'weight' => '0',
32517   'depth' => '1',
32518   'customized' => '0',
32519   'p1' => '417',
32520   'p2' => '0',
32521   'p3' => '0',
32522   'p4' => '0',
32523   'p5' => '0',
32524   'p6' => '0',
32525   'p7' => '0',
32526   'p8' => '0',
32527   'p9' => '0',
32528   'updated' => '0',
32529 ))
32530 ->values(array(
32531   'menu_name' => 'navigation',
32532   'mlid' => '418',
32533   'plid' => '0',
32534   'link_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
32535   'router_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
32536   'link_title' => 'Remove field',
32537   'options' => 'a:0:{}',
32538   'module' => 'system',
32539   'hidden' => '-1',
32540   'external' => '0',
32541   'has_children' => '0',
32542   'expanded' => '0',
32543   'weight' => '0',
32544   'depth' => '1',
32545   'customized' => '0',
32546   'p1' => '418',
32547   'p2' => '0',
32548   'p3' => '0',
32549   'p4' => '0',
32550   'p5' => '0',
32551   'p6' => '0',
32552   'p7' => '0',
32553   'p8' => '0',
32554   'p9' => '0',
32555   'updated' => '0',
32556 ))
32557 ->values(array(
32558   'menu_name' => 'navigation',
32559   'mlid' => '419',
32560   'plid' => '0',
32561   'link_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
32562   'router_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
32563   'link_title' => 'Remove field',
32564   'options' => 'a:0:{}',
32565   'module' => 'system',
32566   'hidden' => '-1',
32567   'external' => '0',
32568   'has_children' => '0',
32569   'expanded' => '0',
32570   'weight' => '0',
32571   'depth' => '1',
32572   'customized' => '0',
32573   'p1' => '419',
32574   'p2' => '0',
32575   'p3' => '0',
32576   'p4' => '0',
32577   'p5' => '0',
32578   'p6' => '0',
32579   'p7' => '0',
32580   'p8' => '0',
32581   'p9' => '0',
32582   'updated' => '0',
32583 ))
32584 ->values(array(
32585   'menu_name' => 'navigation',
32586   'mlid' => '420',
32587   'plid' => '0',
32588   'link_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
32589   'router_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
32590   'link_title' => 'Remove field',
32591   'options' => 'a:0:{}',
32592   'module' => 'system',
32593   'hidden' => '-1',
32594   'external' => '0',
32595   'has_children' => '0',
32596   'expanded' => '0',
32597   'weight' => '0',
32598   'depth' => '1',
32599   'customized' => '0',
32600   'p1' => '420',
32601   'p2' => '0',
32602   'p3' => '0',
32603   'p4' => '0',
32604   'p5' => '0',
32605   'p6' => '0',
32606   'p7' => '0',
32607   'p8' => '0',
32608   'p9' => '0',
32609   'updated' => '0',
32610 ))
32611 ->values(array(
32612   'menu_name' => 'navigation',
32613   'mlid' => '421',
32614   'plid' => '0',
32615   'link_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
32616   'router_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
32617   'link_title' => 'Remove field',
32618   'options' => 'a:0:{}',
32619   'module' => 'system',
32620   'hidden' => '-1',
32621   'external' => '0',
32622   'has_children' => '0',
32623   'expanded' => '0',
32624   'weight' => '0',
32625   'depth' => '1',
32626   'customized' => '0',
32627   'p1' => '421',
32628   'p2' => '0',
32629   'p3' => '0',
32630   'p4' => '0',
32631   'p5' => '0',
32632   'p6' => '0',
32633   'p7' => '0',
32634   'p8' => '0',
32635   'p9' => '0',
32636   'updated' => '0',
32637 ))
32638 ->values(array(
32639   'menu_name' => 'navigation',
32640   'mlid' => '422',
32641   'plid' => '0',
32642   'link_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
32643   'router_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
32644   'link_title' => 'Remove field',
32645   'options' => 'a:0:{}',
32646   'module' => 'system',
32647   'hidden' => '-1',
32648   'external' => '0',
32649   'has_children' => '0',
32650   'expanded' => '0',
32651   'weight' => '0',
32652   'depth' => '1',
32653   'customized' => '0',
32654   'p1' => '422',
32655   'p2' => '0',
32656   'p3' => '0',
32657   'p4' => '0',
32658   'p5' => '0',
32659   'p6' => '0',
32660   'p7' => '0',
32661   'p8' => '0',
32662   'p9' => '0',
32663   'updated' => '0',
32664 ))
32665 ->values(array(
32666   'menu_name' => 'navigation',
32667   'mlid' => '423',
32668   'plid' => '0',
32669   'link_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
32670   'router_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
32671   'link_title' => 'Remove field',
32672   'options' => 'a:0:{}',
32673   'module' => 'system',
32674   'hidden' => '-1',
32675   'external' => '0',
32676   'has_children' => '0',
32677   'expanded' => '0',
32678   'weight' => '0',
32679   'depth' => '1',
32680   'customized' => '0',
32681   'p1' => '423',
32682   'p2' => '0',
32683   'p3' => '0',
32684   'p4' => '0',
32685   'p5' => '0',
32686   'p6' => '0',
32687   'p7' => '0',
32688   'p8' => '0',
32689   'p9' => '0',
32690   'updated' => '0',
32691 ))
32692 ->values(array(
32693   'menu_name' => 'navigation',
32694   'mlid' => '424',
32695   'plid' => '0',
32696   'link_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
32697   'router_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
32698   'link_title' => 'Remove field',
32699   'options' => 'a:0:{}',
32700   'module' => 'system',
32701   'hidden' => '-1',
32702   'external' => '0',
32703   'has_children' => '0',
32704   'expanded' => '0',
32705   'weight' => '0',
32706   'depth' => '1',
32707   'customized' => '0',
32708   'p1' => '424',
32709   'p2' => '0',
32710   'p3' => '0',
32711   'p4' => '0',
32712   'p5' => '0',
32713   'p6' => '0',
32714   'p7' => '0',
32715   'p8' => '0',
32716   'p9' => '0',
32717   'updated' => '0',
32718 ))
32719 ->values(array(
32720   'menu_name' => 'navigation',
32721   'mlid' => '425',
32722   'plid' => '0',
32723   'link_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
32724   'router_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
32725   'link_title' => 'Remove field',
32726   'options' => 'a:0:{}',
32727   'module' => 'system',
32728   'hidden' => '-1',
32729   'external' => '0',
32730   'has_children' => '0',
32731   'expanded' => '0',
32732   'weight' => '0',
32733   'depth' => '1',
32734   'customized' => '0',
32735   'p1' => '425',
32736   'p2' => '0',
32737   'p3' => '0',
32738   'p4' => '0',
32739   'p5' => '0',
32740   'p6' => '0',
32741   'p7' => '0',
32742   'p8' => '0',
32743   'p9' => '0',
32744   'updated' => '0',
32745 ))
32746 ->values(array(
32747   'menu_name' => 'navigation',
32748   'mlid' => '426',
32749   'plid' => '0',
32750   'link_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
32751   'router_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
32752   'link_title' => 'Remove field',
32753   'options' => 'a:0:{}',
32754   'module' => 'system',
32755   'hidden' => '-1',
32756   'external' => '0',
32757   'has_children' => '0',
32758   'expanded' => '0',
32759   'weight' => '0',
32760   'depth' => '1',
32761   'customized' => '0',
32762   'p1' => '426',
32763   'p2' => '0',
32764   'p3' => '0',
32765   'p4' => '0',
32766   'p5' => '0',
32767   'p6' => '0',
32768   'p7' => '0',
32769   'p8' => '0',
32770   'p9' => '0',
32771   'updated' => '0',
32772 ))
32773 ->values(array(
32774   'menu_name' => 'navigation',
32775   'mlid' => '427',
32776   'plid' => '0',
32777   'link_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
32778   'router_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
32779   'link_title' => 'Remove field',
32780   'options' => 'a:0:{}',
32781   'module' => 'system',
32782   'hidden' => '-1',
32783   'external' => '0',
32784   'has_children' => '0',
32785   'expanded' => '0',
32786   'weight' => '0',
32787   'depth' => '1',
32788   'customized' => '0',
32789   'p1' => '427',
32790   'p2' => '0',
32791   'p3' => '0',
32792   'p4' => '0',
32793   'p5' => '0',
32794   'p6' => '0',
32795   'p7' => '0',
32796   'p8' => '0',
32797   'p9' => '0',
32798   'updated' => '0',
32799 ))
32800 ->values(array(
32801   'menu_name' => 'navigation',
32802   'mlid' => '428',
32803   'plid' => '0',
32804   'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
32805   'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
32806   'link_title' => 'Remove field',
32807   'options' => 'a:0:{}',
32808   'module' => 'system',
32809   'hidden' => '-1',
32810   'external' => '0',
32811   'has_children' => '0',
32812   'expanded' => '0',
32813   'weight' => '0',
32814   'depth' => '1',
32815   'customized' => '0',
32816   'p1' => '428',
32817   'p2' => '0',
32818   'p3' => '0',
32819   'p4' => '0',
32820   'p5' => '0',
32821   'p6' => '0',
32822   'p7' => '0',
32823   'p8' => '0',
32824   'p9' => '0',
32825   'updated' => '0',
32826 ))
32827 ->values(array(
32828   'menu_name' => 'navigation',
32829   'mlid' => '429',
32830   'plid' => '0',
32831   'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
32832   'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
32833   'link_title' => 'Remove field',
32834   'options' => 'a:0:{}',
32835   'module' => 'system',
32836   'hidden' => '-1',
32837   'external' => '0',
32838   'has_children' => '0',
32839   'expanded' => '0',
32840   'weight' => '0',
32841   'depth' => '1',
32842   'customized' => '0',
32843   'p1' => '429',
32844   'p2' => '0',
32845   'p3' => '0',
32846   'p4' => '0',
32847   'p5' => '0',
32848   'p6' => '0',
32849   'p7' => '0',
32850   'p8' => '0',
32851   'p9' => '0',
32852   'updated' => '0',
32853 ))
32854 ->values(array(
32855   'menu_name' => 'navigation',
32856   'mlid' => '430',
32857   'plid' => '0',
32858   'link_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
32859   'router_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
32860   'link_title' => 'Remove field',
32861   'options' => 'a:0:{}',
32862   'module' => 'system',
32863   'hidden' => '-1',
32864   'external' => '0',
32865   'has_children' => '0',
32866   'expanded' => '0',
32867   'weight' => '0',
32868   'depth' => '1',
32869   'customized' => '0',
32870   'p1' => '430',
32871   'p2' => '0',
32872   'p3' => '0',
32873   'p4' => '0',
32874   'p5' => '0',
32875   'p6' => '0',
32876   'p7' => '0',
32877   'p8' => '0',
32878   'p9' => '0',
32879   'updated' => '0',
32880 ))
32881 ->values(array(
32882   'menu_name' => 'navigation',
32883   'mlid' => '431',
32884   'plid' => '0',
32885   'link_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
32886   'router_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
32887   'link_title' => 'Remove field',
32888   'options' => 'a:0:{}',
32889   'module' => 'system',
32890   'hidden' => '-1',
32891   'external' => '0',
32892   'has_children' => '0',
32893   'expanded' => '0',
32894   'weight' => '0',
32895   'depth' => '1',
32896   'customized' => '0',
32897   'p1' => '431',
32898   'p2' => '0',
32899   'p3' => '0',
32900   'p4' => '0',
32901   'p5' => '0',
32902   'p6' => '0',
32903   'p7' => '0',
32904   'p8' => '0',
32905   'p9' => '0',
32906   'updated' => '0',
32907 ))
32908 ->values(array(
32909   'menu_name' => 'navigation',
32910   'mlid' => '432',
32911   'plid' => '0',
32912   'link_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
32913   'router_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
32914   'link_title' => 'Remove field',
32915   'options' => 'a:0:{}',
32916   'module' => 'system',
32917   'hidden' => '-1',
32918   'external' => '0',
32919   'has_children' => '0',
32920   'expanded' => '0',
32921   'weight' => '0',
32922   'depth' => '1',
32923   'customized' => '0',
32924   'p1' => '432',
32925   'p2' => '0',
32926   'p3' => '0',
32927   'p4' => '0',
32928   'p5' => '0',
32929   'p6' => '0',
32930   'p7' => '0',
32931   'p8' => '0',
32932   'p9' => '0',
32933   'updated' => '0',
32934 ))
32935 ->values(array(
32936   'menu_name' => 'navigation',
32937   'mlid' => '433',
32938   'plid' => '0',
32939   'link_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
32940   'router_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
32941   'link_title' => 'Remove field',
32942   'options' => 'a:0:{}',
32943   'module' => 'system',
32944   'hidden' => '-1',
32945   'external' => '0',
32946   'has_children' => '0',
32947   'expanded' => '0',
32948   'weight' => '0',
32949   'depth' => '1',
32950   'customized' => '0',
32951   'p1' => '433',
32952   'p2' => '0',
32953   'p3' => '0',
32954   'p4' => '0',
32955   'p5' => '0',
32956   'p6' => '0',
32957   'p7' => '0',
32958   'p8' => '0',
32959   'p9' => '0',
32960   'updated' => '0',
32961 ))
32962 ->values(array(
32963   'menu_name' => 'navigation',
32964   'mlid' => '434',
32965   'plid' => '0',
32966   'link_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
32967   'router_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
32968   'link_title' => 'Remove field',
32969   'options' => 'a:0:{}',
32970   'module' => 'system',
32971   'hidden' => '-1',
32972   'external' => '0',
32973   'has_children' => '0',
32974   'expanded' => '0',
32975   'weight' => '0',
32976   'depth' => '1',
32977   'customized' => '0',
32978   'p1' => '434',
32979   'p2' => '0',
32980   'p3' => '0',
32981   'p4' => '0',
32982   'p5' => '0',
32983   'p6' => '0',
32984   'p7' => '0',
32985   'p8' => '0',
32986   'p9' => '0',
32987   'updated' => '0',
32988 ))
32989 ->values(array(
32990   'menu_name' => 'navigation',
32991   'mlid' => '438',
32992   'plid' => '167',
32993   'link_path' => 'admin/settings/variable',
32994   'router_path' => 'admin/settings/variable',
32995   'link_title' => 'Variables',
32996   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Edit and delete site variables.";}}',
32997   'module' => 'system',
32998   'hidden' => '0',
32999   'external' => '0',
33000   'has_children' => '1',
33001   'expanded' => '0',
33002   'weight' => '0',
33003   'depth' => '3',
33004   'customized' => '0',
33005   'p1' => '144',
33006   'p2' => '167',
33007   'p3' => '438',
33008   'p4' => '0',
33009   'p5' => '0',
33010   'p6' => '0',
33011   'p7' => '0',
33012   'p8' => '0',
33013   'p9' => '0',
33014   'updated' => '0',
33015 ))
33016 ->values(array(
33017   'menu_name' => 'navigation',
33018   'mlid' => '439',
33019   'plid' => '438',
33020   'link_path' => 'admin/settings/variable/edit/%',
33021   'router_path' => 'admin/settings/variable/edit/%',
33022   'link_title' => 'Edit variable',
33023   'options' => 'a:0:{}',
33024   'module' => 'system',
33025   'hidden' => '0',
33026   'external' => '0',
33027   'has_children' => '0',
33028   'expanded' => '0',
33029   'weight' => '0',
33030   'depth' => '4',
33031   'customized' => '0',
33032   'p1' => '144',
33033   'p2' => '167',
33034   'p3' => '438',
33035   'p4' => '439',
33036   'p5' => '0',
33037   'p6' => '0',
33038   'p7' => '0',
33039   'p8' => '0',
33040   'p9' => '0',
33041   'updated' => '0',
33042 ))
33043 ->values(array(
33044   'menu_name' => 'navigation',
33045   'mlid' => '440',
33046   'plid' => '438',
33047   'link_path' => 'admin/settings/variable/group/%',
33048   'router_path' => 'admin/settings/variable/group/%',
33049   'link_title' => 'Variables group',
33050   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Edit and delete group variables.";}}',
33051   'module' => 'system',
33052   'hidden' => '0',
33053   'external' => '0',
33054   'has_children' => '0',
33055   'expanded' => '0',
33056   'weight' => '0',
33057   'depth' => '4',
33058   'customized' => '0',
33059   'p1' => '144',
33060   'p2' => '167',
33061   'p3' => '438',
33062   'p4' => '440',
33063   'p5' => '0',
33064   'p6' => '0',
33065   'p7' => '0',
33066   'p8' => '0',
33067   'p9' => '0',
33068   'updated' => '0',
33069 ))
33070 ->values(array(
33071   'menu_name' => 'navigation',
33072   'mlid' => '441',
33073   'plid' => '0',
33074   'link_path' => 'forum',
33075   'router_path' => 'forum',
33076   'link_title' => 'Forums',
33077   'options' => 'a:0:{}',
33078   'module' => 'system',
33079   'hidden' => '1',
33080   'external' => '0',
33081   'has_children' => '0',
33082   'expanded' => '0',
33083   'weight' => '0',
33084   'depth' => '1',
33085   'customized' => '0',
33086   'p1' => '441',
33087   'p2' => '0',
33088   'p3' => '0',
33089   'p4' => '0',
33090   'p5' => '0',
33091   'p6' => '0',
33092   'p7' => '0',
33093   'p8' => '0',
33094   'p9' => '0',
33095   'updated' => '0',
33096 ))
33097 ->values(array(
33098   'menu_name' => 'navigation',
33099   'mlid' => '442',
33100   'plid' => '165',
33101   'link_path' => 'admin/reports/settings',
33102   'router_path' => 'admin/reports/settings',
33103   'link_title' => 'Access log settings',
33104   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Control details about what and how your site logs.";}}',
33105   'module' => 'system',
33106   'hidden' => '0',
33107   'external' => '0',
33108   'has_children' => '0',
33109   'expanded' => '0',
33110   'weight' => '3',
33111   'depth' => '3',
33112   'customized' => '0',
33113   'p1' => '144',
33114   'p2' => '165',
33115   'p3' => '442',
33116   'p4' => '0',
33117   'p5' => '0',
33118   'p6' => '0',
33119   'p7' => '0',
33120   'p8' => '0',
33121   'p9' => '0',
33122   'updated' => '0',
33123 ))
33124 ->values(array(
33125   'menu_name' => 'navigation',
33126   'mlid' => '443',
33127   'plid' => '158',
33128   'link_path' => 'node/add/forum',
33129   'router_path' => 'node/add/forum',
33130   'link_title' => 'Forum topic',
33131   '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.";}}',
33132   'module' => 'system',
33133   'hidden' => '0',
33134   'external' => '0',
33135   'has_children' => '0',
33136   'expanded' => '0',
33137   'weight' => '0',
33138   'depth' => '2',
33139   'customized' => '0',
33140   'p1' => '158',
33141   'p2' => '443',
33142   'p3' => '0',
33143   'p4' => '0',
33144   'p5' => '0',
33145   'p6' => '0',
33146   'p7' => '0',
33147   'p8' => '0',
33148   'p9' => '0',
33149   'updated' => '0',
33150 ))
33151 ->values(array(
33152   'menu_name' => 'navigation',
33153   'mlid' => '444',
33154   'plid' => '157',
33155   'link_path' => 'admin/content/forum',
33156   'router_path' => 'admin/content/forum',
33157   'link_title' => 'Forums',
33158   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"Control forums and their hierarchy and change forum settings.";}}',
33159   'module' => 'system',
33160   'hidden' => '0',
33161   'external' => '0',
33162   'has_children' => '0',
33163   'expanded' => '0',
33164   'weight' => '0',
33165   'depth' => '3',
33166   'customized' => '0',
33167   'p1' => '144',
33168   'p2' => '157',
33169   'p3' => '444',
33170   'p4' => '0',
33171   'p5' => '0',
33172   'p6' => '0',
33173   'p7' => '0',
33174   'p8' => '0',
33175   'p9' => '0',
33176   'updated' => '0',
33177 ))
33178 ->values(array(
33179   'menu_name' => 'navigation',
33180   'mlid' => '445',
33181   'plid' => '165',
33182   'link_path' => 'admin/reports/hits',
33183   'router_path' => 'admin/reports/hits',
33184   'link_title' => 'Recent hits',
33185   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View pages that have recently been visited.";}}',
33186   'module' => 'system',
33187   'hidden' => '0',
33188   'external' => '0',
33189   'has_children' => '0',
33190   'expanded' => '0',
33191   'weight' => '0',
33192   'depth' => '3',
33193   'customized' => '0',
33194   'p1' => '144',
33195   'p2' => '165',
33196   'p3' => '445',
33197   'p4' => '0',
33198   'p5' => '0',
33199   'p6' => '0',
33200   'p7' => '0',
33201   'p8' => '0',
33202   'p9' => '0',
33203   'updated' => '0',
33204 ))
33205 ->values(array(
33206   'menu_name' => 'navigation',
33207   'mlid' => '446',
33208   'plid' => '165',
33209   'link_path' => 'admin/reports/pages',
33210   'router_path' => 'admin/reports/pages',
33211   'link_title' => 'Top pages',
33212   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"View pages that have been hit frequently.";}}',
33213   'module' => 'system',
33214   'hidden' => '0',
33215   'external' => '0',
33216   'has_children' => '0',
33217   'expanded' => '0',
33218   'weight' => '1',
33219   'depth' => '3',
33220   'customized' => '0',
33221   'p1' => '144',
33222   'p2' => '165',
33223   'p3' => '446',
33224   'p4' => '0',
33225   'p5' => '0',
33226   'p6' => '0',
33227   'p7' => '0',
33228   'p8' => '0',
33229   'p9' => '0',
33230   'updated' => '0',
33231 ))
33232 ->values(array(
33233   'menu_name' => 'navigation',
33234   'mlid' => '447',
33235   'plid' => '165',
33236   'link_path' => 'admin/reports/referrers',
33237   'router_path' => 'admin/reports/referrers',
33238   'link_title' => 'Top referrers',
33239   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"View top referrers.";}}',
33240   'module' => 'system',
33241   'hidden' => '0',
33242   'external' => '0',
33243   'has_children' => '0',
33244   'expanded' => '0',
33245   'weight' => '0',
33246   'depth' => '3',
33247   'customized' => '0',
33248   'p1' => '144',
33249   'p2' => '165',
33250   'p3' => '447',
33251   'p4' => '0',
33252   'p5' => '0',
33253   'p6' => '0',
33254   'p7' => '0',
33255   'p8' => '0',
33256   'p9' => '0',
33257   'updated' => '0',
33258 ))
33259 ->values(array(
33260   'menu_name' => 'navigation',
33261   'mlid' => '448',
33262   'plid' => '165',
33263   'link_path' => 'admin/reports/visitors',
33264   'router_path' => 'admin/reports/visitors',
33265   'link_title' => 'Top visitors',
33266   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View visitors that hit many pages.";}}',
33267   'module' => 'system',
33268   'hidden' => '0',
33269   'external' => '0',
33270   'has_children' => '0',
33271   'expanded' => '0',
33272   'weight' => '2',
33273   'depth' => '3',
33274   'customized' => '0',
33275   'p1' => '144',
33276   'p2' => '165',
33277   'p3' => '448',
33278   'p4' => '0',
33279   'p5' => '0',
33280   'p6' => '0',
33281   'p7' => '0',
33282   'p8' => '0',
33283   'p9' => '0',
33284   'updated' => '0',
33285 ))
33286 ->values(array(
33287   'menu_name' => 'navigation',
33288   'mlid' => '449',
33289   'plid' => '165',
33290   'link_path' => 'admin/reports/access/%',
33291   'router_path' => 'admin/reports/access/%',
33292   'link_title' => 'Details',
33293   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"View access log.";}}',
33294   'module' => 'system',
33295   'hidden' => '-1',
33296   'external' => '0',
33297   'has_children' => '0',
33298   'expanded' => '0',
33299   'weight' => '0',
33300   'depth' => '3',
33301   'customized' => '0',
33302   'p1' => '144',
33303   'p2' => '165',
33304   'p3' => '449',
33305   'p4' => '0',
33306   'p5' => '0',
33307   'p6' => '0',
33308   'p7' => '0',
33309   'p8' => '0',
33310   'p9' => '0',
33311   'updated' => '0',
33312 ))
33313 ->values(array(
33314   'menu_name' => 'navigation',
33315   'mlid' => '450',
33316   'plid' => '157',
33317   'link_path' => 'admin/content/node-type/forum',
33318   'router_path' => 'admin/content/node-type/forum',
33319   'link_title' => 'Forum topic',
33320   'options' => 'a:0:{}',
33321   'module' => 'system',
33322   'hidden' => '-1',
33323   'external' => '0',
33324   'has_children' => '0',
33325   'expanded' => '0',
33326   'weight' => '0',
33327   'depth' => '3',
33328   'customized' => '0',
33329   'p1' => '144',
33330   'p2' => '157',
33331   'p3' => '450',
33332   'p4' => '0',
33333   'p5' => '0',
33334   'p6' => '0',
33335   'p7' => '0',
33336   'p8' => '0',
33337   'p9' => '0',
33338   'updated' => '0',
33339 ))
33340 ->values(array(
33341   'menu_name' => 'navigation',
33342   'mlid' => '451',
33343   'plid' => '444',
33344   'link_path' => 'admin/content/forum/edit/%',
33345   'router_path' => 'admin/content/forum/edit/%',
33346   'link_title' => '',
33347   'options' => 'a:0:{}',
33348   'module' => 'system',
33349   'hidden' => '-1',
33350   'external' => '0',
33351   'has_children' => '0',
33352   'expanded' => '0',
33353   'weight' => '0',
33354   'depth' => '4',
33355   'customized' => '0',
33356   'p1' => '144',
33357   'p2' => '157',
33358   'p3' => '444',
33359   'p4' => '451',
33360   'p5' => '0',
33361   'p6' => '0',
33362   'p7' => '0',
33363   'p8' => '0',
33364   'p9' => '0',
33365   'updated' => '0',
33366 ))
33367 ->values(array(
33368   'menu_name' => 'navigation',
33369   'mlid' => '452',
33370   'plid' => '0',
33371   'link_path' => 'admin/content/node-type/forum/delete',
33372   'router_path' => 'admin/content/node-type/forum/delete',
33373   'link_title' => 'Delete',
33374   'options' => 'a:0:{}',
33375   'module' => 'system',
33376   'hidden' => '-1',
33377   'external' => '0',
33378   'has_children' => '0',
33379   'expanded' => '0',
33380   'weight' => '0',
33381   'depth' => '1',
33382   'customized' => '0',
33383   'p1' => '452',
33384   'p2' => '0',
33385   'p3' => '0',
33386   'p4' => '0',
33387   'p5' => '0',
33388   'p6' => '0',
33389   'p7' => '0',
33390   'p8' => '0',
33391   'p9' => '0',
33392   'updated' => '0',
33393 ))
33394 ->values(array(
33395   'menu_name' => 'navigation',
33396   'mlid' => '453',
33397   'plid' => '444',
33398   'link_path' => 'admin/content/forum/edit/container/%',
33399   'router_path' => 'admin/content/forum/edit/container/%',
33400   'link_title' => 'Edit container',
33401   'options' => 'a:0:{}',
33402   'module' => 'system',
33403   'hidden' => '-1',
33404   'external' => '0',
33405   'has_children' => '0',
33406   'expanded' => '0',
33407   'weight' => '0',
33408   'depth' => '4',
33409   'customized' => '0',
33410   'p1' => '144',
33411   'p2' => '157',
33412   'p3' => '444',
33413   'p4' => '453',
33414   'p5' => '0',
33415   'p6' => '0',
33416   'p7' => '0',
33417   'p8' => '0',
33418   'p9' => '0',
33419   'updated' => '0',
33420 ))
33421 ->values(array(
33422   'menu_name' => 'navigation',
33423   'mlid' => '454',
33424   'plid' => '444',
33425   'link_path' => 'admin/content/forum/edit/forum/%',
33426   'router_path' => 'admin/content/forum/edit/forum/%',
33427   'link_title' => 'Edit forum',
33428   'options' => 'a:0:{}',
33429   'module' => 'system',
33430   'hidden' => '-1',
33431   'external' => '0',
33432   'has_children' => '0',
33433   'expanded' => '0',
33434   'weight' => '0',
33435   'depth' => '4',
33436   'customized' => '0',
33437   'p1' => '144',
33438   'p2' => '157',
33439   'p3' => '444',
33440   'p4' => '454',
33441   'p5' => '0',
33442   'p6' => '0',
33443   'p7' => '0',
33444   'p8' => '0',
33445   'p9' => '0',
33446   'updated' => '0',
33447 ))
33448 ->values(array(
33449   'menu_name' => 'navigation',
33450   'mlid' => '455',
33451   'plid' => '0',
33452   'link_path' => 'nodereference/autocomplete',
33453   'router_path' => 'nodereference/autocomplete',
33454   'link_title' => 'Nodereference autocomplete',
33455   'options' => 'a:0:{}',
33456   'module' => 'system',
33457   'hidden' => '-1',
33458   'external' => '0',
33459   'has_children' => '0',
33460   'expanded' => '0',
33461   'weight' => '0',
33462   'depth' => '1',
33463   'customized' => '0',
33464   'p1' => '455',
33465   'p2' => '0',
33466   'p3' => '0',
33467   'p4' => '0',
33468   'p5' => '0',
33469   'p6' => '0',
33470   'p7' => '0',
33471   'p8' => '0',
33472   'p9' => '0',
33473   'updated' => '0',
33474 ))
33475 ->values(array(
33476   'menu_name' => 'navigation',
33477   'mlid' => '456',
33478   'plid' => '0',
33479   'link_path' => 'admin/content/node-type/employee/fields/field_company/remove',
33480   'router_path' => 'admin/content/node-type/employee/fields/field_company/remove',
33481   'link_title' => 'Remove field',
33482   'options' => 'a:0:{}',
33483   'module' => 'system',
33484   'hidden' => '-1',
33485   'external' => '0',
33486   'has_children' => '0',
33487   'expanded' => '0',
33488   'weight' => '0',
33489   'depth' => '1',
33490   'customized' => '0',
33491   'p1' => '456',
33492   'p2' => '0',
33493   'p3' => '0',
33494   'p4' => '0',
33495   'p5' => '0',
33496   'p6' => '0',
33497   'p7' => '0',
33498   'p8' => '0',
33499   'p9' => '0',
33500   'updated' => '0',
33501 ))
33502 ->values(array(
33503   'menu_name' => 'navigation',
33504   'mlid' => '457',
33505   'plid' => '0',
33506   'link_path' => 'userreference/autocomplete',
33507   'router_path' => 'userreference/autocomplete',
33508   'link_title' => 'Userreference autocomplete',
33509   'options' => 'a:0:{}',
33510   'module' => 'system',
33511   'hidden' => '-1',
33512   'external' => '0',
33513   'has_children' => '0',
33514   'expanded' => '0',
33515   'weight' => '0',
33516   'depth' => '1',
33517   'customized' => '0',
33518   'p1' => '457',
33519   'p2' => '0',
33520   'p3' => '0',
33521   'p4' => '0',
33522   'p5' => '0',
33523   'p6' => '0',
33524   'p7' => '0',
33525   'p8' => '0',
33526   'p9' => '0',
33527   'updated' => '0',
33528 ))
33529 ->values(array(
33530   'menu_name' => 'navigation',
33531   'mlid' => '458',
33532   'plid' => '0',
33533   'link_path' => 'admin/content/node-type/employee/fields/field_commander/remove',
33534   'router_path' => 'admin/content/node-type/employee/fields/field_commander/remove',
33535   'link_title' => 'Remove field',
33536   'options' => 'a:0:{}',
33537   'module' => 'system',
33538   'hidden' => '-1',
33539   'external' => '0',
33540   'has_children' => '0',
33541   'expanded' => '0',
33542   'weight' => '0',
33543   'depth' => '1',
33544   'customized' => '0',
33545   'p1' => '458',
33546   'p2' => '0',
33547   'p3' => '0',
33548   'p4' => '0',
33549   'p5' => '0',
33550   'p6' => '0',
33551   'p7' => '0',
33552   'p8' => '0',
33553   'p9' => '0',
33554   'updated' => '0',
33555 ))
33556 ->execute();
33557
33558 $connection->schema()->createTable('menu_router', array(
33559   'fields' => array(
33560     'path' => array(
33561       'type' => 'varchar',
33562       'not null' => TRUE,
33563       'length' => '255',
33564       'default' => '',
33565     ),
33566     'load_functions' => array(
33567       'type' => 'text',
33568       'not null' => TRUE,
33569       'size' => 'normal',
33570     ),
33571     'to_arg_functions' => array(
33572       'type' => 'text',
33573       'not null' => TRUE,
33574       'size' => 'normal',
33575     ),
33576     'access_callback' => array(
33577       'type' => 'varchar',
33578       'not null' => TRUE,
33579       'length' => '255',
33580       'default' => '',
33581     ),
33582     'access_arguments' => array(
33583       'type' => 'text',
33584       'not null' => FALSE,
33585       'size' => 'normal',
33586     ),
33587     'page_callback' => array(
33588       'type' => 'varchar',
33589       'not null' => TRUE,
33590       'length' => '255',
33591       'default' => '',
33592     ),
33593     'page_arguments' => array(
33594       'type' => 'text',
33595       'not null' => FALSE,
33596       'size' => 'normal',
33597     ),
33598     'fit' => array(
33599       'type' => 'int',
33600       'not null' => TRUE,
33601       'size' => 'normal',
33602       'default' => '0',
33603     ),
33604     'number_parts' => array(
33605       'type' => 'int',
33606       'not null' => TRUE,
33607       'size' => 'normal',
33608       'default' => '0',
33609     ),
33610     'tab_parent' => array(
33611       'type' => 'varchar',
33612       'not null' => TRUE,
33613       'length' => '255',
33614       'default' => '',
33615     ),
33616     'tab_root' => array(
33617       'type' => 'varchar',
33618       'not null' => TRUE,
33619       'length' => '255',
33620       'default' => '',
33621     ),
33622     'title' => array(
33623       'type' => 'varchar',
33624       'not null' => TRUE,
33625       'length' => '255',
33626       'default' => '',
33627     ),
33628     'title_callback' => array(
33629       'type' => 'varchar',
33630       'not null' => TRUE,
33631       'length' => '255',
33632       'default' => '',
33633     ),
33634     'title_arguments' => array(
33635       'type' => 'varchar',
33636       'not null' => TRUE,
33637       'length' => '255',
33638       'default' => '',
33639     ),
33640     'type' => array(
33641       'type' => 'int',
33642       'not null' => TRUE,
33643       'size' => 'normal',
33644       'default' => '0',
33645     ),
33646     'block_callback' => array(
33647       'type' => 'varchar',
33648       'not null' => TRUE,
33649       'length' => '255',
33650       'default' => '',
33651     ),
33652     'description' => array(
33653       'type' => 'text',
33654       'not null' => TRUE,
33655       'size' => 'normal',
33656     ),
33657     'position' => array(
33658       'type' => 'varchar',
33659       'not null' => TRUE,
33660       'length' => '255',
33661       'default' => '',
33662     ),
33663     'weight' => array(
33664       'type' => 'int',
33665       'not null' => TRUE,
33666       'size' => 'normal',
33667       'default' => '0',
33668     ),
33669     'file' => array(
33670       'type' => 'text',
33671       'not null' => FALSE,
33672       'size' => 'normal',
33673     ),
33674   ),
33675   'primary key' => array(
33676     'path',
33677   ),
33678   'mysql_character_set' => 'utf8',
33679 ));
33680
33681 $connection->insert('menu_router')
33682 ->fields(array(
33683   'path',
33684   'load_functions',
33685   'to_arg_functions',
33686   'access_callback',
33687   'access_arguments',
33688   'page_callback',
33689   'page_arguments',
33690   'fit',
33691   'number_parts',
33692   'tab_parent',
33693   'tab_root',
33694   'title',
33695   'title_callback',
33696   'title_arguments',
33697   'type',
33698   'block_callback',
33699   'description',
33700   'position',
33701   'weight',
33702   'file',
33703 ))
33704 ->values(array(
33705   'path' => 'admin',
33706   'load_functions' => '',
33707   'to_arg_functions' => '',
33708   'access_callback' => 'user_access',
33709   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
33710   'page_callback' => 'system_main_admin_page',
33711   'page_arguments' => 'a:0:{}',
33712   'fit' => '1',
33713   'number_parts' => '1',
33714   'tab_parent' => '',
33715   'tab_root' => 'admin',
33716   'title' => 'Administer',
33717   'title_callback' => 't',
33718   'title_arguments' => '',
33719   'type' => '6',
33720   'block_callback' => '',
33721   'description' => '',
33722   'position' => '',
33723   'weight' => '9',
33724   'file' => 'modules/system/system.admin.inc',
33725 ))
33726 ->values(array(
33727   'path' => 'admin/build',
33728   'load_functions' => '',
33729   'to_arg_functions' => '',
33730   'access_callback' => 'user_access',
33731   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
33732   'page_callback' => 'system_admin_menu_block_page',
33733   'page_arguments' => 'a:0:{}',
33734   'fit' => '3',
33735   'number_parts' => '2',
33736   'tab_parent' => '',
33737   'tab_root' => 'admin/build',
33738   'title' => 'Site building',
33739   'title_callback' => 't',
33740   'title_arguments' => '',
33741   'type' => '6',
33742   'block_callback' => '',
33743   'description' => 'Control how your site looks and feels.',
33744   'position' => 'right',
33745   'weight' => '-10',
33746   'file' => 'modules/system/system.admin.inc',
33747 ))
33748 ->values(array(
33749   'path' => 'admin/build/block',
33750   'load_functions' => '',
33751   'to_arg_functions' => '',
33752   'access_callback' => 'user_access',
33753   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
33754   'page_callback' => 'block_admin_display',
33755   'page_arguments' => 'a:0:{}',
33756   'fit' => '7',
33757   'number_parts' => '3',
33758   'tab_parent' => '',
33759   'tab_root' => 'admin/build/block',
33760   'title' => 'Blocks',
33761   'title_callback' => 't',
33762   'title_arguments' => '',
33763   'type' => '6',
33764   'block_callback' => '',
33765   'description' => "Configure what block content appears in your site's sidebars and other regions.",
33766   'position' => '',
33767   'weight' => '0',
33768   'file' => 'modules/block/block.admin.inc',
33769 ))
33770 ->values(array(
33771   'path' => 'admin/build/block/add',
33772   'load_functions' => '',
33773   'to_arg_functions' => '',
33774   'access_callback' => 'user_access',
33775   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
33776   'page_callback' => 'drupal_get_form',
33777   'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
33778   'fit' => '15',
33779   'number_parts' => '4',
33780   'tab_parent' => 'admin/build/block',
33781   'tab_root' => 'admin/build/block',
33782   'title' => 'Add block',
33783   'title_callback' => 't',
33784   'title_arguments' => '',
33785   'type' => '128',
33786   'block_callback' => '',
33787   'description' => '',
33788   'position' => '',
33789   'weight' => '0',
33790   'file' => 'modules/block/block.admin.inc',
33791 ))
33792 ->values(array(
33793   'path' => 'admin/build/block/configure',
33794   'load_functions' => '',
33795   'to_arg_functions' => '',
33796   'access_callback' => 'user_access',
33797   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
33798   'page_callback' => 'drupal_get_form',
33799   'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
33800   'fit' => '15',
33801   'number_parts' => '4',
33802   'tab_parent' => '',
33803   'tab_root' => 'admin/build/block/configure',
33804   'title' => 'Configure block',
33805   'title_callback' => 't',
33806   'title_arguments' => '',
33807   'type' => '4',
33808   'block_callback' => '',
33809   'description' => '',
33810   'position' => '',
33811   'weight' => '0',
33812   'file' => 'modules/block/block.admin.inc',
33813 ))
33814 ->values(array(
33815   'path' => 'admin/build/block/delete',
33816   'load_functions' => '',
33817   'to_arg_functions' => '',
33818   'access_callback' => 'user_access',
33819   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
33820   'page_callback' => 'drupal_get_form',
33821   'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
33822   'fit' => '15',
33823   'number_parts' => '4',
33824   'tab_parent' => '',
33825   'tab_root' => 'admin/build/block/delete',
33826   'title' => 'Delete block',
33827   'title_callback' => 't',
33828   'title_arguments' => '',
33829   'type' => '4',
33830   'block_callback' => '',
33831   'description' => '',
33832   'position' => '',
33833   'weight' => '0',
33834   'file' => 'modules/block/block.admin.inc',
33835 ))
33836 ->values(array(
33837   'path' => 'admin/build/block/list',
33838   'load_functions' => '',
33839   'to_arg_functions' => '',
33840   'access_callback' => 'user_access',
33841   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
33842   'page_callback' => 'block_admin_display',
33843   'page_arguments' => 'a:0:{}',
33844   'fit' => '15',
33845   'number_parts' => '4',
33846   'tab_parent' => 'admin/build/block',
33847   'tab_root' => 'admin/build/block',
33848   'title' => 'List',
33849   'title_callback' => 't',
33850   'title_arguments' => '',
33851   'type' => '136',
33852   'block_callback' => '',
33853   'description' => '',
33854   'position' => '',
33855   'weight' => '-10',
33856   'file' => 'modules/block/block.admin.inc',
33857 ))
33858 ->values(array(
33859   'path' => 'admin/build/block/list/bluemarine',
33860   'load_functions' => '',
33861   'to_arg_functions' => '',
33862   'access_callback' => '_block_themes_access',
33863   '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";}}',
33864   'page_callback' => 'block_admin_display',
33865   'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
33866   'fit' => '31',
33867   'number_parts' => '5',
33868   'tab_parent' => 'admin/build/block/list',
33869   'tab_root' => 'admin/build/block',
33870   'title' => 'Bluemarine',
33871   'title_callback' => 't',
33872   'title_arguments' => '',
33873   'type' => '128',
33874   'block_callback' => '',
33875   'description' => '',
33876   'position' => '',
33877   'weight' => '0',
33878   'file' => 'modules/block/block.admin.inc',
33879 ))
33880 ->values(array(
33881   'path' => 'admin/build/block/list/chameleon',
33882   'load_functions' => '',
33883   'to_arg_functions' => '',
33884   'access_callback' => '_block_themes_access',
33885   '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";}}}}',
33886   'page_callback' => 'block_admin_display',
33887   'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
33888   'fit' => '31',
33889   'number_parts' => '5',
33890   'tab_parent' => 'admin/build/block/list',
33891   'tab_root' => 'admin/build/block',
33892   'title' => 'Chameleon',
33893   'title_callback' => 't',
33894   'title_arguments' => '',
33895   'type' => '128',
33896   'block_callback' => '',
33897   'description' => '',
33898   'position' => '',
33899   'weight' => '0',
33900   'file' => 'modules/block/block.admin.inc',
33901 ))
33902 ->values(array(
33903   'path' => 'admin/build/block/list/garland',
33904   'load_functions' => '',
33905   'to_arg_functions' => '',
33906   'access_callback' => '_block_themes_access',
33907   '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";}}',
33908   'page_callback' => 'block_admin_display',
33909   'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
33910   'fit' => '31',
33911   'number_parts' => '5',
33912   'tab_parent' => 'admin/build/block/list',
33913   'tab_root' => 'admin/build/block',
33914   'title' => 'Garland',
33915   'title_callback' => 't',
33916   'title_arguments' => '',
33917   'type' => '136',
33918   'block_callback' => '',
33919   'description' => '',
33920   'position' => '',
33921   'weight' => '-10',
33922   'file' => 'modules/block/block.admin.inc',
33923 ))
33924 ->values(array(
33925   'path' => 'admin/build/block/list/js',
33926   'load_functions' => '',
33927   'to_arg_functions' => '',
33928   'access_callback' => 'user_access',
33929   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
33930   'page_callback' => 'block_admin_display_js',
33931   'page_arguments' => 'a:0:{}',
33932   'fit' => '31',
33933   'number_parts' => '5',
33934   'tab_parent' => '',
33935   'tab_root' => 'admin/build/block/list/js',
33936   'title' => 'JavaScript List Form',
33937   'title_callback' => 't',
33938   'title_arguments' => '',
33939   'type' => '4',
33940   'block_callback' => '',
33941   'description' => '',
33942   'position' => '',
33943   'weight' => '0',
33944   'file' => 'modules/block/block.admin.inc',
33945 ))
33946 ->values(array(
33947   'path' => 'admin/build/block/list/marvin',
33948   'load_functions' => '',
33949   'to_arg_functions' => '',
33950   'access_callback' => '_block_themes_access',
33951   '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";}}',
33952   'page_callback' => 'block_admin_display',
33953   'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
33954   'fit' => '31',
33955   'number_parts' => '5',
33956   'tab_parent' => 'admin/build/block/list',
33957   'tab_root' => 'admin/build/block',
33958   'title' => 'Marvin',
33959   'title_callback' => 't',
33960   'title_arguments' => '',
33961   'type' => '128',
33962   'block_callback' => '',
33963   'description' => '',
33964   'position' => '',
33965   'weight' => '0',
33966   'file' => 'modules/block/block.admin.inc',
33967 ))
33968 ->values(array(
33969   'path' => 'admin/build/block/list/minnelli',
33970   'load_functions' => '',
33971   'to_arg_functions' => '',
33972   'access_callback' => '_block_themes_access',
33973   '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";}}',
33974   'page_callback' => 'block_admin_display',
33975   'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
33976   'fit' => '31',
33977   'number_parts' => '5',
33978   'tab_parent' => 'admin/build/block/list',
33979   'tab_root' => 'admin/build/block',
33980   'title' => 'Minnelli',
33981   'title_callback' => 't',
33982   'title_arguments' => '',
33983   'type' => '128',
33984   'block_callback' => '',
33985   'description' => '',
33986   'position' => '',
33987   'weight' => '0',
33988   'file' => 'modules/block/block.admin.inc',
33989 ))
33990 ->values(array(
33991   'path' => 'admin/build/block/list/pushbutton',
33992   'load_functions' => '',
33993   'to_arg_functions' => '',
33994   'access_callback' => '_block_themes_access',
33995   '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";}}',
33996   'page_callback' => 'block_admin_display',
33997   'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
33998   'fit' => '31',
33999   'number_parts' => '5',
34000   'tab_parent' => 'admin/build/block/list',
34001   'tab_root' => 'admin/build/block',
34002   'title' => 'Pushbutton',
34003   'title_callback' => 't',
34004   'title_arguments' => '',
34005   'type' => '128',
34006   'block_callback' => '',
34007   'description' => '',
34008   'position' => '',
34009   'weight' => '0',
34010   'file' => 'modules/block/block.admin.inc',
34011 ))
34012 ->values(array(
34013   'path' => 'admin/build/contact',
34014   'load_functions' => '',
34015   'to_arg_functions' => '',
34016   'access_callback' => 'user_access',
34017   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34018   'page_callback' => 'contact_admin_categories',
34019   'page_arguments' => 'a:0:{}',
34020   'fit' => '7',
34021   'number_parts' => '3',
34022   'tab_parent' => '',
34023   'tab_root' => 'admin/build/contact',
34024   'title' => 'Contact form',
34025   'title_callback' => 't',
34026   'title_arguments' => '',
34027   'type' => '6',
34028   'block_callback' => '',
34029   'description' => 'Create a system contact form and set up categories for the form to use.',
34030   'position' => '',
34031   'weight' => '0',
34032   'file' => 'modules/contact/contact.admin.inc',
34033 ))
34034 ->values(array(
34035   'path' => 'admin/build/contact/add',
34036   'load_functions' => '',
34037   'to_arg_functions' => '',
34038   'access_callback' => 'user_access',
34039   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34040   'page_callback' => 'drupal_get_form',
34041   'page_arguments' => 'a:2:{i:0;s:18:"contact_admin_edit";i:1;i:3;}',
34042   'fit' => '15',
34043   'number_parts' => '4',
34044   'tab_parent' => 'admin/build/contact',
34045   'tab_root' => 'admin/build/contact',
34046   'title' => 'Add category',
34047   'title_callback' => 't',
34048   'title_arguments' => '',
34049   'type' => '128',
34050   'block_callback' => '',
34051   'description' => '',
34052   'position' => '',
34053   'weight' => '1',
34054   'file' => 'modules/contact/contact.admin.inc',
34055 ))
34056 ->values(array(
34057   'path' => 'admin/build/contact/delete/%',
34058   'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
34059   'to_arg_functions' => '',
34060   'access_callback' => 'user_access',
34061   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34062   'page_callback' => 'drupal_get_form',
34063   'page_arguments' => 'a:2:{i:0;s:20:"contact_admin_delete";i:1;i:4;}',
34064   'fit' => '30',
34065   'number_parts' => '5',
34066   'tab_parent' => '',
34067   'tab_root' => 'admin/build/contact/delete/%',
34068   'title' => 'Delete contact',
34069   'title_callback' => 't',
34070   'title_arguments' => '',
34071   'type' => '4',
34072   'block_callback' => '',
34073   'description' => '',
34074   'position' => '',
34075   'weight' => '0',
34076   'file' => 'modules/contact/contact.admin.inc',
34077 ))
34078 ->values(array(
34079   'path' => 'admin/build/contact/edit/%',
34080   'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
34081   'to_arg_functions' => '',
34082   'access_callback' => 'user_access',
34083   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34084   'page_callback' => 'drupal_get_form',
34085   'page_arguments' => 'a:3:{i:0;s:18:"contact_admin_edit";i:1;i:3;i:2;i:4;}',
34086   'fit' => '30',
34087   'number_parts' => '5',
34088   'tab_parent' => '',
34089   'tab_root' => 'admin/build/contact/edit/%',
34090   'title' => 'Edit contact category',
34091   'title_callback' => 't',
34092   'title_arguments' => '',
34093   'type' => '4',
34094   'block_callback' => '',
34095   'description' => '',
34096   'position' => '',
34097   'weight' => '0',
34098   'file' => 'modules/contact/contact.admin.inc',
34099 ))
34100 ->values(array(
34101   'path' => 'admin/build/contact/list',
34102   'load_functions' => '',
34103   'to_arg_functions' => '',
34104   'access_callback' => 'user_access',
34105   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34106   'page_callback' => 'contact_admin_categories',
34107   'page_arguments' => 'a:0:{}',
34108   'fit' => '15',
34109   'number_parts' => '4',
34110   'tab_parent' => 'admin/build/contact',
34111   'tab_root' => 'admin/build/contact',
34112   'title' => 'List',
34113   'title_callback' => 't',
34114   'title_arguments' => '',
34115   'type' => '136',
34116   'block_callback' => '',
34117   'description' => '',
34118   'position' => '',
34119   'weight' => '0',
34120   'file' => 'modules/contact/contact.admin.inc',
34121 ))
34122 ->values(array(
34123   'path' => 'admin/build/contact/settings',
34124   'load_functions' => '',
34125   'to_arg_functions' => '',
34126   'access_callback' => 'user_access',
34127   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34128   'page_callback' => 'drupal_get_form',
34129   'page_arguments' => 'a:1:{i:0;s:22:"contact_admin_settings";}',
34130   'fit' => '15',
34131   'number_parts' => '4',
34132   'tab_parent' => 'admin/build/contact',
34133   'tab_root' => 'admin/build/contact',
34134   'title' => 'Settings',
34135   'title_callback' => 't',
34136   'title_arguments' => '',
34137   'type' => '128',
34138   'block_callback' => '',
34139   'description' => '',
34140   'position' => '',
34141   'weight' => '2',
34142   'file' => 'modules/contact/contact.admin.inc',
34143 ))
34144 ->values(array(
34145   'path' => 'admin/build/menu',
34146   'load_functions' => '',
34147   'to_arg_functions' => '',
34148   'access_callback' => 'user_access',
34149   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34150   'page_callback' => 'menu_overview_page',
34151   'page_arguments' => 'a:0:{}',
34152   'fit' => '7',
34153   'number_parts' => '3',
34154   'tab_parent' => '',
34155   'tab_root' => 'admin/build/menu',
34156   'title' => 'Menus',
34157   'title_callback' => 't',
34158   'title_arguments' => '',
34159   'type' => '6',
34160   'block_callback' => '',
34161   'description' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
34162   'position' => '',
34163   'weight' => '0',
34164   'file' => 'modules/menu/menu.admin.inc',
34165 ))
34166 ->values(array(
34167   'path' => 'admin/build/menu-customize/%',
34168   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
34169   'to_arg_functions' => '',
34170   'access_callback' => 'user_access',
34171   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34172   'page_callback' => 'drupal_get_form',
34173   'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
34174   'fit' => '14',
34175   'number_parts' => '4',
34176   'tab_parent' => '',
34177   'tab_root' => 'admin/build/menu-customize/%',
34178   'title' => 'Customize menu',
34179   'title_callback' => 'menu_overview_title',
34180   'title_arguments' => 'a:1:{i:0;i:3;}',
34181   'type' => '4',
34182   'block_callback' => '',
34183   'description' => '',
34184   'position' => '',
34185   'weight' => '0',
34186   'file' => 'modules/menu/menu.admin.inc',
34187 ))
34188 ->values(array(
34189   'path' => 'admin/build/menu-customize/%/add',
34190   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
34191   'to_arg_functions' => '',
34192   'access_callback' => 'user_access',
34193   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34194   'page_callback' => 'drupal_get_form',
34195   'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:3;}',
34196   'fit' => '29',
34197   'number_parts' => '5',
34198   'tab_parent' => 'admin/build/menu-customize/%',
34199   'tab_root' => 'admin/build/menu-customize/%',
34200   'title' => 'Add item',
34201   'title_callback' => 't',
34202   'title_arguments' => '',
34203   'type' => '128',
34204   'block_callback' => '',
34205   'description' => '',
34206   'position' => '',
34207   'weight' => '0',
34208   'file' => 'modules/menu/menu.admin.inc',
34209 ))
34210 ->values(array(
34211   'path' => 'admin/build/menu-customize/%/delete',
34212   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
34213   'to_arg_functions' => '',
34214   'access_callback' => 'user_access',
34215   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34216   'page_callback' => 'menu_delete_menu_page',
34217   'page_arguments' => 'a:1:{i:0;i:3;}',
34218   'fit' => '29',
34219   'number_parts' => '5',
34220   'tab_parent' => '',
34221   'tab_root' => 'admin/build/menu-customize/%/delete',
34222   'title' => 'Delete menu',
34223   'title_callback' => 't',
34224   'title_arguments' => '',
34225   'type' => '4',
34226   'block_callback' => '',
34227   'description' => '',
34228   'position' => '',
34229   'weight' => '0',
34230   'file' => 'modules/menu/menu.admin.inc',
34231 ))
34232 ->values(array(
34233   'path' => 'admin/build/menu-customize/%/edit',
34234   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
34235   'to_arg_functions' => '',
34236   'access_callback' => 'user_access',
34237   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34238   'page_callback' => 'drupal_get_form',
34239   'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:3;}',
34240   'fit' => '29',
34241   'number_parts' => '5',
34242   'tab_parent' => 'admin/build/menu-customize/%',
34243   'tab_root' => 'admin/build/menu-customize/%',
34244   'title' => 'Edit menu',
34245   'title_callback' => 't',
34246   'title_arguments' => '',
34247   'type' => '128',
34248   'block_callback' => '',
34249   'description' => '',
34250   'position' => '',
34251   'weight' => '0',
34252   'file' => 'modules/menu/menu.admin.inc',
34253 ))
34254 ->values(array(
34255   'path' => 'admin/build/menu-customize/%/list',
34256   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
34257   'to_arg_functions' => '',
34258   'access_callback' => 'user_access',
34259   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34260   'page_callback' => 'drupal_get_form',
34261   'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
34262   'fit' => '29',
34263   'number_parts' => '5',
34264   'tab_parent' => 'admin/build/menu-customize/%',
34265   'tab_root' => 'admin/build/menu-customize/%',
34266   'title' => 'List items',
34267   'title_callback' => 't',
34268   'title_arguments' => '',
34269   'type' => '136',
34270   'block_callback' => '',
34271   'description' => '',
34272   'position' => '',
34273   'weight' => '-10',
34274   'file' => 'modules/menu/menu.admin.inc',
34275 ))
34276 ->values(array(
34277   'path' => 'admin/build/menu/add',
34278   'load_functions' => '',
34279   'to_arg_functions' => '',
34280   'access_callback' => 'user_access',
34281   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34282   'page_callback' => 'drupal_get_form',
34283   'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
34284   'fit' => '15',
34285   'number_parts' => '4',
34286   'tab_parent' => 'admin/build/menu',
34287   'tab_root' => 'admin/build/menu',
34288   'title' => 'Add menu',
34289   'title_callback' => 't',
34290   'title_arguments' => '',
34291   'type' => '128',
34292   'block_callback' => '',
34293   'description' => '',
34294   'position' => '',
34295   'weight' => '0',
34296   'file' => 'modules/menu/menu.admin.inc',
34297 ))
34298 ->values(array(
34299   'path' => 'admin/build/menu/item/%/delete',
34300   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
34301   'to_arg_functions' => '',
34302   'access_callback' => 'user_access',
34303   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34304   'page_callback' => 'menu_item_delete_page',
34305   'page_arguments' => 'a:1:{i:0;i:4;}',
34306   'fit' => '61',
34307   'number_parts' => '6',
34308   'tab_parent' => '',
34309   'tab_root' => 'admin/build/menu/item/%/delete',
34310   'title' => 'Delete menu item',
34311   'title_callback' => 't',
34312   'title_arguments' => '',
34313   'type' => '4',
34314   'block_callback' => '',
34315   'description' => '',
34316   'position' => '',
34317   'weight' => '0',
34318   'file' => 'modules/menu/menu.admin.inc',
34319 ))
34320 ->values(array(
34321   'path' => 'admin/build/menu/item/%/edit',
34322   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
34323   'to_arg_functions' => '',
34324   'access_callback' => 'user_access',
34325   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34326   'page_callback' => 'drupal_get_form',
34327   'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
34328   'fit' => '61',
34329   'number_parts' => '6',
34330   'tab_parent' => '',
34331   'tab_root' => 'admin/build/menu/item/%/edit',
34332   'title' => 'Edit menu item',
34333   'title_callback' => 't',
34334   'title_arguments' => '',
34335   'type' => '4',
34336   'block_callback' => '',
34337   'description' => '',
34338   'position' => '',
34339   'weight' => '0',
34340   'file' => 'modules/menu/menu.admin.inc',
34341 ))
34342 ->values(array(
34343   'path' => 'admin/build/menu/item/%/reset',
34344   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
34345   'to_arg_functions' => '',
34346   'access_callback' => 'user_access',
34347   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34348   'page_callback' => 'drupal_get_form',
34349   'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
34350   'fit' => '61',
34351   'number_parts' => '6',
34352   'tab_parent' => '',
34353   'tab_root' => 'admin/build/menu/item/%/reset',
34354   'title' => 'Reset menu item',
34355   'title_callback' => 't',
34356   'title_arguments' => '',
34357   'type' => '4',
34358   'block_callback' => '',
34359   'description' => '',
34360   'position' => '',
34361   'weight' => '0',
34362   'file' => 'modules/menu/menu.admin.inc',
34363 ))
34364 ->values(array(
34365   'path' => 'admin/build/menu/list',
34366   'load_functions' => '',
34367   'to_arg_functions' => '',
34368   'access_callback' => 'user_access',
34369   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34370   'page_callback' => 'menu_overview_page',
34371   'page_arguments' => 'a:0:{}',
34372   'fit' => '15',
34373   'number_parts' => '4',
34374   'tab_parent' => 'admin/build/menu',
34375   'tab_root' => 'admin/build/menu',
34376   'title' => 'List menus',
34377   'title_callback' => 't',
34378   'title_arguments' => '',
34379   'type' => '136',
34380   'block_callback' => '',
34381   'description' => '',
34382   'position' => '',
34383   'weight' => '-10',
34384   'file' => 'modules/menu/menu.admin.inc',
34385 ))
34386 ->values(array(
34387   'path' => 'admin/build/menu/settings',
34388   'load_functions' => '',
34389   'to_arg_functions' => '',
34390   'access_callback' => 'user_access',
34391   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34392   'page_callback' => 'drupal_get_form',
34393   'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
34394   'fit' => '15',
34395   'number_parts' => '4',
34396   'tab_parent' => 'admin/build/menu',
34397   'tab_root' => 'admin/build/menu',
34398   'title' => 'Settings',
34399   'title_callback' => 't',
34400   'title_arguments' => '',
34401   'type' => '128',
34402   'block_callback' => '',
34403   'description' => '',
34404   'position' => '',
34405   'weight' => '5',
34406   'file' => 'modules/menu/menu.admin.inc',
34407 ))
34408 ->values(array(
34409   'path' => 'admin/build/modules',
34410   'load_functions' => '',
34411   'to_arg_functions' => '',
34412   'access_callback' => 'user_access',
34413   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34414   'page_callback' => 'drupal_get_form',
34415   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
34416   'fit' => '7',
34417   'number_parts' => '3',
34418   'tab_parent' => '',
34419   'tab_root' => 'admin/build/modules',
34420   'title' => 'Modules',
34421   'title_callback' => 't',
34422   'title_arguments' => '',
34423   'type' => '6',
34424   'block_callback' => '',
34425   'description' => 'Enable or disable add-on modules for your site.',
34426   'position' => '',
34427   'weight' => '0',
34428   'file' => 'modules/system/system.admin.inc',
34429 ))
34430 ->values(array(
34431   'path' => 'admin/build/modules/list',
34432   'load_functions' => '',
34433   'to_arg_functions' => '',
34434   'access_callback' => 'user_access',
34435   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34436   'page_callback' => 'drupal_get_form',
34437   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
34438   'fit' => '15',
34439   'number_parts' => '4',
34440   'tab_parent' => 'admin/build/modules',
34441   'tab_root' => 'admin/build/modules',
34442   'title' => 'List',
34443   'title_callback' => 't',
34444   'title_arguments' => '',
34445   'type' => '136',
34446   'block_callback' => '',
34447   'description' => '',
34448   'position' => '',
34449   'weight' => '0',
34450   'file' => 'modules/system/system.admin.inc',
34451 ))
34452 ->values(array(
34453   'path' => 'admin/build/modules/list/confirm',
34454   'load_functions' => '',
34455   'to_arg_functions' => '',
34456   'access_callback' => 'user_access',
34457   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34458   'page_callback' => 'drupal_get_form',
34459   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
34460   'fit' => '31',
34461   'number_parts' => '5',
34462   'tab_parent' => '',
34463   'tab_root' => 'admin/build/modules/list/confirm',
34464   'title' => 'List',
34465   'title_callback' => 't',
34466   'title_arguments' => '',
34467   'type' => '4',
34468   'block_callback' => '',
34469   'description' => '',
34470   'position' => '',
34471   'weight' => '0',
34472   'file' => 'modules/system/system.admin.inc',
34473 ))
34474 ->values(array(
34475   'path' => 'admin/build/modules/uninstall',
34476   'load_functions' => '',
34477   'to_arg_functions' => '',
34478   'access_callback' => 'user_access',
34479   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34480   'page_callback' => 'drupal_get_form',
34481   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
34482   'fit' => '15',
34483   'number_parts' => '4',
34484   'tab_parent' => 'admin/build/modules',
34485   'tab_root' => 'admin/build/modules',
34486   'title' => 'Uninstall',
34487   'title_callback' => 't',
34488   'title_arguments' => '',
34489   'type' => '128',
34490   'block_callback' => '',
34491   'description' => '',
34492   'position' => '',
34493   'weight' => '0',
34494   'file' => 'modules/system/system.admin.inc',
34495 ))
34496 ->values(array(
34497   'path' => 'admin/build/modules/uninstall/confirm',
34498   'load_functions' => '',
34499   'to_arg_functions' => '',
34500   'access_callback' => 'user_access',
34501   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34502   'page_callback' => 'drupal_get_form',
34503   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
34504   'fit' => '31',
34505   'number_parts' => '5',
34506   'tab_parent' => '',
34507   'tab_root' => 'admin/build/modules/uninstall/confirm',
34508   'title' => 'Uninstall',
34509   'title_callback' => 't',
34510   'title_arguments' => '',
34511   'type' => '4',
34512   'block_callback' => '',
34513   'description' => '',
34514   'position' => '',
34515   'weight' => '0',
34516   'file' => 'modules/system/system.admin.inc',
34517 ))
34518 ->values(array(
34519   'path' => 'admin/build/path',
34520   'load_functions' => '',
34521   'to_arg_functions' => '',
34522   'access_callback' => 'user_access',
34523   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
34524   'page_callback' => 'path_admin_overview',
34525   'page_arguments' => 'a:0:{}',
34526   'fit' => '7',
34527   'number_parts' => '3',
34528   'tab_parent' => '',
34529   'tab_root' => 'admin/build/path',
34530   'title' => 'URL aliases',
34531   'title_callback' => 't',
34532   'title_arguments' => '',
34533   'type' => '6',
34534   'block_callback' => '',
34535   'description' => "Change your site's URL paths by aliasing them.",
34536   'position' => '',
34537   'weight' => '0',
34538   'file' => 'modules/path/path.admin.inc',
34539 ))
34540 ->values(array(
34541   'path' => 'admin/build/path/add',
34542   'load_functions' => '',
34543   'to_arg_functions' => '',
34544   'access_callback' => 'user_access',
34545   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
34546   'page_callback' => 'path_admin_edit',
34547   'page_arguments' => 'a:0:{}',
34548   'fit' => '15',
34549   'number_parts' => '4',
34550   'tab_parent' => 'admin/build/path',
34551   'tab_root' => 'admin/build/path',
34552   'title' => 'Add alias',
34553   'title_callback' => 't',
34554   'title_arguments' => '',
34555   'type' => '128',
34556   'block_callback' => '',
34557   'description' => '',
34558   'position' => '',
34559   'weight' => '0',
34560   'file' => 'modules/path/path.admin.inc',
34561 ))
34562 ->values(array(
34563   'path' => 'admin/build/path/delete',
34564   'load_functions' => '',
34565   'to_arg_functions' => '',
34566   'access_callback' => 'user_access',
34567   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
34568   'page_callback' => 'drupal_get_form',
34569   'page_arguments' => 'a:1:{i:0;s:25:"path_admin_delete_confirm";}',
34570   'fit' => '15',
34571   'number_parts' => '4',
34572   'tab_parent' => '',
34573   'tab_root' => 'admin/build/path/delete',
34574   'title' => 'Delete alias',
34575   'title_callback' => 't',
34576   'title_arguments' => '',
34577   'type' => '4',
34578   'block_callback' => '',
34579   'description' => '',
34580   'position' => '',
34581   'weight' => '0',
34582   'file' => 'modules/path/path.admin.inc',
34583 ))
34584 ->values(array(
34585   'path' => 'admin/build/path/edit',
34586   'load_functions' => '',
34587   'to_arg_functions' => '',
34588   'access_callback' => 'user_access',
34589   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
34590   'page_callback' => 'path_admin_edit',
34591   'page_arguments' => 'a:0:{}',
34592   'fit' => '15',
34593   'number_parts' => '4',
34594   'tab_parent' => '',
34595   'tab_root' => 'admin/build/path/edit',
34596   'title' => 'Edit alias',
34597   'title_callback' => 't',
34598   'title_arguments' => '',
34599   'type' => '4',
34600   'block_callback' => '',
34601   'description' => '',
34602   'position' => '',
34603   'weight' => '0',
34604   'file' => 'modules/path/path.admin.inc',
34605 ))
34606 ->values(array(
34607   'path' => 'admin/build/path/list',
34608   'load_functions' => '',
34609   'to_arg_functions' => '',
34610   'access_callback' => 'user_access',
34611   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
34612   'page_callback' => 'path_admin_overview',
34613   'page_arguments' => 'a:0:{}',
34614   'fit' => '15',
34615   'number_parts' => '4',
34616   'tab_parent' => 'admin/build/path',
34617   'tab_root' => 'admin/build/path',
34618   'title' => 'List',
34619   'title_callback' => 't',
34620   'title_arguments' => '',
34621   'type' => '136',
34622   'block_callback' => '',
34623   'description' => '',
34624   'position' => '',
34625   'weight' => '-10',
34626   'file' => 'modules/path/path.admin.inc',
34627 ))
34628 ->values(array(
34629   'path' => 'admin/build/themes',
34630   'load_functions' => '',
34631   'to_arg_functions' => '',
34632   'access_callback' => 'user_access',
34633   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34634   'page_callback' => 'drupal_get_form',
34635   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
34636   'fit' => '7',
34637   'number_parts' => '3',
34638   'tab_parent' => '',
34639   'tab_root' => 'admin/build/themes',
34640   'title' => 'Themes',
34641   'title_callback' => 't',
34642   'title_arguments' => '',
34643   'type' => '6',
34644   'block_callback' => '',
34645   'description' => 'Change which theme your site uses or allows users to set.',
34646   'position' => '',
34647   'weight' => '0',
34648   'file' => 'modules/system/system.admin.inc',
34649 ))
34650 ->values(array(
34651   'path' => 'admin/build/themes/select',
34652   'load_functions' => '',
34653   'to_arg_functions' => '',
34654   'access_callback' => 'user_access',
34655   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34656   'page_callback' => 'drupal_get_form',
34657   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
34658   'fit' => '15',
34659   'number_parts' => '4',
34660   'tab_parent' => 'admin/build/themes',
34661   'tab_root' => 'admin/build/themes',
34662   'title' => 'List',
34663   'title_callback' => 't',
34664   'title_arguments' => '',
34665   'type' => '136',
34666   'block_callback' => '',
34667   'description' => 'Select the default theme.',
34668   'position' => '',
34669   'weight' => '-1',
34670   'file' => 'modules/system/system.admin.inc',
34671 ))
34672 ->values(array(
34673   'path' => 'admin/build/themes/settings',
34674   'load_functions' => '',
34675   'to_arg_functions' => '',
34676   'access_callback' => 'user_access',
34677   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34678   'page_callback' => 'drupal_get_form',
34679   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
34680   'fit' => '15',
34681   'number_parts' => '4',
34682   'tab_parent' => 'admin/build/themes',
34683   'tab_root' => 'admin/build/themes',
34684   'title' => 'Configure',
34685   'title_callback' => 't',
34686   'title_arguments' => '',
34687   'type' => '128',
34688   'block_callback' => '',
34689   'description' => '',
34690   'position' => '',
34691   'weight' => '0',
34692   'file' => 'modules/system/system.admin.inc',
34693 ))
34694 ->values(array(
34695   'path' => 'admin/build/themes/settings/bluemarine',
34696   'load_functions' => '',
34697   'to_arg_functions' => '',
34698   'access_callback' => '_system_themes_access',
34699   '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";}}',
34700   'page_callback' => 'drupal_get_form',
34701   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
34702   'fit' => '31',
34703   'number_parts' => '5',
34704   'tab_parent' => 'admin/build/themes/settings',
34705   'tab_root' => 'admin/build/themes',
34706   'title' => 'Bluemarine',
34707   'title_callback' => 't',
34708   'title_arguments' => '',
34709   'type' => '128',
34710   'block_callback' => '',
34711   'description' => '',
34712   'position' => '',
34713   'weight' => '0',
34714   'file' => 'modules/system/system.admin.inc',
34715 ))
34716 ->values(array(
34717   'path' => 'admin/build/themes/settings/chameleon',
34718   'load_functions' => '',
34719   'to_arg_functions' => '',
34720   'access_callback' => '_system_themes_access',
34721   '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";}}}}',
34722   'page_callback' => 'drupal_get_form',
34723   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
34724   'fit' => '31',
34725   'number_parts' => '5',
34726   'tab_parent' => 'admin/build/themes/settings',
34727   'tab_root' => 'admin/build/themes',
34728   'title' => 'Chameleon',
34729   'title_callback' => 't',
34730   'title_arguments' => '',
34731   'type' => '128',
34732   'block_callback' => '',
34733   'description' => '',
34734   'position' => '',
34735   'weight' => '0',
34736   'file' => 'modules/system/system.admin.inc',
34737 ))
34738 ->values(array(
34739   'path' => 'admin/build/themes/settings/garland',
34740   'load_functions' => '',
34741   'to_arg_functions' => '',
34742   'access_callback' => '_system_themes_access',
34743   '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";}}',
34744   'page_callback' => 'drupal_get_form',
34745   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
34746   'fit' => '31',
34747   'number_parts' => '5',
34748   'tab_parent' => 'admin/build/themes/settings',
34749   'tab_root' => 'admin/build/themes',
34750   'title' => 'Garland',
34751   'title_callback' => 't',
34752   'title_arguments' => '',
34753   'type' => '128',
34754   'block_callback' => '',
34755   'description' => '',
34756   'position' => '',
34757   'weight' => '0',
34758   'file' => 'modules/system/system.admin.inc',
34759 ))
34760 ->values(array(
34761   'path' => 'admin/build/themes/settings/global',
34762   'load_functions' => '',
34763   'to_arg_functions' => '',
34764   'access_callback' => 'user_access',
34765   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
34766   'page_callback' => 'drupal_get_form',
34767   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
34768   'fit' => '31',
34769   'number_parts' => '5',
34770   'tab_parent' => 'admin/build/themes/settings',
34771   'tab_root' => 'admin/build/themes',
34772   'title' => 'Global settings',
34773   'title_callback' => 't',
34774   'title_arguments' => '',
34775   'type' => '136',
34776   'block_callback' => '',
34777   'description' => '',
34778   'position' => '',
34779   'weight' => '-1',
34780   'file' => 'modules/system/system.admin.inc',
34781 ))
34782 ->values(array(
34783   'path' => 'admin/build/themes/settings/marvin',
34784   'load_functions' => '',
34785   'to_arg_functions' => '',
34786   'access_callback' => '_system_themes_access',
34787   '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";}}',
34788   'page_callback' => 'drupal_get_form',
34789   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
34790   'fit' => '31',
34791   'number_parts' => '5',
34792   'tab_parent' => 'admin/build/themes/settings',
34793   'tab_root' => 'admin/build/themes',
34794   'title' => 'Marvin',
34795   'title_callback' => 't',
34796   'title_arguments' => '',
34797   'type' => '128',
34798   'block_callback' => '',
34799   'description' => '',
34800   'position' => '',
34801   'weight' => '0',
34802   'file' => 'modules/system/system.admin.inc',
34803 ))
34804 ->values(array(
34805   'path' => 'admin/build/themes/settings/minnelli',
34806   'load_functions' => '',
34807   'to_arg_functions' => '',
34808   'access_callback' => '_system_themes_access',
34809   '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";}}',
34810   'page_callback' => 'drupal_get_form',
34811   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
34812   'fit' => '31',
34813   'number_parts' => '5',
34814   'tab_parent' => 'admin/build/themes/settings',
34815   'tab_root' => 'admin/build/themes',
34816   'title' => 'Minnelli',
34817   'title_callback' => 't',
34818   'title_arguments' => '',
34819   'type' => '128',
34820   'block_callback' => '',
34821   'description' => '',
34822   'position' => '',
34823   'weight' => '0',
34824   'file' => 'modules/system/system.admin.inc',
34825 ))
34826 ->values(array(
34827   'path' => 'admin/build/themes/settings/pushbutton',
34828   'load_functions' => '',
34829   'to_arg_functions' => '',
34830   'access_callback' => '_system_themes_access',
34831   '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";}}',
34832   'page_callback' => 'drupal_get_form',
34833   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
34834   'fit' => '31',
34835   'number_parts' => '5',
34836   'tab_parent' => 'admin/build/themes/settings',
34837   'tab_root' => 'admin/build/themes',
34838   'title' => 'Pushbutton',
34839   'title_callback' => 't',
34840   'title_arguments' => '',
34841   'type' => '128',
34842   'block_callback' => '',
34843   'description' => '',
34844   'position' => '',
34845   'weight' => '0',
34846   'file' => 'modules/system/system.admin.inc',
34847 ))
34848 ->values(array(
34849   'path' => 'admin/build/translate',
34850   'load_functions' => '',
34851   'to_arg_functions' => '',
34852   'access_callback' => 'user_access',
34853   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
34854   'page_callback' => 'locale_inc_callback',
34855   'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
34856   'fit' => '7',
34857   'number_parts' => '3',
34858   'tab_parent' => '',
34859   'tab_root' => 'admin/build/translate',
34860   'title' => 'Translate interface',
34861   'title_callback' => 't',
34862   'title_arguments' => '',
34863   'type' => '6',
34864   'block_callback' => '',
34865   'description' => 'Translate the built in interface and optionally other text.',
34866   'position' => '',
34867   'weight' => '0',
34868   'file' => '',
34869 ))
34870 ->values(array(
34871   'path' => 'admin/build/translate/delete/%',
34872   'load_functions' => 'a:1:{i:4;N;}',
34873   'to_arg_functions' => '',
34874   'access_callback' => 'user_access',
34875   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
34876   'page_callback' => 'locale_inc_callback',
34877   'page_arguments' => 'a:2:{i:0;s:28:"locale_translate_delete_page";i:1;i:4;}',
34878   'fit' => '30',
34879   'number_parts' => '5',
34880   'tab_parent' => '',
34881   'tab_root' => 'admin/build/translate/delete/%',
34882   'title' => 'Delete string',
34883   'title_callback' => 't',
34884   'title_arguments' => '',
34885   'type' => '4',
34886   'block_callback' => '',
34887   'description' => '',
34888   'position' => '',
34889   'weight' => '0',
34890   'file' => '',
34891 ))
34892 ->values(array(
34893   'path' => 'admin/build/translate/edit/%',
34894   'load_functions' => 'a:1:{i:4;N;}',
34895   'to_arg_functions' => '',
34896   'access_callback' => 'user_access',
34897   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
34898   'page_callback' => 'locale_inc_callback',
34899   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_translate_edit_form";i:2;i:4;}',
34900   'fit' => '30',
34901   'number_parts' => '5',
34902   'tab_parent' => '',
34903   'tab_root' => 'admin/build/translate/edit/%',
34904   'title' => 'Edit string',
34905   'title_callback' => 't',
34906   'title_arguments' => '',
34907   'type' => '4',
34908   'block_callback' => '',
34909   'description' => '',
34910   'position' => '',
34911   'weight' => '0',
34912   'file' => '',
34913 ))
34914 ->values(array(
34915   'path' => 'admin/build/translate/export',
34916   'load_functions' => '',
34917   'to_arg_functions' => '',
34918   'access_callback' => 'user_access',
34919   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
34920   'page_callback' => 'locale_inc_callback',
34921   'page_arguments' => 'a:1:{i:0;s:30:"locale_translate_export_screen";}',
34922   'fit' => '15',
34923   'number_parts' => '4',
34924   'tab_parent' => 'admin/build/translate',
34925   'tab_root' => 'admin/build/translate',
34926   'title' => 'Export',
34927   'title_callback' => 't',
34928   'title_arguments' => '',
34929   'type' => '128',
34930   'block_callback' => '',
34931   'description' => '',
34932   'position' => '',
34933   'weight' => '30',
34934   'file' => '',
34935 ))
34936 ->values(array(
34937   'path' => 'admin/build/translate/import',
34938   'load_functions' => '',
34939   'to_arg_functions' => '',
34940   'access_callback' => 'user_access',
34941   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
34942   'page_callback' => 'locale_inc_callback',
34943   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_translate_import_form";}',
34944   'fit' => '15',
34945   'number_parts' => '4',
34946   'tab_parent' => 'admin/build/translate',
34947   'tab_root' => 'admin/build/translate',
34948   'title' => 'Import',
34949   'title_callback' => 't',
34950   'title_arguments' => '',
34951   'type' => '128',
34952   'block_callback' => '',
34953   'description' => '',
34954   'position' => '',
34955   'weight' => '20',
34956   'file' => '',
34957 ))
34958 ->values(array(
34959   'path' => 'admin/build/translate/overview',
34960   'load_functions' => '',
34961   'to_arg_functions' => '',
34962   'access_callback' => 'user_access',
34963   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
34964   'page_callback' => 'locale_inc_callback',
34965   'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
34966   'fit' => '15',
34967   'number_parts' => '4',
34968   'tab_parent' => 'admin/build/translate',
34969   'tab_root' => 'admin/build/translate',
34970   'title' => 'Overview',
34971   'title_callback' => 't',
34972   'title_arguments' => '',
34973   'type' => '136',
34974   'block_callback' => '',
34975   'description' => '',
34976   'position' => '',
34977   'weight' => '0',
34978   'file' => '',
34979 ))
34980 ->values(array(
34981   'path' => 'admin/build/translate/refresh',
34982   'load_functions' => '',
34983   'to_arg_functions' => '',
34984   'access_callback' => 'user_access',
34985   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
34986   'page_callback' => 'i18nstrings_admin_refresh_page',
34987   'page_arguments' => 'a:0:{}',
34988   'fit' => '15',
34989   'number_parts' => '4',
34990   'tab_parent' => 'admin/build/translate',
34991   'tab_root' => 'admin/build/translate',
34992   'title' => 'Refresh',
34993   'title_callback' => 't',
34994   'title_arguments' => '',
34995   'type' => '128',
34996   'block_callback' => '',
34997   'description' => '',
34998   'position' => '',
34999   'weight' => '20',
35000   'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
35001 ))
35002 ->values(array(
35003   'path' => 'admin/build/translate/search',
35004   'load_functions' => '',
35005   'to_arg_functions' => '',
35006   'access_callback' => 'user_access',
35007   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35008   'page_callback' => 'locale_inc_callback',
35009   'page_arguments' => 'a:1:{i:0;s:28:"locale_translate_seek_screen";}',
35010   'fit' => '15',
35011   'number_parts' => '4',
35012   'tab_parent' => 'admin/build/translate',
35013   'tab_root' => 'admin/build/translate',
35014   'title' => 'Search',
35015   'title_callback' => 't',
35016   'title_arguments' => '',
35017   'type' => '128',
35018   'block_callback' => '',
35019   'description' => '',
35020   'position' => '',
35021   'weight' => '10',
35022   'file' => '',
35023 ))
35024 ->values(array(
35025   'path' => 'admin/by-module',
35026   'load_functions' => '',
35027   'to_arg_functions' => '',
35028   'access_callback' => 'user_access',
35029   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35030   'page_callback' => 'system_admin_by_module',
35031   'page_arguments' => 'a:0:{}',
35032   'fit' => '3',
35033   'number_parts' => '2',
35034   'tab_parent' => 'admin',
35035   'tab_root' => 'admin',
35036   'title' => 'By module',
35037   'title_callback' => 't',
35038   'title_arguments' => '',
35039   'type' => '128',
35040   'block_callback' => '',
35041   'description' => '',
35042   'position' => '',
35043   'weight' => '2',
35044   'file' => 'modules/system/system.admin.inc',
35045 ))
35046 ->values(array(
35047   'path' => 'admin/by-task',
35048   'load_functions' => '',
35049   'to_arg_functions' => '',
35050   'access_callback' => 'user_access',
35051   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35052   'page_callback' => 'system_main_admin_page',
35053   'page_arguments' => 'a:0:{}',
35054   'fit' => '3',
35055   'number_parts' => '2',
35056   'tab_parent' => 'admin',
35057   'tab_root' => 'admin',
35058   'title' => 'By task',
35059   'title_callback' => 't',
35060   'title_arguments' => '',
35061   'type' => '136',
35062   'block_callback' => '',
35063   'description' => '',
35064   'position' => '',
35065   'weight' => '0',
35066   'file' => 'modules/system/system.admin.inc',
35067 ))
35068 ->values(array(
35069   'path' => 'admin/compact',
35070   'load_functions' => '',
35071   'to_arg_functions' => '',
35072   'access_callback' => 'user_access',
35073   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35074   'page_callback' => 'system_admin_compact_page',
35075   'page_arguments' => 'a:0:{}',
35076   'fit' => '3',
35077   'number_parts' => '2',
35078   'tab_parent' => '',
35079   'tab_root' => 'admin/compact',
35080   'title' => 'Compact mode',
35081   'title_callback' => 't',
35082   'title_arguments' => '',
35083   'type' => '4',
35084   'block_callback' => '',
35085   'description' => '',
35086   'position' => '',
35087   'weight' => '0',
35088   'file' => 'modules/system/system.admin.inc',
35089 ))
35090 ->values(array(
35091   'path' => 'admin/content',
35092   'load_functions' => '',
35093   'to_arg_functions' => '',
35094   'access_callback' => 'user_access',
35095   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35096   'page_callback' => 'system_admin_menu_block_page',
35097   'page_arguments' => 'a:0:{}',
35098   'fit' => '3',
35099   'number_parts' => '2',
35100   'tab_parent' => '',
35101   'tab_root' => 'admin/content',
35102   'title' => 'Content management',
35103   'title_callback' => 't',
35104   'title_arguments' => '',
35105   'type' => '6',
35106   'block_callback' => '',
35107   'description' => "Manage your site's content.",
35108   'position' => 'left',
35109   'weight' => '-10',
35110   'file' => 'modules/system/system.admin.inc',
35111 ))
35112 ->values(array(
35113   'path' => 'admin/content/aggregator',
35114   'load_functions' => '',
35115   'to_arg_functions' => '',
35116   'access_callback' => 'user_access',
35117   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35118   'page_callback' => 'aggregator_admin_overview',
35119   'page_arguments' => 'a:0:{}',
35120   'fit' => '7',
35121   'number_parts' => '3',
35122   'tab_parent' => '',
35123   'tab_root' => 'admin/content/aggregator',
35124   'title' => 'Feed aggregator',
35125   'title_callback' => 't',
35126   'title_arguments' => '',
35127   'type' => '6',
35128   'block_callback' => '',
35129   'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
35130   'position' => '',
35131   'weight' => '0',
35132   'file' => 'modules/aggregator/aggregator.admin.inc',
35133 ))
35134 ->values(array(
35135   'path' => 'admin/content/aggregator/add/category',
35136   'load_functions' => '',
35137   'to_arg_functions' => '',
35138   'access_callback' => 'user_access',
35139   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35140   'page_callback' => 'drupal_get_form',
35141   'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}',
35142   'fit' => '31',
35143   'number_parts' => '5',
35144   'tab_parent' => 'admin/content/aggregator',
35145   'tab_root' => 'admin/content/aggregator',
35146   'title' => 'Add category',
35147   'title_callback' => 't',
35148   'title_arguments' => '',
35149   'type' => '128',
35150   'block_callback' => '',
35151   'description' => '',
35152   'position' => '',
35153   'weight' => '0',
35154   'file' => 'modules/aggregator/aggregator.admin.inc',
35155 ))
35156 ->values(array(
35157   'path' => 'admin/content/aggregator/add/feed',
35158   'load_functions' => '',
35159   'to_arg_functions' => '',
35160   'access_callback' => 'user_access',
35161   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35162   'page_callback' => 'drupal_get_form',
35163   'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}',
35164   'fit' => '31',
35165   'number_parts' => '5',
35166   'tab_parent' => 'admin/content/aggregator',
35167   'tab_root' => 'admin/content/aggregator',
35168   'title' => 'Add feed',
35169   'title_callback' => 't',
35170   'title_arguments' => '',
35171   'type' => '128',
35172   'block_callback' => '',
35173   'description' => '',
35174   'position' => '',
35175   'weight' => '0',
35176   'file' => 'modules/aggregator/aggregator.admin.inc',
35177 ))
35178 ->values(array(
35179   'path' => 'admin/content/aggregator/edit/category/%',
35180   'load_functions' => 'a:1:{i:5;s:24:"aggregator_category_load";}',
35181   'to_arg_functions' => '',
35182   'access_callback' => 'user_access',
35183   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35184   'page_callback' => 'drupal_get_form',
35185   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:5;}',
35186   'fit' => '62',
35187   'number_parts' => '6',
35188   'tab_parent' => '',
35189   'tab_root' => 'admin/content/aggregator/edit/category/%',
35190   'title' => 'Edit category',
35191   'title_callback' => 't',
35192   'title_arguments' => '',
35193   'type' => '4',
35194   'block_callback' => '',
35195   'description' => '',
35196   'position' => '',
35197   'weight' => '0',
35198   'file' => 'modules/aggregator/aggregator.admin.inc',
35199 ))
35200 ->values(array(
35201   'path' => 'admin/content/aggregator/edit/feed/%',
35202   'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}',
35203   'to_arg_functions' => '',
35204   'access_callback' => 'user_access',
35205   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35206   'page_callback' => 'drupal_get_form',
35207   'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:5;}',
35208   'fit' => '62',
35209   'number_parts' => '6',
35210   'tab_parent' => '',
35211   'tab_root' => 'admin/content/aggregator/edit/feed/%',
35212   'title' => 'Edit feed',
35213   'title_callback' => 't',
35214   'title_arguments' => '',
35215   'type' => '4',
35216   'block_callback' => '',
35217   'description' => '',
35218   'position' => '',
35219   'weight' => '0',
35220   'file' => 'modules/aggregator/aggregator.admin.inc',
35221 ))
35222 ->values(array(
35223   'path' => 'admin/content/aggregator/list',
35224   'load_functions' => '',
35225   'to_arg_functions' => '',
35226   'access_callback' => 'user_access',
35227   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35228   'page_callback' => 'aggregator_admin_overview',
35229   'page_arguments' => 'a:0:{}',
35230   'fit' => '15',
35231   'number_parts' => '4',
35232   'tab_parent' => 'admin/content/aggregator',
35233   'tab_root' => 'admin/content/aggregator',
35234   'title' => 'List',
35235   'title_callback' => 't',
35236   'title_arguments' => '',
35237   'type' => '136',
35238   'block_callback' => '',
35239   'description' => '',
35240   'position' => '',
35241   'weight' => '-10',
35242   'file' => 'modules/aggregator/aggregator.admin.inc',
35243 ))
35244 ->values(array(
35245   'path' => 'admin/content/aggregator/remove/%',
35246   'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
35247   'to_arg_functions' => '',
35248   'access_callback' => 'user_access',
35249   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35250   'page_callback' => 'drupal_get_form',
35251   'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:4;}',
35252   'fit' => '30',
35253   'number_parts' => '5',
35254   'tab_parent' => '',
35255   'tab_root' => 'admin/content/aggregator/remove/%',
35256   'title' => 'Remove items',
35257   'title_callback' => 't',
35258   'title_arguments' => '',
35259   'type' => '4',
35260   'block_callback' => '',
35261   'description' => '',
35262   'position' => '',
35263   'weight' => '0',
35264   'file' => 'modules/aggregator/aggregator.admin.inc',
35265 ))
35266 ->values(array(
35267   'path' => 'admin/content/aggregator/settings',
35268   'load_functions' => '',
35269   'to_arg_functions' => '',
35270   'access_callback' => 'user_access',
35271   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35272   'page_callback' => 'drupal_get_form',
35273   'page_arguments' => 'a:1:{i:0;s:25:"aggregator_admin_settings";}',
35274   'fit' => '15',
35275   'number_parts' => '4',
35276   'tab_parent' => 'admin/content/aggregator',
35277   'tab_root' => 'admin/content/aggregator',
35278   'title' => 'Settings',
35279   'title_callback' => 't',
35280   'title_arguments' => '',
35281   'type' => '128',
35282   'block_callback' => '',
35283   'description' => '',
35284   'position' => '',
35285   'weight' => '10',
35286   'file' => 'modules/aggregator/aggregator.admin.inc',
35287 ))
35288 ->values(array(
35289   'path' => 'admin/content/aggregator/update/%',
35290   'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
35291   'to_arg_functions' => '',
35292   'access_callback' => 'user_access',
35293   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35294   'page_callback' => 'aggregator_admin_refresh_feed',
35295   'page_arguments' => 'a:1:{i:0;i:4;}',
35296   'fit' => '30',
35297   'number_parts' => '5',
35298   'tab_parent' => '',
35299   'tab_root' => 'admin/content/aggregator/update/%',
35300   'title' => 'Update items',
35301   'title_callback' => 't',
35302   'title_arguments' => '',
35303   'type' => '4',
35304   'block_callback' => '',
35305   'description' => '',
35306   'position' => '',
35307   'weight' => '0',
35308   'file' => 'modules/aggregator/aggregator.admin.inc',
35309 ))
35310 ->values(array(
35311   'path' => 'admin/content/book',
35312   'load_functions' => '',
35313   'to_arg_functions' => '',
35314   'access_callback' => 'user_access',
35315   'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
35316   'page_callback' => 'book_admin_overview',
35317   'page_arguments' => 'a:0:{}',
35318   'fit' => '7',
35319   'number_parts' => '3',
35320   'tab_parent' => '',
35321   'tab_root' => 'admin/content/book',
35322   'title' => 'Books',
35323   'title_callback' => 't',
35324   'title_arguments' => '',
35325   'type' => '6',
35326   'block_callback' => '',
35327   'description' => "Manage your site's book outlines.",
35328   'position' => '',
35329   'weight' => '0',
35330   'file' => 'modules/book/book.admin.inc',
35331 ))
35332 ->values(array(
35333   'path' => 'admin/content/book/%',
35334   'load_functions' => 'a:1:{i:3;s:9:"node_load";}',
35335   'to_arg_functions' => '',
35336   'access_callback' => '_book_outline_access',
35337   'access_arguments' => 'a:1:{i:0;i:3;}',
35338   'page_callback' => 'drupal_get_form',
35339   'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}',
35340   'fit' => '14',
35341   'number_parts' => '4',
35342   'tab_parent' => '',
35343   'tab_root' => 'admin/content/book/%',
35344   'title' => 'Re-order book pages and change titles',
35345   'title_callback' => 't',
35346   'title_arguments' => '',
35347   'type' => '4',
35348   'block_callback' => '',
35349   'description' => '',
35350   'position' => '',
35351   'weight' => '0',
35352   'file' => 'modules/book/book.admin.inc',
35353 ))
35354 ->values(array(
35355   'path' => 'admin/content/book/list',
35356   'load_functions' => '',
35357   'to_arg_functions' => '',
35358   'access_callback' => 'user_access',
35359   'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
35360   'page_callback' => 'book_admin_overview',
35361   'page_arguments' => 'a:0:{}',
35362   'fit' => '15',
35363   'number_parts' => '4',
35364   'tab_parent' => 'admin/content/book',
35365   'tab_root' => 'admin/content/book',
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/book/book.admin.inc',
35375 ))
35376 ->values(array(
35377   'path' => 'admin/content/book/settings',
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:19:"book_admin_settings";}',
35384   'fit' => '15',
35385   'number_parts' => '4',
35386   'tab_parent' => 'admin/content/book',
35387   'tab_root' => 'admin/content/book',
35388   'title' => 'Settings',
35389   'title_callback' => 't',
35390   'title_arguments' => '',
35391   'type' => '128',
35392   'block_callback' => '',
35393   'description' => '',
35394   'position' => '',
35395   'weight' => '8',
35396   'file' => 'modules/book/book.admin.inc',
35397 ))
35398 ->values(array(
35399   'path' => 'admin/content/comment',
35400   'load_functions' => '',
35401   'to_arg_functions' => '',
35402   'access_callback' => 'user_access',
35403   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
35404   'page_callback' => 'comment_admin',
35405   'page_arguments' => 'a:0:{}',
35406   'fit' => '7',
35407   'number_parts' => '3',
35408   'tab_parent' => '',
35409   'tab_root' => 'admin/content/comment',
35410   'title' => 'Comments',
35411   'title_callback' => 't',
35412   'title_arguments' => '',
35413   'type' => '6',
35414   'block_callback' => '',
35415   'description' => 'List and edit site comments and the comment moderation queue.',
35416   'position' => '',
35417   'weight' => '0',
35418   'file' => 'modules/comment/comment.admin.inc',
35419 ))
35420 ->values(array(
35421   'path' => 'admin/content/comment/approval',
35422   'load_functions' => '',
35423   'to_arg_functions' => '',
35424   'access_callback' => 'user_access',
35425   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
35426   'page_callback' => 'comment_admin',
35427   'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
35428   'fit' => '15',
35429   'number_parts' => '4',
35430   'tab_parent' => 'admin/content/comment',
35431   'tab_root' => 'admin/content/comment',
35432   'title' => 'Approval queue',
35433   'title_callback' => 't',
35434   'title_arguments' => '',
35435   'type' => '128',
35436   'block_callback' => '',
35437   'description' => '',
35438   'position' => '',
35439   'weight' => '0',
35440   'file' => 'modules/comment/comment.admin.inc',
35441 ))
35442 ->values(array(
35443   'path' => 'admin/content/comment/new',
35444   'load_functions' => '',
35445   'to_arg_functions' => '',
35446   'access_callback' => 'user_access',
35447   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
35448   'page_callback' => 'comment_admin',
35449   'page_arguments' => 'a:0:{}',
35450   'fit' => '15',
35451   'number_parts' => '4',
35452   'tab_parent' => 'admin/content/comment',
35453   'tab_root' => 'admin/content/comment',
35454   'title' => 'Published comments',
35455   'title_callback' => 't',
35456   'title_arguments' => '',
35457   'type' => '136',
35458   'block_callback' => '',
35459   'description' => '',
35460   'position' => '',
35461   'weight' => '-10',
35462   'file' => 'modules/comment/comment.admin.inc',
35463 ))
35464 ->values(array(
35465   'path' => 'admin/content/forum',
35466   'load_functions' => '',
35467   'to_arg_functions' => '',
35468   'access_callback' => 'user_access',
35469   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35470   'page_callback' => 'drupal_get_form',
35471   'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
35472   'fit' => '7',
35473   'number_parts' => '3',
35474   'tab_parent' => '',
35475   'tab_root' => 'admin/content/forum',
35476   'title' => 'Forums',
35477   'title_callback' => 't',
35478   'title_arguments' => '',
35479   'type' => '6',
35480   'block_callback' => '',
35481   'description' => 'Control forums and their hierarchy and change forum settings.',
35482   'position' => '',
35483   'weight' => '0',
35484   'file' => 'modules/forum/forum.admin.inc',
35485 ))
35486 ->values(array(
35487   'path' => 'admin/content/forum/add/container',
35488   'load_functions' => '',
35489   'to_arg_functions' => '',
35490   'access_callback' => 'user_access',
35491   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35492   'page_callback' => 'forum_form_main',
35493   'page_arguments' => 'a:1:{i:0;s:9:"container";}',
35494   'fit' => '31',
35495   'number_parts' => '5',
35496   'tab_parent' => 'admin/content/forum',
35497   'tab_root' => 'admin/content/forum',
35498   'title' => 'Add container',
35499   'title_callback' => 't',
35500   'title_arguments' => '',
35501   'type' => '128',
35502   'block_callback' => '',
35503   'description' => '',
35504   'position' => '',
35505   'weight' => '0',
35506   'file' => 'modules/forum/forum.admin.inc',
35507 ))
35508 ->values(array(
35509   'path' => 'admin/content/forum/add/forum',
35510   'load_functions' => '',
35511   'to_arg_functions' => '',
35512   'access_callback' => 'user_access',
35513   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35514   'page_callback' => 'forum_form_main',
35515   'page_arguments' => 'a:1:{i:0;s:5:"forum";}',
35516   'fit' => '31',
35517   'number_parts' => '5',
35518   'tab_parent' => 'admin/content/forum',
35519   'tab_root' => 'admin/content/forum',
35520   'title' => 'Add forum',
35521   'title_callback' => 't',
35522   'title_arguments' => '',
35523   'type' => '128',
35524   'block_callback' => '',
35525   'description' => '',
35526   'position' => '',
35527   'weight' => '0',
35528   'file' => 'modules/forum/forum.admin.inc',
35529 ))
35530 ->values(array(
35531   'path' => 'admin/content/forum/edit/%',
35532   'load_functions' => 'a:1:{i:4;s:15:"forum_term_load";}',
35533   'to_arg_functions' => '',
35534   'access_callback' => 'user_access',
35535   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35536   'page_callback' => 'forum_form_main',
35537   'page_arguments' => 'a:0:{}',
35538   'fit' => '30',
35539   'number_parts' => '5',
35540   'tab_parent' => '',
35541   'tab_root' => 'admin/content/forum/edit/%',
35542   'title' => '',
35543   'title_callback' => 't',
35544   'title_arguments' => '',
35545   'type' => '4',
35546   'block_callback' => '',
35547   'description' => '',
35548   'position' => '',
35549   'weight' => '0',
35550   'file' => 'modules/forum/forum.admin.inc',
35551 ))
35552 ->values(array(
35553   'path' => 'admin/content/forum/edit/container/%',
35554   'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
35555   'to_arg_functions' => '',
35556   'access_callback' => 'user_access',
35557   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35558   'page_callback' => 'forum_form_main',
35559   'page_arguments' => 'a:2:{i:0;s:9:"container";i:1;i:5;}',
35560   'fit' => '62',
35561   'number_parts' => '6',
35562   'tab_parent' => '',
35563   'tab_root' => 'admin/content/forum/edit/container/%',
35564   'title' => 'Edit container',
35565   'title_callback' => 't',
35566   'title_arguments' => '',
35567   'type' => '4',
35568   'block_callback' => '',
35569   'description' => '',
35570   'position' => '',
35571   'weight' => '0',
35572   'file' => 'modules/forum/forum.admin.inc',
35573 ))
35574 ->values(array(
35575   'path' => 'admin/content/forum/edit/forum/%',
35576   'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
35577   'to_arg_functions' => '',
35578   'access_callback' => 'user_access',
35579   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35580   'page_callback' => 'forum_form_main',
35581   'page_arguments' => 'a:2:{i:0;s:5:"forum";i:1;i:5;}',
35582   'fit' => '62',
35583   'number_parts' => '6',
35584   'tab_parent' => '',
35585   'tab_root' => 'admin/content/forum/edit/forum/%',
35586   'title' => 'Edit forum',
35587   'title_callback' => 't',
35588   'title_arguments' => '',
35589   'type' => '4',
35590   'block_callback' => '',
35591   'description' => '',
35592   'position' => '',
35593   'weight' => '0',
35594   'file' => 'modules/forum/forum.admin.inc',
35595 ))
35596 ->values(array(
35597   'path' => 'admin/content/forum/list',
35598   'load_functions' => '',
35599   'to_arg_functions' => '',
35600   'access_callback' => 'user_access',
35601   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35602   'page_callback' => 'drupal_get_form',
35603   'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
35604   'fit' => '15',
35605   'number_parts' => '4',
35606   'tab_parent' => 'admin/content/forum',
35607   'tab_root' => 'admin/content/forum',
35608   'title' => 'List',
35609   'title_callback' => 't',
35610   'title_arguments' => '',
35611   'type' => '136',
35612   'block_callback' => '',
35613   'description' => '',
35614   'position' => '',
35615   'weight' => '-10',
35616   'file' => 'modules/forum/forum.admin.inc',
35617 ))
35618 ->values(array(
35619   'path' => 'admin/content/forum/settings',
35620   'load_functions' => '',
35621   'to_arg_functions' => '',
35622   'access_callback' => 'user_access',
35623   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
35624   'page_callback' => 'drupal_get_form',
35625   'page_arguments' => 'a:1:{i:0;s:20:"forum_admin_settings";}',
35626   'fit' => '15',
35627   'number_parts' => '4',
35628   'tab_parent' => 'admin/content/forum',
35629   'tab_root' => 'admin/content/forum',
35630   'title' => 'Settings',
35631   'title_callback' => 't',
35632   'title_arguments' => '',
35633   'type' => '128',
35634   'block_callback' => '',
35635   'description' => '',
35636   'position' => '',
35637   'weight' => '5',
35638   'file' => 'modules/forum/forum.admin.inc',
35639 ))
35640 ->values(array(
35641   'path' => 'admin/content/node',
35642   'load_functions' => '',
35643   'to_arg_functions' => '',
35644   'access_callback' => 'user_access',
35645   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
35646   'page_callback' => 'drupal_get_form',
35647   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
35648   'fit' => '7',
35649   'number_parts' => '3',
35650   'tab_parent' => '',
35651   'tab_root' => 'admin/content/node',
35652   'title' => 'Content',
35653   'title_callback' => 't',
35654   'title_arguments' => '',
35655   'type' => '6',
35656   'block_callback' => '',
35657   'description' => "View, edit, and delete your site's content.",
35658   'position' => '',
35659   'weight' => '0',
35660   'file' => 'modules/node/node.admin.inc',
35661 ))
35662 ->values(array(
35663   'path' => 'admin/content/node-settings',
35664   'load_functions' => '',
35665   'to_arg_functions' => '',
35666   'access_callback' => 'user_access',
35667   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
35668   'page_callback' => 'drupal_get_form',
35669   'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
35670   'fit' => '7',
35671   'number_parts' => '3',
35672   'tab_parent' => '',
35673   'tab_root' => 'admin/content/node-settings',
35674   'title' => 'Post settings',
35675   'title_callback' => 't',
35676   'title_arguments' => '',
35677   'type' => '6',
35678   'block_callback' => '',
35679   'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
35680   'position' => '',
35681   'weight' => '0',
35682   'file' => 'modules/node/node.admin.inc',
35683 ))
35684 ->values(array(
35685   'path' => 'admin/content/node-settings/rebuild',
35686   'load_functions' => '',
35687   'to_arg_functions' => '',
35688   'access_callback' => 'user_access',
35689   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35690   'page_callback' => 'drupal_get_form',
35691   'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
35692   'fit' => '15',
35693   'number_parts' => '4',
35694   'tab_parent' => '',
35695   'tab_root' => 'admin/content/node-settings/rebuild',
35696   'title' => 'Rebuild permissions',
35697   'title_callback' => 't',
35698   'title_arguments' => '',
35699   'type' => '4',
35700   'block_callback' => '',
35701   'description' => '',
35702   'position' => '',
35703   'weight' => '0',
35704   'file' => 'modules/node/node.admin.inc',
35705 ))
35706 ->values(array(
35707   'path' => 'admin/content/node-type/article',
35708   'load_functions' => '',
35709   'to_arg_functions' => '',
35710   'access_callback' => 'user_access',
35711   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35712   'page_callback' => 'drupal_get_form',
35713   '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";}}',
35714   'fit' => '15',
35715   'number_parts' => '4',
35716   'tab_parent' => '',
35717   'tab_root' => 'admin/content/node-type/article',
35718   'title' => 'Article',
35719   'title_callback' => 't',
35720   'title_arguments' => '',
35721   'type' => '4',
35722   'block_callback' => '',
35723   'description' => '',
35724   'position' => '',
35725   'weight' => '0',
35726   'file' => 'modules/node/content_types.inc',
35727 ))
35728 ->values(array(
35729   'path' => 'admin/content/node-type/article/delete',
35730   'load_functions' => '',
35731   'to_arg_functions' => '',
35732   'access_callback' => 'user_access',
35733   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35734   'page_callback' => 'drupal_get_form',
35735   '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";}}',
35736   'fit' => '31',
35737   'number_parts' => '5',
35738   'tab_parent' => '',
35739   'tab_root' => 'admin/content/node-type/article/delete',
35740   'title' => 'Delete',
35741   'title_callback' => 't',
35742   'title_arguments' => '',
35743   'type' => '4',
35744   'block_callback' => '',
35745   'description' => '',
35746   'position' => '',
35747   'weight' => '0',
35748   'file' => 'modules/node/content_types.inc',
35749 ))
35750 ->values(array(
35751   'path' => 'admin/content/node-type/article/display',
35752   'load_functions' => '',
35753   'to_arg_functions' => '',
35754   'access_callback' => 'user_access',
35755   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35756   'page_callback' => 'drupal_get_form',
35757   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";}',
35758   'fit' => '31',
35759   'number_parts' => '5',
35760   'tab_parent' => 'admin/content/node-type/article',
35761   'tab_root' => 'admin/content/node-type/article',
35762   'title' => 'Display fields',
35763   'title_callback' => 't',
35764   'title_arguments' => '',
35765   'type' => '128',
35766   'block_callback' => '',
35767   'description' => '',
35768   'position' => '',
35769   'weight' => '2',
35770   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35771 ))
35772 ->values(array(
35773   'path' => 'admin/content/node-type/article/display/basic',
35774   'load_functions' => '',
35775   'to_arg_functions' => '',
35776   'access_callback' => 'user_access',
35777   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35778   'page_callback' => 'drupal_get_form',
35779   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"basic";}',
35780   'fit' => '63',
35781   'number_parts' => '6',
35782   'tab_parent' => 'admin/content/node-type/article/display',
35783   'tab_root' => 'admin/content/node-type/article',
35784   'title' => 'Basic',
35785   'title_callback' => 't',
35786   'title_arguments' => '',
35787   'type' => '136',
35788   'block_callback' => '',
35789   'description' => '',
35790   'position' => '',
35791   'weight' => '0',
35792   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35793 ))
35794 ->values(array(
35795   'path' => 'admin/content/node-type/article/display/print',
35796   'load_functions' => '',
35797   'to_arg_functions' => '',
35798   'access_callback' => 'user_access',
35799   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35800   'page_callback' => 'drupal_get_form',
35801   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"print";}',
35802   'fit' => '63',
35803   'number_parts' => '6',
35804   'tab_parent' => 'admin/content/node-type/article/display',
35805   'tab_root' => 'admin/content/node-type/article',
35806   'title' => 'Print',
35807   'title_callback' => 't',
35808   'title_arguments' => '',
35809   'type' => '128',
35810   'block_callback' => '',
35811   'description' => '',
35812   'position' => '',
35813   'weight' => '1',
35814   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35815 ))
35816 ->values(array(
35817   'path' => 'admin/content/node-type/article/display/rss',
35818   'load_functions' => '',
35819   'to_arg_functions' => '',
35820   'access_callback' => 'user_access',
35821   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35822   'page_callback' => 'drupal_get_form',
35823   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:3:"rss";}',
35824   'fit' => '63',
35825   'number_parts' => '6',
35826   'tab_parent' => 'admin/content/node-type/article/display',
35827   'tab_root' => 'admin/content/node-type/article',
35828   'title' => 'RSS',
35829   'title_callback' => 't',
35830   'title_arguments' => '',
35831   'type' => '128',
35832   'block_callback' => '',
35833   'description' => '',
35834   'position' => '',
35835   'weight' => '1',
35836   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35837 ))
35838 ->values(array(
35839   'path' => 'admin/content/node-type/article/edit',
35840   'load_functions' => '',
35841   'to_arg_functions' => '',
35842   'access_callback' => 'user_access',
35843   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35844   'page_callback' => 'drupal_get_form',
35845   '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";}}',
35846   'fit' => '31',
35847   'number_parts' => '5',
35848   'tab_parent' => 'admin/content/node-type/article',
35849   'tab_root' => 'admin/content/node-type/article',
35850   'title' => 'Edit',
35851   'title_callback' => 't',
35852   'title_arguments' => '',
35853   'type' => '136',
35854   'block_callback' => '',
35855   'description' => '',
35856   'position' => '',
35857   'weight' => '0',
35858   'file' => 'modules/node/content_types.inc',
35859 ))
35860 ->values(array(
35861   'path' => 'admin/content/node-type/article/fields',
35862   'load_functions' => '',
35863   'to_arg_functions' => '',
35864   'access_callback' => 'user_access',
35865   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35866   'page_callback' => 'drupal_get_form',
35867   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"article";}',
35868   'fit' => '31',
35869   'number_parts' => '5',
35870   'tab_parent' => 'admin/content/node-type/article',
35871   'tab_root' => 'admin/content/node-type/article',
35872   'title' => 'Manage fields',
35873   'title_callback' => 't',
35874   'title_arguments' => '',
35875   'type' => '128',
35876   'block_callback' => '',
35877   'description' => '',
35878   'position' => '',
35879   'weight' => '1',
35880   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35881 ))
35882 ->values(array(
35883   'path' => 'admin/content/node-type/company',
35884   'load_functions' => '',
35885   'to_arg_functions' => '',
35886   'access_callback' => 'user_access',
35887   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35888   'page_callback' => 'drupal_get_form',
35889   '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";}}',
35890   'fit' => '15',
35891   'number_parts' => '4',
35892   'tab_parent' => '',
35893   'tab_root' => 'admin/content/node-type/company',
35894   'title' => 'Company',
35895   'title_callback' => 't',
35896   'title_arguments' => '',
35897   'type' => '4',
35898   'block_callback' => '',
35899   'description' => '',
35900   'position' => '',
35901   'weight' => '0',
35902   'file' => 'modules/node/content_types.inc',
35903 ))
35904 ->values(array(
35905   'path' => 'admin/content/node-type/company/delete',
35906   'load_functions' => '',
35907   'to_arg_functions' => '',
35908   'access_callback' => 'user_access',
35909   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35910   'page_callback' => 'drupal_get_form',
35911   '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";}}',
35912   'fit' => '31',
35913   'number_parts' => '5',
35914   'tab_parent' => '',
35915   'tab_root' => 'admin/content/node-type/company/delete',
35916   'title' => 'Delete',
35917   'title_callback' => 't',
35918   'title_arguments' => '',
35919   'type' => '4',
35920   'block_callback' => '',
35921   'description' => '',
35922   'position' => '',
35923   'weight' => '0',
35924   'file' => 'modules/node/content_types.inc',
35925 ))
35926 ->values(array(
35927   'path' => 'admin/content/node-type/company/display',
35928   'load_functions' => '',
35929   'to_arg_functions' => '',
35930   'access_callback' => 'user_access',
35931   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35932   'page_callback' => 'drupal_get_form',
35933   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";}',
35934   'fit' => '31',
35935   'number_parts' => '5',
35936   'tab_parent' => 'admin/content/node-type/company',
35937   'tab_root' => 'admin/content/node-type/company',
35938   'title' => 'Display fields',
35939   'title_callback' => 't',
35940   'title_arguments' => '',
35941   'type' => '128',
35942   'block_callback' => '',
35943   'description' => '',
35944   'position' => '',
35945   'weight' => '2',
35946   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35947 ))
35948 ->values(array(
35949   'path' => 'admin/content/node-type/company/display/basic',
35950   'load_functions' => '',
35951   'to_arg_functions' => '',
35952   'access_callback' => 'user_access',
35953   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35954   'page_callback' => 'drupal_get_form',
35955   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"basic";}',
35956   'fit' => '63',
35957   'number_parts' => '6',
35958   'tab_parent' => 'admin/content/node-type/company/display',
35959   'tab_root' => 'admin/content/node-type/company',
35960   'title' => 'Basic',
35961   'title_callback' => 't',
35962   'title_arguments' => '',
35963   'type' => '136',
35964   'block_callback' => '',
35965   'description' => '',
35966   'position' => '',
35967   'weight' => '0',
35968   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35969 ))
35970 ->values(array(
35971   'path' => 'admin/content/node-type/company/display/print',
35972   'load_functions' => '',
35973   'to_arg_functions' => '',
35974   'access_callback' => 'user_access',
35975   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35976   'page_callback' => 'drupal_get_form',
35977   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"print";}',
35978   'fit' => '63',
35979   'number_parts' => '6',
35980   'tab_parent' => 'admin/content/node-type/company/display',
35981   'tab_root' => 'admin/content/node-type/company',
35982   'title' => 'Print',
35983   'title_callback' => 't',
35984   'title_arguments' => '',
35985   'type' => '128',
35986   'block_callback' => '',
35987   'description' => '',
35988   'position' => '',
35989   'weight' => '1',
35990   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
35991 ))
35992 ->values(array(
35993   'path' => 'admin/content/node-type/company/display/rss',
35994   'load_functions' => '',
35995   'to_arg_functions' => '',
35996   'access_callback' => 'user_access',
35997   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
35998   'page_callback' => 'drupal_get_form',
35999   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:3:"rss";}',
36000   'fit' => '63',
36001   'number_parts' => '6',
36002   'tab_parent' => 'admin/content/node-type/company/display',
36003   'tab_root' => 'admin/content/node-type/company',
36004   'title' => 'RSS',
36005   'title_callback' => 't',
36006   'title_arguments' => '',
36007   'type' => '128',
36008   'block_callback' => '',
36009   'description' => '',
36010   'position' => '',
36011   'weight' => '1',
36012   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36013 ))
36014 ->values(array(
36015   'path' => 'admin/content/node-type/company/edit',
36016   'load_functions' => '',
36017   'to_arg_functions' => '',
36018   'access_callback' => 'user_access',
36019   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36020   'page_callback' => 'drupal_get_form',
36021   '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";}}',
36022   'fit' => '31',
36023   'number_parts' => '5',
36024   'tab_parent' => 'admin/content/node-type/company',
36025   'tab_root' => 'admin/content/node-type/company',
36026   'title' => 'Edit',
36027   'title_callback' => 't',
36028   'title_arguments' => '',
36029   'type' => '136',
36030   'block_callback' => '',
36031   'description' => '',
36032   'position' => '',
36033   'weight' => '0',
36034   'file' => 'modules/node/content_types.inc',
36035 ))
36036 ->values(array(
36037   'path' => 'admin/content/node-type/company/fields',
36038   'load_functions' => '',
36039   'to_arg_functions' => '',
36040   'access_callback' => 'user_access',
36041   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36042   'page_callback' => 'drupal_get_form',
36043   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"company";}',
36044   'fit' => '31',
36045   'number_parts' => '5',
36046   'tab_parent' => 'admin/content/node-type/company',
36047   'tab_root' => 'admin/content/node-type/company',
36048   'title' => 'Manage fields',
36049   'title_callback' => 't',
36050   'title_arguments' => '',
36051   'type' => '128',
36052   'block_callback' => '',
36053   'description' => '',
36054   'position' => '',
36055   'weight' => '1',
36056   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36057 ))
36058 ->values(array(
36059   'path' => 'admin/content/node-type/employee',
36060   'load_functions' => '',
36061   'to_arg_functions' => '',
36062   'access_callback' => 'user_access',
36063   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36064   'page_callback' => 'drupal_get_form',
36065   '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";}}',
36066   'fit' => '15',
36067   'number_parts' => '4',
36068   'tab_parent' => '',
36069   'tab_root' => 'admin/content/node-type/employee',
36070   'title' => 'Employee',
36071   'title_callback' => 't',
36072   'title_arguments' => '',
36073   'type' => '4',
36074   'block_callback' => '',
36075   'description' => '',
36076   'position' => '',
36077   'weight' => '0',
36078   'file' => 'modules/node/content_types.inc',
36079 ))
36080 ->values(array(
36081   'path' => 'admin/content/node-type/employee/delete',
36082   'load_functions' => '',
36083   'to_arg_functions' => '',
36084   'access_callback' => 'user_access',
36085   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36086   'page_callback' => 'drupal_get_form',
36087   '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";}}',
36088   'fit' => '31',
36089   'number_parts' => '5',
36090   'tab_parent' => '',
36091   'tab_root' => 'admin/content/node-type/employee/delete',
36092   'title' => 'Delete',
36093   'title_callback' => 't',
36094   'title_arguments' => '',
36095   'type' => '4',
36096   'block_callback' => '',
36097   'description' => '',
36098   'position' => '',
36099   'weight' => '0',
36100   'file' => 'modules/node/content_types.inc',
36101 ))
36102 ->values(array(
36103   'path' => 'admin/content/node-type/employee/display',
36104   'load_functions' => '',
36105   'to_arg_functions' => '',
36106   'access_callback' => 'user_access',
36107   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36108   'page_callback' => 'drupal_get_form',
36109   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";}',
36110   'fit' => '31',
36111   'number_parts' => '5',
36112   'tab_parent' => 'admin/content/node-type/employee',
36113   'tab_root' => 'admin/content/node-type/employee',
36114   'title' => 'Display fields',
36115   'title_callback' => 't',
36116   'title_arguments' => '',
36117   'type' => '128',
36118   'block_callback' => '',
36119   'description' => '',
36120   'position' => '',
36121   'weight' => '2',
36122   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36123 ))
36124 ->values(array(
36125   'path' => 'admin/content/node-type/employee/display/basic',
36126   'load_functions' => '',
36127   'to_arg_functions' => '',
36128   'access_callback' => 'user_access',
36129   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36130   'page_callback' => 'drupal_get_form',
36131   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"basic";}',
36132   'fit' => '63',
36133   'number_parts' => '6',
36134   'tab_parent' => 'admin/content/node-type/employee/display',
36135   'tab_root' => 'admin/content/node-type/employee',
36136   'title' => 'Basic',
36137   'title_callback' => 't',
36138   'title_arguments' => '',
36139   'type' => '136',
36140   'block_callback' => '',
36141   'description' => '',
36142   'position' => '',
36143   'weight' => '0',
36144   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36145 ))
36146 ->values(array(
36147   'path' => 'admin/content/node-type/employee/display/print',
36148   'load_functions' => '',
36149   'to_arg_functions' => '',
36150   'access_callback' => 'user_access',
36151   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36152   'page_callback' => 'drupal_get_form',
36153   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"print";}',
36154   'fit' => '63',
36155   'number_parts' => '6',
36156   'tab_parent' => 'admin/content/node-type/employee/display',
36157   'tab_root' => 'admin/content/node-type/employee',
36158   'title' => 'Print',
36159   'title_callback' => 't',
36160   'title_arguments' => '',
36161   'type' => '128',
36162   'block_callback' => '',
36163   'description' => '',
36164   'position' => '',
36165   'weight' => '1',
36166   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36167 ))
36168 ->values(array(
36169   'path' => 'admin/content/node-type/employee/display/rss',
36170   'load_functions' => '',
36171   'to_arg_functions' => '',
36172   'access_callback' => 'user_access',
36173   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36174   'page_callback' => 'drupal_get_form',
36175   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:3:"rss";}',
36176   'fit' => '63',
36177   'number_parts' => '6',
36178   'tab_parent' => 'admin/content/node-type/employee/display',
36179   'tab_root' => 'admin/content/node-type/employee',
36180   'title' => 'RSS',
36181   'title_callback' => 't',
36182   'title_arguments' => '',
36183   'type' => '128',
36184   'block_callback' => '',
36185   'description' => '',
36186   'position' => '',
36187   'weight' => '1',
36188   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36189 ))
36190 ->values(array(
36191   'path' => 'admin/content/node-type/employee/edit',
36192   'load_functions' => '',
36193   'to_arg_functions' => '',
36194   'access_callback' => 'user_access',
36195   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36196   'page_callback' => 'drupal_get_form',
36197   '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";}}',
36198   'fit' => '31',
36199   'number_parts' => '5',
36200   'tab_parent' => 'admin/content/node-type/employee',
36201   'tab_root' => 'admin/content/node-type/employee',
36202   'title' => 'Edit',
36203   'title_callback' => 't',
36204   'title_arguments' => '',
36205   'type' => '136',
36206   'block_callback' => '',
36207   'description' => '',
36208   'position' => '',
36209   'weight' => '0',
36210   'file' => 'modules/node/content_types.inc',
36211 ))
36212 ->values(array(
36213   'path' => 'admin/content/node-type/employee/fields',
36214   'load_functions' => '',
36215   'to_arg_functions' => '',
36216   'access_callback' => 'user_access',
36217   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36218   'page_callback' => 'drupal_get_form',
36219   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:8:"employee";}',
36220   'fit' => '31',
36221   'number_parts' => '5',
36222   'tab_parent' => 'admin/content/node-type/employee',
36223   'tab_root' => 'admin/content/node-type/employee',
36224   'title' => 'Manage fields',
36225   'title_callback' => 't',
36226   'title_arguments' => '',
36227   'type' => '128',
36228   'block_callback' => '',
36229   'description' => '',
36230   'position' => '',
36231   'weight' => '1',
36232   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36233 ))
36234 ->values(array(
36235   'path' => 'admin/content/node-type/employee/fields/field_commander',
36236   'load_functions' => '',
36237   'to_arg_functions' => '',
36238   'access_callback' => 'user_access',
36239   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36240   'page_callback' => 'drupal_get_form',
36241   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:15:"field_commander";}',
36242   'fit' => '63',
36243   'number_parts' => '6',
36244   'tab_parent' => 'admin/content/node-type/employee/fields',
36245   'tab_root' => 'admin/content/node-type/employee',
36246   'title' => 'Commanding Officer',
36247   'title_callback' => 't',
36248   'title_arguments' => '',
36249   'type' => '128',
36250   'block_callback' => '',
36251   'description' => '',
36252   'position' => '',
36253   'weight' => '0',
36254   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36255 ))
36256 ->values(array(
36257   'path' => 'admin/content/node-type/employee/fields/field_commander/remove',
36258   'load_functions' => '',
36259   'to_arg_functions' => '',
36260   'access_callback' => 'user_access',
36261   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36262   'page_callback' => 'drupal_get_form',
36263   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:8:"employee";i:2;s:15:"field_commander";}',
36264   'fit' => '127',
36265   'number_parts' => '7',
36266   'tab_parent' => '',
36267   'tab_root' => 'admin/content/node-type/employee/fields/field_commander/remove',
36268   'title' => 'Remove field',
36269   'title_callback' => 't',
36270   'title_arguments' => '',
36271   'type' => '4',
36272   'block_callback' => '',
36273   'description' => '',
36274   'position' => '',
36275   'weight' => '0',
36276   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36277 ))
36278 ->values(array(
36279   'path' => 'admin/content/node-type/employee/fields/field_company',
36280   'load_functions' => '',
36281   'to_arg_functions' => '',
36282   'access_callback' => 'user_access',
36283   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36284   'page_callback' => 'drupal_get_form',
36285   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:13:"field_company";}',
36286   'fit' => '63',
36287   'number_parts' => '6',
36288   'tab_parent' => 'admin/content/node-type/employee/fields',
36289   'tab_root' => 'admin/content/node-type/employee',
36290   'title' => 'Company',
36291   'title_callback' => 't',
36292   'title_arguments' => '',
36293   'type' => '128',
36294   'block_callback' => '',
36295   'description' => '',
36296   'position' => '',
36297   'weight' => '0',
36298   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36299 ))
36300 ->values(array(
36301   'path' => 'admin/content/node-type/employee/fields/field_company/remove',
36302   'load_functions' => '',
36303   'to_arg_functions' => '',
36304   'access_callback' => 'user_access',
36305   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36306   'page_callback' => 'drupal_get_form',
36307   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:8:"employee";i:2;s:13:"field_company";}',
36308   'fit' => '127',
36309   'number_parts' => '7',
36310   'tab_parent' => '',
36311   'tab_root' => 'admin/content/node-type/employee/fields/field_company/remove',
36312   'title' => 'Remove field',
36313   'title_callback' => 't',
36314   'title_arguments' => '',
36315   'type' => '4',
36316   'block_callback' => '',
36317   'description' => '',
36318   'position' => '',
36319   'weight' => '0',
36320   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36321 ))
36322 ->values(array(
36323   'path' => 'admin/content/node-type/forum',
36324   'load_functions' => '',
36325   'to_arg_functions' => '',
36326   'access_callback' => 'user_access',
36327   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36328   'page_callback' => 'drupal_get_form',
36329   '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;}}',
36330   'fit' => '15',
36331   'number_parts' => '4',
36332   'tab_parent' => '',
36333   'tab_root' => 'admin/content/node-type/forum',
36334   'title' => 'Forum topic',
36335   'title_callback' => 't',
36336   'title_arguments' => '',
36337   'type' => '4',
36338   'block_callback' => '',
36339   'description' => '',
36340   'position' => '',
36341   'weight' => '0',
36342   'file' => 'modules/node/content_types.inc',
36343 ))
36344 ->values(array(
36345   'path' => 'admin/content/node-type/forum/delete',
36346   'load_functions' => '',
36347   'to_arg_functions' => '',
36348   'access_callback' => 'user_access',
36349   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36350   'page_callback' => 'drupal_get_form',
36351   '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;}}',
36352   'fit' => '31',
36353   'number_parts' => '5',
36354   'tab_parent' => '',
36355   'tab_root' => 'admin/content/node-type/forum/delete',
36356   'title' => 'Delete',
36357   'title_callback' => 't',
36358   'title_arguments' => '',
36359   'type' => '4',
36360   'block_callback' => '',
36361   'description' => '',
36362   'position' => '',
36363   'weight' => '0',
36364   'file' => 'modules/node/content_types.inc',
36365 ))
36366 ->values(array(
36367   'path' => 'admin/content/node-type/forum/display',
36368   'load_functions' => '',
36369   'to_arg_functions' => '',
36370   'access_callback' => 'user_access',
36371   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36372   'page_callback' => 'drupal_get_form',
36373   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";}',
36374   'fit' => '31',
36375   'number_parts' => '5',
36376   'tab_parent' => 'admin/content/node-type/forum',
36377   'tab_root' => 'admin/content/node-type/forum',
36378   'title' => 'Display fields',
36379   'title_callback' => 't',
36380   'title_arguments' => '',
36381   'type' => '128',
36382   'block_callback' => '',
36383   'description' => '',
36384   'position' => '',
36385   'weight' => '2',
36386   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36387 ))
36388 ->values(array(
36389   'path' => 'admin/content/node-type/forum/display/basic',
36390   'load_functions' => '',
36391   'to_arg_functions' => '',
36392   'access_callback' => 'user_access',
36393   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36394   'page_callback' => 'drupal_get_form',
36395   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:5:"basic";}',
36396   'fit' => '63',
36397   'number_parts' => '6',
36398   'tab_parent' => 'admin/content/node-type/forum/display',
36399   'tab_root' => 'admin/content/node-type/forum',
36400   'title' => 'Basic',
36401   'title_callback' => 't',
36402   'title_arguments' => '',
36403   'type' => '136',
36404   'block_callback' => '',
36405   'description' => '',
36406   'position' => '',
36407   'weight' => '0',
36408   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36409 ))
36410 ->values(array(
36411   'path' => 'admin/content/node-type/forum/display/print',
36412   'load_functions' => '',
36413   'to_arg_functions' => '',
36414   'access_callback' => 'user_access',
36415   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36416   'page_callback' => 'drupal_get_form',
36417   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:5:"print";}',
36418   'fit' => '63',
36419   'number_parts' => '6',
36420   'tab_parent' => 'admin/content/node-type/forum/display',
36421   'tab_root' => 'admin/content/node-type/forum',
36422   'title' => 'Print',
36423   'title_callback' => 't',
36424   'title_arguments' => '',
36425   'type' => '128',
36426   'block_callback' => '',
36427   'description' => '',
36428   'position' => '',
36429   'weight' => '1',
36430   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36431 ))
36432 ->values(array(
36433   'path' => 'admin/content/node-type/forum/display/rss',
36434   'load_functions' => '',
36435   'to_arg_functions' => '',
36436   'access_callback' => 'user_access',
36437   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36438   'page_callback' => 'drupal_get_form',
36439   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:3:"rss";}',
36440   'fit' => '63',
36441   'number_parts' => '6',
36442   'tab_parent' => 'admin/content/node-type/forum/display',
36443   'tab_root' => 'admin/content/node-type/forum',
36444   'title' => 'RSS',
36445   'title_callback' => 't',
36446   'title_arguments' => '',
36447   'type' => '128',
36448   'block_callback' => '',
36449   'description' => '',
36450   'position' => '',
36451   'weight' => '1',
36452   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36453 ))
36454 ->values(array(
36455   'path' => 'admin/content/node-type/forum/edit',
36456   'load_functions' => '',
36457   'to_arg_functions' => '',
36458   'access_callback' => 'user_access',
36459   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36460   'page_callback' => 'drupal_get_form',
36461   '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;}}',
36462   'fit' => '31',
36463   'number_parts' => '5',
36464   'tab_parent' => 'admin/content/node-type/forum',
36465   'tab_root' => 'admin/content/node-type/forum',
36466   'title' => 'Edit',
36467   'title_callback' => 't',
36468   'title_arguments' => '',
36469   'type' => '136',
36470   'block_callback' => '',
36471   'description' => '',
36472   'position' => '',
36473   'weight' => '0',
36474   'file' => 'modules/node/content_types.inc',
36475 ))
36476 ->values(array(
36477   'path' => 'admin/content/node-type/forum/fields',
36478   'load_functions' => '',
36479   'to_arg_functions' => '',
36480   'access_callback' => 'user_access',
36481   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36482   'page_callback' => 'drupal_get_form',
36483   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"forum";}',
36484   'fit' => '31',
36485   'number_parts' => '5',
36486   'tab_parent' => 'admin/content/node-type/forum',
36487   'tab_root' => 'admin/content/node-type/forum',
36488   'title' => 'Manage fields',
36489   'title_callback' => 't',
36490   'title_arguments' => '',
36491   'type' => '128',
36492   'block_callback' => '',
36493   'description' => '',
36494   'position' => '',
36495   'weight' => '1',
36496   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36497 ))
36498 ->values(array(
36499   'path' => 'admin/content/node-type/sponsor',
36500   'load_functions' => '',
36501   'to_arg_functions' => '',
36502   'access_callback' => 'user_access',
36503   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36504   'page_callback' => 'drupal_get_form',
36505   '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:"";}}',
36506   'fit' => '15',
36507   'number_parts' => '4',
36508   'tab_parent' => '',
36509   'tab_root' => 'admin/content/node-type/sponsor',
36510   'title' => 'Sponsor',
36511   'title_callback' => 't',
36512   'title_arguments' => '',
36513   'type' => '4',
36514   'block_callback' => '',
36515   'description' => '',
36516   'position' => '',
36517   'weight' => '0',
36518   'file' => 'modules/node/content_types.inc',
36519 ))
36520 ->values(array(
36521   'path' => 'admin/content/node-type/sponsor/delete',
36522   'load_functions' => '',
36523   'to_arg_functions' => '',
36524   'access_callback' => 'user_access',
36525   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36526   'page_callback' => 'drupal_get_form',
36527   '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:"";}}',
36528   'fit' => '31',
36529   'number_parts' => '5',
36530   'tab_parent' => '',
36531   'tab_root' => 'admin/content/node-type/sponsor/delete',
36532   'title' => 'Delete',
36533   'title_callback' => 't',
36534   'title_arguments' => '',
36535   'type' => '4',
36536   'block_callback' => '',
36537   'description' => '',
36538   'position' => '',
36539   'weight' => '0',
36540   'file' => 'modules/node/content_types.inc',
36541 ))
36542 ->values(array(
36543   'path' => 'admin/content/node-type/sponsor/display',
36544   'load_functions' => '',
36545   'to_arg_functions' => '',
36546   'access_callback' => 'user_access',
36547   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36548   'page_callback' => 'drupal_get_form',
36549   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";}',
36550   'fit' => '31',
36551   'number_parts' => '5',
36552   'tab_parent' => 'admin/content/node-type/sponsor',
36553   'tab_root' => 'admin/content/node-type/sponsor',
36554   'title' => 'Display fields',
36555   'title_callback' => 't',
36556   'title_arguments' => '',
36557   'type' => '128',
36558   'block_callback' => '',
36559   'description' => '',
36560   'position' => '',
36561   'weight' => '2',
36562   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36563 ))
36564 ->values(array(
36565   'path' => 'admin/content/node-type/sponsor/display/basic',
36566   'load_functions' => '',
36567   'to_arg_functions' => '',
36568   'access_callback' => 'user_access',
36569   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36570   'page_callback' => 'drupal_get_form',
36571   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"basic";}',
36572   'fit' => '63',
36573   'number_parts' => '6',
36574   'tab_parent' => 'admin/content/node-type/sponsor/display',
36575   'tab_root' => 'admin/content/node-type/sponsor',
36576   'title' => 'Basic',
36577   'title_callback' => 't',
36578   'title_arguments' => '',
36579   'type' => '136',
36580   'block_callback' => '',
36581   'description' => '',
36582   'position' => '',
36583   'weight' => '0',
36584   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36585 ))
36586 ->values(array(
36587   'path' => 'admin/content/node-type/sponsor/display/print',
36588   'load_functions' => '',
36589   'to_arg_functions' => '',
36590   'access_callback' => 'user_access',
36591   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36592   'page_callback' => 'drupal_get_form',
36593   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"print";}',
36594   'fit' => '63',
36595   'number_parts' => '6',
36596   'tab_parent' => 'admin/content/node-type/sponsor/display',
36597   'tab_root' => 'admin/content/node-type/sponsor',
36598   'title' => 'Print',
36599   'title_callback' => 't',
36600   'title_arguments' => '',
36601   'type' => '128',
36602   'block_callback' => '',
36603   'description' => '',
36604   'position' => '',
36605   'weight' => '1',
36606   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36607 ))
36608 ->values(array(
36609   'path' => 'admin/content/node-type/sponsor/display/rss',
36610   'load_functions' => '',
36611   'to_arg_functions' => '',
36612   'access_callback' => 'user_access',
36613   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36614   'page_callback' => 'drupal_get_form',
36615   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:3:"rss";}',
36616   'fit' => '63',
36617   'number_parts' => '6',
36618   'tab_parent' => 'admin/content/node-type/sponsor/display',
36619   'tab_root' => 'admin/content/node-type/sponsor',
36620   'title' => 'RSS',
36621   'title_callback' => 't',
36622   'title_arguments' => '',
36623   'type' => '128',
36624   'block_callback' => '',
36625   'description' => '',
36626   'position' => '',
36627   'weight' => '1',
36628   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36629 ))
36630 ->values(array(
36631   'path' => 'admin/content/node-type/sponsor/edit',
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:"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:"";}}',
36638   'fit' => '31',
36639   'number_parts' => '5',
36640   'tab_parent' => 'admin/content/node-type/sponsor',
36641   'tab_root' => 'admin/content/node-type/sponsor',
36642   'title' => 'Edit',
36643   'title_callback' => 't',
36644   'title_arguments' => '',
36645   'type' => '136',
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/sponsor/fields',
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:27:"content_field_overview_form";i:1;s:7:"sponsor";}',
36660   'fit' => '31',
36661   'number_parts' => '5',
36662   'tab_parent' => 'admin/content/node-type/sponsor',
36663   'tab_root' => 'admin/content/node-type/sponsor',
36664   'title' => 'Manage fields',
36665   'title_callback' => 't',
36666   'title_arguments' => '',
36667   'type' => '128',
36668   'block_callback' => '',
36669   'description' => '',
36670   'position' => '',
36671   'weight' => '1',
36672   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36673 ))
36674 ->values(array(
36675   'path' => 'admin/content/node-type/story',
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: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\";}}",
36682   'fit' => '15',
36683   'number_parts' => '4',
36684   'tab_parent' => '',
36685   'tab_root' => 'admin/content/node-type/story',
36686   'title' => 'Story',
36687   'title_callback' => 't',
36688   'title_arguments' => '',
36689   'type' => '4',
36690   'block_callback' => '',
36691   'description' => '',
36692   'position' => '',
36693   'weight' => '0',
36694   'file' => 'modules/node/content_types.inc',
36695 ))
36696 ->values(array(
36697   'path' => 'admin/content/node-type/story/delete',
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: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\";}}",
36704   'fit' => '31',
36705   'number_parts' => '5',
36706   'tab_parent' => '',
36707   'tab_root' => 'admin/content/node-type/story/delete',
36708   'title' => 'Delete',
36709   'title_callback' => 't',
36710   'title_arguments' => '',
36711   'type' => '4',
36712   'block_callback' => '',
36713   'description' => '',
36714   'position' => '',
36715   'weight' => '0',
36716   'file' => 'modules/node/content_types.inc',
36717 ))
36718 ->values(array(
36719   'path' => 'admin/content/node-type/story/display',
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:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";}',
36726   'fit' => '31',
36727   'number_parts' => '5',
36728   'tab_parent' => 'admin/content/node-type/story',
36729   'tab_root' => 'admin/content/node-type/story',
36730   'title' => 'Display fields',
36731   'title_callback' => 't',
36732   'title_arguments' => '',
36733   'type' => '128',
36734   'block_callback' => '',
36735   'description' => '',
36736   'position' => '',
36737   'weight' => '2',
36738   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36739 ))
36740 ->values(array(
36741   'path' => 'admin/content/node-type/story/display/basic',
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:5:"story";i:2;s:5:"basic";}',
36748   'fit' => '63',
36749   'number_parts' => '6',
36750   'tab_parent' => 'admin/content/node-type/story/display',
36751   'tab_root' => 'admin/content/node-type/story',
36752   'title' => 'Basic',
36753   'title_callback' => 't',
36754   'title_arguments' => '',
36755   'type' => '136',
36756   'block_callback' => '',
36757   'description' => '',
36758   'position' => '',
36759   'weight' => '0',
36760   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36761 ))
36762 ->values(array(
36763   'path' => 'admin/content/node-type/story/display/print',
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:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"print";}',
36770   'fit' => '63',
36771   'number_parts' => '6',
36772   'tab_parent' => 'admin/content/node-type/story/display',
36773   'tab_root' => 'admin/content/node-type/story',
36774   'title' => 'Print',
36775   'title_callback' => 't',
36776   'title_arguments' => '',
36777   'type' => '128',
36778   'block_callback' => '',
36779   'description' => '',
36780   'position' => '',
36781   'weight' => '1',
36782   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36783 ))
36784 ->values(array(
36785   'path' => 'admin/content/node-type/story/display/rss',
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:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:3:"rss";}',
36792   'fit' => '63',
36793   'number_parts' => '6',
36794   'tab_parent' => 'admin/content/node-type/story/display',
36795   'tab_root' => 'admin/content/node-type/story',
36796   'title' => 'RSS',
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/story/edit',
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: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\";}}",
36814   'fit' => '31',
36815   'number_parts' => '5',
36816   'tab_parent' => 'admin/content/node-type/story',
36817   'tab_root' => 'admin/content/node-type/story',
36818   'title' => 'Edit',
36819   'title_callback' => 't',
36820   'title_arguments' => '',
36821   'type' => '136',
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/story/fields',
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:27:"content_field_overview_form";i:1;s:5:"story";}',
36836   'fit' => '31',
36837   'number_parts' => '5',
36838   'tab_parent' => 'admin/content/node-type/story',
36839   'tab_root' => 'admin/content/node-type/story',
36840   'title' => 'Manage fields',
36841   'title_callback' => 't',
36842   'title_arguments' => '',
36843   'type' => '128',
36844   'block_callback' => '',
36845   'description' => '',
36846   'position' => '',
36847   'weight' => '1',
36848   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36849 ))
36850 ->values(array(
36851   'path' => 'admin/content/node-type/story/fields/field_test',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
36858   'fit' => '63',
36859   'number_parts' => '6',
36860   'tab_parent' => 'admin/content/node-type/story/fields',
36861   'tab_root' => 'admin/content/node-type/story',
36862   'title' => 'Text Field',
36863   'title_callback' => 't',
36864   'title_arguments' => '',
36865   'type' => '128',
36866   'block_callback' => '',
36867   'description' => '',
36868   'position' => '',
36869   'weight' => '0',
36870   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36871 ))
36872 ->values(array(
36873   'path' => 'admin/content/node-type/story/fields/field_test/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
36880   'fit' => '127',
36881   'number_parts' => '7',
36882   'tab_parent' => '',
36883   'tab_root' => 'admin/content/node-type/story/fields/field_test/remove',
36884   'title' => 'Remove field',
36885   'title_callback' => 't',
36886   'title_arguments' => '',
36887   'type' => '4',
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/story/fields/field_test_date',
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:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
36902   'fit' => '63',
36903   'number_parts' => '6',
36904   'tab_parent' => 'admin/content/node-type/story/fields',
36905   'tab_root' => 'admin/content/node-type/story',
36906   'title' => 'Date Field',
36907   'title_callback' => 't',
36908   'title_arguments' => '',
36909   'type' => '128',
36910   'block_callback' => '',
36911   'description' => '',
36912   'position' => '',
36913   'weight' => '0',
36914   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36915 ))
36916 ->values(array(
36917   'path' => 'admin/content/node-type/story/fields/field_test_date/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
36924   'fit' => '127',
36925   'number_parts' => '7',
36926   'tab_parent' => '',
36927   'tab_root' => 'admin/content/node-type/story/fields/field_test_date/remove',
36928   'title' => 'Remove field',
36929   'title_callback' => 't',
36930   'title_arguments' => '',
36931   'type' => '4',
36932   'block_callback' => '',
36933   'description' => '',
36934   'position' => '',
36935   'weight' => '0',
36936   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36937 ))
36938 ->values(array(
36939   'path' => 'admin/content/node-type/story/fields/field_test_datestamp',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
36946   'fit' => '63',
36947   'number_parts' => '6',
36948   'tab_parent' => 'admin/content/node-type/story/fields',
36949   'tab_root' => 'admin/content/node-type/story',
36950   'title' => 'Date Stamp Field',
36951   'title_callback' => 't',
36952   'title_arguments' => '',
36953   'type' => '128',
36954   'block_callback' => '',
36955   'description' => '',
36956   'position' => '',
36957   'weight' => '0',
36958   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36959 ))
36960 ->values(array(
36961   'path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
36968   'fit' => '127',
36969   'number_parts' => '7',
36970   'tab_parent' => '',
36971   'tab_root' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
36972   'title' => 'Remove field',
36973   'title_callback' => 't',
36974   'title_arguments' => '',
36975   'type' => '4',
36976   'block_callback' => '',
36977   'description' => '',
36978   'position' => '',
36979   'weight' => '0',
36980   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36981 ))
36982 ->values(array(
36983   'path' => 'admin/content/node-type/story/fields/field_test_datetime',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
36990   'fit' => '63',
36991   'number_parts' => '6',
36992   'tab_parent' => 'admin/content/node-type/story/fields',
36993   'tab_root' => 'admin/content/node-type/story',
36994   'title' => 'Datetime Field',
36995   'title_callback' => 't',
36996   'title_arguments' => '',
36997   'type' => '128',
36998   'block_callback' => '',
36999   'description' => '',
37000   'position' => '',
37001   'weight' => '0',
37002   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37003 ))
37004 ->values(array(
37005   'path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
37012   'fit' => '127',
37013   'number_parts' => '7',
37014   'tab_parent' => '',
37015   'tab_root' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
37016   'title' => 'Remove field',
37017   'title_callback' => 't',
37018   'title_arguments' => '',
37019   'type' => '4',
37020   'block_callback' => '',
37021   'description' => '',
37022   'position' => '',
37023   'weight' => '0',
37024   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37025 ))
37026 ->values(array(
37027   'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
37034   'fit' => '63',
37035   'number_parts' => '6',
37036   'tab_parent' => 'admin/content/node-type/story/fields',
37037   'tab_root' => 'admin/content/node-type/story',
37038   'title' => 'Decimal Radio Buttons Field',
37039   'title_callback' => 't',
37040   'title_arguments' => '',
37041   'type' => '128',
37042   'block_callback' => '',
37043   'description' => '',
37044   'position' => '',
37045   'weight' => '0',
37046   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37047 ))
37048 ->values(array(
37049   'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
37056   'fit' => '127',
37057   'number_parts' => '7',
37058   'tab_parent' => '',
37059   'tab_root' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
37060   'title' => 'Remove field',
37061   'title_callback' => 't',
37062   'title_arguments' => '',
37063   'type' => '4',
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/story/fields/field_test_email',
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:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
37078   'fit' => '63',
37079   'number_parts' => '6',
37080   'tab_parent' => 'admin/content/node-type/story/fields',
37081   'tab_root' => 'admin/content/node-type/story',
37082   'title' => 'Email Field',
37083   'title_callback' => 't',
37084   'title_arguments' => '',
37085   'type' => '128',
37086   'block_callback' => '',
37087   'description' => '',
37088   'position' => '',
37089   'weight' => '0',
37090   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37091 ))
37092 ->values(array(
37093   'path' => 'admin/content/node-type/story/fields/field_test_email/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
37100   'fit' => '127',
37101   'number_parts' => '7',
37102   'tab_parent' => '',
37103   'tab_root' => 'admin/content/node-type/story/fields/field_test_email/remove',
37104   'title' => 'Remove field',
37105   'title_callback' => 't',
37106   'title_arguments' => '',
37107   'type' => '4',
37108   'block_callback' => '',
37109   'description' => '',
37110   'position' => '',
37111   'weight' => '0',
37112   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37113 ))
37114 ->values(array(
37115   'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:24:"field_test_exclude_unset";}',
37122   'fit' => '63',
37123   'number_parts' => '6',
37124   'tab_parent' => 'admin/content/node-type/story/fields',
37125   'tab_root' => 'admin/content/node-type/story',
37126   'title' => 'Text Field',
37127   'title_callback' => 't',
37128   'title_arguments' => '',
37129   'type' => '128',
37130   'block_callback' => '',
37131   'description' => '',
37132   'position' => '',
37133   'weight' => '0',
37134   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37135 ))
37136 ->values(array(
37137   'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:24:"field_test_exclude_unset";}',
37144   'fit' => '127',
37145   'number_parts' => '7',
37146   'tab_parent' => '',
37147   'tab_root' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
37148   'title' => 'Remove field',
37149   'title_callback' => 't',
37150   'title_arguments' => '',
37151   'type' => '4',
37152   'block_callback' => '',
37153   'description' => '',
37154   'position' => '',
37155   'weight' => '0',
37156   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37157 ))
37158 ->values(array(
37159   'path' => 'admin/content/node-type/story/fields/field_test_filefield',
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:5:"story";i:2;s:20:"field_test_filefield";}',
37166   'fit' => '63',
37167   'number_parts' => '6',
37168   'tab_parent' => 'admin/content/node-type/story/fields',
37169   'tab_root' => 'admin/content/node-type/story',
37170   'title' => 'File Field',
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/story/fields/field_test_filefield/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:5:"story";i:2;s:20:"field_test_filefield";}',
37188   'fit' => '127',
37189   'number_parts' => '7',
37190   'tab_parent' => '',
37191   'tab_root' => 'admin/content/node-type/story/fields/field_test_filefield/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/story/fields/field_test_float_single_checkbox',
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:5:"story";i:2;s:32:"field_test_float_single_checkbox";}',
37210   'fit' => '63',
37211   'number_parts' => '6',
37212   'tab_parent' => 'admin/content/node-type/story/fields',
37213   'tab_root' => 'admin/content/node-type/story',
37214   'title' => 'Float Single Checkbox Field',
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/story/fields/field_test_float_single_checkbox/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:5:"story";i:2;s:32:"field_test_float_single_checkbox";}',
37232   'fit' => '127',
37233   'number_parts' => '7',
37234   'tab_parent' => '',
37235   'tab_root' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/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/story/fields/field_test_four',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
37254   'fit' => '63',
37255   'number_parts' => '6',
37256   'tab_parent' => 'admin/content/node-type/story/fields',
37257   'tab_root' => 'admin/content/node-type/story',
37258   'title' => 'Float Field',
37259   'title_callback' => 't',
37260   'title_arguments' => '',
37261   'type' => '128',
37262   'block_callback' => '',
37263   'description' => '',
37264   'position' => '',
37265   'weight' => '0',
37266   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37267 ))
37268 ->values(array(
37269   'path' => 'admin/content/node-type/story/fields/field_test_four/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
37276   'fit' => '127',
37277   'number_parts' => '7',
37278   'tab_parent' => '',
37279   'tab_root' => 'admin/content/node-type/story/fields/field_test_four/remove',
37280   'title' => 'Remove field',
37281   'title_callback' => 't',
37282   'title_arguments' => '',
37283   'type' => '4',
37284   'block_callback' => '',
37285   'description' => '',
37286   'position' => '',
37287   'weight' => '0',
37288   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37289 ))
37290 ->values(array(
37291   'path' => 'admin/content/node-type/story/fields/field_test_identical1',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
37298   'fit' => '63',
37299   'number_parts' => '6',
37300   'tab_parent' => 'admin/content/node-type/story/fields',
37301   'tab_root' => 'admin/content/node-type/story',
37302   'title' => 'Integer Field',
37303   'title_callback' => 't',
37304   'title_arguments' => '',
37305   'type' => '128',
37306   'block_callback' => '',
37307   'description' => '',
37308   'position' => '',
37309   'weight' => '0',
37310   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37311 ))
37312 ->values(array(
37313   'path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
37320   'fit' => '127',
37321   'number_parts' => '7',
37322   'tab_parent' => '',
37323   'tab_root' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
37324   'title' => 'Remove field',
37325   'title_callback' => 't',
37326   'title_arguments' => '',
37327   'type' => '4',
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/story/fields/field_test_identical2',
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:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
37342   'fit' => '63',
37343   'number_parts' => '6',
37344   'tab_parent' => 'admin/content/node-type/story/fields',
37345   'tab_root' => 'admin/content/node-type/story',
37346   'title' => 'Integer Field',
37347   'title_callback' => 't',
37348   'title_arguments' => '',
37349   'type' => '128',
37350   'block_callback' => '',
37351   'description' => '',
37352   'position' => '',
37353   'weight' => '0',
37354   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37355 ))
37356 ->values(array(
37357   'path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
37364   'fit' => '127',
37365   'number_parts' => '7',
37366   'tab_parent' => '',
37367   'tab_root' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
37368   'title' => 'Remove field',
37369   'title_callback' => 't',
37370   'title_arguments' => '',
37371   'type' => '4',
37372   'block_callback' => '',
37373   'description' => '',
37374   'position' => '',
37375   'weight' => '0',
37376   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37377 ))
37378 ->values(array(
37379   'path' => 'admin/content/node-type/story/fields/field_test_imagefield',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
37386   'fit' => '63',
37387   'number_parts' => '6',
37388   'tab_parent' => 'admin/content/node-type/story/fields',
37389   'tab_root' => 'admin/content/node-type/story',
37390   'title' => 'Image Field',
37391   'title_callback' => 't',
37392   'title_arguments' => '',
37393   'type' => '128',
37394   'block_callback' => '',
37395   'description' => '',
37396   'position' => '',
37397   'weight' => '0',
37398   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37399 ))
37400 ->values(array(
37401   'path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
37408   'fit' => '127',
37409   'number_parts' => '7',
37410   'tab_parent' => '',
37411   'tab_root' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
37412   'title' => 'Remove field',
37413   'title_callback' => 't',
37414   'title_arguments' => '',
37415   'type' => '4',
37416   'block_callback' => '',
37417   'description' => '',
37418   'position' => '',
37419   'weight' => '0',
37420   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37421 ))
37422 ->values(array(
37423   'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:29:"field_test_integer_selectlist";}',
37430   'fit' => '63',
37431   'number_parts' => '6',
37432   'tab_parent' => 'admin/content/node-type/story/fields',
37433   'tab_root' => 'admin/content/node-type/story',
37434   'title' => 'Integer Select List Field',
37435   'title_callback' => 't',
37436   'title_arguments' => '',
37437   'type' => '128',
37438   'block_callback' => '',
37439   'description' => '',
37440   'position' => '',
37441   'weight' => '0',
37442   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37443 ))
37444 ->values(array(
37445   'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:29:"field_test_integer_selectlist";}',
37452   'fit' => '127',
37453   'number_parts' => '7',
37454   'tab_parent' => '',
37455   'tab_root' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
37456   'title' => 'Remove field',
37457   'title_callback' => 't',
37458   'title_arguments' => '',
37459   'type' => '4',
37460   'block_callback' => '',
37461   'description' => '',
37462   'position' => '',
37463   'weight' => '0',
37464   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37465 ))
37466 ->values(array(
37467   'path' => 'admin/content/node-type/story/fields/field_test_link',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
37474   'fit' => '63',
37475   'number_parts' => '6',
37476   'tab_parent' => 'admin/content/node-type/story/fields',
37477   'tab_root' => 'admin/content/node-type/story',
37478   'title' => 'Link Field',
37479   'title_callback' => 't',
37480   'title_arguments' => '',
37481   'type' => '128',
37482   'block_callback' => '',
37483   'description' => '',
37484   'position' => '',
37485   'weight' => '0',
37486   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37487 ))
37488 ->values(array(
37489   'path' => 'admin/content/node-type/story/fields/field_test_link/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
37496   'fit' => '127',
37497   'number_parts' => '7',
37498   'tab_parent' => '',
37499   'tab_root' => 'admin/content/node-type/story/fields/field_test_link/remove',
37500   'title' => 'Remove field',
37501   'title_callback' => 't',
37502   'title_arguments' => '',
37503   'type' => '4',
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/story/fields/field_test_phone',
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:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
37518   'fit' => '63',
37519   'number_parts' => '6',
37520   'tab_parent' => 'admin/content/node-type/story/fields',
37521   'tab_root' => 'admin/content/node-type/story',
37522   'title' => 'Phone Field',
37523   'title_callback' => 't',
37524   'title_arguments' => '',
37525   'type' => '128',
37526   'block_callback' => '',
37527   'description' => '',
37528   'position' => '',
37529   'weight' => '0',
37530   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37531 ))
37532 ->values(array(
37533   'path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
37540   'fit' => '127',
37541   'number_parts' => '7',
37542   'tab_parent' => '',
37543   'tab_root' => 'admin/content/node-type/story/fields/field_test_phone/remove',
37544   'title' => 'Remove field',
37545   'title_callback' => 't',
37546   'title_arguments' => '',
37547   'type' => '4',
37548   'block_callback' => '',
37549   'description' => '',
37550   'position' => '',
37551   'weight' => '0',
37552   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37553 ))
37554 ->values(array(
37555   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:31:"field_test_text_single_checkbox";}',
37562   'fit' => '63',
37563   'number_parts' => '6',
37564   'tab_parent' => 'admin/content/node-type/story/fields',
37565   'tab_root' => 'admin/content/node-type/story',
37566   'title' => 'Text Single Checkbox Field',
37567   'title_callback' => 't',
37568   'title_arguments' => '',
37569   'type' => '128',
37570   'block_callback' => '',
37571   'description' => '',
37572   'position' => '',
37573   'weight' => '0',
37574   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37575 ))
37576 ->values(array(
37577   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:31:"field_test_text_single_checkbox";}',
37584   'fit' => '127',
37585   'number_parts' => '7',
37586   'tab_parent' => '',
37587   'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
37588   'title' => 'Remove field',
37589   'title_callback' => 't',
37590   'title_arguments' => '',
37591   'type' => '4',
37592   'block_callback' => '',
37593   'description' => '',
37594   'position' => '',
37595   'weight' => '0',
37596   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37597 ))
37598 ->values(array(
37599   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:32:"field_test_text_single_checkbox2";}',
37606   'fit' => '63',
37607   'number_parts' => '6',
37608   'tab_parent' => 'admin/content/node-type/story/fields',
37609   'tab_root' => 'admin/content/node-type/story',
37610   'title' => 'Text Single Checkbox Field 2',
37611   'title_callback' => 't',
37612   'title_arguments' => '',
37613   'type' => '128',
37614   'block_callback' => '',
37615   'description' => '',
37616   'position' => '',
37617   'weight' => '0',
37618   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37619 ))
37620 ->values(array(
37621   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
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:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:32:"field_test_text_single_checkbox2";}',
37628   'fit' => '127',
37629   'number_parts' => '7',
37630   'tab_parent' => '',
37631   'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
37632   'title' => 'Remove field',
37633   'title_callback' => 't',
37634   'title_arguments' => '',
37635   'type' => '4',
37636   'block_callback' => '',
37637   'description' => '',
37638   'position' => '',
37639   'weight' => '0',
37640   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37641 ))
37642 ->values(array(
37643   'path' => 'admin/content/node-type/story/fields/field_test_three',
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:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
37650   'fit' => '63',
37651   'number_parts' => '6',
37652   'tab_parent' => 'admin/content/node-type/story/fields',
37653   'tab_root' => 'admin/content/node-type/story',
37654   'title' => 'Decimal Field',
37655   'title_callback' => 't',
37656   'title_arguments' => '',
37657   'type' => '128',
37658   'block_callback' => '',
37659   'description' => '',
37660   'position' => '',
37661   'weight' => '0',
37662   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37663 ))
37664 ->values(array(
37665   'path' => 'admin/content/node-type/story/fields/field_test_three/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
37672   'fit' => '127',
37673   'number_parts' => '7',
37674   'tab_parent' => '',
37675   'tab_root' => 'admin/content/node-type/story/fields/field_test_three/remove',
37676   'title' => 'Remove field',
37677   'title_callback' => 't',
37678   'title_arguments' => '',
37679   'type' => '4',
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/fields/field_test_two',
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:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
37694   'fit' => '63',
37695   'number_parts' => '6',
37696   'tab_parent' => 'admin/content/node-type/story/fields',
37697   'tab_root' => 'admin/content/node-type/story',
37698   'title' => 'Integer Field',
37699   'title_callback' => 't',
37700   'title_arguments' => '',
37701   'type' => '128',
37702   'block_callback' => '',
37703   'description' => '',
37704   'position' => '',
37705   'weight' => '0',
37706   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37707 ))
37708 ->values(array(
37709   'path' => 'admin/content/node-type/story/fields/field_test_two/remove',
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:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
37716   'fit' => '127',
37717   'number_parts' => '7',
37718   'tab_parent' => '',
37719   'tab_root' => 'admin/content/node-type/story/fields/field_test_two/remove',
37720   'title' => 'Remove field',
37721   'title_callback' => 't',
37722   'title_arguments' => '',
37723   'type' => '4',
37724   'block_callback' => '',
37725   'description' => '',
37726   'position' => '',
37727   'weight' => '0',
37728   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37729 ))
37730 ->values(array(
37731   'path' => 'admin/content/node-type/test-event',
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: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";}}',
37738   'fit' => '15',
37739   'number_parts' => '4',
37740   'tab_parent' => '',
37741   'tab_root' => 'admin/content/node-type/test-event',
37742   'title' => 'Migrate test event',
37743   'title_callback' => 't',
37744   'title_arguments' => '',
37745   'type' => '4',
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/test-event/delete',
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: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";}}',
37760   'fit' => '31',
37761   'number_parts' => '5',
37762   'tab_parent' => '',
37763   'tab_root' => 'admin/content/node-type/test-event/delete',
37764   'title' => 'Delete',
37765   'title_callback' => 't',
37766   'title_arguments' => '',
37767   'type' => '4',
37768   'block_callback' => '',
37769   'description' => '',
37770   'position' => '',
37771   'weight' => '0',
37772   'file' => 'modules/node/content_types.inc',
37773 ))
37774 ->values(array(
37775   'path' => 'admin/content/node-type/test-event/display',
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:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";}',
37782   'fit' => '31',
37783   'number_parts' => '5',
37784   'tab_parent' => 'admin/content/node-type/test-event',
37785   'tab_root' => 'admin/content/node-type/test-event',
37786   'title' => 'Display fields',
37787   'title_callback' => 't',
37788   'title_arguments' => '',
37789   'type' => '128',
37790   'block_callback' => '',
37791   'description' => '',
37792   'position' => '',
37793   'weight' => '2',
37794   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37795 ))
37796 ->values(array(
37797   'path' => 'admin/content/node-type/test-event/display/basic',
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:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"basic";}',
37804   'fit' => '63',
37805   'number_parts' => '6',
37806   'tab_parent' => 'admin/content/node-type/test-event/display',
37807   'tab_root' => 'admin/content/node-type/test-event',
37808   'title' => 'Basic',
37809   'title_callback' => 't',
37810   'title_arguments' => '',
37811   'type' => '136',
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/test-event/display/print',
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:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"print";}',
37826   'fit' => '63',
37827   'number_parts' => '6',
37828   'tab_parent' => 'admin/content/node-type/test-event/display',
37829   'tab_root' => 'admin/content/node-type/test-event',
37830   'title' => 'Print',
37831   'title_callback' => 't',
37832   'title_arguments' => '',
37833   'type' => '128',
37834   'block_callback' => '',
37835   'description' => '',
37836   'position' => '',
37837   'weight' => '1',
37838   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37839 ))
37840 ->values(array(
37841   'path' => 'admin/content/node-type/test-event/display/rss',
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:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:3:"rss";}',
37848   'fit' => '63',
37849   'number_parts' => '6',
37850   'tab_parent' => 'admin/content/node-type/test-event/display',
37851   'tab_root' => 'admin/content/node-type/test-event',
37852   'title' => 'RSS',
37853   'title_callback' => 't',
37854   'title_arguments' => '',
37855   'type' => '128',
37856   'block_callback' => '',
37857   'description' => '',
37858   'position' => '',
37859   'weight' => '1',
37860   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37861 ))
37862 ->values(array(
37863   'path' => 'admin/content/node-type/test-event/edit',
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: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";}}',
37870   'fit' => '31',
37871   'number_parts' => '5',
37872   'tab_parent' => 'admin/content/node-type/test-event',
37873   'tab_root' => 'admin/content/node-type/test-event',
37874   'title' => 'Edit',
37875   'title_callback' => 't',
37876   'title_arguments' => '',
37877   'type' => '136',
37878   'block_callback' => '',
37879   'description' => '',
37880   'position' => '',
37881   'weight' => '0',
37882   'file' => 'modules/node/content_types.inc',
37883 ))
37884 ->values(array(
37885   'path' => 'admin/content/node-type/test-event/fields',
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:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_event";}',
37892   'fit' => '31',
37893   'number_parts' => '5',
37894   'tab_parent' => 'admin/content/node-type/test-event',
37895   'tab_root' => 'admin/content/node-type/test-event',
37896   'title' => 'Manage fields',
37897   'title_callback' => 't',
37898   'title_arguments' => '',
37899   'type' => '128',
37900   'block_callback' => '',
37901   'description' => '',
37902   'position' => '',
37903   'weight' => '1',
37904   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37905 ))
37906 ->values(array(
37907   'path' => 'admin/content/node-type/test-page',
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: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\";}}",
37914   'fit' => '15',
37915   'number_parts' => '4',
37916   'tab_parent' => '',
37917   'tab_root' => 'admin/content/node-type/test-page',
37918   'title' => 'Migrate test page',
37919   'title_callback' => 't',
37920   'title_arguments' => '',
37921   'type' => '4',
37922   'block_callback' => '',
37923   'description' => '',
37924   'position' => '',
37925   'weight' => '0',
37926   'file' => 'modules/node/content_types.inc',
37927 ))
37928 ->values(array(
37929   'path' => 'admin/content/node-type/test-page/delete',
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: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\";}}",
37936   'fit' => '31',
37937   'number_parts' => '5',
37938   'tab_parent' => '',
37939   'tab_root' => 'admin/content/node-type/test-page/delete',
37940   'title' => 'Delete',
37941   'title_callback' => 't',
37942   'title_arguments' => '',
37943   'type' => '4',
37944   'block_callback' => '',
37945   'description' => '',
37946   'position' => '',
37947   'weight' => '0',
37948   'file' => 'modules/node/content_types.inc',
37949 ))
37950 ->values(array(
37951   'path' => 'admin/content/node-type/test-page/display',
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:2:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";}',
37958   'fit' => '31',
37959   'number_parts' => '5',
37960   'tab_parent' => 'admin/content/node-type/test-page',
37961   'tab_root' => 'admin/content/node-type/test-page',
37962   'title' => 'Display fields',
37963   'title_callback' => 't',
37964   'title_arguments' => '',
37965   'type' => '128',
37966   'block_callback' => '',
37967   'description' => '',
37968   'position' => '',
37969   'weight' => '2',
37970   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37971 ))
37972 ->values(array(
37973   'path' => 'admin/content/node-type/test-page/display/basic',
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:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"basic";}',
37980   'fit' => '63',
37981   'number_parts' => '6',
37982   'tab_parent' => 'admin/content/node-type/test-page/display',
37983   'tab_root' => 'admin/content/node-type/test-page',
37984   'title' => 'Basic',
37985   'title_callback' => 't',
37986   'title_arguments' => '',
37987   'type' => '136',
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/test-page/display/print',
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:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"print";}',
38002   'fit' => '63',
38003   'number_parts' => '6',
38004   'tab_parent' => 'admin/content/node-type/test-page/display',
38005   'tab_root' => 'admin/content/node-type/test-page',
38006   'title' => 'Print',
38007   'title_callback' => 't',
38008   'title_arguments' => '',
38009   'type' => '128',
38010   'block_callback' => '',
38011   'description' => '',
38012   'position' => '',
38013   'weight' => '1',
38014   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38015 ))
38016 ->values(array(
38017   'path' => 'admin/content/node-type/test-page/display/rss',
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:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:3:"rss";}',
38024   'fit' => '63',
38025   'number_parts' => '6',
38026   'tab_parent' => 'admin/content/node-type/test-page/display',
38027   'tab_root' => 'admin/content/node-type/test-page',
38028   'title' => 'RSS',
38029   'title_callback' => 't',
38030   'title_arguments' => '',
38031   'type' => '128',
38032   'block_callback' => '',
38033   'description' => '',
38034   'position' => '',
38035   'weight' => '1',
38036   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38037 ))
38038 ->values(array(
38039   'path' => 'admin/content/node-type/test-page/edit',
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: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\";}}",
38046   'fit' => '31',
38047   'number_parts' => '5',
38048   'tab_parent' => 'admin/content/node-type/test-page',
38049   'tab_root' => 'admin/content/node-type/test-page',
38050   'title' => 'Edit',
38051   'title_callback' => 't',
38052   'title_arguments' => '',
38053   'type' => '136',
38054   'block_callback' => '',
38055   'description' => '',
38056   'position' => '',
38057   'weight' => '0',
38058   'file' => 'modules/node/content_types.inc',
38059 ))
38060 ->values(array(
38061   'path' => 'admin/content/node-type/test-page/fields',
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:2:{i:0;s:27:"content_field_overview_form";i:1;s:9:"test_page";}',
38068   'fit' => '31',
38069   'number_parts' => '5',
38070   'tab_parent' => 'admin/content/node-type/test-page',
38071   'tab_root' => 'admin/content/node-type/test-page',
38072   'title' => 'Manage fields',
38073   'title_callback' => 't',
38074   'title_arguments' => '',
38075   'type' => '128',
38076   'block_callback' => '',
38077   'description' => '',
38078   'position' => '',
38079   'weight' => '1',
38080   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38081 ))
38082 ->values(array(
38083   'path' => 'admin/content/node-type/test-page/fields/field_test',
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:9:"test_page";i:2;s:10:"field_test";}',
38090   'fit' => '63',
38091   'number_parts' => '6',
38092   'tab_parent' => 'admin/content/node-type/test-page/fields',
38093   'tab_root' => 'admin/content/node-type/test-page',
38094   'title' => 'Text 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/test-page/fields/field_test/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:9:"test_page";i:2;s:10:"field_test";}',
38112   'fit' => '127',
38113   'number_parts' => '7',
38114   'tab_parent' => '',
38115   'tab_root' => 'admin/content/node-type/test-page/fields/field_test/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/test-planet',
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: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\";}}",
38134   'fit' => '15',
38135   'number_parts' => '4',
38136   'tab_parent' => '',
38137   'tab_root' => 'admin/content/node-type/test-planet',
38138   'title' => 'Migrate test planet',
38139   'title_callback' => 't',
38140   'title_arguments' => '',
38141   'type' => '4',
38142   'block_callback' => '',
38143   'description' => '',
38144   'position' => '',
38145   'weight' => '0',
38146   'file' => 'modules/node/content_types.inc',
38147 ))
38148 ->values(array(
38149   'path' => 'admin/content/node-type/test-planet/delete',
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: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\";}}",
38156   'fit' => '31',
38157   'number_parts' => '5',
38158   'tab_parent' => '',
38159   'tab_root' => 'admin/content/node-type/test-planet/delete',
38160   'title' => 'Delete',
38161   'title_callback' => 't',
38162   'title_arguments' => '',
38163   'type' => '4',
38164   'block_callback' => '',
38165   'description' => '',
38166   'position' => '',
38167   'weight' => '0',
38168   'file' => 'modules/node/content_types.inc',
38169 ))
38170 ->values(array(
38171   'path' => 'admin/content/node-type/test-planet/display',
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:2:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";}',
38178   'fit' => '31',
38179   'number_parts' => '5',
38180   'tab_parent' => 'admin/content/node-type/test-planet',
38181   'tab_root' => 'admin/content/node-type/test-planet',
38182   'title' => 'Display fields',
38183   'title_callback' => 't',
38184   'title_arguments' => '',
38185   'type' => '128',
38186   'block_callback' => '',
38187   'description' => '',
38188   'position' => '',
38189   'weight' => '2',
38190   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38191 ))
38192 ->values(array(
38193   'path' => 'admin/content/node-type/test-planet/display/basic',
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:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"basic";}',
38200   'fit' => '63',
38201   'number_parts' => '6',
38202   'tab_parent' => 'admin/content/node-type/test-planet/display',
38203   'tab_root' => 'admin/content/node-type/test-planet',
38204   'title' => 'Basic',
38205   'title_callback' => 't',
38206   'title_arguments' => '',
38207   'type' => '136',
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/test-planet/display/print',
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:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"print";}',
38222   'fit' => '63',
38223   'number_parts' => '6',
38224   'tab_parent' => 'admin/content/node-type/test-planet/display',
38225   'tab_root' => 'admin/content/node-type/test-planet',
38226   'title' => 'Print',
38227   'title_callback' => 't',
38228   'title_arguments' => '',
38229   'type' => '128',
38230   'block_callback' => '',
38231   'description' => '',
38232   'position' => '',
38233   'weight' => '1',
38234   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38235 ))
38236 ->values(array(
38237   'path' => 'admin/content/node-type/test-planet/display/rss',
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:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:3:"rss";}',
38244   'fit' => '63',
38245   'number_parts' => '6',
38246   'tab_parent' => 'admin/content/node-type/test-planet/display',
38247   'tab_root' => 'admin/content/node-type/test-planet',
38248   'title' => 'RSS',
38249   'title_callback' => 't',
38250   'title_arguments' => '',
38251   'type' => '128',
38252   'block_callback' => '',
38253   'description' => '',
38254   'position' => '',
38255   'weight' => '1',
38256   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38257 ))
38258 ->values(array(
38259   'path' => 'admin/content/node-type/test-planet/edit',
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: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\";}}",
38266   'fit' => '31',
38267   'number_parts' => '5',
38268   'tab_parent' => 'admin/content/node-type/test-planet',
38269   'tab_root' => 'admin/content/node-type/test-planet',
38270   'title' => 'Edit',
38271   'title_callback' => 't',
38272   'title_arguments' => '',
38273   'type' => '136',
38274   'block_callback' => '',
38275   'description' => '',
38276   'position' => '',
38277   'weight' => '0',
38278   'file' => 'modules/node/content_types.inc',
38279 ))
38280 ->values(array(
38281   'path' => 'admin/content/node-type/test-planet/fields',
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:2:{i:0;s:27:"content_field_overview_form";i:1;s:11:"test_planet";}',
38288   'fit' => '31',
38289   'number_parts' => '5',
38290   'tab_parent' => 'admin/content/node-type/test-planet',
38291   'tab_root' => 'admin/content/node-type/test-planet',
38292   'title' => 'Manage fields',
38293   'title_callback' => 't',
38294   'title_arguments' => '',
38295   'type' => '128',
38296   'block_callback' => '',
38297   'description' => '',
38298   'position' => '',
38299   'weight' => '1',
38300   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38301 ))
38302 ->values(array(
38303   'path' => 'admin/content/node-type/test-planet/fields/field_multivalue',
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:11:"test_planet";i:2;s:16:"field_multivalue";}',
38310   'fit' => '63',
38311   'number_parts' => '6',
38312   'tab_parent' => 'admin/content/node-type/test-planet/fields',
38313   'tab_root' => 'admin/content/node-type/test-planet',
38314   'title' => 'Decimal 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/test-planet/fields/field_multivalue/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:11:"test_planet";i:2;s:16:"field_multivalue";}',
38332   'fit' => '127',
38333   'number_parts' => '7',
38334   'tab_parent' => '',
38335   'tab_root' => 'admin/content/node-type/test-planet/fields/field_multivalue/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/test-planet/fields/field_test_text_single_checkbox',
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:11:"test_planet";i:2;s:31:"field_test_text_single_checkbox";}',
38354   'fit' => '63',
38355   'number_parts' => '6',
38356   'tab_parent' => 'admin/content/node-type/test-planet/fields',
38357   'tab_root' => 'admin/content/node-type/test-planet',
38358   'title' => 'Text Single Checkbox 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/test-planet/fields/field_test_text_single_checkbox/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:11:"test_planet";i:2;s:31:"field_test_text_single_checkbox";}',
38376   'fit' => '127',
38377   'number_parts' => '7',
38378   'tab_parent' => '',
38379   'tab_root' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/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/test-story',
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: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\";}}",
38398   'fit' => '15',
38399   'number_parts' => '4',
38400   'tab_parent' => '',
38401   'tab_root' => 'admin/content/node-type/test-story',
38402   'title' => 'Migrate test story',
38403   'title_callback' => 't',
38404   'title_arguments' => '',
38405   'type' => '4',
38406   'block_callback' => '',
38407   'description' => '',
38408   'position' => '',
38409   'weight' => '0',
38410   'file' => 'modules/node/content_types.inc',
38411 ))
38412 ->values(array(
38413   'path' => 'admin/content/node-type/test-story/delete',
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: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\";}}",
38420   'fit' => '31',
38421   'number_parts' => '5',
38422   'tab_parent' => '',
38423   'tab_root' => 'admin/content/node-type/test-story/delete',
38424   'title' => 'Delete',
38425   'title_callback' => 't',
38426   'title_arguments' => '',
38427   'type' => '4',
38428   'block_callback' => '',
38429   'description' => '',
38430   'position' => '',
38431   'weight' => '0',
38432   'file' => 'modules/node/content_types.inc',
38433 ))
38434 ->values(array(
38435   'path' => 'admin/content/node-type/test-story/display',
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:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";}',
38442   'fit' => '31',
38443   'number_parts' => '5',
38444   'tab_parent' => 'admin/content/node-type/test-story',
38445   'tab_root' => 'admin/content/node-type/test-story',
38446   'title' => 'Display fields',
38447   'title_callback' => 't',
38448   'title_arguments' => '',
38449   'type' => '128',
38450   'block_callback' => '',
38451   'description' => '',
38452   'position' => '',
38453   'weight' => '2',
38454   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38455 ))
38456 ->values(array(
38457   'path' => 'admin/content/node-type/test-story/display/basic',
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:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"basic";}',
38464   'fit' => '63',
38465   'number_parts' => '6',
38466   'tab_parent' => 'admin/content/node-type/test-story/display',
38467   'tab_root' => 'admin/content/node-type/test-story',
38468   'title' => 'Basic',
38469   'title_callback' => 't',
38470   'title_arguments' => '',
38471   'type' => '136',
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/test-story/display/print',
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:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"print";}',
38486   'fit' => '63',
38487   'number_parts' => '6',
38488   'tab_parent' => 'admin/content/node-type/test-story/display',
38489   'tab_root' => 'admin/content/node-type/test-story',
38490   'title' => 'Print',
38491   'title_callback' => 't',
38492   'title_arguments' => '',
38493   'type' => '128',
38494   'block_callback' => '',
38495   'description' => '',
38496   'position' => '',
38497   'weight' => '1',
38498   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38499 ))
38500 ->values(array(
38501   'path' => 'admin/content/node-type/test-story/display/rss',
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:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:3:"rss";}',
38508   'fit' => '63',
38509   'number_parts' => '6',
38510   'tab_parent' => 'admin/content/node-type/test-story/display',
38511   'tab_root' => 'admin/content/node-type/test-story',
38512   'title' => 'RSS',
38513   'title_callback' => 't',
38514   'title_arguments' => '',
38515   'type' => '128',
38516   'block_callback' => '',
38517   'description' => '',
38518   'position' => '',
38519   'weight' => '1',
38520   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38521 ))
38522 ->values(array(
38523   'path' => 'admin/content/node-type/test-story/edit',
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: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\";}}",
38530   'fit' => '31',
38531   'number_parts' => '5',
38532   'tab_parent' => 'admin/content/node-type/test-story',
38533   'tab_root' => 'admin/content/node-type/test-story',
38534   'title' => 'Edit',
38535   'title_callback' => 't',
38536   'title_arguments' => '',
38537   'type' => '136',
38538   'block_callback' => '',
38539   'description' => '',
38540   'position' => '',
38541   'weight' => '0',
38542   'file' => 'modules/node/content_types.inc',
38543 ))
38544 ->values(array(
38545   'path' => 'admin/content/node-type/test-story/fields',
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:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_story";}',
38552   'fit' => '31',
38553   'number_parts' => '5',
38554   'tab_parent' => 'admin/content/node-type/test-story',
38555   'tab_root' => 'admin/content/node-type/test-story',
38556   'title' => 'Manage fields',
38557   'title_callback' => 't',
38558   'title_arguments' => '',
38559   'type' => '128',
38560   'block_callback' => '',
38561   'description' => '',
38562   'position' => '',
38563   'weight' => '1',
38564   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38565 ))
38566 ->values(array(
38567   'path' => 'admin/content/node/overview',
38568   'load_functions' => '',
38569   'to_arg_functions' => '',
38570   'access_callback' => 'user_access',
38571   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
38572   'page_callback' => 'drupal_get_form',
38573   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
38574   'fit' => '15',
38575   'number_parts' => '4',
38576   'tab_parent' => 'admin/content/node',
38577   'tab_root' => 'admin/content/node',
38578   'title' => 'List',
38579   'title_callback' => 't',
38580   'title_arguments' => '',
38581   'type' => '136',
38582   'block_callback' => '',
38583   'description' => '',
38584   'position' => '',
38585   'weight' => '-10',
38586   'file' => 'modules/node/node.admin.inc',
38587 ))
38588 ->values(array(
38589   'path' => 'admin/content/rss-publishing',
38590   'load_functions' => '',
38591   'to_arg_functions' => '',
38592   'access_callback' => 'user_access',
38593   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
38594   'page_callback' => 'drupal_get_form',
38595   'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
38596   'fit' => '7',
38597   'number_parts' => '3',
38598   'tab_parent' => '',
38599   'tab_root' => 'admin/content/rss-publishing',
38600   'title' => 'RSS publishing',
38601   'title_callback' => 't',
38602   'title_arguments' => '',
38603   'type' => '6',
38604   'block_callback' => '',
38605   'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
38606   'position' => '',
38607   'weight' => '0',
38608   'file' => 'modules/system/system.admin.inc',
38609 ))
38610 ->values(array(
38611   'path' => 'admin/content/taxonomy',
38612   'load_functions' => '',
38613   'to_arg_functions' => '',
38614   'access_callback' => 'user_access',
38615   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38616   'page_callback' => 'drupal_get_form',
38617   'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
38618   'fit' => '7',
38619   'number_parts' => '3',
38620   'tab_parent' => '',
38621   'tab_root' => 'admin/content/taxonomy',
38622   'title' => 'Taxonomy',
38623   'title_callback' => 't',
38624   'title_arguments' => '',
38625   'type' => '6',
38626   'block_callback' => '',
38627   'description' => 'Manage tagging, categorization, and classification of your content.',
38628   'position' => '',
38629   'weight' => '0',
38630   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38631 ))
38632 ->values(array(
38633   'path' => 'admin/content/taxonomy/%',
38634   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
38635   'to_arg_functions' => '',
38636   'access_callback' => 'user_access',
38637   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38638   'page_callback' => 'drupal_get_form',
38639   'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
38640   'fit' => '14',
38641   'number_parts' => '4',
38642   'tab_parent' => '',
38643   'tab_root' => 'admin/content/taxonomy/%',
38644   'title' => 'List terms',
38645   'title_callback' => 't',
38646   'title_arguments' => '',
38647   'type' => '4',
38648   'block_callback' => '',
38649   'description' => '',
38650   'position' => '',
38651   'weight' => '0',
38652   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38653 ))
38654 ->values(array(
38655   'path' => 'admin/content/taxonomy/%/add/term',
38656   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
38657   'to_arg_functions' => '',
38658   'access_callback' => 'user_access',
38659   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38660   'page_callback' => 'taxonomy_add_term_page',
38661   'page_arguments' => 'a:1:{i:0;i:3;}',
38662   'fit' => '59',
38663   'number_parts' => '6',
38664   'tab_parent' => 'admin/content/taxonomy/%',
38665   'tab_root' => 'admin/content/taxonomy/%',
38666   'title' => 'Add term',
38667   'title_callback' => 't',
38668   'title_arguments' => '',
38669   'type' => '128',
38670   'block_callback' => '',
38671   'description' => '',
38672   'position' => '',
38673   'weight' => '0',
38674   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38675 ))
38676 ->values(array(
38677   'path' => 'admin/content/taxonomy/%/list',
38678   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
38679   'to_arg_functions' => '',
38680   'access_callback' => 'user_access',
38681   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38682   'page_callback' => 'drupal_get_form',
38683   'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
38684   'fit' => '29',
38685   'number_parts' => '5',
38686   'tab_parent' => 'admin/content/taxonomy/%',
38687   'tab_root' => 'admin/content/taxonomy/%',
38688   'title' => 'List',
38689   'title_callback' => 't',
38690   'title_arguments' => '',
38691   'type' => '136',
38692   'block_callback' => '',
38693   'description' => '',
38694   'position' => '',
38695   'weight' => '-10',
38696   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38697 ))
38698 ->values(array(
38699   'path' => 'admin/content/taxonomy/%/translation',
38700   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
38701   'to_arg_functions' => '',
38702   'access_callback' => '_i18ntaxonomy_translation_tab',
38703   'access_arguments' => 'a:1:{i:0;i:3;}',
38704   'page_callback' => 'i18ntaxonomy_page_vocabulary',
38705   'page_arguments' => 'a:3:{i:0;i:3;i:1;i:5;i:2;i:6;}',
38706   'fit' => '29',
38707   'number_parts' => '5',
38708   'tab_parent' => 'admin/content/taxonomy/%',
38709   'tab_root' => 'admin/content/taxonomy/%',
38710   'title' => 'Translation',
38711   'title_callback' => 't',
38712   'title_arguments' => '',
38713   'type' => '128',
38714   'block_callback' => '',
38715   'description' => '',
38716   'position' => '',
38717   'weight' => '0',
38718   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.admin.inc',
38719 ))
38720 ->values(array(
38721   'path' => 'admin/content/taxonomy/add/vocabulary',
38722   'load_functions' => '',
38723   'to_arg_functions' => '',
38724   'access_callback' => 'user_access',
38725   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38726   'page_callback' => 'drupal_get_form',
38727   'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
38728   'fit' => '31',
38729   'number_parts' => '5',
38730   'tab_parent' => 'admin/content/taxonomy',
38731   'tab_root' => 'admin/content/taxonomy',
38732   'title' => 'Add vocabulary',
38733   'title_callback' => 't',
38734   'title_arguments' => '',
38735   'type' => '128',
38736   'block_callback' => '',
38737   'description' => '',
38738   'position' => '',
38739   'weight' => '0',
38740   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38741 ))
38742 ->values(array(
38743   'path' => 'admin/content/taxonomy/edit/term',
38744   'load_functions' => '',
38745   'to_arg_functions' => '',
38746   'access_callback' => 'user_access',
38747   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38748   'page_callback' => 'taxonomy_admin_term_edit',
38749   'page_arguments' => 'a:0:{}',
38750   'fit' => '31',
38751   'number_parts' => '5',
38752   'tab_parent' => '',
38753   'tab_root' => 'admin/content/taxonomy/edit/term',
38754   'title' => 'Edit term',
38755   'title_callback' => 't',
38756   'title_arguments' => '',
38757   'type' => '4',
38758   'block_callback' => '',
38759   'description' => '',
38760   'position' => '',
38761   'weight' => '0',
38762   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38763 ))
38764 ->values(array(
38765   'path' => 'admin/content/taxonomy/edit/vocabulary/%',
38766   'load_functions' => 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}',
38767   'to_arg_functions' => '',
38768   'access_callback' => 'user_access',
38769   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38770   'page_callback' => 'taxonomy_admin_vocabulary_edit',
38771   'page_arguments' => 'a:1:{i:0;i:5;}',
38772   'fit' => '62',
38773   'number_parts' => '6',
38774   'tab_parent' => '',
38775   'tab_root' => 'admin/content/taxonomy/edit/vocabulary/%',
38776   'title' => 'Edit vocabulary',
38777   'title_callback' => 't',
38778   'title_arguments' => '',
38779   'type' => '4',
38780   'block_callback' => '',
38781   'description' => '',
38782   'position' => '',
38783   'weight' => '0',
38784   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38785 ))
38786 ->values(array(
38787   'path' => 'admin/content/taxonomy/list',
38788   'load_functions' => '',
38789   'to_arg_functions' => '',
38790   'access_callback' => 'user_access',
38791   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
38792   'page_callback' => 'drupal_get_form',
38793   'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
38794   'fit' => '15',
38795   'number_parts' => '4',
38796   'tab_parent' => 'admin/content/taxonomy',
38797   'tab_root' => 'admin/content/taxonomy',
38798   'title' => 'List',
38799   'title_callback' => 't',
38800   'title_arguments' => '',
38801   'type' => '136',
38802   'block_callback' => '',
38803   'description' => '',
38804   'position' => '',
38805   'weight' => '-10',
38806   'file' => 'modules/taxonomy/taxonomy.admin.inc',
38807 ))
38808 ->values(array(
38809   'path' => 'admin/content/types',
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' => 'content_types_overview',
38815   'page_arguments' => 'a:0:{}',
38816   'fit' => '7',
38817   'number_parts' => '3',
38818   'tab_parent' => '',
38819   'tab_root' => 'admin/content/types',
38820   'title' => 'Content types',
38821   'title_callback' => 't',
38822   'title_arguments' => '',
38823   'type' => '6',
38824   'block_callback' => '',
38825   'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
38826   'position' => '',
38827   'weight' => '0',
38828   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38829 ))
38830 ->values(array(
38831   'path' => 'admin/content/types/add',
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:1:{i:0;s:14:"node_type_form";}',
38838   'fit' => '15',
38839   'number_parts' => '4',
38840   'tab_parent' => 'admin/content/types',
38841   'tab_root' => 'admin/content/types',
38842   'title' => 'Add content type',
38843   'title_callback' => 't',
38844   'title_arguments' => '',
38845   'type' => '128',
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/types/fields',
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' => 'content_fields_list',
38859   'page_arguments' => 'a:0:{}',
38860   'fit' => '15',
38861   'number_parts' => '4',
38862   'tab_parent' => 'admin/content/types',
38863   'tab_root' => 'admin/content/types',
38864   'title' => 'Fields',
38865   'title_callback' => 't',
38866   'title_arguments' => '',
38867   'type' => '128',
38868   'block_callback' => '',
38869   'description' => '',
38870   'position' => '',
38871   'weight' => '0',
38872   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38873 ))
38874 ->values(array(
38875   'path' => 'admin/content/types/list',
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' => 'content_types_overview',
38881   'page_arguments' => 'a:0:{}',
38882   'fit' => '15',
38883   'number_parts' => '4',
38884   'tab_parent' => 'admin/content/types',
38885   'tab_root' => 'admin/content/types',
38886   'title' => 'List',
38887   'title_callback' => 't',
38888   'title_arguments' => '',
38889   'type' => '136',
38890   'block_callback' => '',
38891   'description' => '',
38892   'position' => '',
38893   'weight' => '-10',
38894   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38895 ))
38896 ->values(array(
38897   'path' => 'admin/reports',
38898   'load_functions' => '',
38899   'to_arg_functions' => '',
38900   'access_callback' => 'user_access',
38901   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
38902   'page_callback' => 'system_admin_menu_block_page',
38903   'page_arguments' => 'a:0:{}',
38904   'fit' => '3',
38905   'number_parts' => '2',
38906   'tab_parent' => '',
38907   'tab_root' => 'admin/reports',
38908   'title' => 'Reports',
38909   'title_callback' => 't',
38910   'title_arguments' => '',
38911   'type' => '6',
38912   'block_callback' => '',
38913   'description' => 'View reports from system logs and other status information.',
38914   'position' => 'left',
38915   'weight' => '5',
38916   'file' => 'modules/system/system.admin.inc',
38917 ))
38918 ->values(array(
38919   'path' => 'admin/reports/access/%',
38920   'load_functions' => 'a:1:{i:3;N;}',
38921   'to_arg_functions' => '',
38922   'access_callback' => 'user_access',
38923   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
38924   'page_callback' => 'statistics_access_log',
38925   'page_arguments' => 'a:1:{i:0;i:3;}',
38926   'fit' => '14',
38927   'number_parts' => '4',
38928   'tab_parent' => '',
38929   'tab_root' => 'admin/reports/access/%',
38930   'title' => 'Details',
38931   'title_callback' => 't',
38932   'title_arguments' => '',
38933   'type' => '4',
38934   'block_callback' => '',
38935   'description' => 'View access log.',
38936   'position' => '',
38937   'weight' => '0',
38938   'file' => 'modules/statistics/statistics.admin.inc',
38939 ))
38940 ->values(array(
38941   'path' => 'admin/reports/hits',
38942   'load_functions' => '',
38943   'to_arg_functions' => '',
38944   'access_callback' => 'user_access',
38945   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
38946   'page_callback' => 'statistics_recent_hits',
38947   'page_arguments' => 'a:0:{}',
38948   'fit' => '7',
38949   'number_parts' => '3',
38950   'tab_parent' => '',
38951   'tab_root' => 'admin/reports/hits',
38952   'title' => 'Recent hits',
38953   'title_callback' => 't',
38954   'title_arguments' => '',
38955   'type' => '6',
38956   'block_callback' => '',
38957   'description' => 'View pages that have recently been visited.',
38958   'position' => '',
38959   'weight' => '0',
38960   'file' => 'modules/statistics/statistics.admin.inc',
38961 ))
38962 ->values(array(
38963   'path' => 'admin/reports/pages',
38964   'load_functions' => '',
38965   'to_arg_functions' => '',
38966   'access_callback' => 'user_access',
38967   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
38968   'page_callback' => 'statistics_top_pages',
38969   'page_arguments' => 'a:0:{}',
38970   'fit' => '7',
38971   'number_parts' => '3',
38972   'tab_parent' => '',
38973   'tab_root' => 'admin/reports/pages',
38974   'title' => 'Top pages',
38975   'title_callback' => 't',
38976   'title_arguments' => '',
38977   'type' => '6',
38978   'block_callback' => '',
38979   'description' => 'View pages that have been hit frequently.',
38980   'position' => '',
38981   'weight' => '1',
38982   'file' => 'modules/statistics/statistics.admin.inc',
38983 ))
38984 ->values(array(
38985   'path' => 'admin/reports/referrers',
38986   'load_functions' => '',
38987   'to_arg_functions' => '',
38988   'access_callback' => 'user_access',
38989   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
38990   'page_callback' => 'statistics_top_referrers',
38991   'page_arguments' => 'a:0:{}',
38992   'fit' => '7',
38993   'number_parts' => '3',
38994   'tab_parent' => '',
38995   'tab_root' => 'admin/reports/referrers',
38996   'title' => 'Top referrers',
38997   'title_callback' => 't',
38998   'title_arguments' => '',
38999   'type' => '6',
39000   'block_callback' => '',
39001   'description' => 'View top referrers.',
39002   'position' => '',
39003   'weight' => '0',
39004   'file' => 'modules/statistics/statistics.admin.inc',
39005 ))
39006 ->values(array(
39007   'path' => 'admin/reports/settings',
39008   'load_functions' => '',
39009   'to_arg_functions' => '',
39010   'access_callback' => 'user_access',
39011   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39012   'page_callback' => 'drupal_get_form',
39013   'page_arguments' => 'a:1:{i:0;s:34:"statistics_access_logging_settings";}',
39014   'fit' => '7',
39015   'number_parts' => '3',
39016   'tab_parent' => '',
39017   'tab_root' => 'admin/reports/settings',
39018   'title' => 'Access log settings',
39019   'title_callback' => 't',
39020   'title_arguments' => '',
39021   'type' => '6',
39022   'block_callback' => '',
39023   'description' => 'Control details about what and how your site logs.',
39024   'position' => '',
39025   'weight' => '3',
39026   'file' => 'modules/statistics/statistics.admin.inc',
39027 ))
39028 ->values(array(
39029   'path' => 'admin/reports/status',
39030   'load_functions' => '',
39031   'to_arg_functions' => '',
39032   'access_callback' => 'user_access',
39033   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39034   'page_callback' => 'system_status',
39035   'page_arguments' => 'a:0:{}',
39036   'fit' => '7',
39037   'number_parts' => '3',
39038   'tab_parent' => '',
39039   'tab_root' => 'admin/reports/status',
39040   'title' => 'Status report',
39041   'title_callback' => 't',
39042   'title_arguments' => '',
39043   'type' => '6',
39044   'block_callback' => '',
39045   'description' => "Get a status report about your site's operation and any detected problems.",
39046   'position' => '',
39047   'weight' => '10',
39048   'file' => 'modules/system/system.admin.inc',
39049 ))
39050 ->values(array(
39051   'path' => 'admin/reports/status/php',
39052   'load_functions' => '',
39053   'to_arg_functions' => '',
39054   'access_callback' => 'user_access',
39055   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39056   'page_callback' => 'system_php',
39057   'page_arguments' => 'a:0:{}',
39058   'fit' => '15',
39059   'number_parts' => '4',
39060   'tab_parent' => '',
39061   'tab_root' => 'admin/reports/status/php',
39062   'title' => 'PHP',
39063   'title_callback' => 't',
39064   'title_arguments' => '',
39065   'type' => '4',
39066   'block_callback' => '',
39067   'description' => '',
39068   'position' => '',
39069   'weight' => '0',
39070   'file' => 'modules/system/system.admin.inc',
39071 ))
39072 ->values(array(
39073   'path' => 'admin/reports/status/run-cron',
39074   'load_functions' => '',
39075   'to_arg_functions' => '',
39076   'access_callback' => 'user_access',
39077   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39078   'page_callback' => 'system_run_cron',
39079   'page_arguments' => 'a:0:{}',
39080   'fit' => '15',
39081   'number_parts' => '4',
39082   'tab_parent' => '',
39083   'tab_root' => 'admin/reports/status/run-cron',
39084   'title' => 'Run cron',
39085   'title_callback' => 't',
39086   'title_arguments' => '',
39087   'type' => '4',
39088   'block_callback' => '',
39089   'description' => '',
39090   'position' => '',
39091   'weight' => '0',
39092   'file' => 'modules/system/system.admin.inc',
39093 ))
39094 ->values(array(
39095   'path' => 'admin/reports/status/sql',
39096   'load_functions' => '',
39097   'to_arg_functions' => '',
39098   'access_callback' => 'user_access',
39099   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39100   'page_callback' => 'system_sql',
39101   'page_arguments' => 'a:0:{}',
39102   'fit' => '15',
39103   'number_parts' => '4',
39104   'tab_parent' => '',
39105   'tab_root' => 'admin/reports/status/sql',
39106   'title' => 'SQL',
39107   'title_callback' => 't',
39108   'title_arguments' => '',
39109   'type' => '4',
39110   'block_callback' => '',
39111   'description' => '',
39112   'position' => '',
39113   'weight' => '0',
39114   'file' => 'modules/system/system.admin.inc',
39115 ))
39116 ->values(array(
39117   'path' => 'admin/reports/visitors',
39118   'load_functions' => '',
39119   'to_arg_functions' => '',
39120   'access_callback' => 'user_access',
39121   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39122   'page_callback' => 'statistics_top_visitors',
39123   'page_arguments' => 'a:0:{}',
39124   'fit' => '7',
39125   'number_parts' => '3',
39126   'tab_parent' => '',
39127   'tab_root' => 'admin/reports/visitors',
39128   'title' => 'Top visitors',
39129   'title_callback' => 't',
39130   'title_arguments' => '',
39131   'type' => '6',
39132   'block_callback' => '',
39133   'description' => 'View visitors that hit many pages.',
39134   'position' => '',
39135   'weight' => '2',
39136   'file' => 'modules/statistics/statistics.admin.inc',
39137 ))
39138 ->values(array(
39139   'path' => 'admin/settings',
39140   'load_functions' => '',
39141   'to_arg_functions' => '',
39142   'access_callback' => 'user_access',
39143   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
39144   'page_callback' => 'system_settings_overview',
39145   'page_arguments' => 'a:0:{}',
39146   'fit' => '3',
39147   'number_parts' => '2',
39148   'tab_parent' => '',
39149   'tab_root' => 'admin/settings',
39150   'title' => 'Site configuration',
39151   'title_callback' => 't',
39152   'title_arguments' => '',
39153   'type' => '6',
39154   'block_callback' => '',
39155   'description' => 'Adjust basic site configuration options.',
39156   'position' => 'right',
39157   'weight' => '-5',
39158   'file' => 'modules/system/system.admin.inc',
39159 ))
39160 ->values(array(
39161   'path' => 'admin/settings/actions',
39162   'load_functions' => '',
39163   'to_arg_functions' => '',
39164   'access_callback' => 'user_access',
39165   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
39166   'page_callback' => 'system_actions_manage',
39167   'page_arguments' => 'a:0:{}',
39168   'fit' => '7',
39169   'number_parts' => '3',
39170   'tab_parent' => '',
39171   'tab_root' => 'admin/settings/actions',
39172   'title' => 'Actions',
39173   'title_callback' => 't',
39174   'title_arguments' => '',
39175   'type' => '6',
39176   'block_callback' => '',
39177   'description' => 'Manage the actions defined for your site.',
39178   'position' => '',
39179   'weight' => '0',
39180   'file' => '',
39181 ))
39182 ->values(array(
39183   'path' => 'admin/settings/actions/configure',
39184   'load_functions' => '',
39185   'to_arg_functions' => '',
39186   'access_callback' => 'user_access',
39187   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
39188   'page_callback' => 'drupal_get_form',
39189   'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
39190   'fit' => '15',
39191   'number_parts' => '4',
39192   'tab_parent' => '',
39193   'tab_root' => 'admin/settings/actions/configure',
39194   'title' => 'Configure an advanced action',
39195   'title_callback' => 't',
39196   'title_arguments' => '',
39197   'type' => '4',
39198   'block_callback' => '',
39199   'description' => '',
39200   'position' => '',
39201   'weight' => '0',
39202   'file' => '',
39203 ))
39204 ->values(array(
39205   'path' => 'admin/settings/actions/delete/%',
39206   'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
39207   'to_arg_functions' => '',
39208   'access_callback' => 'user_access',
39209   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
39210   'page_callback' => 'drupal_get_form',
39211   'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
39212   'fit' => '30',
39213   'number_parts' => '5',
39214   'tab_parent' => '',
39215   'tab_root' => 'admin/settings/actions/delete/%',
39216   'title' => 'Delete action',
39217   'title_callback' => 't',
39218   'title_arguments' => '',
39219   'type' => '4',
39220   'block_callback' => '',
39221   'description' => 'Delete an action.',
39222   'position' => '',
39223   'weight' => '0',
39224   'file' => '',
39225 ))
39226 ->values(array(
39227   'path' => 'admin/settings/actions/manage',
39228   'load_functions' => '',
39229   'to_arg_functions' => '',
39230   'access_callback' => 'user_access',
39231   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
39232   'page_callback' => 'system_actions_manage',
39233   'page_arguments' => 'a:0:{}',
39234   'fit' => '15',
39235   'number_parts' => '4',
39236   'tab_parent' => 'admin/settings/actions',
39237   'tab_root' => 'admin/settings/actions',
39238   'title' => 'Manage actions',
39239   'title_callback' => 't',
39240   'title_arguments' => '',
39241   'type' => '136',
39242   'block_callback' => '',
39243   'description' => 'Manage the actions defined for your site.',
39244   'position' => '',
39245   'weight' => '-2',
39246   'file' => '',
39247 ))
39248 ->values(array(
39249   'path' => 'admin/settings/actions/orphan',
39250   'load_functions' => '',
39251   'to_arg_functions' => '',
39252   'access_callback' => 'user_access',
39253   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
39254   'page_callback' => 'system_actions_remove_orphans',
39255   'page_arguments' => 'a:0:{}',
39256   'fit' => '15',
39257   'number_parts' => '4',
39258   'tab_parent' => '',
39259   'tab_root' => 'admin/settings/actions/orphan',
39260   'title' => 'Remove orphans',
39261   'title_callback' => 't',
39262   'title_arguments' => '',
39263   'type' => '4',
39264   'block_callback' => '',
39265   'description' => '',
39266   'position' => '',
39267   'weight' => '0',
39268   'file' => '',
39269 ))
39270 ->values(array(
39271   'path' => 'admin/settings/admin',
39272   'load_functions' => '',
39273   'to_arg_functions' => '',
39274   'access_callback' => 'user_access',
39275   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39276   'page_callback' => 'drupal_get_form',
39277   'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
39278   'fit' => '7',
39279   'number_parts' => '3',
39280   'tab_parent' => '',
39281   'tab_root' => 'admin/settings/admin',
39282   'title' => 'Administration theme',
39283   'title_callback' => 't',
39284   'title_arguments' => '',
39285   'type' => '6',
39286   'block_callback' => 'system_admin_theme_settings',
39287   'description' => 'Settings for how your administrative pages should look.',
39288   'position' => 'left',
39289   'weight' => '0',
39290   'file' => 'modules/system/system.admin.inc',
39291 ))
39292 ->values(array(
39293   'path' => 'admin/settings/clean-urls',
39294   'load_functions' => '',
39295   'to_arg_functions' => '',
39296   'access_callback' => 'user_access',
39297   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39298   'page_callback' => 'drupal_get_form',
39299   'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
39300   'fit' => '7',
39301   'number_parts' => '3',
39302   'tab_parent' => '',
39303   'tab_root' => 'admin/settings/clean-urls',
39304   'title' => 'Clean URLs',
39305   'title_callback' => 't',
39306   'title_arguments' => '',
39307   'type' => '6',
39308   'block_callback' => '',
39309   'description' => 'Enable or disable clean URLs for your site.',
39310   'position' => '',
39311   'weight' => '0',
39312   'file' => 'modules/system/system.admin.inc',
39313 ))
39314 ->values(array(
39315   'path' => 'admin/settings/clean-urls/check',
39316   'load_functions' => '',
39317   'to_arg_functions' => '',
39318   'access_callback' => '1',
39319   'access_arguments' => 'a:0:{}',
39320   'page_callback' => 'drupal_json',
39321   'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
39322   'fit' => '15',
39323   'number_parts' => '4',
39324   'tab_parent' => '',
39325   'tab_root' => 'admin/settings/clean-urls/check',
39326   'title' => 'Clean URL check',
39327   'title_callback' => 't',
39328   'title_arguments' => '',
39329   'type' => '4',
39330   'block_callback' => '',
39331   'description' => '',
39332   'position' => '',
39333   'weight' => '0',
39334   'file' => '',
39335 ))
39336 ->values(array(
39337   'path' => 'admin/settings/date-time',
39338   'load_functions' => '',
39339   'to_arg_functions' => '',
39340   'access_callback' => 'user_access',
39341   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39342   'page_callback' => 'drupal_get_form',
39343   'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
39344   'fit' => '7',
39345   'number_parts' => '3',
39346   'tab_parent' => '',
39347   'tab_root' => 'admin/settings/date-time',
39348   'title' => 'Date and time',
39349   'title_callback' => 't',
39350   'title_arguments' => '',
39351   'type' => '6',
39352   'block_callback' => '',
39353   'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
39354   'position' => '',
39355   'weight' => '0',
39356   'file' => 'modules/system/system.admin.inc',
39357 ))
39358 ->values(array(
39359   'path' => 'admin/settings/date-time/configure',
39360   'load_functions' => '',
39361   'to_arg_functions' => '',
39362   'access_callback' => 'user_access',
39363   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39364   'page_callback' => 'drupal_get_form',
39365   'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
39366   'fit' => '15',
39367   'number_parts' => '4',
39368   'tab_parent' => 'admin/settings/date-time',
39369   'tab_root' => 'admin/settings/date-time',
39370   'title' => 'Date and time',
39371   'title_callback' => 't',
39372   'title_arguments' => '',
39373   'type' => '136',
39374   'block_callback' => '',
39375   'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
39376   'position' => '',
39377   'weight' => '0',
39378   'file' => 'modules/system/system.admin.inc',
39379 ))
39380 ->values(array(
39381   'path' => 'admin/settings/date-time/delete/%',
39382   'load_functions' => 'a:1:{i:4;N;}',
39383   'to_arg_functions' => '',
39384   'access_callback' => 'user_access',
39385   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39386   'page_callback' => 'drupal_get_form',
39387   'page_arguments' => 'a:2:{i:0;s:32:"date_api_delete_format_type_form";i:1;i:4;}',
39388   'fit' => '30',
39389   'number_parts' => '5',
39390   'tab_parent' => '',
39391   'tab_root' => 'admin/settings/date-time/delete/%',
39392   'title' => 'Delete date format type',
39393   'title_callback' => 't',
39394   'title_arguments' => '',
39395   'type' => '4',
39396   'block_callback' => '',
39397   'description' => 'Allow users to delete a configured date format type.',
39398   'position' => '',
39399   'weight' => '0',
39400   'file' => 'sites/all/modules/date/date_api.admin.inc',
39401 ))
39402 ->values(array(
39403   'path' => 'admin/settings/date-time/formats',
39404   'load_functions' => '',
39405   'to_arg_functions' => '',
39406   'access_callback' => 'user_access',
39407   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39408   'page_callback' => 'drupal_get_form',
39409   'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
39410   'fit' => '15',
39411   'number_parts' => '4',
39412   'tab_parent' => 'admin/settings/date-time',
39413   'tab_root' => 'admin/settings/date-time',
39414   'title' => 'Formats',
39415   'title_callback' => 't',
39416   'title_arguments' => '',
39417   'type' => '128',
39418   'block_callback' => '',
39419   'description' => 'Allow users to configure date formats',
39420   'position' => '',
39421   'weight' => '1',
39422   'file' => 'sites/all/modules/date/date_api.admin.inc',
39423 ))
39424 ->values(array(
39425   'path' => 'admin/settings/date-time/formats/add',
39426   'load_functions' => '',
39427   'to_arg_functions' => '',
39428   'access_callback' => 'user_access',
39429   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39430   'page_callback' => 'drupal_get_form',
39431   'page_arguments' => 'a:1:{i:0;s:30:"date_api_add_date_formats_form";}',
39432   'fit' => '31',
39433   'number_parts' => '5',
39434   'tab_parent' => 'admin/settings/date-time/formats',
39435   'tab_root' => 'admin/settings/date-time',
39436   'title' => 'Add format',
39437   'title_callback' => 't',
39438   'title_arguments' => '',
39439   'type' => '128',
39440   'block_callback' => '',
39441   'description' => 'Allow users to add additional date formats.',
39442   'position' => '',
39443   'weight' => '3',
39444   'file' => 'sites/all/modules/date/date_api.admin.inc',
39445 ))
39446 ->values(array(
39447   'path' => 'admin/settings/date-time/formats/configure',
39448   'load_functions' => '',
39449   'to_arg_functions' => '',
39450   'access_callback' => 'user_access',
39451   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39452   'page_callback' => 'drupal_get_form',
39453   'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
39454   'fit' => '31',
39455   'number_parts' => '5',
39456   'tab_parent' => 'admin/settings/date-time/formats',
39457   'tab_root' => 'admin/settings/date-time',
39458   'title' => 'Configure',
39459   'title_callback' => 't',
39460   'title_arguments' => '',
39461   'type' => '136',
39462   'block_callback' => '',
39463   'description' => 'Allow users to configure date formats',
39464   'position' => '',
39465   'weight' => '1',
39466   'file' => 'sites/all/modules/date/date_api.admin.inc',
39467 ))
39468 ->values(array(
39469   'path' => 'admin/settings/date-time/formats/custom',
39470   'load_functions' => '',
39471   'to_arg_functions' => '',
39472   'access_callback' => 'user_access',
39473   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39474   'page_callback' => 'date_api_configure_custom_date_formats',
39475   'page_arguments' => 'a:0:{}',
39476   'fit' => '31',
39477   'number_parts' => '5',
39478   'tab_parent' => 'admin/settings/date-time/formats',
39479   'tab_root' => 'admin/settings/date-time',
39480   'title' => 'Custom formats',
39481   'title_callback' => 't',
39482   'title_arguments' => '',
39483   'type' => '128',
39484   'block_callback' => '',
39485   'description' => 'Allow users to configure custom date formats.',
39486   'position' => '',
39487   'weight' => '2',
39488   'file' => 'sites/all/modules/date/date_api.admin.inc',
39489 ))
39490 ->values(array(
39491   'path' => 'admin/settings/date-time/formats/delete/%',
39492   'load_functions' => 'a:1:{i:5;N;}',
39493   'to_arg_functions' => '',
39494   'access_callback' => 'user_access',
39495   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39496   'page_callback' => 'drupal_get_form',
39497   'page_arguments' => 'a:2:{i:0;s:27:"date_api_delete_format_form";i:1;i:5;}',
39498   'fit' => '62',
39499   'number_parts' => '6',
39500   'tab_parent' => '',
39501   'tab_root' => 'admin/settings/date-time/formats/delete/%',
39502   'title' => 'Delete date format',
39503   'title_callback' => 't',
39504   'title_arguments' => '',
39505   'type' => '4',
39506   'block_callback' => '',
39507   'description' => 'Allow users to delete a configured date format.',
39508   'position' => '',
39509   'weight' => '0',
39510   'file' => 'sites/all/modules/date/date_api.admin.inc',
39511 ))
39512 ->values(array(
39513   'path' => 'admin/settings/date-time/formats/lookup',
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' => 'date_api_date_time_lookup',
39519   'page_arguments' => 'a:0:{}',
39520   'fit' => '31',
39521   'number_parts' => '5',
39522   'tab_parent' => '',
39523   'tab_root' => 'admin/settings/date-time/formats/lookup',
39524   'title' => 'Date and time lookup',
39525   'title_callback' => 't',
39526   'title_arguments' => '',
39527   'type' => '4',
39528   'block_callback' => '',
39529   'description' => '',
39530   'position' => '',
39531   'weight' => '0',
39532   'file' => '',
39533 ))
39534 ->values(array(
39535   'path' => 'admin/settings/date-time/lookup',
39536   'load_functions' => '',
39537   'to_arg_functions' => '',
39538   'access_callback' => 'user_access',
39539   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39540   'page_callback' => 'system_date_time_lookup',
39541   'page_arguments' => 'a:0:{}',
39542   'fit' => '15',
39543   'number_parts' => '4',
39544   'tab_parent' => '',
39545   'tab_root' => 'admin/settings/date-time/lookup',
39546   'title' => 'Date and time lookup',
39547   'title_callback' => 't',
39548   'title_arguments' => '',
39549   'type' => '4',
39550   'block_callback' => '',
39551   'description' => '',
39552   'position' => '',
39553   'weight' => '0',
39554   'file' => 'modules/system/system.admin.inc',
39555 ))
39556 ->values(array(
39557   'path' => 'admin/settings/email',
39558   'load_functions' => '',
39559   'to_arg_functions' => '',
39560   'access_callback' => 'user_access',
39561   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39562   'page_callback' => 'drupal_get_form',
39563   'page_arguments' => 'a:1:{i:0;s:20:"email_admin_settings";}',
39564   'fit' => '7',
39565   'number_parts' => '3',
39566   'tab_parent' => '',
39567   'tab_root' => 'admin/settings/email',
39568   'title' => 'CCK Email Contact Form Settings',
39569   'title_callback' => 't',
39570   'title_arguments' => '',
39571   'type' => '6',
39572   'block_callback' => '',
39573   'description' => 'Administer flood control settings for email contact forms',
39574   'position' => '',
39575   'weight' => '0',
39576   'file' => '',
39577 ))
39578 ->values(array(
39579   'path' => 'admin/settings/error-reporting',
39580   'load_functions' => '',
39581   'to_arg_functions' => '',
39582   'access_callback' => 'user_access',
39583   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39584   'page_callback' => 'drupal_get_form',
39585   'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
39586   'fit' => '7',
39587   'number_parts' => '3',
39588   'tab_parent' => '',
39589   'tab_root' => 'admin/settings/error-reporting',
39590   'title' => 'Error reporting',
39591   'title_callback' => 't',
39592   'title_arguments' => '',
39593   'type' => '6',
39594   'block_callback' => '',
39595   'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
39596   'position' => '',
39597   'weight' => '0',
39598   'file' => 'modules/system/system.admin.inc',
39599 ))
39600 ->values(array(
39601   'path' => 'admin/settings/event',
39602   'load_functions' => '',
39603   'to_arg_functions' => '',
39604   'access_callback' => 'user_access',
39605   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39606   'page_callback' => 'system_admin_menu_block_page',
39607   'page_arguments' => 'a:0:{}',
39608   'fit' => '7',
39609   'number_parts' => '3',
39610   'tab_parent' => '',
39611   'tab_root' => 'admin/settings/event',
39612   'title' => 'Events',
39613   'title_callback' => 't',
39614   'title_arguments' => '',
39615   'type' => '6',
39616   'block_callback' => '',
39617   'description' => 'Set up how your site handles events.',
39618   'position' => '',
39619   'weight' => '0',
39620   'file' => 'modules/system/system.admin.inc',
39621 ))
39622 ->values(array(
39623   'path' => 'admin/settings/event/overview',
39624   'load_functions' => '',
39625   'to_arg_functions' => '',
39626   'access_callback' => 'user_access',
39627   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39628   'page_callback' => 'drupal_get_form',
39629   'page_arguments' => 'a:1:{i:0;s:29:"event_admin_overview_settings";}',
39630   'fit' => '15',
39631   'number_parts' => '4',
39632   'tab_parent' => '',
39633   'tab_root' => 'admin/settings/event/overview',
39634   'title' => 'Event overview',
39635   'title_callback' => 't',
39636   'title_arguments' => '',
39637   'type' => '6',
39638   'block_callback' => '',
39639   'description' => 'Change how event summary information is displayed.',
39640   'position' => '',
39641   'weight' => '0',
39642   'file' => '',
39643 ))
39644 ->values(array(
39645   'path' => 'admin/settings/event/timezone',
39646   'load_functions' => '',
39647   'to_arg_functions' => '',
39648   'access_callback' => 'user_access',
39649   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39650   'page_callback' => 'drupal_get_form',
39651   'page_arguments' => 'a:1:{i:0;s:29:"event_admin_timezone_settings";}',
39652   'fit' => '15',
39653   'number_parts' => '4',
39654   'tab_parent' => '',
39655   'tab_root' => 'admin/settings/event/timezone',
39656   'title' => 'Timezone handling',
39657   'title_callback' => 't',
39658   'title_arguments' => '',
39659   'type' => '6',
39660   'block_callback' => '',
39661   'description' => 'Change how timezone information is saved and displayed.',
39662   'position' => '',
39663   'weight' => '0',
39664   'file' => '',
39665 ))
39666 ->values(array(
39667   'path' => 'admin/settings/file-system',
39668   'load_functions' => '',
39669   'to_arg_functions' => '',
39670   'access_callback' => 'user_access',
39671   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39672   'page_callback' => 'drupal_get_form',
39673   'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
39674   'fit' => '7',
39675   'number_parts' => '3',
39676   'tab_parent' => '',
39677   'tab_root' => 'admin/settings/file-system',
39678   'title' => 'File system',
39679   'title_callback' => 't',
39680   'title_arguments' => '',
39681   'type' => '6',
39682   'block_callback' => '',
39683   'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
39684   'position' => '',
39685   'weight' => '0',
39686   'file' => 'modules/system/system.admin.inc',
39687 ))
39688 ->values(array(
39689   'path' => 'admin/settings/filters',
39690   'load_functions' => '',
39691   'to_arg_functions' => '',
39692   'access_callback' => 'user_access',
39693   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39694   'page_callback' => 'drupal_get_form',
39695   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
39696   'fit' => '7',
39697   'number_parts' => '3',
39698   'tab_parent' => '',
39699   'tab_root' => 'admin/settings/filters',
39700   'title' => 'Input formats',
39701   'title_callback' => 't',
39702   'title_arguments' => '',
39703   'type' => '6',
39704   'block_callback' => '',
39705   'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
39706   'position' => '',
39707   'weight' => '0',
39708   'file' => 'modules/filter/filter.admin.inc',
39709 ))
39710 ->values(array(
39711   'path' => 'admin/settings/filters/%',
39712   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
39713   'to_arg_functions' => '',
39714   'access_callback' => 'user_access',
39715   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39716   'page_callback' => 'filter_admin_format_page',
39717   'page_arguments' => 'a:1:{i:0;i:3;}',
39718   'fit' => '14',
39719   'number_parts' => '4',
39720   'tab_parent' => '',
39721   'tab_root' => 'admin/settings/filters/%',
39722   'title' => '',
39723   'title_callback' => 'filter_admin_format_title',
39724   'title_arguments' => 'a:1:{i:0;i:3;}',
39725   'type' => '4',
39726   'block_callback' => '',
39727   'description' => '',
39728   'position' => '',
39729   'weight' => '0',
39730   'file' => 'modules/filter/filter.admin.inc',
39731 ))
39732 ->values(array(
39733   'path' => 'admin/settings/filters/%/configure',
39734   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
39735   'to_arg_functions' => '',
39736   'access_callback' => 'user_access',
39737   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39738   'page_callback' => 'filter_admin_configure_page',
39739   'page_arguments' => 'a:1:{i:0;i:3;}',
39740   'fit' => '29',
39741   'number_parts' => '5',
39742   'tab_parent' => 'admin/settings/filters/%',
39743   'tab_root' => 'admin/settings/filters/%',
39744   'title' => 'Configure',
39745   'title_callback' => 't',
39746   'title_arguments' => '',
39747   'type' => '128',
39748   'block_callback' => '',
39749   'description' => '',
39750   'position' => '',
39751   'weight' => '1',
39752   'file' => 'modules/filter/filter.admin.inc',
39753 ))
39754 ->values(array(
39755   'path' => 'admin/settings/filters/%/edit',
39756   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
39757   'to_arg_functions' => '',
39758   'access_callback' => 'user_access',
39759   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39760   'page_callback' => 'filter_admin_format_page',
39761   'page_arguments' => 'a:1:{i:0;i:3;}',
39762   'fit' => '29',
39763   'number_parts' => '5',
39764   'tab_parent' => 'admin/settings/filters/%',
39765   'tab_root' => 'admin/settings/filters/%',
39766   'title' => 'Edit',
39767   'title_callback' => 't',
39768   'title_arguments' => '',
39769   'type' => '136',
39770   'block_callback' => '',
39771   'description' => '',
39772   'position' => '',
39773   'weight' => '0',
39774   'file' => 'modules/filter/filter.admin.inc',
39775 ))
39776 ->values(array(
39777   'path' => 'admin/settings/filters/%/order',
39778   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
39779   'to_arg_functions' => '',
39780   'access_callback' => 'user_access',
39781   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39782   'page_callback' => 'filter_admin_order_page',
39783   'page_arguments' => 'a:1:{i:0;i:3;}',
39784   'fit' => '29',
39785   'number_parts' => '5',
39786   'tab_parent' => 'admin/settings/filters/%',
39787   'tab_root' => 'admin/settings/filters/%',
39788   'title' => 'Rearrange',
39789   'title_callback' => 't',
39790   'title_arguments' => '',
39791   'type' => '128',
39792   'block_callback' => '',
39793   'description' => '',
39794   'position' => '',
39795   'weight' => '2',
39796   'file' => 'modules/filter/filter.admin.inc',
39797 ))
39798 ->values(array(
39799   'path' => 'admin/settings/filters/add',
39800   'load_functions' => '',
39801   'to_arg_functions' => '',
39802   'access_callback' => 'user_access',
39803   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39804   'page_callback' => 'filter_admin_format_page',
39805   'page_arguments' => 'a:0:{}',
39806   'fit' => '15',
39807   'number_parts' => '4',
39808   'tab_parent' => 'admin/settings/filters',
39809   'tab_root' => 'admin/settings/filters',
39810   'title' => 'Add input format',
39811   'title_callback' => 't',
39812   'title_arguments' => '',
39813   'type' => '128',
39814   'block_callback' => '',
39815   'description' => '',
39816   'position' => '',
39817   'weight' => '1',
39818   'file' => 'modules/filter/filter.admin.inc',
39819 ))
39820 ->values(array(
39821   'path' => 'admin/settings/filters/delete',
39822   'load_functions' => '',
39823   'to_arg_functions' => '',
39824   'access_callback' => 'user_access',
39825   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39826   'page_callback' => 'drupal_get_form',
39827   'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
39828   'fit' => '15',
39829   'number_parts' => '4',
39830   'tab_parent' => '',
39831   'tab_root' => 'admin/settings/filters/delete',
39832   'title' => 'Delete input format',
39833   'title_callback' => 't',
39834   'title_arguments' => '',
39835   'type' => '4',
39836   'block_callback' => '',
39837   'description' => '',
39838   'position' => '',
39839   'weight' => '0',
39840   'file' => 'modules/filter/filter.admin.inc',
39841 ))
39842 ->values(array(
39843   'path' => 'admin/settings/filters/list',
39844   'load_functions' => '',
39845   'to_arg_functions' => '',
39846   'access_callback' => 'user_access',
39847   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
39848   'page_callback' => 'drupal_get_form',
39849   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
39850   'fit' => '15',
39851   'number_parts' => '4',
39852   'tab_parent' => 'admin/settings/filters',
39853   'tab_root' => 'admin/settings/filters',
39854   'title' => 'List',
39855   'title_callback' => 't',
39856   'title_arguments' => '',
39857   'type' => '136',
39858   'block_callback' => '',
39859   'description' => '',
39860   'position' => '',
39861   'weight' => '0',
39862   'file' => 'modules/filter/filter.admin.inc',
39863 ))
39864 ->values(array(
39865   'path' => 'admin/settings/image-toolkit',
39866   'load_functions' => '',
39867   'to_arg_functions' => '',
39868   'access_callback' => 'user_access',
39869   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39870   'page_callback' => 'drupal_get_form',
39871   'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
39872   'fit' => '7',
39873   'number_parts' => '3',
39874   'tab_parent' => '',
39875   'tab_root' => 'admin/settings/image-toolkit',
39876   'title' => 'Image toolkit',
39877   'title_callback' => 't',
39878   'title_arguments' => '',
39879   'type' => '6',
39880   'block_callback' => '',
39881   'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
39882   'position' => '',
39883   'weight' => '0',
39884   'file' => 'modules/system/system.admin.inc',
39885 ))
39886 ->values(array(
39887   'path' => 'admin/settings/imageapi',
39888   'load_functions' => '',
39889   'to_arg_functions' => '',
39890   'access_callback' => 'user_access',
39891   'access_arguments' => 'a:1:{i:0;s:19:"administer imageapi";}',
39892   'page_callback' => 'drupal_get_form',
39893   'page_arguments' => 'a:1:{i:0;s:17:"imageapi_settings";}',
39894   'fit' => '7',
39895   'number_parts' => '3',
39896   'tab_parent' => '',
39897   'tab_root' => 'admin/settings/imageapi',
39898   'title' => 'ImageAPI',
39899   'title_callback' => 't',
39900   'title_arguments' => '',
39901   'type' => '6',
39902   'block_callback' => '',
39903   'description' => 'Configure ImageAPI.',
39904   'position' => '',
39905   'weight' => '0',
39906   'file' => '',
39907 ))
39908 ->values(array(
39909   'path' => 'admin/settings/language',
39910   'load_functions' => '',
39911   'to_arg_functions' => '',
39912   'access_callback' => 'user_access',
39913   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
39914   'page_callback' => 'locale_inc_callback',
39915   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
39916   'fit' => '7',
39917   'number_parts' => '3',
39918   'tab_parent' => '',
39919   'tab_root' => 'admin/settings/language',
39920   'title' => 'Languages',
39921   'title_callback' => 't',
39922   'title_arguments' => '',
39923   'type' => '6',
39924   'block_callback' => '',
39925   'description' => 'Configure languages for content and the user interface.',
39926   'position' => '',
39927   'weight' => '0',
39928   'file' => '',
39929 ))
39930 ->values(array(
39931   'path' => 'admin/settings/language/add',
39932   'load_functions' => '',
39933   'to_arg_functions' => '',
39934   'access_callback' => 'user_access',
39935   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
39936   'page_callback' => 'locale_inc_callback',
39937   'page_arguments' => 'a:1:{i:0;s:27:"locale_languages_add_screen";}',
39938   'fit' => '15',
39939   'number_parts' => '4',
39940   'tab_parent' => 'admin/settings/language',
39941   'tab_root' => 'admin/settings/language',
39942   'title' => 'Add language',
39943   'title_callback' => 't',
39944   'title_arguments' => '',
39945   'type' => '128',
39946   'block_callback' => '',
39947   'description' => '',
39948   'position' => '',
39949   'weight' => '5',
39950   'file' => '',
39951 ))
39952 ->values(array(
39953   'path' => 'admin/settings/language/configure',
39954   'load_functions' => '',
39955   'to_arg_functions' => '',
39956   'access_callback' => 'user_access',
39957   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
39958   'page_callback' => 'locale_inc_callback',
39959   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
39960   'fit' => '15',
39961   'number_parts' => '4',
39962   'tab_parent' => 'admin/settings/language',
39963   'tab_root' => 'admin/settings/language',
39964   'title' => 'Configure',
39965   'title_callback' => 't',
39966   'title_arguments' => '',
39967   'type' => '128',
39968   'block_callback' => '',
39969   'description' => '',
39970   'position' => '',
39971   'weight' => '10',
39972   'file' => '',
39973 ))
39974 ->values(array(
39975   'path' => 'admin/settings/language/configure/language',
39976   'load_functions' => '',
39977   'to_arg_functions' => '',
39978   'access_callback' => 'user_access',
39979   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
39980   'page_callback' => 'locale_inc_callback',
39981   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
39982   'fit' => '31',
39983   'number_parts' => '5',
39984   'tab_parent' => 'admin/settings/language/configure',
39985   'tab_root' => 'admin/settings/language',
39986   'title' => 'Language negotiation',
39987   'title_callback' => 't',
39988   'title_arguments' => '',
39989   'type' => '136',
39990   'block_callback' => '',
39991   'description' => '',
39992   'position' => '',
39993   'weight' => '-10',
39994   'file' => '',
39995 ))
39996 ->values(array(
39997   'path' => 'admin/settings/language/configure/strings',
39998   'load_functions' => '',
39999   'to_arg_functions' => '',
40000   'access_callback' => 'user_access',
40001   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40002   'page_callback' => 'drupal_get_form',
40003   'page_arguments' => 'a:1:{i:0;s:26:"i18nstrings_admin_settings";}',
40004   'fit' => '31',
40005   'number_parts' => '5',
40006   'tab_parent' => 'admin/settings/language/configure',
40007   'tab_root' => 'admin/settings/language',
40008   'title' => 'String translation',
40009   'title_callback' => 't',
40010   'title_arguments' => '',
40011   'type' => '128',
40012   'block_callback' => '',
40013   'description' => '',
40014   'position' => '',
40015   'weight' => '20',
40016   'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
40017 ))
40018 ->values(array(
40019   'path' => 'admin/settings/language/delete/%',
40020   'load_functions' => 'a:1:{i:4;N;}',
40021   'to_arg_functions' => '',
40022   'access_callback' => 'user_access',
40023   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40024   'page_callback' => 'locale_inc_callback',
40025   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_languages_delete_form";i:2;i:4;}',
40026   'fit' => '30',
40027   'number_parts' => '5',
40028   'tab_parent' => '',
40029   'tab_root' => 'admin/settings/language/delete/%',
40030   'title' => 'Confirm',
40031   'title_callback' => 't',
40032   'title_arguments' => '',
40033   'type' => '4',
40034   'block_callback' => '',
40035   'description' => '',
40036   'position' => '',
40037   'weight' => '0',
40038   'file' => '',
40039 ))
40040 ->values(array(
40041   'path' => 'admin/settings/language/edit/%',
40042   'load_functions' => 'a:1:{i:4;N;}',
40043   'to_arg_functions' => '',
40044   'access_callback' => 'user_access',
40045   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40046   'page_callback' => 'locale_inc_callback',
40047   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_languages_edit_form";i:2;i:4;}',
40048   'fit' => '30',
40049   'number_parts' => '5',
40050   'tab_parent' => '',
40051   'tab_root' => 'admin/settings/language/edit/%',
40052   'title' => 'Edit language',
40053   'title_callback' => 't',
40054   'title_arguments' => '',
40055   'type' => '4',
40056   'block_callback' => '',
40057   'description' => '',
40058   'position' => '',
40059   'weight' => '0',
40060   'file' => '',
40061 ))
40062 ->values(array(
40063   'path' => 'admin/settings/language/i18n',
40064   'load_functions' => '',
40065   'to_arg_functions' => '',
40066   'access_callback' => 'user_access',
40067   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40068   'page_callback' => 'drupal_get_form',
40069   'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
40070   'fit' => '15',
40071   'number_parts' => '4',
40072   'tab_parent' => 'admin/settings/language',
40073   'tab_root' => 'admin/settings/language',
40074   'title' => 'Multilingual system',
40075   'title_callback' => 't',
40076   'title_arguments' => '',
40077   'type' => '128',
40078   'block_callback' => '',
40079   'description' => 'Configure extended options for multilingual content and translations.',
40080   'position' => '',
40081   'weight' => '10',
40082   'file' => 'sites/all/modules/i18n/i18n.admin.inc',
40083 ))
40084 ->values(array(
40085   'path' => 'admin/settings/language/i18n/configure',
40086   'load_functions' => '',
40087   'to_arg_functions' => '',
40088   'access_callback' => 'user_access',
40089   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40090   'page_callback' => 'drupal_get_form',
40091   'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
40092   'fit' => '31',
40093   'number_parts' => '5',
40094   'tab_parent' => 'admin/settings/language/i18n',
40095   'tab_root' => 'admin/settings/language',
40096   'title' => 'Multilingual system',
40097   'title_callback' => 't',
40098   'title_arguments' => '',
40099   'type' => '136',
40100   'block_callback' => '',
40101   'description' => 'Configure extended options for multilingual content and translations.',
40102   'position' => '',
40103   'weight' => '0',
40104   'file' => 'sites/all/modules/i18n/i18n.admin.inc',
40105 ))
40106 ->values(array(
40107   'path' => 'admin/settings/language/overview',
40108   'load_functions' => '',
40109   'to_arg_functions' => '',
40110   'access_callback' => 'user_access',
40111   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40112   'page_callback' => 'locale_inc_callback',
40113   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
40114   'fit' => '15',
40115   'number_parts' => '4',
40116   'tab_parent' => 'admin/settings/language',
40117   'tab_root' => 'admin/settings/language',
40118   'title' => 'List',
40119   'title_callback' => 't',
40120   'title_arguments' => '',
40121   'type' => '136',
40122   'block_callback' => '',
40123   'description' => '',
40124   'position' => '',
40125   'weight' => '0',
40126   'file' => '',
40127 ))
40128 ->values(array(
40129   'path' => 'admin/settings/logging',
40130   'load_functions' => '',
40131   'to_arg_functions' => '',
40132   'access_callback' => 'user_access',
40133   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40134   'page_callback' => 'system_logging_overview',
40135   'page_arguments' => 'a:0:{}',
40136   'fit' => '7',
40137   'number_parts' => '3',
40138   'tab_parent' => '',
40139   'tab_root' => 'admin/settings/logging',
40140   'title' => 'Logging and alerts',
40141   'title_callback' => 't',
40142   'title_arguments' => '',
40143   'type' => '6',
40144   'block_callback' => '',
40145   'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
40146   'position' => '',
40147   'weight' => '0',
40148   'file' => 'modules/system/system.admin.inc',
40149 ))
40150 ->values(array(
40151   'path' => 'admin/settings/performance',
40152   'load_functions' => '',
40153   'to_arg_functions' => '',
40154   'access_callback' => 'user_access',
40155   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40156   'page_callback' => 'drupal_get_form',
40157   'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
40158   'fit' => '7',
40159   'number_parts' => '3',
40160   'tab_parent' => '',
40161   'tab_root' => 'admin/settings/performance',
40162   'title' => 'Performance',
40163   'title_callback' => 't',
40164   'title_arguments' => '',
40165   'type' => '6',
40166   'block_callback' => '',
40167   'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
40168   'position' => '',
40169   'weight' => '0',
40170   'file' => 'modules/system/system.admin.inc',
40171 ))
40172 ->values(array(
40173   'path' => 'admin/settings/site-information',
40174   'load_functions' => '',
40175   'to_arg_functions' => '',
40176   'access_callback' => 'user_access',
40177   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40178   'page_callback' => 'drupal_get_form',
40179   'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
40180   'fit' => '7',
40181   'number_parts' => '3',
40182   'tab_parent' => '',
40183   'tab_root' => 'admin/settings/site-information',
40184   'title' => 'Site information',
40185   'title_callback' => 't',
40186   'title_arguments' => '',
40187   'type' => '6',
40188   'block_callback' => '',
40189   'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
40190   'position' => '',
40191   'weight' => '0',
40192   'file' => 'modules/system/system.admin.inc',
40193 ))
40194 ->values(array(
40195   'path' => 'admin/settings/site-maintenance',
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:32:"system_site_maintenance_settings";}',
40202   'fit' => '7',
40203   'number_parts' => '3',
40204   'tab_parent' => '',
40205   'tab_root' => 'admin/settings/site-maintenance',
40206   'title' => 'Site maintenance',
40207   'title_callback' => 't',
40208   'title_arguments' => '',
40209   'type' => '6',
40210   'block_callback' => '',
40211   'description' => 'Take the site off-line for maintenance or bring it back online.',
40212   'position' => '',
40213   'weight' => '0',
40214   'file' => 'modules/system/system.admin.inc',
40215 ))
40216 ->values(array(
40217   'path' => 'admin/settings/uploads',
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:21:"upload_admin_settings";}',
40224   'fit' => '7',
40225   'number_parts' => '3',
40226   'tab_parent' => '',
40227   'tab_root' => 'admin/settings/uploads',
40228   'title' => 'File uploads',
40229   'title_callback' => 't',
40230   'title_arguments' => '',
40231   'type' => '6',
40232   'block_callback' => '',
40233   'description' => 'Control how files may be attached to content.',
40234   'position' => '',
40235   'weight' => '0',
40236   'file' => 'modules/upload/upload.admin.inc',
40237 ))
40238 ->values(array(
40239   'path' => 'admin/settings/variable',
40240   'load_functions' => '',
40241   'to_arg_functions' => '',
40242   'access_callback' => 'user_access',
40243   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40244   'page_callback' => 'variable_admin_page_overview',
40245   'page_arguments' => 'a:0:{}',
40246   'fit' => '7',
40247   'number_parts' => '3',
40248   'tab_parent' => '',
40249   'tab_root' => 'admin/settings/variable',
40250   'title' => 'Variables',
40251   'title_callback' => 't',
40252   'title_arguments' => '',
40253   'type' => '6',
40254   'block_callback' => '',
40255   'description' => 'Edit and delete site variables.',
40256   'position' => '',
40257   'weight' => '0',
40258   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
40259 ))
40260 ->values(array(
40261   'path' => 'admin/settings/variable/edit/%',
40262   'load_functions' => 'a:1:{i:4;N;}',
40263   'to_arg_functions' => '',
40264   'access_callback' => 'variable_access',
40265   'access_arguments' => 'a:1:{i:0;i:4;}',
40266   'page_callback' => 'variable_admin_page_edit',
40267   'page_arguments' => 'a:1:{i:0;i:4;}',
40268   'fit' => '30',
40269   'number_parts' => '5',
40270   'tab_parent' => '',
40271   'tab_root' => 'admin/settings/variable/edit/%',
40272   'title' => 'Edit variable',
40273   'title_callback' => 't',
40274   'title_arguments' => '',
40275   'type' => '6',
40276   'block_callback' => '',
40277   'description' => '',
40278   'position' => '',
40279   'weight' => '0',
40280   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
40281 ))
40282 ->values(array(
40283   'path' => 'admin/settings/variable/group',
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' => 'variable_admin_page_overview',
40289   'page_arguments' => 'a:0:{}',
40290   'fit' => '15',
40291   'number_parts' => '4',
40292   'tab_parent' => 'admin/settings/variable',
40293   'tab_root' => 'admin/settings/variable',
40294   'title' => 'By group',
40295   'title_callback' => 't',
40296   'title_arguments' => '',
40297   'type' => '136',
40298   'block_callback' => '',
40299   'description' => 'Variables by group.',
40300   'position' => '',
40301   'weight' => '0',
40302   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
40303 ))
40304 ->values(array(
40305   'path' => 'admin/settings/variable/group/%',
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' => 'variable_admin_page_group',
40311   'page_arguments' => 'a:1:{i:0;i:4;}',
40312   'fit' => '30',
40313   'number_parts' => '5',
40314   'tab_parent' => '',
40315   'tab_root' => 'admin/settings/variable/group/%',
40316   'title' => 'Variables group',
40317   'title_callback' => 't',
40318   'title_arguments' => '',
40319   'type' => '6',
40320   'block_callback' => '',
40321   'description' => 'Edit and delete group variables.',
40322   'position' => '',
40323   'weight' => '0',
40324   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
40325 ))
40326 ->values(array(
40327   'path' => 'admin/settings/variable/modules',
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' => 'variable_admin_page_modules',
40333   'page_arguments' => 'a:0:{}',
40334   'fit' => '15',
40335   'number_parts' => '4',
40336   'tab_parent' => 'admin/settings/variable',
40337   'tab_root' => 'admin/settings/variable',
40338   'title' => 'By module',
40339   'title_callback' => 't',
40340   'title_arguments' => '',
40341   'type' => '128',
40342   'block_callback' => '',
40343   'description' => 'Variables by module.',
40344   'position' => '',
40345   'weight' => '0',
40346   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
40347 ))
40348 ->values(array(
40349   'path' => 'admin/settings/variable/undefined',
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' => 'variable_admin_page_undefined',
40355   'page_arguments' => 'a:0:{}',
40356   'fit' => '15',
40357   'number_parts' => '4',
40358   'tab_parent' => 'admin/settings/variable',
40359   'tab_root' => 'admin/settings/variable',
40360   'title' => 'Undefined',
40361   'title_callback' => 't',
40362   'title_arguments' => '',
40363   'type' => '128',
40364   'block_callback' => '',
40365   'description' => 'Unknown variables.',
40366   'position' => '',
40367   'weight' => '0',
40368   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
40369 ))
40370 ->values(array(
40371   'path' => 'admin/user',
40372   'load_functions' => '',
40373   'to_arg_functions' => '',
40374   'access_callback' => 'user_access',
40375   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
40376   'page_callback' => 'system_admin_menu_block_page',
40377   'page_arguments' => 'a:0:{}',
40378   'fit' => '3',
40379   'number_parts' => '2',
40380   'tab_parent' => '',
40381   'tab_root' => 'admin/user',
40382   'title' => 'User management',
40383   'title_callback' => 't',
40384   'title_arguments' => '',
40385   'type' => '6',
40386   'block_callback' => '',
40387   'description' => "Manage your site's users, groups and access to site features.",
40388   'position' => 'left',
40389   'weight' => '0',
40390   'file' => 'modules/system/system.admin.inc',
40391 ))
40392 ->values(array(
40393   'path' => 'admin/user/permissions',
40394   'load_functions' => '',
40395   'to_arg_functions' => '',
40396   'access_callback' => 'user_access',
40397   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40398   'page_callback' => 'drupal_get_form',
40399   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
40400   'fit' => '7',
40401   'number_parts' => '3',
40402   'tab_parent' => '',
40403   'tab_root' => 'admin/user/permissions',
40404   'title' => 'Permissions',
40405   'title_callback' => 't',
40406   'title_arguments' => '',
40407   'type' => '6',
40408   'block_callback' => '',
40409   'description' => 'Determine access to features by selecting permissions for roles.',
40410   'position' => '',
40411   'weight' => '0',
40412   'file' => 'modules/user/user.admin.inc',
40413 ))
40414 ->values(array(
40415   'path' => 'admin/user/profile',
40416   'load_functions' => '',
40417   'to_arg_functions' => '',
40418   'access_callback' => 'user_access',
40419   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40420   'page_callback' => 'drupal_get_form',
40421   'page_arguments' => 'a:1:{i:0;s:22:"profile_admin_overview";}',
40422   'fit' => '7',
40423   'number_parts' => '3',
40424   'tab_parent' => '',
40425   'tab_root' => 'admin/user/profile',
40426   'title' => 'Profiles',
40427   'title_callback' => 't',
40428   'title_arguments' => '',
40429   'type' => '6',
40430   'block_callback' => '',
40431   'description' => 'Create customizable fields for your users.',
40432   'position' => '',
40433   'weight' => '0',
40434   'file' => 'modules/profile/profile.admin.inc',
40435 ))
40436 ->values(array(
40437   'path' => 'admin/user/profile/add',
40438   'load_functions' => '',
40439   'to_arg_functions' => '',
40440   'access_callback' => 'user_access',
40441   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40442   'page_callback' => 'drupal_get_form',
40443   'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
40444   'fit' => '15',
40445   'number_parts' => '4',
40446   'tab_parent' => '',
40447   'tab_root' => 'admin/user/profile/add',
40448   'title' => 'Add field',
40449   'title_callback' => 't',
40450   'title_arguments' => '',
40451   'type' => '4',
40452   'block_callback' => '',
40453   'description' => '',
40454   'position' => '',
40455   'weight' => '0',
40456   'file' => 'modules/profile/profile.admin.inc',
40457 ))
40458 ->values(array(
40459   'path' => 'admin/user/profile/autocomplete',
40460   'load_functions' => '',
40461   'to_arg_functions' => '',
40462   'access_callback' => 'user_access',
40463   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40464   'page_callback' => 'profile_admin_settings_autocomplete',
40465   'page_arguments' => 'a:0:{}',
40466   'fit' => '15',
40467   'number_parts' => '4',
40468   'tab_parent' => '',
40469   'tab_root' => 'admin/user/profile/autocomplete',
40470   'title' => 'Profile category autocomplete',
40471   'title_callback' => 't',
40472   'title_arguments' => '',
40473   'type' => '4',
40474   'block_callback' => '',
40475   'description' => '',
40476   'position' => '',
40477   'weight' => '0',
40478   'file' => 'modules/profile/profile.admin.inc',
40479 ))
40480 ->values(array(
40481   'path' => 'admin/user/profile/delete',
40482   'load_functions' => '',
40483   'to_arg_functions' => '',
40484   'access_callback' => 'user_access',
40485   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40486   'page_callback' => 'drupal_get_form',
40487   'page_arguments' => 'a:1:{i:0;s:20:"profile_field_delete";}',
40488   'fit' => '15',
40489   'number_parts' => '4',
40490   'tab_parent' => '',
40491   'tab_root' => 'admin/user/profile/delete',
40492   'title' => 'Delete field',
40493   'title_callback' => 't',
40494   'title_arguments' => '',
40495   'type' => '4',
40496   'block_callback' => '',
40497   'description' => '',
40498   'position' => '',
40499   'weight' => '0',
40500   'file' => 'modules/profile/profile.admin.inc',
40501 ))
40502 ->values(array(
40503   'path' => 'admin/user/profile/edit',
40504   'load_functions' => '',
40505   'to_arg_functions' => '',
40506   'access_callback' => 'user_access',
40507   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40508   'page_callback' => 'drupal_get_form',
40509   'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
40510   'fit' => '15',
40511   'number_parts' => '4',
40512   'tab_parent' => '',
40513   'tab_root' => 'admin/user/profile/edit',
40514   'title' => 'Edit field',
40515   'title_callback' => 't',
40516   'title_arguments' => '',
40517   'type' => '4',
40518   'block_callback' => '',
40519   'description' => '',
40520   'position' => '',
40521   'weight' => '0',
40522   'file' => 'modules/profile/profile.admin.inc',
40523 ))
40524 ->values(array(
40525   'path' => 'admin/user/roles',
40526   'load_functions' => '',
40527   'to_arg_functions' => '',
40528   'access_callback' => 'user_access',
40529   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40530   'page_callback' => 'drupal_get_form',
40531   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
40532   'fit' => '7',
40533   'number_parts' => '3',
40534   'tab_parent' => '',
40535   'tab_root' => 'admin/user/roles',
40536   'title' => 'Roles',
40537   'title_callback' => 't',
40538   'title_arguments' => '',
40539   'type' => '6',
40540   'block_callback' => '',
40541   'description' => 'List, edit, or add user roles.',
40542   'position' => '',
40543   'weight' => '0',
40544   'file' => 'modules/user/user.admin.inc',
40545 ))
40546 ->values(array(
40547   'path' => 'admin/user/roles/edit',
40548   'load_functions' => '',
40549   'to_arg_functions' => '',
40550   'access_callback' => 'user_access',
40551   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40552   'page_callback' => 'drupal_get_form',
40553   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
40554   'fit' => '15',
40555   'number_parts' => '4',
40556   'tab_parent' => '',
40557   'tab_root' => 'admin/user/roles/edit',
40558   'title' => 'Edit role',
40559   'title_callback' => 't',
40560   'title_arguments' => '',
40561   'type' => '4',
40562   'block_callback' => '',
40563   'description' => '',
40564   'position' => '',
40565   'weight' => '0',
40566   'file' => 'modules/user/user.admin.inc',
40567 ))
40568 ->values(array(
40569   'path' => 'admin/user/rules',
40570   'load_functions' => '',
40571   'to_arg_functions' => '',
40572   'access_callback' => 'user_access',
40573   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40574   'page_callback' => 'user_admin_access',
40575   'page_arguments' => 'a:0:{}',
40576   'fit' => '7',
40577   'number_parts' => '3',
40578   'tab_parent' => '',
40579   'tab_root' => 'admin/user/rules',
40580   'title' => 'Access rules',
40581   'title_callback' => 't',
40582   'title_arguments' => '',
40583   'type' => '6',
40584   'block_callback' => '',
40585   'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
40586   'position' => '',
40587   'weight' => '0',
40588   'file' => 'modules/user/user.admin.inc',
40589 ))
40590 ->values(array(
40591   'path' => 'admin/user/rules/add',
40592   'load_functions' => '',
40593   'to_arg_functions' => '',
40594   'access_callback' => 'user_access',
40595   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40596   'page_callback' => 'user_admin_access_add',
40597   'page_arguments' => 'a:0:{}',
40598   'fit' => '15',
40599   'number_parts' => '4',
40600   'tab_parent' => 'admin/user/rules',
40601   'tab_root' => 'admin/user/rules',
40602   'title' => 'Add rule',
40603   'title_callback' => 't',
40604   'title_arguments' => '',
40605   'type' => '128',
40606   'block_callback' => '',
40607   'description' => '',
40608   'position' => '',
40609   'weight' => '0',
40610   'file' => 'modules/user/user.admin.inc',
40611 ))
40612 ->values(array(
40613   'path' => 'admin/user/rules/check',
40614   'load_functions' => '',
40615   'to_arg_functions' => '',
40616   'access_callback' => 'user_access',
40617   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40618   'page_callback' => 'user_admin_access_check',
40619   'page_arguments' => 'a:0:{}',
40620   'fit' => '15',
40621   'number_parts' => '4',
40622   'tab_parent' => 'admin/user/rules',
40623   'tab_root' => 'admin/user/rules',
40624   'title' => 'Check rules',
40625   'title_callback' => 't',
40626   'title_arguments' => '',
40627   'type' => '128',
40628   'block_callback' => '',
40629   'description' => '',
40630   'position' => '',
40631   'weight' => '0',
40632   'file' => 'modules/user/user.admin.inc',
40633 ))
40634 ->values(array(
40635   'path' => 'admin/user/rules/delete',
40636   'load_functions' => '',
40637   'to_arg_functions' => '',
40638   'access_callback' => 'user_access',
40639   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40640   'page_callback' => 'drupal_get_form',
40641   'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
40642   'fit' => '15',
40643   'number_parts' => '4',
40644   'tab_parent' => '',
40645   'tab_root' => 'admin/user/rules/delete',
40646   'title' => 'Delete rule',
40647   'title_callback' => 't',
40648   'title_arguments' => '',
40649   'type' => '4',
40650   'block_callback' => '',
40651   'description' => '',
40652   'position' => '',
40653   'weight' => '0',
40654   'file' => 'modules/user/user.admin.inc',
40655 ))
40656 ->values(array(
40657   'path' => 'admin/user/rules/edit',
40658   'load_functions' => '',
40659   'to_arg_functions' => '',
40660   'access_callback' => 'user_access',
40661   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40662   'page_callback' => 'user_admin_access_edit',
40663   'page_arguments' => 'a:0:{}',
40664   'fit' => '15',
40665   'number_parts' => '4',
40666   'tab_parent' => '',
40667   'tab_root' => 'admin/user/rules/edit',
40668   'title' => 'Edit rule',
40669   'title_callback' => 't',
40670   'title_arguments' => '',
40671   'type' => '4',
40672   'block_callback' => '',
40673   'description' => '',
40674   'position' => '',
40675   'weight' => '0',
40676   'file' => 'modules/user/user.admin.inc',
40677 ))
40678 ->values(array(
40679   'path' => 'admin/user/rules/list',
40680   'load_functions' => '',
40681   'to_arg_functions' => '',
40682   'access_callback' => 'user_access',
40683   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
40684   'page_callback' => 'user_admin_access',
40685   'page_arguments' => 'a:0:{}',
40686   'fit' => '15',
40687   'number_parts' => '4',
40688   'tab_parent' => 'admin/user/rules',
40689   'tab_root' => 'admin/user/rules',
40690   'title' => 'List',
40691   'title_callback' => 't',
40692   'title_arguments' => '',
40693   'type' => '136',
40694   'block_callback' => '',
40695   'description' => '',
40696   'position' => '',
40697   'weight' => '-10',
40698   'file' => 'modules/user/user.admin.inc',
40699 ))
40700 ->values(array(
40701   'path' => 'admin/user/settings',
40702   'load_functions' => '',
40703   'to_arg_functions' => '',
40704   'access_callback' => 'user_access',
40705   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40706   'page_callback' => 'drupal_get_form',
40707   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
40708   'fit' => '7',
40709   'number_parts' => '3',
40710   'tab_parent' => '',
40711   'tab_root' => 'admin/user/settings',
40712   'title' => 'User settings',
40713   'title_callback' => 't',
40714   'title_arguments' => '',
40715   'type' => '6',
40716   'block_callback' => '',
40717   'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
40718   'position' => '',
40719   'weight' => '0',
40720   'file' => 'modules/user/user.admin.inc',
40721 ))
40722 ->values(array(
40723   'path' => 'admin/user/user',
40724   'load_functions' => '',
40725   'to_arg_functions' => '',
40726   'access_callback' => 'user_access',
40727   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40728   'page_callback' => 'user_admin',
40729   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
40730   'fit' => '7',
40731   'number_parts' => '3',
40732   'tab_parent' => '',
40733   'tab_root' => 'admin/user/user',
40734   'title' => 'Users',
40735   'title_callback' => 't',
40736   'title_arguments' => '',
40737   'type' => '6',
40738   'block_callback' => '',
40739   'description' => 'List, add, and edit users.',
40740   'position' => '',
40741   'weight' => '0',
40742   'file' => 'modules/user/user.admin.inc',
40743 ))
40744 ->values(array(
40745   'path' => 'admin/user/user/create',
40746   'load_functions' => '',
40747   'to_arg_functions' => '',
40748   'access_callback' => 'user_access',
40749   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40750   'page_callback' => 'user_admin',
40751   'page_arguments' => 'a:1:{i:0;s:6:"create";}',
40752   'fit' => '15',
40753   'number_parts' => '4',
40754   'tab_parent' => 'admin/user/user',
40755   'tab_root' => 'admin/user/user',
40756   'title' => 'Add user',
40757   'title_callback' => 't',
40758   'title_arguments' => '',
40759   'type' => '128',
40760   'block_callback' => '',
40761   'description' => '',
40762   'position' => '',
40763   'weight' => '0',
40764   'file' => 'modules/user/user.admin.inc',
40765 ))
40766 ->values(array(
40767   'path' => 'admin/user/user/list',
40768   'load_functions' => '',
40769   'to_arg_functions' => '',
40770   'access_callback' => 'user_access',
40771   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
40772   'page_callback' => 'user_admin',
40773   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
40774   'fit' => '15',
40775   'number_parts' => '4',
40776   'tab_parent' => 'admin/user/user',
40777   'tab_root' => 'admin/user/user',
40778   'title' => 'List',
40779   'title_callback' => 't',
40780   'title_arguments' => '',
40781   'type' => '136',
40782   'block_callback' => '',
40783   'description' => '',
40784   'position' => '',
40785   'weight' => '-10',
40786   'file' => 'modules/user/user.admin.inc',
40787 ))
40788 ->values(array(
40789   'path' => 'aggregator',
40790   'load_functions' => '',
40791   'to_arg_functions' => '',
40792   'access_callback' => 'user_access',
40793   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
40794   'page_callback' => 'aggregator_page_last',
40795   'page_arguments' => 'a:0:{}',
40796   'fit' => '1',
40797   'number_parts' => '1',
40798   'tab_parent' => '',
40799   'tab_root' => 'aggregator',
40800   'title' => 'Feed aggregator',
40801   'title_callback' => 't',
40802   'title_arguments' => '',
40803   'type' => '6',
40804   'block_callback' => '',
40805   'description' => '',
40806   'position' => '',
40807   'weight' => '5',
40808   'file' => 'modules/aggregator/aggregator.pages.inc',
40809 ))
40810 ->values(array(
40811   'path' => 'aggregator/categories',
40812   'load_functions' => '',
40813   'to_arg_functions' => '',
40814   'access_callback' => '_aggregator_has_categories',
40815   'access_arguments' => 'a:0:{}',
40816   'page_callback' => 'aggregator_page_categories',
40817   'page_arguments' => 'a:0:{}',
40818   'fit' => '3',
40819   'number_parts' => '2',
40820   'tab_parent' => '',
40821   'tab_root' => 'aggregator/categories',
40822   'title' => 'Categories',
40823   'title_callback' => 't',
40824   'title_arguments' => '',
40825   'type' => '6',
40826   'block_callback' => '',
40827   'description' => '',
40828   'position' => '',
40829   'weight' => '0',
40830   'file' => 'modules/aggregator/aggregator.pages.inc',
40831 ))
40832 ->values(array(
40833   'path' => 'aggregator/categories/%',
40834   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
40835   'to_arg_functions' => '',
40836   'access_callback' => 'user_access',
40837   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
40838   'page_callback' => 'aggregator_page_category',
40839   'page_arguments' => 'a:1:{i:0;i:2;}',
40840   'fit' => '6',
40841   'number_parts' => '3',
40842   'tab_parent' => '',
40843   'tab_root' => 'aggregator/categories/%',
40844   'title' => '',
40845   'title_callback' => '_aggregator_category_title',
40846   'title_arguments' => 'a:1:{i:0;i:2;}',
40847   'type' => '6',
40848   'block_callback' => '',
40849   'description' => '',
40850   'position' => '',
40851   'weight' => '0',
40852   'file' => 'modules/aggregator/aggregator.pages.inc',
40853 ))
40854 ->values(array(
40855   'path' => 'aggregator/categories/%/categorize',
40856   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
40857   'to_arg_functions' => '',
40858   'access_callback' => 'user_access',
40859   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
40860   'page_callback' => 'drupal_get_form',
40861   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_page_category";i:1;i:2;}',
40862   'fit' => '13',
40863   'number_parts' => '4',
40864   'tab_parent' => 'aggregator/categories/%',
40865   'tab_root' => 'aggregator/categories/%',
40866   'title' => 'Categorize',
40867   'title_callback' => 't',
40868   'title_arguments' => '',
40869   'type' => '128',
40870   'block_callback' => '',
40871   'description' => '',
40872   'position' => '',
40873   'weight' => '0',
40874   'file' => 'modules/aggregator/aggregator.pages.inc',
40875 ))
40876 ->values(array(
40877   'path' => 'aggregator/categories/%/configure',
40878   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
40879   'to_arg_functions' => '',
40880   'access_callback' => 'user_access',
40881   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
40882   'page_callback' => 'drupal_get_form',
40883   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}',
40884   'fit' => '13',
40885   'number_parts' => '4',
40886   'tab_parent' => 'aggregator/categories/%',
40887   'tab_root' => 'aggregator/categories/%',
40888   'title' => 'Configure',
40889   'title_callback' => 't',
40890   'title_arguments' => '',
40891   'type' => '128',
40892   'block_callback' => '',
40893   'description' => '',
40894   'position' => '',
40895   'weight' => '1',
40896   'file' => 'modules/aggregator/aggregator.admin.inc',
40897 ))
40898 ->values(array(
40899   'path' => 'aggregator/categories/%/view',
40900   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
40901   'to_arg_functions' => '',
40902   'access_callback' => 'user_access',
40903   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
40904   'page_callback' => 'aggregator_page_category',
40905   'page_arguments' => 'a:1:{i:0;i:2;}',
40906   'fit' => '13',
40907   'number_parts' => '4',
40908   'tab_parent' => 'aggregator/categories/%',
40909   'tab_root' => 'aggregator/categories/%',
40910   'title' => 'View',
40911   'title_callback' => 't',
40912   'title_arguments' => '',
40913   'type' => '136',
40914   'block_callback' => '',
40915   'description' => '',
40916   'position' => '',
40917   'weight' => '-10',
40918   'file' => 'modules/aggregator/aggregator.pages.inc',
40919 ))
40920 ->values(array(
40921   'path' => 'aggregator/opml',
40922   'load_functions' => '',
40923   'to_arg_functions' => '',
40924   'access_callback' => 'user_access',
40925   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
40926   'page_callback' => 'aggregator_page_opml',
40927   'page_arguments' => 'a:0:{}',
40928   'fit' => '3',
40929   'number_parts' => '2',
40930   'tab_parent' => '',
40931   'tab_root' => 'aggregator/opml',
40932   'title' => 'OPML feed',
40933   'title_callback' => 't',
40934   'title_arguments' => '',
40935   'type' => '4',
40936   'block_callback' => '',
40937   'description' => '',
40938   'position' => '',
40939   'weight' => '0',
40940   'file' => 'modules/aggregator/aggregator.pages.inc',
40941 ))
40942 ->values(array(
40943   'path' => 'aggregator/rss',
40944   'load_functions' => '',
40945   'to_arg_functions' => '',
40946   'access_callback' => 'user_access',
40947   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
40948   'page_callback' => 'aggregator_page_rss',
40949   'page_arguments' => 'a:0:{}',
40950   'fit' => '3',
40951   'number_parts' => '2',
40952   'tab_parent' => '',
40953   'tab_root' => 'aggregator/rss',
40954   'title' => 'RSS feed',
40955   'title_callback' => 't',
40956   'title_arguments' => '',
40957   'type' => '4',
40958   'block_callback' => '',
40959   'description' => '',
40960   'position' => '',
40961   'weight' => '0',
40962   'file' => 'modules/aggregator/aggregator.pages.inc',
40963 ))
40964 ->values(array(
40965   'path' => 'aggregator/sources',
40966   'load_functions' => '',
40967   'to_arg_functions' => '',
40968   'access_callback' => 'user_access',
40969   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
40970   'page_callback' => 'aggregator_page_sources',
40971   'page_arguments' => 'a:0:{}',
40972   'fit' => '3',
40973   'number_parts' => '2',
40974   'tab_parent' => '',
40975   'tab_root' => 'aggregator/sources',
40976   'title' => 'Sources',
40977   'title_callback' => 't',
40978   'title_arguments' => '',
40979   'type' => '6',
40980   'block_callback' => '',
40981   'description' => '',
40982   'position' => '',
40983   'weight' => '0',
40984   'file' => 'modules/aggregator/aggregator.pages.inc',
40985 ))
40986 ->values(array(
40987   'path' => 'aggregator/sources/%',
40988   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
40989   'to_arg_functions' => '',
40990   'access_callback' => 'user_access',
40991   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
40992   'page_callback' => 'aggregator_page_source',
40993   'page_arguments' => 'a:1:{i:0;i:2;}',
40994   'fit' => '6',
40995   'number_parts' => '3',
40996   'tab_parent' => '',
40997   'tab_root' => 'aggregator/sources/%',
40998   'title' => '',
40999   'title_callback' => 't',
41000   'title_arguments' => '',
41001   'type' => '4',
41002   'block_callback' => '',
41003   'description' => '',
41004   'position' => '',
41005   'weight' => '0',
41006   'file' => 'modules/aggregator/aggregator.pages.inc',
41007 ))
41008 ->values(array(
41009   'path' => 'aggregator/sources/%/categorize',
41010   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41011   'to_arg_functions' => '',
41012   'access_callback' => 'user_access',
41013   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41014   'page_callback' => 'drupal_get_form',
41015   'page_arguments' => 'a:2:{i:0;s:22:"aggregator_page_source";i:1;i:2;}',
41016   'fit' => '13',
41017   'number_parts' => '4',
41018   'tab_parent' => 'aggregator/sources/%',
41019   'tab_root' => 'aggregator/sources/%',
41020   'title' => 'Categorize',
41021   'title_callback' => 't',
41022   'title_arguments' => '',
41023   'type' => '128',
41024   'block_callback' => '',
41025   'description' => '',
41026   'position' => '',
41027   'weight' => '0',
41028   'file' => 'modules/aggregator/aggregator.pages.inc',
41029 ))
41030 ->values(array(
41031   'path' => 'aggregator/sources/%/configure',
41032   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41033   'to_arg_functions' => '',
41034   'access_callback' => 'user_access',
41035   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41036   'page_callback' => 'drupal_get_form',
41037   'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}',
41038   'fit' => '13',
41039   'number_parts' => '4',
41040   'tab_parent' => 'aggregator/sources/%',
41041   'tab_root' => 'aggregator/sources/%',
41042   'title' => 'Configure',
41043   'title_callback' => 't',
41044   'title_arguments' => '',
41045   'type' => '128',
41046   'block_callback' => '',
41047   'description' => '',
41048   'position' => '',
41049   'weight' => '1',
41050   'file' => 'modules/aggregator/aggregator.admin.inc',
41051 ))
41052 ->values(array(
41053   'path' => 'aggregator/sources/%/view',
41054   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41055   'to_arg_functions' => '',
41056   'access_callback' => 'user_access',
41057   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41058   'page_callback' => 'aggregator_page_source',
41059   'page_arguments' => 'a:1:{i:0;i:2;}',
41060   'fit' => '13',
41061   'number_parts' => '4',
41062   'tab_parent' => 'aggregator/sources/%',
41063   'tab_root' => 'aggregator/sources/%',
41064   'title' => 'View',
41065   'title_callback' => 't',
41066   'title_arguments' => '',
41067   'type' => '136',
41068   'block_callback' => '',
41069   'description' => '',
41070   'position' => '',
41071   'weight' => '-10',
41072   'file' => 'modules/aggregator/aggregator.pages.inc',
41073 ))
41074 ->values(array(
41075   'path' => 'batch',
41076   'load_functions' => '',
41077   'to_arg_functions' => '',
41078   'access_callback' => '1',
41079   'access_arguments' => 'a:0:{}',
41080   'page_callback' => 'system_batch_page',
41081   'page_arguments' => 'a:0:{}',
41082   'fit' => '1',
41083   'number_parts' => '1',
41084   'tab_parent' => '',
41085   'tab_root' => 'batch',
41086   'title' => '',
41087   'title_callback' => 't',
41088   'title_arguments' => '',
41089   'type' => '4',
41090   'block_callback' => '',
41091   'description' => '',
41092   'position' => '',
41093   'weight' => '0',
41094   'file' => 'modules/system/system.admin.inc',
41095 ))
41096 ->values(array(
41097   'path' => 'book',
41098   'load_functions' => '',
41099   'to_arg_functions' => '',
41100   'access_callback' => 'user_access',
41101   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41102   'page_callback' => 'book_render',
41103   'page_arguments' => 'a:0:{}',
41104   'fit' => '1',
41105   'number_parts' => '1',
41106   'tab_parent' => '',
41107   'tab_root' => 'book',
41108   'title' => 'Books',
41109   'title_callback' => 't',
41110   'title_arguments' => '',
41111   'type' => '20',
41112   'block_callback' => '',
41113   'description' => '',
41114   'position' => '',
41115   'weight' => '0',
41116   'file' => 'modules/book/book.pages.inc',
41117 ))
41118 ->values(array(
41119   'path' => 'book/export/%/%',
41120   'load_functions' => 'a:2:{i:2;N;i:3;N;}',
41121   'to_arg_functions' => '',
41122   'access_callback' => 'user_access',
41123   'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}',
41124   'page_callback' => 'book_export',
41125   'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
41126   'fit' => '12',
41127   'number_parts' => '4',
41128   'tab_parent' => '',
41129   'tab_root' => 'book/export/%/%',
41130   'title' => '',
41131   'title_callback' => 't',
41132   'title_arguments' => '',
41133   'type' => '4',
41134   'block_callback' => '',
41135   'description' => '',
41136   'position' => '',
41137   'weight' => '0',
41138   'file' => 'modules/book/book.pages.inc',
41139 ))
41140 ->values(array(
41141   'path' => 'book/js/form',
41142   'load_functions' => '',
41143   'to_arg_functions' => '',
41144   'access_callback' => 'user_access',
41145   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41146   'page_callback' => 'book_form_update',
41147   'page_arguments' => 'a:0:{}',
41148   'fit' => '7',
41149   'number_parts' => '3',
41150   'tab_parent' => '',
41151   'tab_root' => 'book/js/form',
41152   'title' => '',
41153   'title_callback' => 't',
41154   'title_arguments' => '',
41155   'type' => '4',
41156   'block_callback' => '',
41157   'description' => '',
41158   'position' => '',
41159   'weight' => '0',
41160   'file' => 'modules/book/book.pages.inc',
41161 ))
41162 ->values(array(
41163   'path' => 'comment/delete',
41164   'load_functions' => '',
41165   'to_arg_functions' => '',
41166   'access_callback' => 'user_access',
41167   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
41168   'page_callback' => 'comment_delete',
41169   'page_arguments' => 'a:0:{}',
41170   'fit' => '3',
41171   'number_parts' => '2',
41172   'tab_parent' => '',
41173   'tab_root' => 'comment/delete',
41174   'title' => 'Delete comment',
41175   'title_callback' => 't',
41176   'title_arguments' => '',
41177   'type' => '4',
41178   'block_callback' => '',
41179   'description' => '',
41180   'position' => '',
41181   'weight' => '0',
41182   'file' => 'modules/comment/comment.admin.inc',
41183 ))
41184 ->values(array(
41185   'path' => 'comment/edit',
41186   'load_functions' => '',
41187   'to_arg_functions' => '',
41188   'access_callback' => 'user_access',
41189   'access_arguments' => 'a:1:{i:0;s:13:"post comments";}',
41190   'page_callback' => 'comment_edit',
41191   'page_arguments' => 'a:0:{}',
41192   'fit' => '3',
41193   'number_parts' => '2',
41194   'tab_parent' => '',
41195   'tab_root' => 'comment/edit',
41196   'title' => 'Edit comment',
41197   'title_callback' => 't',
41198   'title_arguments' => '',
41199   'type' => '4',
41200   'block_callback' => '',
41201   'description' => '',
41202   'position' => '',
41203   'weight' => '0',
41204   'file' => 'modules/comment/comment.pages.inc',
41205 ))
41206 ->values(array(
41207   'path' => 'comment/reply/%',
41208   'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
41209   'to_arg_functions' => '',
41210   'access_callback' => 'node_access',
41211   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
41212   'page_callback' => 'comment_reply',
41213   'page_arguments' => 'a:1:{i:0;i:2;}',
41214   'fit' => '6',
41215   'number_parts' => '3',
41216   'tab_parent' => '',
41217   'tab_root' => 'comment/reply/%',
41218   'title' => 'Reply to comment',
41219   'title_callback' => 't',
41220   'title_arguments' => '',
41221   'type' => '4',
41222   'block_callback' => '',
41223   'description' => '',
41224   'position' => '',
41225   'weight' => '0',
41226   'file' => 'modules/comment/comment.pages.inc',
41227 ))
41228 ->values(array(
41229   'path' => 'contact',
41230   'load_functions' => '',
41231   'to_arg_functions' => '',
41232   'access_callback' => 'user_access',
41233   'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}',
41234   'page_callback' => 'contact_site_page',
41235   'page_arguments' => 'a:0:{}',
41236   'fit' => '1',
41237   'number_parts' => '1',
41238   'tab_parent' => '',
41239   'tab_root' => 'contact',
41240   'title' => 'Contact',
41241   'title_callback' => 't',
41242   'title_arguments' => '',
41243   'type' => '20',
41244   'block_callback' => '',
41245   'description' => '',
41246   'position' => '',
41247   'weight' => '0',
41248   'file' => 'modules/contact/contact.pages.inc',
41249 ))
41250 ->values(array(
41251   'path' => 'content/js_add_more',
41252   'load_functions' => '',
41253   'to_arg_functions' => '',
41254   'access_callback' => 'user_access',
41255   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41256   'page_callback' => 'content_add_more_js',
41257   'page_arguments' => 'a:0:{}',
41258   'fit' => '3',
41259   'number_parts' => '2',
41260   'tab_parent' => '',
41261   'tab_root' => 'content/js_add_more',
41262   'title' => '',
41263   'title_callback' => 't',
41264   'title_arguments' => '',
41265   'type' => '4',
41266   'block_callback' => '',
41267   'description' => '',
41268   'position' => '',
41269   'weight' => '0',
41270   'file' => 'sites/all/modules/cck/includes/content.node_form.inc',
41271 ))
41272 ->values(array(
41273   'path' => 'core/modules/simpletest/files/imagecache',
41274   'load_functions' => '',
41275   'to_arg_functions' => '',
41276   'access_callback' => '_imagecache_menu_access_public_files',
41277   'access_arguments' => 'a:0:{}',
41278   'page_callback' => 'imagecache_cache',
41279   'page_arguments' => 'a:0:{}',
41280   'fit' => '31',
41281   'number_parts' => '5',
41282   'tab_parent' => '',
41283   'tab_root' => 'core/modules/simpletest/files/imagecache',
41284   'title' => '',
41285   'title_callback' => 't',
41286   'title_arguments' => '',
41287   'type' => '4',
41288   'block_callback' => '',
41289   'description' => '',
41290   'position' => '',
41291   'weight' => '0',
41292   'file' => '',
41293 ))
41294 ->values(array(
41295   'path' => 'email/%/%',
41296   'load_functions' => 'a:2:{i:1;s:9:"node_load";i:2;N;}',
41297   'to_arg_functions' => '',
41298   'access_callback' => 'node_access',
41299   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
41300   'page_callback' => 'email_mail_page',
41301   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:2;}',
41302   'fit' => '4',
41303   'number_parts' => '3',
41304   'tab_parent' => '',
41305   'tab_root' => 'email/%/%',
41306   'title' => 'Email Contact Form',
41307   'title_callback' => 't',
41308   'title_arguments' => '',
41309   'type' => '4',
41310   'block_callback' => '',
41311   'description' => '',
41312   'position' => '',
41313   'weight' => '0',
41314   'file' => '',
41315 ))
41316 ->values(array(
41317   'path' => 'event',
41318   'load_functions' => '',
41319   'to_arg_functions' => '',
41320   'access_callback' => 'user_access',
41321   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41322   'page_callback' => 'event_page',
41323   'page_arguments' => 'a:0:{}',
41324   'fit' => '1',
41325   'number_parts' => '1',
41326   'tab_parent' => '',
41327   'tab_root' => 'event',
41328   'title' => 'Events',
41329   'title_callback' => 't',
41330   'title_arguments' => '',
41331   'type' => '20',
41332   'block_callback' => '',
41333   'description' => '',
41334   'position' => '',
41335   'weight' => '0',
41336   'file' => 'sites/all/modules/event/ical.inc',
41337 ))
41338 ->values(array(
41339   'path' => 'event/dst',
41340   'load_functions' => '',
41341   'to_arg_functions' => '',
41342   'access_callback' => 'user_access',
41343   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41344   'page_callback' => 'event_dst',
41345   'page_arguments' => 'a:0:{}',
41346   'fit' => '3',
41347   'number_parts' => '2',
41348   'tab_parent' => '',
41349   'tab_root' => 'event/dst',
41350   'title' => 'Event dst view',
41351   'title_callback' => 't',
41352   'title_arguments' => '',
41353   'type' => '4',
41354   'block_callback' => '',
41355   'description' => '',
41356   'position' => '',
41357   'weight' => '0',
41358   'file' => '',
41359 ))
41360 ->values(array(
41361   'path' => 'event/feed',
41362   'load_functions' => '',
41363   'to_arg_functions' => '',
41364   'access_callback' => 'user_access',
41365   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41366   'page_callback' => 'event_feed',
41367   'page_arguments' => 'a:0:{}',
41368   'fit' => '3',
41369   'number_parts' => '2',
41370   'tab_parent' => '',
41371   'tab_root' => 'event/feed',
41372   'title' => 'Event rss feed',
41373   'title_callback' => 't',
41374   'title_arguments' => '',
41375   'type' => '4',
41376   'block_callback' => '',
41377   'description' => '',
41378   'position' => '',
41379   'weight' => '0',
41380   'file' => '',
41381 ))
41382 ->values(array(
41383   'path' => 'event/ical',
41384   'load_functions' => '',
41385   'to_arg_functions' => '',
41386   'access_callback' => 'user_access',
41387   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41388   'page_callback' => 'event_ical',
41389   'page_arguments' => 'a:0:{}',
41390   'fit' => '3',
41391   'number_parts' => '2',
41392   'tab_parent' => '',
41393   'tab_root' => 'event/ical',
41394   'title' => 'Event ical feed',
41395   'title_callback' => 't',
41396   'title_arguments' => '',
41397   'type' => '4',
41398   'block_callback' => '',
41399   'description' => '',
41400   'position' => '',
41401   'weight' => '0',
41402   'file' => 'sites/all/modules/event/ical.inc',
41403 ))
41404 ->values(array(
41405   'path' => 'event/term',
41406   'load_functions' => '',
41407   'to_arg_functions' => '',
41408   'access_callback' => 'user_access',
41409   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41410   'page_callback' => 'event_term',
41411   'page_arguments' => 'a:0:{}',
41412   'fit' => '3',
41413   'number_parts' => '2',
41414   'tab_parent' => '',
41415   'tab_root' => 'event/term',
41416   'title' => 'Filter by taxonomy',
41417   'title_callback' => 't',
41418   'title_arguments' => '',
41419   'type' => '4',
41420   'block_callback' => '',
41421   'description' => '',
41422   'position' => '',
41423   'weight' => '0',
41424   'file' => '',
41425 ))
41426 ->values(array(
41427   'path' => 'event/type',
41428   'load_functions' => '',
41429   'to_arg_functions' => '',
41430   'access_callback' => 'user_access',
41431   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41432   'page_callback' => 'event_type',
41433   'page_arguments' => 'a:0:{}',
41434   'fit' => '3',
41435   'number_parts' => '2',
41436   'tab_parent' => '',
41437   'tab_root' => 'event/type',
41438   'title' => 'Filter by content type',
41439   'title_callback' => 't',
41440   'title_arguments' => '',
41441   'type' => '4',
41442   'block_callback' => '',
41443   'description' => '',
41444   'position' => '',
41445   'weight' => '0',
41446   'file' => '',
41447 ))
41448 ->values(array(
41449   'path' => 'filefield/ahah/%/%/%',
41450   'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
41451   'to_arg_functions' => '',
41452   'access_callback' => 'filefield_edit_access',
41453   'access_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
41454   'page_callback' => 'filefield_js',
41455   'page_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
41456   'fit' => '24',
41457   'number_parts' => '5',
41458   'tab_parent' => '',
41459   'tab_root' => 'filefield/ahah/%/%/%',
41460   'title' => '',
41461   'title_callback' => 't',
41462   'title_arguments' => '',
41463   'type' => '4',
41464   'block_callback' => '',
41465   'description' => '',
41466   'position' => '',
41467   'weight' => '0',
41468   'file' => '',
41469 ))
41470 ->values(array(
41471   'path' => 'filefield/progress',
41472   'load_functions' => '',
41473   'to_arg_functions' => '',
41474   'access_callback' => 'user_access',
41475   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41476   'page_callback' => 'filefield_progress',
41477   'page_arguments' => 'a:0:{}',
41478   'fit' => '3',
41479   'number_parts' => '2',
41480   'tab_parent' => '',
41481   'tab_root' => 'filefield/progress',
41482   'title' => '',
41483   'title_callback' => 't',
41484   'title_arguments' => '',
41485   'type' => '4',
41486   'block_callback' => '',
41487   'description' => '',
41488   'position' => '',
41489   'weight' => '0',
41490   'file' => '',
41491 ))
41492 ->values(array(
41493   'path' => 'filter/tips',
41494   'load_functions' => '',
41495   'to_arg_functions' => '',
41496   'access_callback' => '1',
41497   'access_arguments' => 'a:0:{}',
41498   'page_callback' => 'filter_tips_long',
41499   'page_arguments' => 'a:0:{}',
41500   'fit' => '3',
41501   'number_parts' => '2',
41502   'tab_parent' => '',
41503   'tab_root' => 'filter/tips',
41504   'title' => 'Compose tips',
41505   'title_callback' => 't',
41506   'title_arguments' => '',
41507   'type' => '20',
41508   'block_callback' => '',
41509   'description' => '',
41510   'position' => '',
41511   'weight' => '0',
41512   'file' => 'modules/filter/filter.pages.inc',
41513 ))
41514 ->values(array(
41515   'path' => 'forum',
41516   'load_functions' => '',
41517   'to_arg_functions' => '',
41518   'access_callback' => 'user_access',
41519   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41520   'page_callback' => 'forum_page',
41521   'page_arguments' => 'a:0:{}',
41522   'fit' => '1',
41523   'number_parts' => '1',
41524   'tab_parent' => '',
41525   'tab_root' => 'forum',
41526   'title' => 'Forums',
41527   'title_callback' => 't',
41528   'title_arguments' => '',
41529   'type' => '20',
41530   'block_callback' => '',
41531   'description' => '',
41532   'position' => '',
41533   'weight' => '0',
41534   'file' => 'modules/forum/forum.pages.inc',
41535 ))
41536 ->values(array(
41537   'path' => 'i18n/node/autocomplete',
41538   'load_functions' => '',
41539   'to_arg_functions' => '',
41540   'access_callback' => 'user_access',
41541   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41542   'page_callback' => 'i18n_node_autocomplete',
41543   'page_arguments' => 'a:0:{}',
41544   'fit' => '7',
41545   'number_parts' => '3',
41546   'tab_parent' => '',
41547   'tab_root' => 'i18n/node/autocomplete',
41548   'title' => 'Node title autocomplete',
41549   'title_callback' => 't',
41550   'title_arguments' => '',
41551   'type' => '4',
41552   'block_callback' => '',
41553   'description' => '',
41554   'position' => '',
41555   'weight' => '0',
41556   'file' => 'sites/all/modules/i18n/i18n.pages.inc',
41557 ))
41558 ->values(array(
41559   'path' => 'i18nstrings/save',
41560   'load_functions' => '',
41561   'to_arg_functions' => '',
41562   'access_callback' => 'user_access',
41563   'access_arguments' => 'a:1:{i:0;s:23:"use on-page translation";}',
41564   'page_callback' => 'i18nstrings_save_string',
41565   'page_arguments' => 'a:0:{}',
41566   'fit' => '3',
41567   'number_parts' => '2',
41568   'tab_parent' => '',
41569   'tab_root' => 'i18nstrings/save',
41570   'title' => 'Save string',
41571   'title_callback' => 't',
41572   'title_arguments' => '',
41573   'type' => '4',
41574   'block_callback' => '',
41575   'description' => '',
41576   'position' => '',
41577   'weight' => '0',
41578   'file' => '',
41579 ))
41580 ->values(array(
41581   'path' => 'logout',
41582   'load_functions' => '',
41583   'to_arg_functions' => '',
41584   'access_callback' => 'user_is_logged_in',
41585   'access_arguments' => 'a:0:{}',
41586   'page_callback' => 'user_logout',
41587   'page_arguments' => 'a:0:{}',
41588   'fit' => '1',
41589   'number_parts' => '1',
41590   'tab_parent' => '',
41591   'tab_root' => 'logout',
41592   'title' => 'Log out',
41593   'title_callback' => 't',
41594   'title_arguments' => '',
41595   'type' => '6',
41596   'block_callback' => '',
41597   'description' => '',
41598   'position' => '',
41599   'weight' => '10',
41600   'file' => 'modules/user/user.pages.inc',
41601 ))
41602 ->values(array(
41603   'path' => 'node',
41604   'load_functions' => '',
41605   'to_arg_functions' => '',
41606   'access_callback' => 'user_access',
41607   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41608   'page_callback' => 'node_page_default',
41609   'page_arguments' => 'a:0:{}',
41610   'fit' => '1',
41611   'number_parts' => '1',
41612   'tab_parent' => '',
41613   'tab_root' => 'node',
41614   'title' => 'Content',
41615   'title_callback' => 't',
41616   'title_arguments' => '',
41617   'type' => '4',
41618   'block_callback' => '',
41619   'description' => '',
41620   'position' => '',
41621   'weight' => '0',
41622   'file' => '',
41623 ))
41624 ->values(array(
41625   'path' => 'node/%',
41626   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41627   'to_arg_functions' => '',
41628   'access_callback' => 'node_access',
41629   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
41630   'page_callback' => 'node_page_view',
41631   'page_arguments' => 'a:1:{i:0;i:1;}',
41632   'fit' => '2',
41633   'number_parts' => '2',
41634   'tab_parent' => '',
41635   'tab_root' => 'node/%',
41636   'title' => '',
41637   'title_callback' => 'node_page_title',
41638   'title_arguments' => 'a:1:{i:0;i:1;}',
41639   'type' => '4',
41640   'block_callback' => '',
41641   'description' => '',
41642   'position' => '',
41643   'weight' => '0',
41644   'file' => '',
41645 ))
41646 ->values(array(
41647   'path' => 'node/%/delete',
41648   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41649   'to_arg_functions' => '',
41650   'access_callback' => 'node_access',
41651   'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
41652   'page_callback' => 'drupal_get_form',
41653   'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
41654   'fit' => '5',
41655   'number_parts' => '3',
41656   'tab_parent' => '',
41657   'tab_root' => 'node/%/delete',
41658   'title' => 'Delete',
41659   'title_callback' => 't',
41660   'title_arguments' => '',
41661   'type' => '4',
41662   'block_callback' => '',
41663   'description' => '',
41664   'position' => '',
41665   'weight' => '1',
41666   'file' => 'modules/node/node.pages.inc',
41667 ))
41668 ->values(array(
41669   'path' => 'node/%/edit',
41670   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41671   'to_arg_functions' => '',
41672   'access_callback' => 'node_access',
41673   'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
41674   'page_callback' => 'node_page_edit',
41675   'page_arguments' => 'a:1:{i:0;i:1;}',
41676   'fit' => '5',
41677   'number_parts' => '3',
41678   'tab_parent' => 'node/%',
41679   'tab_root' => 'node/%',
41680   'title' => 'Edit',
41681   'title_callback' => 't',
41682   'title_arguments' => '',
41683   'type' => '128',
41684   'block_callback' => '',
41685   'description' => '',
41686   'position' => '',
41687   'weight' => '1',
41688   'file' => 'modules/node/node.pages.inc',
41689 ))
41690 ->values(array(
41691   'path' => 'node/%/ical',
41692   'load_functions' => 'a:1:{i:1;N;}',
41693   'to_arg_functions' => '',
41694   'access_callback' => 'event_ical_access',
41695   'access_arguments' => 'a:1:{i:0;i:1;}',
41696   'page_callback' => 'event_node_ical',
41697   'page_arguments' => 'a:0:{}',
41698   'fit' => '5',
41699   'number_parts' => '3',
41700   'tab_parent' => '',
41701   'tab_root' => 'node/%/ical',
41702   'title' => 'Event ical',
41703   'title_callback' => 't',
41704   'title_arguments' => '',
41705   'type' => '4',
41706   'block_callback' => '',
41707   'description' => '',
41708   'position' => '',
41709   'weight' => '0',
41710   'file' => 'sites/all/modules/event/ical.inc',
41711 ))
41712 ->values(array(
41713   'path' => 'node/%/outline',
41714   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41715   'to_arg_functions' => '',
41716   'access_callback' => '_book_outline_access',
41717   'access_arguments' => 'a:1:{i:0;i:1;}',
41718   'page_callback' => 'book_outline',
41719   'page_arguments' => 'a:1:{i:0;i:1;}',
41720   'fit' => '5',
41721   'number_parts' => '3',
41722   'tab_parent' => 'node/%',
41723   'tab_root' => 'node/%',
41724   'title' => 'Outline',
41725   'title_callback' => 't',
41726   'title_arguments' => '',
41727   'type' => '128',
41728   'block_callback' => '',
41729   'description' => '',
41730   'position' => '',
41731   'weight' => '2',
41732   'file' => 'modules/book/book.pages.inc',
41733 ))
41734 ->values(array(
41735   'path' => 'node/%/outline/remove',
41736   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41737   'to_arg_functions' => '',
41738   'access_callback' => '_book_outline_remove_access',
41739   'access_arguments' => 'a:1:{i:0;i:1;}',
41740   'page_callback' => 'drupal_get_form',
41741   'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}',
41742   'fit' => '11',
41743   'number_parts' => '4',
41744   'tab_parent' => '',
41745   'tab_root' => 'node/%/outline/remove',
41746   'title' => 'Remove from outline',
41747   'title_callback' => 't',
41748   'title_arguments' => '',
41749   'type' => '4',
41750   'block_callback' => '',
41751   'description' => '',
41752   'position' => '',
41753   'weight' => '0',
41754   'file' => 'modules/book/book.pages.inc',
41755 ))
41756 ->values(array(
41757   'path' => 'node/%/revisions',
41758   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41759   'to_arg_functions' => '',
41760   'access_callback' => '_node_revision_access',
41761   'access_arguments' => 'a:1:{i:0;i:1;}',
41762   'page_callback' => 'node_revision_overview',
41763   'page_arguments' => 'a:1:{i:0;i:1;}',
41764   'fit' => '5',
41765   'number_parts' => '3',
41766   'tab_parent' => 'node/%',
41767   'tab_root' => 'node/%',
41768   'title' => 'Revisions',
41769   'title_callback' => 't',
41770   'title_arguments' => '',
41771   'type' => '128',
41772   'block_callback' => '',
41773   'description' => '',
41774   'position' => '',
41775   'weight' => '2',
41776   'file' => 'modules/node/node.pages.inc',
41777 ))
41778 ->values(array(
41779   'path' => 'node/%/revisions/%/delete',
41780   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
41781   'to_arg_functions' => '',
41782   'access_callback' => '_node_revision_access',
41783   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
41784   'page_callback' => 'drupal_get_form',
41785   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
41786   'fit' => '21',
41787   'number_parts' => '5',
41788   'tab_parent' => '',
41789   'tab_root' => 'node/%/revisions/%/delete',
41790   'title' => 'Delete earlier revision',
41791   'title_callback' => 't',
41792   'title_arguments' => '',
41793   'type' => '4',
41794   'block_callback' => '',
41795   'description' => '',
41796   'position' => '',
41797   'weight' => '0',
41798   'file' => 'modules/node/node.pages.inc',
41799 ))
41800 ->values(array(
41801   'path' => 'node/%/revisions/%/revert',
41802   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
41803   'to_arg_functions' => '',
41804   'access_callback' => '_node_revision_access',
41805   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
41806   'page_callback' => 'drupal_get_form',
41807   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
41808   'fit' => '21',
41809   'number_parts' => '5',
41810   'tab_parent' => '',
41811   'tab_root' => 'node/%/revisions/%/revert',
41812   'title' => 'Revert to earlier revision',
41813   'title_callback' => 't',
41814   'title_arguments' => '',
41815   'type' => '4',
41816   'block_callback' => '',
41817   'description' => '',
41818   'position' => '',
41819   'weight' => '0',
41820   'file' => 'modules/node/node.pages.inc',
41821 ))
41822 ->values(array(
41823   'path' => 'node/%/revisions/%/view',
41824   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
41825   'to_arg_functions' => '',
41826   'access_callback' => '_node_revision_access',
41827   'access_arguments' => 'a:1:{i:0;i:1;}',
41828   'page_callback' => 'node_show',
41829   'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
41830   'fit' => '21',
41831   'number_parts' => '5',
41832   'tab_parent' => '',
41833   'tab_root' => 'node/%/revisions/%/view',
41834   'title' => 'Revisions',
41835   'title_callback' => 't',
41836   'title_arguments' => '',
41837   'type' => '4',
41838   'block_callback' => '',
41839   'description' => '',
41840   'position' => '',
41841   'weight' => '0',
41842   'file' => '',
41843 ))
41844 ->values(array(
41845   'path' => 'node/%/track',
41846   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41847   'to_arg_functions' => '',
41848   'access_callback' => 'user_access',
41849   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
41850   'page_callback' => 'statistics_node_tracker',
41851   'page_arguments' => 'a:0:{}',
41852   'fit' => '5',
41853   'number_parts' => '3',
41854   'tab_parent' => 'node/%',
41855   'tab_root' => 'node/%',
41856   'title' => 'Track',
41857   'title_callback' => 't',
41858   'title_arguments' => '',
41859   'type' => '128',
41860   'block_callback' => '',
41861   'description' => '',
41862   'position' => '',
41863   'weight' => '2',
41864   'file' => 'modules/statistics/statistics.pages.inc',
41865 ))
41866 ->values(array(
41867   'path' => 'node/%/translate',
41868   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41869   'to_arg_functions' => '',
41870   'access_callback' => '_translation_tab_access',
41871   'access_arguments' => 'a:1:{i:0;i:1;}',
41872   'page_callback' => 'i18n_translation_node_overview',
41873   'page_arguments' => 'a:1:{i:0;i:1;}',
41874   'fit' => '5',
41875   'number_parts' => '3',
41876   'tab_parent' => 'node/%',
41877   'tab_root' => 'node/%',
41878   'title' => 'Translate',
41879   'title_callback' => 't',
41880   'title_arguments' => '',
41881   'type' => '128',
41882   'block_callback' => '',
41883   'description' => '',
41884   'position' => '',
41885   'weight' => '2',
41886   'file' => 'sites/all/modules/i18n/i18n.pages.inc',
41887 ))
41888 ->values(array(
41889   'path' => 'node/%/view',
41890   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
41891   'to_arg_functions' => '',
41892   'access_callback' => 'node_access',
41893   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
41894   'page_callback' => 'node_page_view',
41895   'page_arguments' => 'a:1:{i:0;i:1;}',
41896   'fit' => '5',
41897   'number_parts' => '3',
41898   'tab_parent' => 'node/%',
41899   'tab_root' => 'node/%',
41900   'title' => 'View',
41901   'title_callback' => 't',
41902   'title_arguments' => '',
41903   'type' => '136',
41904   'block_callback' => '',
41905   'description' => '',
41906   'position' => '',
41907   'weight' => '-10',
41908   'file' => '',
41909 ))
41910 ->values(array(
41911   'path' => 'node/add',
41912   'load_functions' => '',
41913   'to_arg_functions' => '',
41914   'access_callback' => '_node_add_access',
41915   'access_arguments' => 'a:0:{}',
41916   'page_callback' => 'i18ncontent_node_add_page',
41917   'page_arguments' => 'a:0:{}',
41918   'fit' => '3',
41919   'number_parts' => '2',
41920   'tab_parent' => '',
41921   'tab_root' => 'node/add',
41922   'title' => 'Create content',
41923   'title_callback' => 't',
41924   'title_arguments' => '',
41925   'type' => '6',
41926   'block_callback' => '',
41927   'description' => '',
41928   'position' => '',
41929   'weight' => '1',
41930   'file' => 'modules/node/node.pages.inc',
41931 ))
41932 ->values(array(
41933   'path' => 'node/add/article',
41934   'load_functions' => '',
41935   'to_arg_functions' => '',
41936   'access_callback' => 'node_access',
41937   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
41938   'page_callback' => 'i18ncontent_node_add',
41939   'page_arguments' => 'a:1:{i:0;i:2;}',
41940   'fit' => '7',
41941   'number_parts' => '3',
41942   'tab_parent' => '',
41943   'tab_root' => 'node/add/article',
41944   'title' => 'Article',
41945   'title_callback' => 'i18nstrings_title_callback',
41946   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:article:name";i:1;s:7:"Article";}',
41947   'type' => '6',
41948   'block_callback' => '',
41949   'description' => 'An <em>article</em>, content type.',
41950   'position' => '',
41951   'weight' => '0',
41952   'file' => 'modules/node/node.pages.inc',
41953 ))
41954 ->values(array(
41955   'path' => 'node/add/company',
41956   'load_functions' => '',
41957   'to_arg_functions' => '',
41958   'access_callback' => 'node_access',
41959   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"company";}',
41960   'page_callback' => 'i18ncontent_node_add',
41961   'page_arguments' => 'a:1:{i:0;i:2;}',
41962   'fit' => '7',
41963   'number_parts' => '3',
41964   'tab_parent' => '',
41965   'tab_root' => 'node/add/company',
41966   'title' => 'Company',
41967   'title_callback' => 'i18nstrings_title_callback',
41968   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:company:name";i:1;s:7:"Company";}',
41969   'type' => '6',
41970   'block_callback' => '',
41971   'description' => 'Company node type',
41972   'position' => '',
41973   'weight' => '0',
41974   'file' => 'modules/node/node.pages.inc',
41975 ))
41976 ->values(array(
41977   'path' => 'node/add/employee',
41978   'load_functions' => '',
41979   'to_arg_functions' => '',
41980   'access_callback' => 'node_access',
41981   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:8:"employee";}',
41982   'page_callback' => 'i18ncontent_node_add',
41983   'page_arguments' => 'a:1:{i:0;i:2;}',
41984   'fit' => '7',
41985   'number_parts' => '3',
41986   'tab_parent' => '',
41987   'tab_root' => 'node/add/employee',
41988   'title' => 'Employee',
41989   'title_callback' => 'i18nstrings_title_callback',
41990   'title_arguments' => 'a:2:{i:0;s:27:"nodetype:type:employee:name";i:1;s:8:"Employee";}',
41991   'type' => '6',
41992   'block_callback' => '',
41993   'description' => 'Employee node type',
41994   'position' => '',
41995   'weight' => '0',
41996   'file' => 'modules/node/node.pages.inc',
41997 ))
41998 ->values(array(
41999   'path' => 'node/add/forum',
42000   'load_functions' => '',
42001   'to_arg_functions' => '',
42002   'access_callback' => 'node_access',
42003   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"forum";}',
42004   'page_callback' => 'i18ncontent_node_add',
42005   'page_arguments' => 'a:1:{i:0;i:2;}',
42006   'fit' => '7',
42007   'number_parts' => '3',
42008   'tab_parent' => '',
42009   'tab_root' => 'node/add/forum',
42010   'title' => 'Forum topic',
42011   'title_callback' => 'i18nstrings_title_callback',
42012   'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:forum:name";i:1;s:11:"Forum topic";}',
42013   'type' => '6',
42014   'block_callback' => '',
42015   'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
42016   'position' => '',
42017   'weight' => '0',
42018   'file' => 'modules/node/node.pages.inc',
42019 ))
42020 ->values(array(
42021   'path' => 'node/add/sponsor',
42022   'load_functions' => '',
42023   'to_arg_functions' => '',
42024   'access_callback' => 'node_access',
42025   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"sponsor";}',
42026   'page_callback' => 'i18ncontent_node_add',
42027   'page_arguments' => 'a:1:{i:0;i:2;}',
42028   'fit' => '7',
42029   'number_parts' => '3',
42030   'tab_parent' => '',
42031   'tab_root' => 'node/add/sponsor',
42032   'title' => 'Sponsor',
42033   'title_callback' => 'i18nstrings_title_callback',
42034   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:sponsor:name";i:1;s:7:"Sponsor";}',
42035   'type' => '6',
42036   'block_callback' => '',
42037   'description' => 'Sponsor node type',
42038   'position' => '',
42039   'weight' => '0',
42040   'file' => 'modules/node/node.pages.inc',
42041 ))
42042 ->values(array(
42043   'path' => 'node/add/story',
42044   'load_functions' => '',
42045   'to_arg_functions' => '',
42046   'access_callback' => 'node_access',
42047   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
42048   'page_callback' => 'i18ncontent_node_add',
42049   'page_arguments' => 'a:1:{i:0;i:2;}',
42050   'fit' => '7',
42051   'number_parts' => '3',
42052   'tab_parent' => '',
42053   'tab_root' => 'node/add/story',
42054   'title' => 'Story',
42055   'title_callback' => 'i18nstrings_title_callback',
42056   'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:story:name";i:1;s:5:"Story";}',
42057   'type' => '6',
42058   'block_callback' => '',
42059   '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.",
42060   'position' => '',
42061   'weight' => '0',
42062   'file' => 'modules/node/node.pages.inc',
42063 ))
42064 ->values(array(
42065   'path' => 'node/add/test-event',
42066   'load_functions' => '',
42067   'to_arg_functions' => '',
42068   'access_callback' => 'node_access',
42069   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_event";}',
42070   'page_callback' => 'i18ncontent_node_add',
42071   'page_arguments' => 'a:1:{i:0;i:2;}',
42072   'fit' => '7',
42073   'number_parts' => '3',
42074   'tab_parent' => '',
42075   'tab_root' => 'node/add/test-event',
42076   'title' => 'Migrate test event',
42077   'title_callback' => 'i18nstrings_title_callback',
42078   'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-event:name";i:1;s:18:"Migrate test event";}',
42079   'type' => '6',
42080   'block_callback' => '',
42081   'description' => 'test event description here',
42082   'position' => '',
42083   'weight' => '0',
42084   'file' => 'modules/node/node.pages.inc',
42085 ))
42086 ->values(array(
42087   'path' => 'node/add/test-page',
42088   'load_functions' => '',
42089   'to_arg_functions' => '',
42090   'access_callback' => 'node_access',
42091   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:9:"test_page";}',
42092   'page_callback' => 'i18ncontent_node_add',
42093   'page_arguments' => 'a:1:{i:0;i:2;}',
42094   'fit' => '7',
42095   'number_parts' => '3',
42096   'tab_parent' => '',
42097   'tab_root' => 'node/add/test-page',
42098   'title' => 'Migrate test page',
42099   'title_callback' => 'i18nstrings_title_callback',
42100   'title_arguments' => 'a:2:{i:0;s:28:"nodetype:type:test-page:name";i:1;s:17:"Migrate test page";}',
42101   'type' => '6',
42102   'block_callback' => '',
42103   '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.",
42104   'position' => '',
42105   'weight' => '0',
42106   'file' => 'modules/node/node.pages.inc',
42107 ))
42108 ->values(array(
42109   'path' => 'node/add/test-planet',
42110   'load_functions' => '',
42111   'to_arg_functions' => '',
42112   'access_callback' => 'node_access',
42113   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:11:"test_planet";}',
42114   'page_callback' => 'i18ncontent_node_add',
42115   'page_arguments' => 'a:1:{i:0;i:2;}',
42116   'fit' => '7',
42117   'number_parts' => '3',
42118   'tab_parent' => '',
42119   'tab_root' => 'node/add/test-planet',
42120   'title' => 'Migrate test planet',
42121   'title_callback' => 'i18nstrings_title_callback',
42122   'title_arguments' => 'a:2:{i:0;s:30:"nodetype:type:test-planet:name";i:1;s:19:"Migrate test planet";}',
42123   'type' => '6',
42124   'block_callback' => '',
42125   '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.",
42126   'position' => '',
42127   'weight' => '0',
42128   'file' => 'modules/node/node.pages.inc',
42129 ))
42130 ->values(array(
42131   'path' => 'node/add/test-story',
42132   'load_functions' => '',
42133   'to_arg_functions' => '',
42134   'access_callback' => 'node_access',
42135   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_story";}',
42136   'page_callback' => 'i18ncontent_node_add',
42137   'page_arguments' => 'a:1:{i:0;i:2;}',
42138   'fit' => '7',
42139   'number_parts' => '3',
42140   'tab_parent' => '',
42141   'tab_root' => 'node/add/test-story',
42142   'title' => 'Migrate test story',
42143   'title_callback' => 'i18nstrings_title_callback',
42144   'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-story:name";i:1;s:18:"Migrate test story";}',
42145   'type' => '6',
42146   'block_callback' => '',
42147   '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.",
42148   'position' => '',
42149   'weight' => '0',
42150   'file' => 'modules/node/node.pages.inc',
42151 ))
42152 ->values(array(
42153   'path' => 'nodereference/autocomplete',
42154   'load_functions' => '',
42155   'to_arg_functions' => '',
42156   'access_callback' => 'nodereference_autocomplete_access',
42157   'access_arguments' => 'a:1:{i:0;i:2;}',
42158   'page_callback' => 'nodereference_autocomplete',
42159   'page_arguments' => 'a:0:{}',
42160   'fit' => '3',
42161   'number_parts' => '2',
42162   'tab_parent' => '',
42163   'tab_root' => 'nodereference/autocomplete',
42164   'title' => 'Nodereference autocomplete',
42165   'title_callback' => 't',
42166   'title_arguments' => '',
42167   'type' => '4',
42168   'block_callback' => '',
42169   'description' => '',
42170   'position' => '',
42171   'weight' => '0',
42172   'file' => '',
42173 ))
42174 ->values(array(
42175   'path' => 'profile',
42176   'load_functions' => '',
42177   'to_arg_functions' => '',
42178   'access_callback' => 'user_access',
42179   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
42180   'page_callback' => 'profile_browse',
42181   'page_arguments' => 'a:0:{}',
42182   'fit' => '1',
42183   'number_parts' => '1',
42184   'tab_parent' => '',
42185   'tab_root' => 'profile',
42186   'title' => 'User list',
42187   'title_callback' => 't',
42188   'title_arguments' => '',
42189   'type' => '20',
42190   'block_callback' => '',
42191   'description' => '',
42192   'position' => '',
42193   'weight' => '0',
42194   'file' => 'modules/profile/profile.pages.inc',
42195 ))
42196 ->values(array(
42197   'path' => 'profile/autocomplete',
42198   'load_functions' => '',
42199   'to_arg_functions' => '',
42200   'access_callback' => 'user_access',
42201   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
42202   'page_callback' => 'profile_autocomplete',
42203   'page_arguments' => 'a:0:{}',
42204   'fit' => '3',
42205   'number_parts' => '2',
42206   'tab_parent' => '',
42207   'tab_root' => 'profile/autocomplete',
42208   'title' => 'Profile autocomplete',
42209   'title_callback' => 't',
42210   'title_arguments' => '',
42211   'type' => '4',
42212   'block_callback' => '',
42213   'description' => '',
42214   'position' => '',
42215   'weight' => '0',
42216   'file' => 'modules/profile/profile.pages.inc',
42217 ))
42218 ->values(array(
42219   'path' => 'rss.xml',
42220   'load_functions' => '',
42221   'to_arg_functions' => '',
42222   'access_callback' => 'user_access',
42223   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42224   'page_callback' => 'node_feed',
42225   'page_arguments' => 'a:0:{}',
42226   'fit' => '1',
42227   'number_parts' => '1',
42228   'tab_parent' => '',
42229   'tab_root' => 'rss.xml',
42230   'title' => 'RSS feed',
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' => 'system/files',
42242   'load_functions' => '',
42243   'to_arg_functions' => '',
42244   'access_callback' => '1',
42245   'access_arguments' => 'a:1:{i:0;s:19:"view uploaded files";}',
42246   'page_callback' => 'file_download',
42247   'page_arguments' => 'a:0:{}',
42248   'fit' => '3',
42249   'number_parts' => '2',
42250   'tab_parent' => '',
42251   'tab_root' => 'system/files',
42252   'title' => 'File download',
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' => 'system/files/imagecache',
42264   'load_functions' => '',
42265   'to_arg_functions' => '',
42266   'access_callback' => '1',
42267   'access_arguments' => 'a:0:{}',
42268   'page_callback' => 'imagecache_cache_private',
42269   'page_arguments' => 'a:0:{}',
42270   'fit' => '7',
42271   'number_parts' => '3',
42272   'tab_parent' => '',
42273   'tab_root' => 'system/files/imagecache',
42274   'title' => '',
42275   'title_callback' => 't',
42276   'title_arguments' => '',
42277   'type' => '4',
42278   'block_callback' => '',
42279   'description' => '',
42280   'position' => '',
42281   'weight' => '0',
42282   'file' => '',
42283 ))
42284 ->values(array(
42285   'path' => 'taxonomy/autocomplete',
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' => 'i18ntaxonomy_autocomplete',
42291   'page_arguments' => 'a:0:{}',
42292   'fit' => '3',
42293   'number_parts' => '2',
42294   'tab_parent' => '',
42295   'tab_root' => 'taxonomy/autocomplete',
42296   'title' => 'Autocomplete taxonomy',
42297   'title_callback' => 't',
42298   'title_arguments' => '',
42299   'type' => '4',
42300   'block_callback' => '',
42301   'description' => '',
42302   'position' => '',
42303   'weight' => '0',
42304   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
42305 ))
42306 ->values(array(
42307   'path' => 'taxonomy/term/%',
42308   'load_functions' => 'a:1:{i:2;N;}',
42309   'to_arg_functions' => '',
42310   'access_callback' => 'user_access',
42311   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42312   'page_callback' => 'i18ntaxonomy_term_page',
42313   'page_arguments' => 'a:1:{i:0;i:2;}',
42314   'fit' => '6',
42315   'number_parts' => '3',
42316   'tab_parent' => '',
42317   'tab_root' => 'taxonomy/term/%',
42318   'title' => 'Taxonomy term',
42319   'title_callback' => 't',
42320   'title_arguments' => '',
42321   'type' => '4',
42322   'block_callback' => '',
42323   'description' => '',
42324   'position' => '',
42325   'weight' => '0',
42326   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
42327 ))
42328 ->values(array(
42329   'path' => 'upload/js',
42330   'load_functions' => '',
42331   'to_arg_functions' => '',
42332   'access_callback' => 'user_access',
42333   'access_arguments' => 'a:1:{i:0;s:12:"upload files";}',
42334   'page_callback' => 'upload_js',
42335   'page_arguments' => 'a:0:{}',
42336   'fit' => '3',
42337   'number_parts' => '2',
42338   'tab_parent' => '',
42339   'tab_root' => 'upload/js',
42340   'title' => '',
42341   'title_callback' => 't',
42342   'title_arguments' => '',
42343   'type' => '4',
42344   'block_callback' => '',
42345   'description' => '',
42346   'position' => '',
42347   'weight' => '0',
42348   'file' => '',
42349 ))
42350 ->values(array(
42351   'path' => 'user',
42352   'load_functions' => '',
42353   'to_arg_functions' => '',
42354   'access_callback' => '1',
42355   'access_arguments' => 'a:0:{}',
42356   'page_callback' => 'user_page',
42357   'page_arguments' => 'a:0:{}',
42358   'fit' => '1',
42359   'number_parts' => '1',
42360   'tab_parent' => '',
42361   'tab_root' => 'user',
42362   'title' => 'User account',
42363   'title_callback' => 't',
42364   'title_arguments' => '',
42365   'type' => '4',
42366   'block_callback' => '',
42367   'description' => '',
42368   'position' => '',
42369   'weight' => '0',
42370   'file' => 'modules/user/user.pages.inc',
42371 ))
42372 ->values(array(
42373   'path' => 'user/%',
42374   'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
42375   'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
42376   'access_callback' => 'user_view_access',
42377   'access_arguments' => 'a:1:{i:0;i:1;}',
42378   'page_callback' => 'user_view',
42379   'page_arguments' => 'a:1:{i:0;i:1;}',
42380   'fit' => '2',
42381   'number_parts' => '2',
42382   'tab_parent' => '',
42383   'tab_root' => 'user/%',
42384   'title' => 'My account',
42385   'title_callback' => 'user_page_title',
42386   'title_arguments' => 'a:1:{i:0;i:1;}',
42387   'type' => '6',
42388   'block_callback' => '',
42389   'description' => '',
42390   'position' => '',
42391   'weight' => '0',
42392   'file' => 'modules/user/user.pages.inc',
42393 ))
42394 ->values(array(
42395   'path' => 'user/%/contact',
42396   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
42397   'to_arg_functions' => '',
42398   'access_callback' => '_contact_user_tab_access',
42399   'access_arguments' => 'a:1:{i:0;i:1;}',
42400   'page_callback' => 'contact_user_page',
42401   'page_arguments' => 'a:1:{i:0;i:1;}',
42402   'fit' => '5',
42403   'number_parts' => '3',
42404   'tab_parent' => 'user/%',
42405   'tab_root' => 'user/%',
42406   'title' => 'Contact',
42407   'title_callback' => 't',
42408   'title_arguments' => '',
42409   'type' => '128',
42410   'block_callback' => '',
42411   'description' => '',
42412   'position' => '',
42413   'weight' => '2',
42414   'file' => 'modules/contact/contact.pages.inc',
42415 ))
42416 ->values(array(
42417   'path' => 'user/%/delete',
42418   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
42419   'to_arg_functions' => '',
42420   'access_callback' => 'user_delete_access',
42421   'access_arguments' => 'a:1:{i:0;i:1;}',
42422   'page_callback' => 'drupal_get_form',
42423   'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
42424   'fit' => '5',
42425   'number_parts' => '3',
42426   'tab_parent' => '',
42427   'tab_root' => 'user/%/delete',
42428   'title' => 'Delete',
42429   'title_callback' => 't',
42430   'title_arguments' => '',
42431   'type' => '4',
42432   'block_callback' => '',
42433   'description' => '',
42434   'position' => '',
42435   'weight' => '0',
42436   'file' => 'modules/user/user.pages.inc',
42437 ))
42438 ->values(array(
42439   'path' => 'user/%/edit',
42440   '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";}}}',
42441   'to_arg_functions' => '',
42442   'access_callback' => 'user_edit_access',
42443   'access_arguments' => 'a:1:{i:0;i:1;}',
42444   'page_callback' => 'user_edit',
42445   'page_arguments' => 'a:1:{i:0;i:1;}',
42446   'fit' => '5',
42447   'number_parts' => '3',
42448   'tab_parent' => 'user/%',
42449   'tab_root' => 'user/%',
42450   'title' => 'Edit',
42451   'title_callback' => 't',
42452   'title_arguments' => '',
42453   'type' => '128',
42454   'block_callback' => '',
42455   'description' => '',
42456   'position' => '',
42457   'weight' => '0',
42458   'file' => 'modules/user/user.pages.inc',
42459 ))
42460 ->values(array(
42461   'path' => 'user/%/edit/account',
42462   '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";}}}',
42463   'to_arg_functions' => '',
42464   'access_callback' => 'user_edit_access',
42465   'access_arguments' => 'a:1:{i:0;i:1;}',
42466   'page_callback' => 'user_edit',
42467   'page_arguments' => 'a:1:{i:0;i:1;}',
42468   'fit' => '11',
42469   'number_parts' => '4',
42470   'tab_parent' => 'user/%/edit',
42471   'tab_root' => 'user/%',
42472   'title' => 'Account',
42473   'title_callback' => 't',
42474   'title_arguments' => '',
42475   'type' => '136',
42476   'block_callback' => '',
42477   'description' => '',
42478   'position' => '',
42479   'weight' => '0',
42480   'file' => 'modules/user/user.pages.inc',
42481 ))
42482 ->values(array(
42483   'path' => 'user/%/edit/Administrative data',
42484   '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";}}}',
42485   'to_arg_functions' => '',
42486   'access_callback' => 'profile_category_access',
42487   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:19:"Administrative data";}',
42488   'page_callback' => 'user_edit',
42489   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
42490   'fit' => '11',
42491   'number_parts' => '4',
42492   'tab_parent' => 'user/%/edit',
42493   'tab_root' => 'user/%',
42494   'title' => '',
42495   'title_callback' => 'i18nprofile_translate_category',
42496   'title_arguments' => 'a:1:{i:0;s:19:"Administrative data";}',
42497   'type' => '128',
42498   'block_callback' => '',
42499   'description' => '',
42500   'position' => '',
42501   'weight' => '3',
42502   'file' => 'modules/user/user.pages.inc',
42503 ))
42504 ->values(array(
42505   'path' => 'user/%/edit/Communication preferences',
42506   '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";}}}',
42507   'to_arg_functions' => '',
42508   'access_callback' => 'profile_category_access',
42509   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:25:"Communication preferences";}',
42510   'page_callback' => 'user_edit',
42511   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
42512   'fit' => '11',
42513   'number_parts' => '4',
42514   'tab_parent' => 'user/%/edit',
42515   'tab_root' => 'user/%',
42516   'title' => '',
42517   'title_callback' => 'i18nprofile_translate_category',
42518   'title_arguments' => 'a:1:{i:0;s:25:"Communication preferences";}',
42519   'type' => '128',
42520   'block_callback' => '',
42521   'description' => '',
42522   'position' => '',
42523   'weight' => '3',
42524   'file' => 'modules/user/user.pages.inc',
42525 ))
42526 ->values(array(
42527   'path' => 'user/%/edit/Personal information',
42528   '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";}}}',
42529   'to_arg_functions' => '',
42530   'access_callback' => 'profile_category_access',
42531   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:20:"Personal information";}',
42532   'page_callback' => 'user_edit',
42533   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
42534   'fit' => '11',
42535   'number_parts' => '4',
42536   'tab_parent' => 'user/%/edit',
42537   'tab_root' => 'user/%',
42538   'title' => '',
42539   'title_callback' => 'i18nprofile_translate_category',
42540   'title_arguments' => 'a:1:{i:0;s:20:"Personal information";}',
42541   'type' => '128',
42542   'block_callback' => '',
42543   'description' => '',
42544   'position' => '',
42545   'weight' => '3',
42546   'file' => 'modules/user/user.pages.inc',
42547 ))
42548 ->values(array(
42549   'path' => 'user/%/track/navigation',
42550   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
42551   'to_arg_functions' => '',
42552   'access_callback' => 'user_access',
42553   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
42554   'page_callback' => 'statistics_user_tracker',
42555   'page_arguments' => 'a:0:{}',
42556   'fit' => '11',
42557   'number_parts' => '4',
42558   'tab_parent' => 'user/%',
42559   'tab_root' => 'user/%',
42560   'title' => 'Track page visits',
42561   'title_callback' => 't',
42562   'title_arguments' => '',
42563   'type' => '128',
42564   'block_callback' => '',
42565   'description' => '',
42566   'position' => '',
42567   'weight' => '2',
42568   'file' => 'modules/statistics/statistics.pages.inc',
42569 ))
42570 ->values(array(
42571   'path' => 'user/%/view',
42572   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
42573   'to_arg_functions' => '',
42574   'access_callback' => 'user_view_access',
42575   'access_arguments' => 'a:1:{i:0;i:1;}',
42576   'page_callback' => 'user_view',
42577   'page_arguments' => 'a:1:{i:0;i:1;}',
42578   'fit' => '5',
42579   'number_parts' => '3',
42580   'tab_parent' => 'user/%',
42581   'tab_root' => 'user/%',
42582   'title' => 'View',
42583   'title_callback' => 't',
42584   'title_arguments' => '',
42585   'type' => '136',
42586   'block_callback' => '',
42587   'description' => '',
42588   'position' => '',
42589   'weight' => '-10',
42590   'file' => 'modules/user/user.pages.inc',
42591 ))
42592 ->values(array(
42593   'path' => 'user/autocomplete',
42594   'load_functions' => '',
42595   'to_arg_functions' => '',
42596   'access_callback' => 'user_access',
42597   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
42598   'page_callback' => 'user_autocomplete',
42599   'page_arguments' => 'a:0:{}',
42600   'fit' => '3',
42601   'number_parts' => '2',
42602   'tab_parent' => '',
42603   'tab_root' => 'user/autocomplete',
42604   'title' => 'User autocomplete',
42605   'title_callback' => 't',
42606   'title_arguments' => '',
42607   'type' => '4',
42608   'block_callback' => '',
42609   'description' => '',
42610   'position' => '',
42611   'weight' => '0',
42612   'file' => 'modules/user/user.pages.inc',
42613 ))
42614 ->values(array(
42615   'path' => 'user/login',
42616   'load_functions' => '',
42617   'to_arg_functions' => '',
42618   'access_callback' => 'user_is_anonymous',
42619   'access_arguments' => 'a:0:{}',
42620   'page_callback' => 'user_page',
42621   'page_arguments' => 'a:0:{}',
42622   'fit' => '3',
42623   'number_parts' => '2',
42624   'tab_parent' => 'user',
42625   'tab_root' => 'user',
42626   'title' => 'Log in',
42627   'title_callback' => 't',
42628   'title_arguments' => '',
42629   'type' => '136',
42630   'block_callback' => '',
42631   'description' => '',
42632   'position' => '',
42633   'weight' => '0',
42634   'file' => 'modules/user/user.pages.inc',
42635 ))
42636 ->values(array(
42637   'path' => 'user/password',
42638   'load_functions' => '',
42639   'to_arg_functions' => '',
42640   'access_callback' => 'user_is_anonymous',
42641   'access_arguments' => 'a:0:{}',
42642   'page_callback' => 'drupal_get_form',
42643   'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
42644   'fit' => '3',
42645   'number_parts' => '2',
42646   'tab_parent' => 'user',
42647   'tab_root' => 'user',
42648   'title' => 'Request new password',
42649   'title_callback' => 't',
42650   'title_arguments' => '',
42651   'type' => '128',
42652   'block_callback' => '',
42653   'description' => '',
42654   'position' => '',
42655   'weight' => '0',
42656   'file' => 'modules/user/user.pages.inc',
42657 ))
42658 ->values(array(
42659   'path' => 'user/register',
42660   'load_functions' => '',
42661   'to_arg_functions' => '',
42662   'access_callback' => 'user_register_access',
42663   'access_arguments' => 'a:0:{}',
42664   'page_callback' => 'drupal_get_form',
42665   'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
42666   'fit' => '3',
42667   'number_parts' => '2',
42668   'tab_parent' => 'user',
42669   'tab_root' => 'user',
42670   'title' => 'Create new account',
42671   'title_callback' => 't',
42672   'title_arguments' => '',
42673   'type' => '128',
42674   'block_callback' => '',
42675   'description' => '',
42676   'position' => '',
42677   'weight' => '0',
42678   'file' => 'modules/user/user.pages.inc',
42679 ))
42680 ->values(array(
42681   'path' => 'user/reset/%/%/%',
42682   'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
42683   'to_arg_functions' => '',
42684   'access_callback' => '1',
42685   'access_arguments' => 'a:0:{}',
42686   'page_callback' => 'drupal_get_form',
42687   'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
42688   'fit' => '24',
42689   'number_parts' => '5',
42690   'tab_parent' => '',
42691   'tab_root' => 'user/reset/%/%/%',
42692   'title' => 'Reset password',
42693   'title_callback' => 't',
42694   'title_arguments' => '',
42695   'type' => '4',
42696   'block_callback' => '',
42697   'description' => '',
42698   'position' => '',
42699   'weight' => '0',
42700   'file' => 'modules/user/user.pages.inc',
42701 ))
42702 ->values(array(
42703   'path' => 'user/timezone',
42704   'load_functions' => '',
42705   'to_arg_functions' => '',
42706   'access_callback' => '1',
42707   'access_arguments' => 'a:0:{}',
42708   'page_callback' => 'user_timezone',
42709   'page_arguments' => 'a:0:{}',
42710   'fit' => '3',
42711   'number_parts' => '2',
42712   'tab_parent' => '',
42713   'tab_root' => 'user/timezone',
42714   'title' => 'User timezone',
42715   'title_callback' => 't',
42716   'title_arguments' => '',
42717   'type' => '4',
42718   'block_callback' => '',
42719   'description' => '',
42720   'position' => '',
42721   'weight' => '0',
42722   'file' => '',
42723 ))
42724 ->values(array(
42725   'path' => 'userreference/autocomplete',
42726   'load_functions' => '',
42727   'to_arg_functions' => '',
42728   'access_callback' => 'user_access',
42729   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42730   'page_callback' => 'userreference_autocomplete',
42731   'page_arguments' => 'a:0:{}',
42732   'fit' => '3',
42733   'number_parts' => '2',
42734   'tab_parent' => '',
42735   'tab_root' => 'userreference/autocomplete',
42736   'title' => 'Userreference autocomplete',
42737   'title_callback' => 't',
42738   'title_arguments' => '',
42739   'type' => '4',
42740   'block_callback' => '',
42741   'description' => '',
42742   'position' => '',
42743   'weight' => '0',
42744   'file' => '',
42745 ))
42746 ->execute();
42747
42748 $connection->schema()->createTable('node', array(
42749   'fields' => array(
42750     'nid' => array(
42751       'type' => 'serial',
42752       'not null' => TRUE,
42753       'size' => 'normal',
42754       'unsigned' => TRUE,
42755     ),
42756     'vid' => array(
42757       'type' => 'int',
42758       'not null' => TRUE,
42759       'size' => 'normal',
42760       'default' => '0',
42761       'unsigned' => TRUE,
42762     ),
42763     'type' => array(
42764       'type' => 'varchar',
42765       'not null' => TRUE,
42766       'length' => '32',
42767       'default' => '',
42768     ),
42769     'language' => array(
42770       'type' => 'varchar',
42771       'not null' => TRUE,
42772       'length' => '12',
42773       'default' => '',
42774     ),
42775     'title' => array(
42776       'type' => 'varchar',
42777       'not null' => TRUE,
42778       'length' => '255',
42779       'default' => '',
42780     ),
42781     'uid' => array(
42782       'type' => 'int',
42783       'not null' => TRUE,
42784       'size' => 'normal',
42785       'default' => '0',
42786     ),
42787     'status' => array(
42788       'type' => 'int',
42789       'not null' => TRUE,
42790       'size' => 'normal',
42791       'default' => '1',
42792     ),
42793     'created' => array(
42794       'type' => 'int',
42795       'not null' => TRUE,
42796       'size' => 'normal',
42797       'default' => '0',
42798     ),
42799     'changed' => array(
42800       'type' => 'int',
42801       'not null' => TRUE,
42802       'size' => 'normal',
42803       'default' => '0',
42804     ),
42805     'comment' => array(
42806       'type' => 'int',
42807       'not null' => TRUE,
42808       'size' => 'normal',
42809       'default' => '0',
42810     ),
42811     'promote' => array(
42812       'type' => 'int',
42813       'not null' => TRUE,
42814       'size' => 'normal',
42815       'default' => '0',
42816     ),
42817     'moderate' => array(
42818       'type' => 'int',
42819       'not null' => TRUE,
42820       'size' => 'normal',
42821       'default' => '0',
42822     ),
42823     'sticky' => array(
42824       'type' => 'int',
42825       'not null' => TRUE,
42826       'size' => 'normal',
42827       'default' => '0',
42828     ),
42829     'tnid' => array(
42830       'type' => 'int',
42831       'not null' => TRUE,
42832       'size' => 'normal',
42833       'default' => '0',
42834       'unsigned' => TRUE,
42835     ),
42836     'translate' => array(
42837       'type' => 'int',
42838       'not null' => TRUE,
42839       'size' => 'normal',
42840       'default' => '0',
42841     ),
42842   ),
42843   'primary key' => array(
42844     'nid',
42845   ),
42846   'mysql_character_set' => 'utf8',
42847 ));
42848
42849 $connection->insert('node')
42850 ->fields(array(
42851   'nid',
42852   'vid',
42853   'type',
42854   'language',
42855   'title',
42856   'uid',
42857   'status',
42858   'created',
42859   'changed',
42860   'comment',
42861   'promote',
42862   'moderate',
42863   'sticky',
42864   'tnid',
42865   'translate',
42866 ))
42867 ->values(array(
42868   'nid' => '1',
42869   'vid' => '1',
42870   'type' => 'story',
42871   'language' => '',
42872   'title' => 'Test title',
42873   'uid' => '1',
42874   'status' => '1',
42875   'created' => '1388271197',
42876   'changed' => '1420861423',
42877   'comment' => '0',
42878   'promote' => '0',
42879   'moderate' => '0',
42880   'sticky' => '0',
42881   'tnid' => '0',
42882   'translate' => '0',
42883 ))
42884 ->values(array(
42885   'nid' => '2',
42886   'vid' => '3',
42887   'type' => 'story',
42888   'language' => '',
42889   'title' => 'Test title rev 3',
42890   'uid' => '1',
42891   'status' => '1',
42892   'created' => '1388271197',
42893   'changed' => '1420718386',
42894   'comment' => '0',
42895   'promote' => '0',
42896   'moderate' => '0',
42897   'sticky' => '0',
42898   'tnid' => '0',
42899   'translate' => '0',
42900 ))
42901 ->values(array(
42902   'nid' => '3',
42903   'vid' => '4',
42904   'type' => 'test_planet',
42905   'language' => '',
42906   'title' => 'Test planet title 3',
42907   'uid' => '1',
42908   'status' => '1',
42909   'created' => '1388271527',
42910   'changed' => '1390096401',
42911   'comment' => '0',
42912   'promote' => '0',
42913   'moderate' => '0',
42914   'sticky' => '0',
42915   'tnid' => '0',
42916   'translate' => '0',
42917 ))
42918 ->values(array(
42919   'nid' => '4',
42920   'vid' => '6',
42921   'type' => 'test_planet',
42922   'language' => '',
42923   'title' => '',
42924   'uid' => '1',
42925   'status' => '1',
42926   'created' => '1388271527',
42927   'changed' => '1390096401',
42928   'comment' => '0',
42929   'promote' => '0',
42930   'moderate' => '0',
42931   'sticky' => '0',
42932   'tnid' => '0',
42933   'translate' => '0',
42934 ))
42935 ->values(array(
42936   'nid' => '5',
42937   'vid' => '7',
42938   'type' => 'test_planet',
42939   'language' => '',
42940   'title' => '',
42941   'uid' => '1',
42942   'status' => '1',
42943   'created' => '1388271527',
42944   'changed' => '1390096401',
42945   'comment' => '0',
42946   'promote' => '0',
42947   'moderate' => '0',
42948   'sticky' => '0',
42949   'tnid' => '0',
42950   'translate' => '0',
42951 ))
42952 ->values(array(
42953   'nid' => '6',
42954   'vid' => '8',
42955   'type' => 'test_planet',
42956   'language' => '',
42957   'title' => '',
42958   'uid' => '1',
42959   'status' => '1',
42960   'created' => '1388271527',
42961   'changed' => '1390096401',
42962   'comment' => '0',
42963   'promote' => '0',
42964   'moderate' => '0',
42965   'sticky' => '0',
42966   'tnid' => '0',
42967   'translate' => '0',
42968 ))
42969 ->values(array(
42970   'nid' => '7',
42971   'vid' => '9',
42972   'type' => 'test_planet',
42973   'language' => '',
42974   'title' => '',
42975   'uid' => '1',
42976   'status' => '1',
42977   'created' => '1388271527',
42978   'changed' => '1390096401',
42979   'comment' => '0',
42980   'promote' => '0',
42981   'moderate' => '0',
42982   'sticky' => '0',
42983   'tnid' => '0',
42984   'translate' => '0',
42985 ))
42986 ->values(array(
42987   'nid' => '8',
42988   'vid' => '10',
42989   'type' => 'test_planet',
42990   'language' => '',
42991   'title' => '',
42992   'uid' => '1',
42993   'status' => '1',
42994   'created' => '1388271527',
42995   'changed' => '1390096401',
42996   'comment' => '0',
42997   'promote' => '0',
42998   'moderate' => '0',
42999   'sticky' => '0',
43000   'tnid' => '0',
43001   'translate' => '0',
43002 ))
43003 ->values(array(
43004   'nid' => '9',
43005   'vid' => '12',
43006   'type' => 'story',
43007   'language' => '',
43008   'title' => 'Once upon a time',
43009   'uid' => '1',
43010   'status' => '1',
43011   'created' => '1444671588',
43012   'changed' => '1444671588',
43013   'comment' => '2',
43014   'promote' => '1',
43015   'moderate' => '0',
43016   'sticky' => '0',
43017   'tnid' => '0',
43018   'translate' => '0',
43019 ))
43020 ->values(array(
43021   'nid' => '10',
43022   'vid' => '13',
43023   'type' => 'page',
43024   'language' => 'en',
43025   'title' => 'The Real McCoy',
43026   'uid' => '1',
43027   'status' => '1',
43028   'created' => '1444238800',
43029   'changed' => '1444238808',
43030   'comment' => '2',
43031   'promote' => '1',
43032   'moderate' => '0',
43033   'sticky' => '0',
43034   'tnid' => '10',
43035   'translate' => '0',
43036 ))
43037 ->values(array(
43038   'nid' => '11',
43039   'vid' => '14',
43040   'type' => 'page',
43041   'language' => 'fr',
43042   'title' => 'Le Vrai McCoy',
43043   'uid' => '1',
43044   'status' => '1',
43045   'created' => '1444239050',
43046   'changed' => '1444239050',
43047   'comment' => '2',
43048   'promote' => '1',
43049   'moderate' => '0',
43050   'sticky' => '0',
43051   'tnid' => '10',
43052   'translate' => '0',
43053 ))
43054 ->values(array(
43055   'nid' => '12',
43056   'vid' => '15',
43057   'type' => 'page',
43058   'language' => 'zu',
43059   'title' => 'Abantu zulu',
43060   'uid' => '1',
43061   'status' => '1',
43062   'created' => '1444238800',
43063   'changed' => '1444238808',
43064   'comment' => '0',
43065   'promote' => '0',
43066   'moderate' => '0',
43067   'sticky' => '0',
43068   'tnid' => '12',
43069   'translate' => '0',
43070 ))
43071 ->values(array(
43072   'nid' => '13',
43073   'vid' => '16',
43074   'type' => 'page',
43075   'language' => 'en',
43076   'title' => 'The Zulu People',
43077   'uid' => '1',
43078   'status' => '1',
43079   'created' => '1444239050',
43080   'changed' => '1444239050',
43081   'comment' => '0',
43082   'promote' => '0',
43083   'moderate' => '0',
43084   'sticky' => '0',
43085   'tnid' => '12',
43086   'translate' => '0',
43087 ))
43088 ->values(array(
43089   'nid' => '14',
43090   'vid' => '17',
43091   'type' => 'company',
43092   'language' => '',
43093   'title' => 'United Federation of Planets',
43094   'uid' => '1',
43095   'status' => '1',
43096   'created' => '1493066668',
43097   'changed' => '1493066668',
43098   'comment' => '2',
43099   'promote' => '1',
43100   'moderate' => '0',
43101   'sticky' => '0',
43102   'tnid' => '0',
43103   'translate' => '0',
43104 ))
43105 ->values(array(
43106   'nid' => '15',
43107   'vid' => '18',
43108   'type' => 'company',
43109   'language' => '',
43110   'title' => 'Klingon Empire',
43111   'uid' => '1',
43112   'status' => '1',
43113   'created' => '1493066677',
43114   'changed' => '1493066677',
43115   'comment' => '2',
43116   'promote' => '1',
43117   'moderate' => '0',
43118   'sticky' => '0',
43119   'tnid' => '0',
43120   'translate' => '0',
43121 ))
43122 ->values(array(
43123   'nid' => '16',
43124   'vid' => '19',
43125   'type' => 'company',
43126   'language' => '',
43127   'title' => 'Romulan Empire',
43128   'uid' => '1',
43129   'status' => '1',
43130   'created' => '1493066684',
43131   'changed' => '1493066684',
43132   'comment' => '2',
43133   'promote' => '1',
43134   'moderate' => '0',
43135   'sticky' => '0',
43136   'tnid' => '0',
43137   'translate' => '0',
43138 ))
43139 ->values(array(
43140   'nid' => '17',
43141   'vid' => '20',
43142   'type' => 'company',
43143   'language' => '',
43144   'title' => 'Ferengi Commerce Authority',
43145   'uid' => '1',
43146   'status' => '1',
43147   'created' => '1493066693',
43148   'changed' => '1493066693',
43149   'comment' => '2',
43150   'promote' => '1',
43151   'moderate' => '0',
43152   'sticky' => '0',
43153   'tnid' => '0',
43154   'translate' => '0',
43155 ))
43156 ->values(array(
43157   'nid' => '18',
43158   'vid' => '21',
43159   'type' => 'employee',
43160   'language' => '',
43161   'title' => 'Ambassador Sarek',
43162   'uid' => '1',
43163   'status' => '1',
43164   'created' => '1493066711',
43165   'changed' => '1494966544',
43166   'comment' => '2',
43167   'promote' => '1',
43168   'moderate' => '0',
43169   'sticky' => '0',
43170   'tnid' => '0',
43171   'translate' => '0',
43172 ))
43173 ->execute();
43174
43175 $connection->schema()->createTable('node_access', array(
43176   'fields' => array(
43177     'nid' => array(
43178       'type' => 'int',
43179       'not null' => TRUE,
43180       'size' => 'normal',
43181       'default' => '0',
43182       'unsigned' => TRUE,
43183     ),
43184     'gid' => array(
43185       'type' => 'int',
43186       'not null' => TRUE,
43187       'size' => 'normal',
43188       'default' => '0',
43189       'unsigned' => TRUE,
43190     ),
43191     'realm' => array(
43192       'type' => 'varchar',
43193       'not null' => TRUE,
43194       'length' => '255',
43195       'default' => '',
43196     ),
43197     'grant_view' => array(
43198       'type' => 'int',
43199       'not null' => TRUE,
43200       'size' => 'normal',
43201       'default' => '0',
43202       'unsigned' => TRUE,
43203     ),
43204     'grant_update' => array(
43205       'type' => 'int',
43206       'not null' => TRUE,
43207       'size' => 'normal',
43208       'default' => '0',
43209       'unsigned' => TRUE,
43210     ),
43211     'grant_delete' => array(
43212       'type' => 'int',
43213       'not null' => TRUE,
43214       'size' => 'normal',
43215       'default' => '0',
43216       'unsigned' => TRUE,
43217     ),
43218   ),
43219   'primary key' => array(
43220     'nid',
43221     'gid',
43222     'realm',
43223   ),
43224   'mysql_character_set' => 'utf8',
43225 ));
43226
43227 $connection->insert('node_access')
43228 ->fields(array(
43229   'nid',
43230   'gid',
43231   'realm',
43232   'grant_view',
43233   'grant_update',
43234   'grant_delete',
43235 ))
43236 ->values(array(
43237   'nid' => '0',
43238   'gid' => '0',
43239   'realm' => 'all',
43240   'grant_view' => '1',
43241   'grant_update' => '0',
43242   'grant_delete' => '0',
43243 ))
43244 ->execute();
43245
43246 $connection->schema()->createTable('node_comment_statistics', array(
43247   'fields' => array(
43248     'nid' => array(
43249       'type' => 'int',
43250       'not null' => TRUE,
43251       'size' => 'normal',
43252       'default' => '0',
43253       'unsigned' => TRUE,
43254     ),
43255     'last_comment_timestamp' => array(
43256       'type' => 'int',
43257       'not null' => TRUE,
43258       'size' => 'normal',
43259       'default' => '0',
43260     ),
43261     'last_comment_name' => array(
43262       'type' => 'varchar',
43263       'not null' => FALSE,
43264       'length' => '60',
43265     ),
43266     'last_comment_uid' => array(
43267       'type' => 'int',
43268       'not null' => TRUE,
43269       'size' => 'normal',
43270       'default' => '0',
43271     ),
43272     'comment_count' => array(
43273       'type' => 'int',
43274       'not null' => TRUE,
43275       'size' => 'normal',
43276       'default' => '0',
43277       'unsigned' => TRUE,
43278     ),
43279   ),
43280   'primary key' => array(
43281     'nid',
43282   ),
43283   'indexes' => array(
43284     'comment_count' => array(
43285       'comment_count',
43286     ),
43287     'last_comment_uid' => array(
43288       'last_comment_uid',
43289     ),
43290   ),
43291   'mysql_character_set' => 'utf8',
43292 ));
43293
43294 $connection->insert('node_comment_statistics')
43295 ->fields(array(
43296   'nid',
43297   'last_comment_timestamp',
43298   'last_comment_name',
43299   'last_comment_uid',
43300   'comment_count',
43301 ))
43302 ->values(array(
43303   'nid' => '0',
43304   'last_comment_timestamp' => '1468384735',
43305   'last_comment_name' => NULL,
43306   'last_comment_uid' => '1',
43307   'comment_count' => '0',
43308 ))
43309 ->values(array(
43310   'nid' => '1',
43311   'last_comment_timestamp' => '1388271197',
43312   'last_comment_name' => NULL,
43313   'last_comment_uid' => '1',
43314   'comment_count' => '0',
43315 ))
43316 ->values(array(
43317   'nid' => '2',
43318   'last_comment_timestamp' => '1389002813',
43319   'last_comment_name' => NULL,
43320   'last_comment_uid' => '1',
43321   'comment_count' => '0',
43322 ))
43323 ->values(array(
43324   'nid' => '9',
43325   'last_comment_timestamp' => '1444238800',
43326   'last_comment_name' => NULL,
43327   'last_comment_uid' => '1',
43328   'comment_count' => '0',
43329 ))
43330 ->values(array(
43331   'nid' => '10',
43332   'last_comment_timestamp' => '1444239050',
43333   'last_comment_name' => NULL,
43334   'last_comment_uid' => '1',
43335   'comment_count' => '0',
43336 ))
43337 ->values(array(
43338   'nid' => '14',
43339   'last_comment_timestamp' => '1493066668',
43340   'last_comment_name' => NULL,
43341   'last_comment_uid' => '1',
43342   'comment_count' => '0',
43343 ))
43344 ->values(array(
43345   'nid' => '15',
43346   'last_comment_timestamp' => '1493066677',
43347   'last_comment_name' => NULL,
43348   'last_comment_uid' => '1',
43349   'comment_count' => '0',
43350 ))
43351 ->values(array(
43352   'nid' => '16',
43353   'last_comment_timestamp' => '1493066684',
43354   'last_comment_name' => NULL,
43355   'last_comment_uid' => '1',
43356   'comment_count' => '0',
43357 ))
43358 ->values(array(
43359   'nid' => '17',
43360   'last_comment_timestamp' => '1493066693',
43361   'last_comment_name' => NULL,
43362   'last_comment_uid' => '1',
43363   'comment_count' => '0',
43364 ))
43365 ->values(array(
43366   'nid' => '18',
43367   'last_comment_timestamp' => '1493066711',
43368   'last_comment_name' => NULL,
43369   'last_comment_uid' => '1',
43370   'comment_count' => '0',
43371 ))
43372 ->execute();
43373
43374 $connection->schema()->createTable('node_counter', array(
43375   'fields' => array(
43376     'nid' => array(
43377       'type' => 'int',
43378       'not null' => TRUE,
43379       'size' => 'normal',
43380       'default' => '0',
43381     ),
43382     'totalcount' => array(
43383       'type' => 'int',
43384       'not null' => TRUE,
43385       'size' => 'normal',
43386       'default' => '0',
43387       'unsigned' => TRUE,
43388     ),
43389     'daycount' => array(
43390       'type' => 'int',
43391       'not null' => TRUE,
43392       'size' => 'normal',
43393       'default' => '0',
43394       'unsigned' => TRUE,
43395     ),
43396     'timestamp' => array(
43397       'type' => 'int',
43398       'not null' => TRUE,
43399       'size' => 'normal',
43400       'default' => '0',
43401       'unsigned' => TRUE,
43402     ),
43403   ),
43404   'primary key' => array(
43405     'nid',
43406   ),
43407   'mysql_character_set' => 'utf8',
43408 ));
43409
43410 $connection->insert('node_counter')
43411 ->fields(array(
43412   'nid',
43413   'totalcount',
43414   'daycount',
43415   'timestamp',
43416 ))
43417 ->values(array(
43418   'nid' => '14',
43419   'totalcount' => '1',
43420   'daycount' => '1',
43421   'timestamp' => '1493066668',
43422 ))
43423 ->values(array(
43424   'nid' => '15',
43425   'totalcount' => '1',
43426   'daycount' => '1',
43427   'timestamp' => '1493066677',
43428 ))
43429 ->values(array(
43430   'nid' => '16',
43431   'totalcount' => '1',
43432   'daycount' => '1',
43433   'timestamp' => '1493066685',
43434 ))
43435 ->values(array(
43436   'nid' => '17',
43437   'totalcount' => '1',
43438   'daycount' => '1',
43439   'timestamp' => '1493066693',
43440 ))
43441 ->values(array(
43442   'nid' => '18',
43443   'totalcount' => '1',
43444   'daycount' => '1',
43445   'timestamp' => '1493066711',
43446 ))
43447 ->execute();
43448
43449 $connection->schema()->createTable('node_revisions', array(
43450   'fields' => array(
43451     'nid' => array(
43452       'type' => 'int',
43453       'not null' => TRUE,
43454       'size' => 'normal',
43455       'default' => '0',
43456       'unsigned' => TRUE,
43457     ),
43458     'vid' => array(
43459       'type' => 'serial',
43460       'not null' => TRUE,
43461       'size' => 'normal',
43462       'unsigned' => TRUE,
43463     ),
43464     'uid' => array(
43465       'type' => 'int',
43466       'not null' => TRUE,
43467       'size' => 'normal',
43468       'default' => '0',
43469     ),
43470     'title' => array(
43471       'type' => 'varchar',
43472       'not null' => TRUE,
43473       'length' => '255',
43474       'default' => '',
43475     ),
43476     'body' => array(
43477       'type' => 'text',
43478       'not null' => TRUE,
43479       'size' => 'normal',
43480     ),
43481     'teaser' => array(
43482       'type' => 'text',
43483       'not null' => TRUE,
43484       'size' => 'normal',
43485     ),
43486     'log' => array(
43487       'type' => 'text',
43488       'not null' => TRUE,
43489       'size' => 'normal',
43490     ),
43491     'timestamp' => array(
43492       'type' => 'int',
43493       'not null' => TRUE,
43494       'size' => 'normal',
43495       'default' => '0',
43496     ),
43497     'format' => array(
43498       'type' => 'int',
43499       'not null' => TRUE,
43500       'size' => 'normal',
43501       'default' => '0',
43502     ),
43503   ),
43504   'primary key' => array(
43505     'vid',
43506   ),
43507   'mysql_character_set' => 'utf8',
43508 ));
43509
43510 $connection->insert('node_revisions')
43511 ->fields(array(
43512   'nid',
43513   'vid',
43514   'uid',
43515   'title',
43516   'body',
43517   'teaser',
43518   'log',
43519   'timestamp',
43520   'format',
43521 ))
43522 ->values(array(
43523   'nid' => '1',
43524   'vid' => '1',
43525   'uid' => '1',
43526   'title' => 'Test title',
43527   'body' => 'test',
43528   'teaser' => 'test',
43529   'log' => '',
43530   'timestamp' => '1420861423',
43531   'format' => '1',
43532 ))
43533 ->values(array(
43534   'nid' => '1',
43535   'vid' => '2',
43536   'uid' => '2',
43537   'title' => 'Test title rev 2',
43538   'body' => 'body test rev 2',
43539   'teaser' => 'teaser test rev 2',
43540   'log' => 'modified rev 2',
43541   'timestamp' => '1390095702',
43542   'format' => '1',
43543 ))
43544 ->values(array(
43545   'nid' => '2',
43546   'vid' => '3',
43547   'uid' => '1',
43548   'title' => 'Test title rev 3',
43549   'body' => 'test rev 3',
43550   'teaser' => 'test rev 3',
43551   'log' => '',
43552   'timestamp' => '1420718386',
43553   'format' => '1',
43554 ))
43555 ->values(array(
43556   'nid' => '3',
43557   'vid' => '4',
43558   'uid' => '1',
43559   'title' => 'Test page title rev 4',
43560   'body' => 'test page body rev 4',
43561   'teaser' => 'test page teaser rev 4',
43562   'log' => '',
43563   'timestamp' => '1390095701',
43564   'format' => '0',
43565 ))
43566 ->values(array(
43567   'nid' => '1',
43568   'vid' => '5',
43569   'uid' => '1',
43570   'title' => 'Test title rev 3',
43571   'body' => 'body test rev 3',
43572   'teaser' => 'teaser test rev 3',
43573   'log' => 'modified rev 3',
43574   'timestamp' => '1390095703',
43575   'format' => '1',
43576 ))
43577 ->values(array(
43578   'nid' => '4',
43579   'vid' => '6',
43580   'uid' => '1',
43581   'title' => 'Node 4',
43582   'body' => 'Node 4 body',
43583   'teaser' => 'test for node 4',
43584   'log' => '',
43585   'timestamp' => '1390095701',
43586   'format' => '1',
43587 ))
43588 ->values(array(
43589   'nid' => '5',
43590   'vid' => '7',
43591   'uid' => '1',
43592   'title' => 'Node 5',
43593   'body' => 'Node 5 body',
43594   'teaser' => 'test for node 5',
43595   'log' => '',
43596   'timestamp' => '1390095701',
43597   'format' => '1',
43598 ))
43599 ->values(array(
43600   'nid' => '6',
43601   'vid' => '8',
43602   'uid' => '1',
43603   'title' => 'Node 6',
43604   'body' => 'Node 6 body',
43605   'teaser' => 'test for node 6',
43606   'log' => '',
43607   'timestamp' => '1390095701',
43608   'format' => '1',
43609 ))
43610 ->values(array(
43611   'nid' => '7',
43612   'vid' => '9',
43613   'uid' => '1',
43614   'title' => 'Node 7',
43615   'body' => 'Node 7 body',
43616   'teaser' => 'test for node 7',
43617   'log' => '',
43618   'timestamp' => '1390095701',
43619   'format' => '1',
43620 ))
43621 ->values(array(
43622   'nid' => '8',
43623   'vid' => '10',
43624   'uid' => '1',
43625   'title' => 'Node 8',
43626   'body' => 'Node 8 body',
43627   'teaser' => 'test for node 8',
43628   'log' => '',
43629   'timestamp' => '1390095701',
43630   'format' => '1',
43631 ))
43632 ->values(array(
43633   'nid' => '9',
43634   'vid' => '11',
43635   'uid' => '1',
43636   'title' => 'Node 9',
43637   'body' => 'Node 9 body',
43638   'teaser' => 'test for node 9',
43639   'log' => '',
43640   'timestamp' => '1390095701',
43641   'format' => '1',
43642 ))
43643 ->values(array(
43644   'nid' => '9',
43645   'vid' => '12',
43646   'uid' => '1',
43647   'title' => 'Once upon a time',
43648   'body' => 'Come on kid, go to sleep.',
43649   'teaser' => 'Come on kid, go to sleep.',
43650   'log' => '',
43651   'timestamp' => '1444671588',
43652   'format' => '1',
43653 ))
43654 ->values(array(
43655   'nid' => '10',
43656   'vid' => '13',
43657   'uid' => '1',
43658   'title' => 'The Real McCoy',
43659   'body' => "In the original, Queen's English.",
43660   'teaser' => "In the original, Queen's English.",
43661   'log' => '',
43662   'timestamp' => '1444238808',
43663   'format' => '1',
43664 ))
43665 ->values(array(
43666   'nid' => '11',
43667   'vid' => '14',
43668   'uid' => '1',
43669   'title' => 'Le Vrai McCoy',
43670   'body' => 'Ooh là là!',
43671   'teaser' => 'Ooh là là!',
43672   'log' => '',
43673   'timestamp' => '1444239050',
43674   'format' => '1',
43675 ))
43676 ->values(array(
43677   'nid' => '12',
43678   'vid' => '15',
43679   'uid' => '1',
43680   'title' => 'Abantu zulu',
43681   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
43682   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
43683   'log' => '',
43684   'timestamp' => '1444238808',
43685   'format' => '1',
43686 ))
43687 ->values(array(
43688   'nid' => '13',
43689   'vid' => '16',
43690   'uid' => '1',
43691   'title' => 'The Zulu People',
43692   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
43693   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
43694   'log' => '',
43695   'timestamp' => '1444239050',
43696   'format' => '1',
43697 ))
43698 ->values(array(
43699   'nid' => '14',
43700   'vid' => '17',
43701   'uid' => '1',
43702   'title' => 'United Federation of Planets',
43703   'body' => '',
43704   'teaser' => '',
43705   'log' => '',
43706   'timestamp' => '1493066668',
43707   'format' => '1',
43708 ))
43709 ->values(array(
43710   'nid' => '15',
43711   'vid' => '18',
43712   'uid' => '1',
43713   'title' => 'Klingon Empire',
43714   'body' => '',
43715   'teaser' => '',
43716   'log' => '',
43717   'timestamp' => '1493066677',
43718   'format' => '1',
43719 ))
43720 ->values(array(
43721   'nid' => '16',
43722   'vid' => '19',
43723   'uid' => '1',
43724   'title' => 'Romulan Empire',
43725   'body' => '',
43726   'teaser' => '',
43727   'log' => '',
43728   'timestamp' => '1493066684',
43729   'format' => '1',
43730 ))
43731 ->values(array(
43732   'nid' => '17',
43733   'vid' => '20',
43734   'uid' => '1',
43735   'title' => 'Ferengi Commerce Authority',
43736   'body' => '',
43737   'teaser' => '',
43738   'log' => '',
43739   'timestamp' => '1493066693',
43740   'format' => '1',
43741 ))
43742 ->values(array(
43743   'nid' => '18',
43744   'vid' => '21',
43745   'uid' => '1',
43746   'title' => 'Ambassador Sarek',
43747   '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.",
43748   '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?",
43749   'log' => '',
43750   'timestamp' => '1494966544',
43751   'format' => '1',
43752 ))
43753 ->execute();
43754
43755 $connection->schema()->createTable('node_type', array(
43756   'fields' => array(
43757     'type' => array(
43758       'type' => 'varchar',
43759       'not null' => TRUE,
43760       'length' => '32',
43761     ),
43762     'name' => array(
43763       'type' => 'varchar',
43764       'not null' => TRUE,
43765       'length' => '255',
43766       'default' => '',
43767     ),
43768     'module' => array(
43769       'type' => 'varchar',
43770       'not null' => TRUE,
43771       'length' => '255',
43772     ),
43773     'description' => array(
43774       'type' => 'text',
43775       'not null' => TRUE,
43776       'size' => 'normal',
43777     ),
43778     'help' => array(
43779       'type' => 'text',
43780       'not null' => TRUE,
43781       'size' => 'normal',
43782     ),
43783     'has_title' => array(
43784       'type' => 'int',
43785       'not null' => TRUE,
43786       'size' => 'normal',
43787       'unsigned' => TRUE,
43788     ),
43789     'title_label' => array(
43790       'type' => 'varchar',
43791       'not null' => TRUE,
43792       'length' => '255',
43793       'default' => '',
43794     ),
43795     'has_body' => array(
43796       'type' => 'int',
43797       'not null' => TRUE,
43798       'size' => 'normal',
43799       'unsigned' => TRUE,
43800     ),
43801     'body_label' => array(
43802       'type' => 'varchar',
43803       'not null' => TRUE,
43804       'length' => '255',
43805       'default' => '',
43806     ),
43807     'min_word_count' => array(
43808       'type' => 'int',
43809       'not null' => TRUE,
43810       'size' => 'normal',
43811       'unsigned' => TRUE,
43812     ),
43813     'custom' => array(
43814       'type' => 'int',
43815       'not null' => TRUE,
43816       'size' => 'normal',
43817       'default' => '0',
43818     ),
43819     'modified' => array(
43820       'type' => 'int',
43821       'not null' => TRUE,
43822       'size' => 'normal',
43823       'default' => '0',
43824     ),
43825     'locked' => array(
43826       'type' => 'int',
43827       'not null' => TRUE,
43828       'size' => 'normal',
43829       'default' => '0',
43830     ),
43831     'orig_type' => array(
43832       'type' => 'varchar',
43833       'not null' => TRUE,
43834       'length' => '255',
43835       'default' => '',
43836     ),
43837   ),
43838   'primary key' => array(
43839     'type',
43840   ),
43841   'mysql_character_set' => 'utf8',
43842 ));
43843
43844 $connection->insert('node_type')
43845 ->fields(array(
43846   'type',
43847   'name',
43848   'module',
43849   'description',
43850   'help',
43851   'has_title',
43852   'title_label',
43853   'has_body',
43854   'body_label',
43855   'min_word_count',
43856   'custom',
43857   'modified',
43858   'locked',
43859   'orig_type',
43860 ))
43861 ->values(array(
43862   'type' => 'article',
43863   'name' => 'Article',
43864   'module' => 'node',
43865   'description' => 'An <em>article</em>, content type.',
43866   'help' => '',
43867   'has_title' => '1',
43868   'title_label' => 'Title',
43869   'has_body' => '1',
43870   'body_label' => 'Body',
43871   'min_word_count' => '0',
43872   'custom' => '1',
43873   'modified' => '1',
43874   'locked' => '0',
43875   'orig_type' => 'story',
43876 ))
43877 ->values(array(
43878   'type' => 'company',
43879   'name' => 'Company',
43880   'module' => 'node',
43881   'description' => 'Company node type',
43882   'help' => '',
43883   'has_title' => '1',
43884   'title_label' => 'Name',
43885   'has_body' => '1',
43886   'body_label' => 'Description',
43887   'min_word_count' => '0',
43888   'custom' => '0',
43889   'modified' => '1',
43890   'locked' => '0',
43891   'orig_type' => 'company',
43892 ))
43893 ->values(array(
43894   'type' => 'employee',
43895   'name' => 'Employee',
43896   'module' => 'node',
43897   'description' => 'Employee node type',
43898   'help' => '',
43899   'has_title' => '1',
43900   'title_label' => 'Name',
43901   'has_body' => '1',
43902   'body_label' => 'Bio',
43903   'min_word_count' => '20',
43904   'custom' => '0',
43905   'modified' => '0',
43906   'locked' => '0',
43907   'orig_type' => 'employee',
43908 ))
43909 ->values(array(
43910   'type' => 'event',
43911   'name' => 'Event',
43912   'module' => 'node',
43913   '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.',
43914   'help' => '',
43915   'has_title' => '1',
43916   'title_label' => 'Title',
43917   'has_body' => '1',
43918   'body_label' => 'Body',
43919   'min_word_count' => '0',
43920   'custom' => '1',
43921   'modified' => '1',
43922   'locked' => '0',
43923   'orig_type' => 'event',
43924 ))
43925 ->values(array(
43926   'type' => 'forum',
43927   'name' => 'Forum topic',
43928   'module' => 'forum',
43929   'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
43930   'help' => '',
43931   'has_title' => '1',
43932   'title_label' => 'Subject',
43933   'has_body' => '1',
43934   'body_label' => 'Body',
43935   'min_word_count' => '0',
43936   'custom' => '0',
43937   'modified' => '0',
43938   'locked' => '1',
43939   'orig_type' => 'forum',
43940 ))
43941 ->values(array(
43942   'type' => 'page',
43943   'name' => 'Page',
43944   'module' => 'node',
43945   '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.",
43946   'help' => '',
43947   'has_title' => '1',
43948   'title_label' => 'Title',
43949   'has_body' => '1',
43950   'body_label' => 'Body',
43951   'min_word_count' => '0',
43952   'custom' => '1',
43953   'modified' => '1',
43954   'locked' => '0',
43955   'orig_type' => 'page',
43956 ))
43957 ->values(array(
43958   'type' => 'sponsor',
43959   'name' => 'Sponsor',
43960   'module' => 'node',
43961   'description' => 'Sponsor node type',
43962   'help' => '',
43963   'has_title' => '1',
43964   'title_label' => 'Name',
43965   'has_body' => '0',
43966   'body_label' => 'Body',
43967   'min_word_count' => '0',
43968   'custom' => '0',
43969   'modified' => '0',
43970   'locked' => '0',
43971   'orig_type' => '',
43972 ))
43973 ->values(array(
43974   'type' => 'story',
43975   'name' => 'Story',
43976   'module' => 'node',
43977   '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.",
43978   'help' => '',
43979   'has_title' => '1',
43980   'title_label' => 'Title',
43981   'has_body' => '1',
43982   'body_label' => 'Body',
43983   'min_word_count' => '0',
43984   'custom' => '1',
43985   'modified' => '1',
43986   'locked' => '0',
43987   'orig_type' => 'story',
43988 ))
43989 ->values(array(
43990   'type' => 'test_event',
43991   'name' => 'Migrate test event',
43992   'module' => 'node',
43993   'description' => 'test event description here',
43994   'help' => '',
43995   'has_title' => '1',
43996   'title_label' => 'Event Name',
43997   'has_body' => '1',
43998   'body_label' => 'Body',
43999   'min_word_count' => '0',
44000   'custom' => '1',
44001   'modified' => '1',
44002   'locked' => '0',
44003   'orig_type' => 'event',
44004 ))
44005 ->values(array(
44006   'type' => 'test_page',
44007   'name' => 'Migrate test page',
44008   'module' => 'node',
44009   '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.",
44010   'help' => '',
44011   'has_title' => '1',
44012   'title_label' => 'Title',
44013   'has_body' => '1',
44014   'body_label' => 'This is the body field label',
44015   'min_word_count' => '0',
44016   'custom' => '1',
44017   'modified' => '1',
44018   'locked' => '0',
44019   'orig_type' => 'page',
44020 ))
44021 ->values(array(
44022   'type' => 'test_planet',
44023   'name' => 'Migrate test planet',
44024   'module' => 'node',
44025   '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.",
44026   'help' => '',
44027   'has_title' => '1',
44028   'title_label' => 'Title',
44029   'has_body' => '0',
44030   'body_label' => 'Body',
44031   'min_word_count' => '0',
44032   'custom' => '1',
44033   'modified' => '1',
44034   'locked' => '0',
44035   'orig_type' => 'test_planet',
44036 ))
44037 ->values(array(
44038   'type' => 'test_story',
44039   'name' => 'Migrate test story',
44040   'module' => 'node',
44041   '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.",
44042   'help' => '',
44043   'has_title' => '1',
44044   'title_label' => 'Title',
44045   'has_body' => '0',
44046   'body_label' => 'Body',
44047   'min_word_count' => '0',
44048   'custom' => '1',
44049   'modified' => '1',
44050   'locked' => '0',
44051   'orig_type' => 'test_story',
44052 ))
44053 ->execute();
44054
44055 $connection->schema()->createTable('permission', array(
44056   'fields' => array(
44057     'pid' => array(
44058       'type' => 'serial',
44059       'not null' => TRUE,
44060       'size' => 'normal',
44061     ),
44062     'rid' => array(
44063       'type' => 'int',
44064       'not null' => TRUE,
44065       'size' => 'normal',
44066       'default' => '0',
44067       'unsigned' => TRUE,
44068     ),
44069     'perm' => array(
44070       'type' => 'text',
44071       'not null' => FALSE,
44072       'size' => 'normal',
44073     ),
44074     'tid' => array(
44075       'type' => 'int',
44076       'not null' => TRUE,
44077       'size' => 'normal',
44078       'default' => '0',
44079       'unsigned' => TRUE,
44080     ),
44081   ),
44082   'primary key' => array(
44083     'pid',
44084   ),
44085   'mysql_character_set' => 'utf8',
44086 ));
44087
44088 $connection->insert('permission')
44089 ->fields(array(
44090   'pid',
44091   'rid',
44092   'perm',
44093   'tid',
44094 ))
44095 ->values(array(
44096   'pid' => '1',
44097   'rid' => '1',
44098   'perm' => 'access content, migrate test anonymous permission',
44099   'tid' => '0',
44100 ))
44101 ->values(array(
44102   'pid' => '2',
44103   'rid' => '2',
44104   'perm' => 'access comments, access content, post comments, post comments without approval, migrate test authenticated permission',
44105   'tid' => '0',
44106 ))
44107 ->values(array(
44108   'pid' => '3',
44109   'rid' => '3',
44110   'perm' => 'migrate test role 1 test permission',
44111   'tid' => '0',
44112 ))
44113 ->values(array(
44114   'pid' => '4',
44115   'rid' => '4',
44116   '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',
44117   'tid' => '0',
44118 ))
44119 ->execute();
44120
44121 $connection->schema()->createTable('profile_fields', array(
44122   'fields' => array(
44123     'fid' => array(
44124       'type' => 'serial',
44125       'not null' => TRUE,
44126       'size' => 'normal',
44127     ),
44128     'title' => array(
44129       'type' => 'varchar',
44130       'not null' => FALSE,
44131       'length' => '255',
44132     ),
44133     'name' => array(
44134       'type' => 'varchar',
44135       'not null' => TRUE,
44136       'length' => '128',
44137       'default' => '',
44138     ),
44139     'explanation' => array(
44140       'type' => 'text',
44141       'not null' => FALSE,
44142       'size' => 'normal',
44143     ),
44144     'category' => array(
44145       'type' => 'varchar',
44146       'not null' => FALSE,
44147       'length' => '255',
44148     ),
44149     'page' => array(
44150       'type' => 'varchar',
44151       'not null' => FALSE,
44152       'length' => '255',
44153     ),
44154     'type' => array(
44155       'type' => 'varchar',
44156       'not null' => FALSE,
44157       'length' => '128',
44158     ),
44159     'weight' => array(
44160       'type' => 'int',
44161       'not null' => TRUE,
44162       'size' => 'normal',
44163       'default' => '0',
44164     ),
44165     'required' => array(
44166       'type' => 'int',
44167       'not null' => TRUE,
44168       'size' => 'normal',
44169       'default' => '0',
44170     ),
44171     'register' => array(
44172       'type' => 'int',
44173       'not null' => TRUE,
44174       'size' => 'normal',
44175       'default' => '0',
44176     ),
44177     'visibility' => array(
44178       'type' => 'int',
44179       'not null' => TRUE,
44180       'size' => 'normal',
44181       'default' => '0',
44182     ),
44183     'autocomplete' => array(
44184       'type' => 'int',
44185       'not null' => TRUE,
44186       'size' => 'normal',
44187       'default' => '0',
44188     ),
44189     'options' => array(
44190       'type' => 'text',
44191       'not null' => FALSE,
44192       'size' => 'normal',
44193     ),
44194   ),
44195   'primary key' => array(
44196     'fid',
44197   ),
44198   'mysql_character_set' => 'utf8',
44199 ));
44200
44201 $connection->insert('profile_fields')
44202 ->fields(array(
44203   'fid',
44204   'title',
44205   'name',
44206   'explanation',
44207   'category',
44208   'page',
44209   'type',
44210   'weight',
44211   'required',
44212   'register',
44213   'visibility',
44214   'autocomplete',
44215   'options',
44216 ))
44217 ->values(array(
44218   'fid' => '8',
44219   'title' => 'Favorite color',
44220   'name' => 'profile_color',
44221   'explanation' => 'List your favorite color',
44222   'category' => 'Personal information',
44223   'page' => 'Peole whose favorite color is %value',
44224   'type' => 'textfield',
44225   'weight' => '-10',
44226   'required' => '0',
44227   'register' => '1',
44228   'visibility' => '2',
44229   'autocomplete' => '1',
44230   'options' => '',
44231 ))
44232 ->values(array(
44233   'fid' => '9',
44234   'title' => 'Biography',
44235   'name' => 'profile_biography',
44236   'explanation' => 'Tell people a little bit about yourself',
44237   'category' => 'Personal information',
44238   'page' => '',
44239   'type' => 'textarea',
44240   'weight' => '-8',
44241   'required' => '0',
44242   'register' => '0',
44243   'visibility' => '2',
44244   'autocomplete' => '0',
44245   'options' => '',
44246 ))
44247 ->values(array(
44248   'fid' => '10',
44249   'title' => 'Sell your email address?',
44250   'name' => 'profile_sell_address',
44251   'explanation' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
44252   'category' => 'Communication preferences',
44253   'page' => 'People who want us to sell their address',
44254   'type' => 'checkbox',
44255   'weight' => '-10',
44256   'required' => '0',
44257   'register' => '1',
44258   'visibility' => '1',
44259   'autocomplete' => '0',
44260   'options' => '',
44261 ))
44262 ->values(array(
44263   'fid' => '11',
44264   'title' => 'Sales Category',
44265   'name' => 'profile_sold_to',
44266   'explanation' => "Select the sales categories to which this user's address was sold.",
44267   'category' => 'Administrative data',
44268   'page' => 'People whose address was sold to %value',
44269   'type' => 'selection',
44270   'weight' => '-10',
44271   'required' => '0',
44272   'register' => '0',
44273   'visibility' => '4',
44274   'autocomplete' => '0',
44275   'options' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
44276 ))
44277 ->values(array(
44278   'fid' => '12',
44279   'title' => 'Favorite bands',
44280   'name' => 'profile_bands',
44281   'explanation' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
44282   'category' => 'Personal information',
44283   'page' => '',
44284   'type' => 'list',
44285   'weight' => '-6',
44286   'required' => '0',
44287   'register' => '1',
44288   'visibility' => '3',
44289   'autocomplete' => '1',
44290   'options' => '',
44291 ))
44292 ->values(array(
44293   'fid' => '13',
44294   'title' => 'Blog',
44295   'name' => 'profile_blog',
44296   'explanation' => 'Paste the full URL, including http://, of your personal blog.',
44297   'category' => 'Personal information',
44298   'page' => '',
44299   'type' => 'url',
44300   'weight' => '3',
44301   'required' => '0',
44302   'register' => '0',
44303   'visibility' => '3',
44304   'autocomplete' => '0',
44305   'options' => '',
44306 ))
44307 ->values(array(
44308   'fid' => '14',
44309   'title' => 'Birthdate',
44310   'name' => 'profile_birthdate',
44311   'explanation' => "Enter your birth date and we'll send you a coupon.",
44312   'category' => 'Personal information',
44313   'page' => '',
44314   'type' => 'date',
44315   'weight' => '4',
44316   'required' => '0',
44317   'register' => '0',
44318   'visibility' => '2',
44319   'autocomplete' => '0',
44320   'options' => '',
44321 ))
44322 ->values(array(
44323   'fid' => '15',
44324   'title' => 'I love migrations',
44325   'name' => 'profile_love_migrations',
44326   'explanation' => 'If you check this box, you love migrations.',
44327   'category' => 'Personal information',
44328   'page' => 'People who love migrations',
44329   'type' => 'checkbox',
44330   'weight' => '-15',
44331   'required' => '0',
44332   'register' => '0',
44333   'visibility' => '2',
44334   'autocomplete' => '0',
44335   'options' => '',
44336 ))
44337 ->execute();
44338
44339 $connection->schema()->createTable('profile_values', array(
44340   'fields' => array(
44341     'fid' => array(
44342       'type' => 'int',
44343       'not null' => TRUE,
44344       'size' => 'normal',
44345       'default' => '0',
44346       'unsigned' => TRUE,
44347     ),
44348     'uid' => array(
44349       'type' => 'int',
44350       'not null' => TRUE,
44351       'size' => 'normal',
44352       'default' => '0',
44353       'unsigned' => TRUE,
44354     ),
44355     'value' => array(
44356       'type' => 'text',
44357       'not null' => FALSE,
44358       'size' => 'normal',
44359     ),
44360   ),
44361   'primary key' => array(
44362     'fid',
44363     'uid',
44364   ),
44365   'mysql_character_set' => 'utf8',
44366 ));
44367
44368 $connection->insert('profile_values')
44369 ->fields(array(
44370   'fid',
44371   'uid',
44372   'value',
44373 ))
44374 ->values(array(
44375   'fid' => '8',
44376   'uid' => '2',
44377   'value' => 'red',
44378 ))
44379 ->values(array(
44380   'fid' => '8',
44381   'uid' => '8',
44382   'value' => 'brown',
44383 ))
44384 ->values(array(
44385   'fid' => '8',
44386   'uid' => '15',
44387   'value' => 'orange',
44388 ))
44389 ->values(array(
44390   'fid' => '8',
44391   'uid' => '16',
44392   'value' => 'blue',
44393 ))
44394 ->values(array(
44395   'fid' => '8',
44396   'uid' => '17',
44397   'value' => 'yellow',
44398 ))
44399 ->values(array(
44400   'fid' => '9',
44401   'uid' => '2',
44402   '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.',
44403 ))
44404 ->values(array(
44405   'fid' => '9',
44406   'uid' => '8',
44407   '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.',
44408 ))
44409 ->values(array(
44410   'fid' => '9',
44411   'uid' => '15',
44412   '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.',
44413 ))
44414 ->values(array(
44415   'fid' => '9',
44416   'uid' => '16',
44417   'value' => 'Pellentesque sit amet sem et purus pretium consectetuer.',
44418 ))
44419 ->values(array(
44420   'fid' => '9',
44421   'uid' => '17',
44422   'value' => 'The quick brown fox jumped over the lazy dog.',
44423 ))
44424 ->values(array(
44425   'fid' => '10',
44426   'uid' => '2',
44427   'value' => '1',
44428 ))
44429 ->values(array(
44430   'fid' => '10',
44431   'uid' => '8',
44432   'value' => '0',
44433 ))
44434 ->values(array(
44435   'fid' => '10',
44436   'uid' => '15',
44437   'value' => '1',
44438 ))
44439 ->values(array(
44440   'fid' => '10',
44441   'uid' => '16',
44442   'value' => '0',
44443 ))
44444 ->values(array(
44445   'fid' => '10',
44446   'uid' => '17',
44447   'value' => '0',
44448 ))
44449 ->values(array(
44450   'fid' => '11',
44451   'uid' => '2',
44452   'value' => 'Back\slash',
44453 ))
44454 ->values(array(
44455   'fid' => '11',
44456   'uid' => '8',
44457   'value' => 'Forward/slash',
44458 ))
44459 ->values(array(
44460   'fid' => '11',
44461   'uid' => '15',
44462   'value' => 'Dot.in.the.middle',
44463 ))
44464 ->values(array(
44465   'fid' => '11',
44466   'uid' => '16',
44467   'value' => 'Faithful servant',
44468 ))
44469 ->values(array(
44470   'fid' => '11',
44471   'uid' => '17',
44472   'value' => 'Anonymous donor',
44473 ))
44474 ->values(array(
44475   'fid' => '12',
44476   'uid' => '2',
44477   'value' => "AC/DC\n,,Eagles\r\nElton John,Lemonheads\r\n\r\nRolling Stones\rQueen\nThe White Stripes",
44478 ))
44479 ->values(array(
44480   'fid' => '12',
44481   'uid' => '8',
44482   'value' => "Deep Purple\nWho\nThe Beatles",
44483 ))
44484 ->values(array(
44485   'fid' => '12',
44486   'uid' => '15',
44487   'value' => "ABBA\nBoney M",
44488 ))
44489 ->values(array(
44490   'fid' => '12',
44491   'uid' => '16',
44492   'value' => "Van Halen\nDave M",
44493 ))
44494 ->values(array(
44495   'fid' => '12',
44496   'uid' => '17',
44497   'value' => "Toto\nJohn Denver",
44498 ))
44499 ->values(array(
44500   'fid' => '13',
44501   'uid' => '2',
44502   'value' => 'http://example.com/blog',
44503 ))
44504 ->values(array(
44505   'fid' => '13',
44506   'uid' => '8',
44507   'value' => 'http://blog.example.com',
44508 ))
44509 ->values(array(
44510   'fid' => '13',
44511   'uid' => '15',
44512   'value' => 'http://example.com/journal',
44513 ))
44514 ->values(array(
44515   'fid' => '13',
44516   'uid' => '16',
44517   'value' => 'http://example.com/monkeys',
44518 ))
44519 ->values(array(
44520   'fid' => '13',
44521   'uid' => '17',
44522   'value' => 'http://example.com/penguins',
44523 ))
44524 ->values(array(
44525   'fid' => '14',
44526   'uid' => '2',
44527   'value' => 'a:3:{s:5:"month";s:1:"6";s:3:"day";s:1:"2";s:4:"year";s:4:"1974";}',
44528 ))
44529 ->values(array(
44530   'fid' => '14',
44531   'uid' => '8',
44532   'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:1:"9";s:4:"year";s:4:"1980";}',
44533 ))
44534 ->values(array(
44535   'fid' => '14',
44536   'uid' => '15',
44537   'value' => 'a:3:{s:5:"month";s:2:"11";s:3:"day";s:2:"25";s:4:"year";s:4:"1982";}',
44538 ))
44539 ->values(array(
44540   'fid' => '14',
44541   'uid' => '16',
44542   'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:2:"23";s:4:"year";s:4:"1939";}',
44543 ))
44544 ->values(array(
44545   'fid' => '14',
44546   'uid' => '17',
44547   'value' => 'a:3:{s:5:"month";s:2:"12";s:3:"day";s:2:"18";s:4:"year";s:4:"1942";}',
44548 ))
44549 ->execute();
44550
44551 $connection->schema()->createTable('role', array(
44552   'fields' => array(
44553     'rid' => array(
44554       'type' => 'serial',
44555       'not null' => TRUE,
44556       'size' => 'normal',
44557       'unsigned' => TRUE,
44558     ),
44559     'name' => array(
44560       'type' => 'varchar',
44561       'not null' => TRUE,
44562       'length' => '64',
44563       'default' => '',
44564     ),
44565   ),
44566   'primary key' => array(
44567     'rid',
44568   ),
44569   'mysql_character_set' => 'utf8',
44570 ));
44571
44572 $connection->insert('role')
44573 ->fields(array(
44574   'rid',
44575   'name',
44576 ))
44577 ->values(array(
44578   'rid' => '1',
44579   'name' => 'anonymous user',
44580 ))
44581 ->values(array(
44582   'rid' => '2',
44583   'name' => 'authenticated user',
44584 ))
44585 ->values(array(
44586   'rid' => '3',
44587   'name' => 'migrate test role 1',
44588 ))
44589 ->values(array(
44590   'rid' => '4',
44591   'name' => 'migrate test role 2',
44592 ))
44593 ->values(array(
44594   'rid' => '5',
44595   'name' => 'migrate test role 3 that is longer than thirty two characters',
44596 ))
44597 ->execute();
44598
44599 $connection->schema()->createTable('semaphore', array(
44600   'fields' => array(
44601     'name' => array(
44602       'type' => 'varchar',
44603       'not null' => TRUE,
44604       'length' => '255',
44605       'default' => '',
44606     ),
44607     'value' => array(
44608       'type' => 'varchar',
44609       'not null' => TRUE,
44610       'length' => '255',
44611       'default' => '',
44612     ),
44613     'expire' => array(
44614       'type' => 'numeric',
44615       'not null' => TRUE,
44616       'precision' => '10',
44617       'scale' => '0',
44618     ),
44619   ),
44620   'primary key' => array(
44621     'name',
44622   ),
44623   'mysql_character_set' => 'utf8',
44624 ));
44625
44626 $connection->schema()->createTable('sessions', array(
44627   'fields' => array(
44628     'uid' => array(
44629       'type' => 'int',
44630       'not null' => TRUE,
44631       'size' => 'normal',
44632       'unsigned' => TRUE,
44633     ),
44634     'sid' => array(
44635       'type' => 'varchar',
44636       'not null' => TRUE,
44637       'length' => '64',
44638       'default' => '',
44639     ),
44640     'hostname' => array(
44641       'type' => 'varchar',
44642       'not null' => TRUE,
44643       'length' => '128',
44644       'default' => '',
44645     ),
44646     'timestamp' => array(
44647       'type' => 'int',
44648       'not null' => TRUE,
44649       'size' => 'normal',
44650       'default' => '0',
44651     ),
44652     'cache' => array(
44653       'type' => 'int',
44654       'not null' => TRUE,
44655       'size' => 'normal',
44656       'default' => '0',
44657     ),
44658     'session' => array(
44659       'type' => 'blob',
44660       'not null' => FALSE,
44661       'size' => 'big',
44662     ),
44663   ),
44664   'primary key' => array(
44665     'sid',
44666   ),
44667   'mysql_character_set' => 'utf8',
44668 ));
44669
44670 $connection->schema()->createTable('system', array(
44671   'fields' => array(
44672     'filename' => array(
44673       'type' => 'varchar',
44674       'not null' => TRUE,
44675       'length' => '255',
44676       'default' => '',
44677     ),
44678     'name' => array(
44679       'type' => 'varchar',
44680       'not null' => TRUE,
44681       'length' => '255',
44682       'default' => '',
44683     ),
44684     'type' => array(
44685       'type' => 'varchar',
44686       'not null' => TRUE,
44687       'length' => '255',
44688       'default' => '',
44689     ),
44690     'owner' => array(
44691       'type' => 'varchar',
44692       'not null' => TRUE,
44693       'length' => '255',
44694       'default' => '',
44695     ),
44696     'status' => array(
44697       'type' => 'int',
44698       'not null' => TRUE,
44699       'size' => 'normal',
44700       'default' => '0',
44701     ),
44702     'throttle' => array(
44703       'type' => 'int',
44704       'not null' => TRUE,
44705       'size' => 'normal',
44706       'default' => '0',
44707     ),
44708     'bootstrap' => array(
44709       'type' => 'int',
44710       'not null' => TRUE,
44711       'size' => 'normal',
44712       'default' => '0',
44713     ),
44714     'schema_version' => array(
44715       'type' => 'int',
44716       'not null' => TRUE,
44717       'size' => 'normal',
44718       'default' => '-1',
44719     ),
44720     'weight' => array(
44721       'type' => 'int',
44722       'not null' => TRUE,
44723       'size' => 'normal',
44724       'default' => '0',
44725     ),
44726     'info' => array(
44727       'type' => 'text',
44728       'not null' => FALSE,
44729       'size' => 'normal',
44730     ),
44731   ),
44732   'primary key' => array(
44733     'filename',
44734   ),
44735   'mysql_character_set' => 'utf8',
44736 ));
44737
44738 $connection->insert('system')
44739 ->fields(array(
44740   'filename',
44741   'name',
44742   'type',
44743   'owner',
44744   'status',
44745   'throttle',
44746   'bootstrap',
44747   'schema_version',
44748   'weight',
44749   'info',
44750 ))
44751 ->values(array(
44752   'filename' => 'modules/aggregator/aggregator.module',
44753   'name' => 'aggregator',
44754   'type' => 'module',
44755   'owner' => '',
44756   'status' => '1',
44757   'throttle' => '0',
44758   'bootstrap' => '0',
44759   'schema_version' => '6001',
44760   'weight' => '0',
44761   '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";}',
44762 ))
44763 ->values(array(
44764   'filename' => 'modules/block/block.module',
44765   'name' => 'block',
44766   'type' => 'module',
44767   'owner' => '',
44768   'status' => '1',
44769   'throttle' => '0',
44770   'bootstrap' => '0',
44771   'schema_version' => '0',
44772   'weight' => '0',
44773   '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";}',
44774 ))
44775 ->values(array(
44776   'filename' => 'modules/blog/blog.module',
44777   'name' => 'blog',
44778   'type' => 'module',
44779   'owner' => '',
44780   'status' => '0',
44781   'throttle' => '0',
44782   'bootstrap' => '0',
44783   'schema_version' => '-1',
44784   'weight' => '0',
44785   '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";}',
44786 ))
44787 ->values(array(
44788   'filename' => 'modules/blogapi/blogapi.module',
44789   'name' => 'blogapi',
44790   'type' => 'module',
44791   'owner' => '',
44792   'status' => '0',
44793   'throttle' => '0',
44794   'bootstrap' => '0',
44795   'schema_version' => '-1',
44796   'weight' => '0',
44797   '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";}',
44798 ))
44799 ->values(array(
44800   'filename' => 'modules/book/book.module',
44801   'name' => 'book',
44802   'type' => 'module',
44803   'owner' => '',
44804   'status' => '1',
44805   'throttle' => '0',
44806   'bootstrap' => '0',
44807   'schema_version' => '6000',
44808   'weight' => '0',
44809   '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";}',
44810 ))
44811 ->values(array(
44812   'filename' => 'modules/color/color.module',
44813   'name' => 'color',
44814   'type' => 'module',
44815   'owner' => '',
44816   'status' => '0',
44817   'throttle' => '0',
44818   'bootstrap' => '0',
44819   'schema_version' => '-1',
44820   'weight' => '0',
44821   '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";}',
44822 ))
44823 ->values(array(
44824   'filename' => 'modules/comment/comment.module',
44825   'name' => 'comment',
44826   'type' => 'module',
44827   'owner' => '',
44828   'status' => '1',
44829   'throttle' => '0',
44830   'bootstrap' => '0',
44831   'schema_version' => '6005',
44832   'weight' => '0',
44833   '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";}',
44834 ))
44835 ->values(array(
44836   'filename' => 'modules/contact/contact.module',
44837   'name' => 'contact',
44838   'type' => 'module',
44839   'owner' => '',
44840   'status' => '1',
44841   'throttle' => '0',
44842   'bootstrap' => '0',
44843   'schema_version' => '6001',
44844   'weight' => '0',
44845   '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";}',
44846 ))
44847 ->values(array(
44848   'filename' => 'modules/dblog/dblog.module',
44849   'name' => 'dblog',
44850   'type' => 'module',
44851   'owner' => '',
44852   'status' => '0',
44853   'throttle' => '0',
44854   'bootstrap' => '0',
44855   'schema_version' => '-1',
44856   'weight' => '0',
44857   '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";}',
44858 ))
44859 ->values(array(
44860   'filename' => 'modules/filter/filter.module',
44861   'name' => 'filter',
44862   'type' => 'module',
44863   'owner' => '',
44864   'status' => '1',
44865   'throttle' => '0',
44866   'bootstrap' => '0',
44867   'schema_version' => '0',
44868   'weight' => '0',
44869   '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";}',
44870 ))
44871 ->values(array(
44872   'filename' => 'modules/forum/forum.module',
44873   'name' => 'forum',
44874   'type' => 'module',
44875   'owner' => '',
44876   'status' => '1',
44877   'throttle' => '0',
44878   'bootstrap' => '0',
44879   'schema_version' => '6000',
44880   'weight' => '1',
44881   '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";}',
44882 ))
44883 ->values(array(
44884   'filename' => 'modules/help/help.module',
44885   'name' => 'help',
44886   'type' => 'module',
44887   'owner' => '',
44888   'status' => '0',
44889   'throttle' => '0',
44890   'bootstrap' => '0',
44891   'schema_version' => '-1',
44892   'weight' => '0',
44893   '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";}',
44894 ))
44895 ->values(array(
44896   'filename' => 'modules/locale/locale.module',
44897   'name' => 'locale',
44898   'type' => 'module',
44899   'owner' => '',
44900   'status' => '1',
44901   'throttle' => '0',
44902   'bootstrap' => '0',
44903   'schema_version' => '6007',
44904   'weight' => '0',
44905   '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";}',
44906 ))
44907 ->values(array(
44908   'filename' => 'modules/menu/menu.module',
44909   'name' => 'menu',
44910   'type' => 'module',
44911   'owner' => '',
44912   'status' => '1',
44913   'throttle' => '0',
44914   'bootstrap' => '0',
44915   'schema_version' => '6000',
44916   'weight' => '0',
44917   '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";}',
44918 ))
44919 ->values(array(
44920   'filename' => 'modules/node/node.module',
44921   'name' => 'node',
44922   'type' => 'module',
44923   'owner' => '',
44924   'status' => '1',
44925   'throttle' => '0',
44926   'bootstrap' => '0',
44927   'schema_version' => '0',
44928   'weight' => '0',
44929   '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";}',
44930 ))
44931 ->values(array(
44932   'filename' => 'modules/openid/openid.module',
44933   'name' => 'openid',
44934   'type' => 'module',
44935   'owner' => '',
44936   'status' => '0',
44937   'throttle' => '0',
44938   'bootstrap' => '0',
44939   'schema_version' => '-1',
44940   'weight' => '0',
44941   '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";}',
44942 ))
44943 ->values(array(
44944   'filename' => 'modules/path/path.module',
44945   'name' => 'path',
44946   'type' => 'module',
44947   'owner' => '',
44948   'status' => '1',
44949   'throttle' => '0',
44950   'bootstrap' => '0',
44951   'schema_version' => '0',
44952   'weight' => '0',
44953   '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";}',
44954 ))
44955 ->values(array(
44956   'filename' => 'modules/php/php.module',
44957   'name' => 'php',
44958   'type' => 'module',
44959   'owner' => '',
44960   'status' => '1',
44961   'throttle' => '0',
44962   'bootstrap' => '0',
44963   'schema_version' => '0',
44964   'weight' => '0',
44965   '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";}',
44966 ))
44967 ->values(array(
44968   'filename' => 'modules/ping/ping.module',
44969   'name' => 'ping',
44970   'type' => 'module',
44971   'owner' => '',
44972   'status' => '0',
44973   'throttle' => '0',
44974   'bootstrap' => '0',
44975   'schema_version' => '-1',
44976   'weight' => '0',
44977   '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";}',
44978 ))
44979 ->values(array(
44980   'filename' => 'modules/poll/poll.module',
44981   'name' => 'poll',
44982   'type' => 'module',
44983   'owner' => '',
44984   'status' => '0',
44985   'throttle' => '0',
44986   'bootstrap' => '0',
44987   'schema_version' => '-1',
44988   'weight' => '0',
44989   '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";}',
44990 ))
44991 ->values(array(
44992   'filename' => 'modules/profile/profile.module',
44993   'name' => 'profile',
44994   'type' => 'module',
44995   'owner' => '',
44996   'status' => '1',
44997   'throttle' => '0',
44998   'bootstrap' => '0',
44999   'schema_version' => '6001',
45000   'weight' => '0',
45001   '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";}',
45002 ))
45003 ->values(array(
45004   'filename' => 'modules/search/search.module',
45005   'name' => 'search',
45006   'type' => 'module',
45007   'owner' => '',
45008   'status' => '0',
45009   'throttle' => '0',
45010   'bootstrap' => '0',
45011   'schema_version' => '-1',
45012   'weight' => '0',
45013   '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";}',
45014 ))
45015 ->values(array(
45016   'filename' => 'modules/statistics/statistics.module',
45017   'name' => 'statistics',
45018   'type' => 'module',
45019   'owner' => '',
45020   'status' => '1',
45021   'throttle' => '0',
45022   'bootstrap' => '1',
45023   'schema_version' => '6000',
45024   'weight' => '0',
45025   '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";}',
45026 ))
45027 ->values(array(
45028   'filename' => 'modules/syslog/syslog.module',
45029   'name' => 'syslog',
45030   'type' => 'module',
45031   'owner' => '',
45032   'status' => '0',
45033   'throttle' => '0',
45034   'bootstrap' => '0',
45035   'schema_version' => '-1',
45036   'weight' => '0',
45037   '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";}',
45038 ))
45039 ->values(array(
45040   'filename' => 'modules/system/system.module',
45041   'name' => 'system',
45042   'type' => 'module',
45043   'owner' => '',
45044   'status' => '1',
45045   'throttle' => '0',
45046   'bootstrap' => '0',
45047   'schema_version' => '6056',
45048   'weight' => '0',
45049   '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";}',
45050 ))
45051 ->values(array(
45052   'filename' => 'modules/taxonomy/taxonomy.module',
45053   'name' => 'taxonomy',
45054   'type' => 'module',
45055   'owner' => '',
45056   'status' => '1',
45057   'throttle' => '0',
45058   'bootstrap' => '0',
45059   'schema_version' => '6001',
45060   'weight' => '0',
45061   '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";}',
45062 ))
45063 ->values(array(
45064   'filename' => 'modules/throttle/throttle.module',
45065   'name' => 'throttle',
45066   'type' => 'module',
45067   'owner' => '',
45068   'status' => '0',
45069   'throttle' => '0',
45070   'bootstrap' => '0',
45071   'schema_version' => '-1',
45072   'weight' => '0',
45073   '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";}',
45074 ))
45075 ->values(array(
45076   'filename' => 'modules/tracker/tracker.module',
45077   'name' => 'tracker',
45078   'type' => 'module',
45079   'owner' => '',
45080   'status' => '0',
45081   'throttle' => '0',
45082   'bootstrap' => '0',
45083   'schema_version' => '-1',
45084   'weight' => '0',
45085   '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";}',
45086 ))
45087 ->values(array(
45088   'filename' => 'modules/translation/translation.module',
45089   'name' => 'translation',
45090   'type' => 'module',
45091   'owner' => '',
45092   'status' => '1',
45093   'throttle' => '0',
45094   'bootstrap' => '0',
45095   'schema_version' => '0',
45096   'weight' => '0',
45097   '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";}',
45098 ))
45099 ->values(array(
45100   'filename' => 'modules/trigger/trigger.module',
45101   'name' => 'trigger',
45102   'type' => 'module',
45103   'owner' => '',
45104   'status' => '0',
45105   'throttle' => '0',
45106   'bootstrap' => '0',
45107   'schema_version' => '-1',
45108   'weight' => '0',
45109   '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";}',
45110 ))
45111 ->values(array(
45112   'filename' => 'modules/update/update.module',
45113   'name' => 'update',
45114   'type' => 'module',
45115   'owner' => '',
45116   'status' => '0',
45117   'throttle' => '0',
45118   'bootstrap' => '0',
45119   'schema_version' => '-1',
45120   'weight' => '0',
45121   '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";}',
45122 ))
45123 ->values(array(
45124   'filename' => 'modules/upload/upload.module',
45125   'name' => 'upload',
45126   'type' => 'module',
45127   'owner' => '',
45128   'status' => '1',
45129   'throttle' => '0',
45130   'bootstrap' => '0',
45131   'schema_version' => '6000',
45132   'weight' => '0',
45133   '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";}',
45134 ))
45135 ->values(array(
45136   'filename' => 'modules/user/user.module',
45137   'name' => 'user',
45138   'type' => 'module',
45139   'owner' => '',
45140   'status' => '1',
45141   'throttle' => '0',
45142   'bootstrap' => '0',
45143   'schema_version' => '0',
45144   'weight' => '0',
45145   '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";}',
45146 ))
45147 ->values(array(
45148   'filename' => 'sites/all/modules/cck/content.module',
45149   'name' => 'content',
45150   'type' => 'module',
45151   'owner' => '',
45152   'status' => '1',
45153   'throttle' => '0',
45154   'bootstrap' => '0',
45155   'schema_version' => '6010',
45156   'weight' => '0',
45157   '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";}',
45158 ))
45159 ->values(array(
45160   'filename' => 'sites/all/modules/cck/modules/content_copy/content_copy.module',
45161   'name' => 'content_copy',
45162   'type' => 'module',
45163   'owner' => '',
45164   'status' => '0',
45165   'throttle' => '0',
45166   'bootstrap' => '0',
45167   'schema_version' => '-1',
45168   'weight' => '0',
45169   '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";}',
45170 ))
45171 ->values(array(
45172   'filename' => 'sites/all/modules/cck/modules/content_multigroup/content_multigroup.module',
45173   'name' => 'content_multigroup',
45174   'type' => 'module',
45175   'owner' => '',
45176   'status' => '0',
45177   'throttle' => '0',
45178   'bootstrap' => '0',
45179   'schema_version' => '-1',
45180   'weight' => '0',
45181   '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";}',
45182 ))
45183 ->values(array(
45184   'filename' => 'sites/all/modules/cck/modules/content_permissions/content_permissions.module',
45185   'name' => 'content_permissions',
45186   'type' => 'module',
45187   'owner' => '',
45188   'status' => '0',
45189   'throttle' => '0',
45190   'bootstrap' => '0',
45191   'schema_version' => '-1',
45192   'weight' => '0',
45193   '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";}',
45194 ))
45195 ->values(array(
45196   'filename' => 'sites/all/modules/cck/modules/fieldgroup/fieldgroup.module',
45197   'name' => 'fieldgroup',
45198   'type' => 'module',
45199   'owner' => '',
45200   'status' => '0',
45201   'throttle' => '0',
45202   'bootstrap' => '0',
45203   'schema_version' => '-1',
45204   'weight' => '0',
45205   '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";}',
45206 ))
45207 ->values(array(
45208   'filename' => 'sites/all/modules/cck/modules/nodereference/nodereference.module',
45209   'name' => 'nodereference',
45210   'type' => 'module',
45211   'owner' => '',
45212   'status' => '1',
45213   'throttle' => '0',
45214   'bootstrap' => '0',
45215   'schema_version' => '6001',
45216   'weight' => '0',
45217   '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";}',
45218 ))
45219 ->values(array(
45220   'filename' => 'sites/all/modules/cck/modules/number/number.module',
45221   'name' => 'number',
45222   'type' => 'module',
45223   'owner' => '',
45224   'status' => '1',
45225   'throttle' => '0',
45226   'bootstrap' => '0',
45227   'schema_version' => '6000',
45228   'weight' => '0',
45229   '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";}',
45230 ))
45231 ->values(array(
45232   'filename' => 'sites/all/modules/cck/modules/optionwidgets/optionwidgets.module',
45233   'name' => 'optionwidgets',
45234   'type' => 'module',
45235   'owner' => '',
45236   'status' => '1',
45237   'throttle' => '0',
45238   'bootstrap' => '0',
45239   'schema_version' => '6001',
45240   'weight' => '0',
45241   '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";}',
45242 ))
45243 ->values(array(
45244   'filename' => 'sites/all/modules/cck/modules/text/text.module',
45245   'name' => 'text',
45246   'type' => 'module',
45247   'owner' => '',
45248   'status' => '1',
45249   'throttle' => '0',
45250   'bootstrap' => '0',
45251   'schema_version' => '6003',
45252   'weight' => '0',
45253   '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";}',
45254 ))
45255 ->values(array(
45256   'filename' => 'sites/all/modules/cck/modules/userreference/userreference.module',
45257   'name' => 'userreference',
45258   'type' => 'module',
45259   'owner' => '',
45260   'status' => '1',
45261   'throttle' => '0',
45262   'bootstrap' => '0',
45263   'schema_version' => '6002',
45264   'weight' => '0',
45265   '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";}',
45266 ))
45267 ->values(array(
45268   'filename' => 'sites/all/modules/cck/tests/content_test.module',
45269   'name' => 'content_test',
45270   'type' => 'module',
45271   'owner' => '',
45272   'status' => '0',
45273   'throttle' => '0',
45274   'bootstrap' => '0',
45275   'schema_version' => '-1',
45276   'weight' => '0',
45277   '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";}',
45278 ))
45279 ->values(array(
45280   'filename' => 'sites/all/modules/date/date/date.module',
45281   'name' => 'date',
45282   'type' => 'module',
45283   'owner' => '',
45284   'status' => '1',
45285   'throttle' => '0',
45286   'bootstrap' => '0',
45287   'schema_version' => '6005',
45288   'weight' => '0',
45289   '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";}',
45290 ))
45291 ->values(array(
45292   'filename' => 'sites/all/modules/date/date_api.module',
45293   'name' => 'date_api',
45294   'type' => 'module',
45295   'owner' => '',
45296   'status' => '1',
45297   'throttle' => '0',
45298   'bootstrap' => '0',
45299   'schema_version' => '6006',
45300   'weight' => '0',
45301   '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";}',
45302 ))
45303 ->values(array(
45304   'filename' => 'sites/all/modules/date/date_locale/date_locale.module',
45305   'name' => 'date_locale',
45306   'type' => 'module',
45307   'owner' => '',
45308   'status' => '0',
45309   'throttle' => '0',
45310   'bootstrap' => '0',
45311   'schema_version' => '-1',
45312   'weight' => '0',
45313   '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";}',
45314 ))
45315 ->values(array(
45316   'filename' => 'sites/all/modules/date/date_php4/date_php4.module',
45317   'name' => 'date_php4',
45318   'type' => 'module',
45319   'owner' => '',
45320   'status' => '0',
45321   'throttle' => '0',
45322   'bootstrap' => '0',
45323   'schema_version' => '-1',
45324   'weight' => '0',
45325   '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";}',
45326 ))
45327 ->values(array(
45328   'filename' => 'sites/all/modules/date/date_popup/date_popup.module',
45329   'name' => 'date_popup',
45330   'type' => 'module',
45331   'owner' => '',
45332   'status' => '0',
45333   'throttle' => '0',
45334   'bootstrap' => '0',
45335   'schema_version' => '-1',
45336   'weight' => '0',
45337   '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";}',
45338 ))
45339 ->values(array(
45340   'filename' => 'sites/all/modules/date/date_repeat/date_repeat.module',
45341   'name' => 'date_repeat',
45342   'type' => 'module',
45343   'owner' => '',
45344   'status' => '0',
45345   'throttle' => '0',
45346   'bootstrap' => '0',
45347   'schema_version' => '-1',
45348   'weight' => '0',
45349   '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";}',
45350 ))
45351 ->values(array(
45352   'filename' => 'sites/all/modules/date/date_timezone/date_timezone.module',
45353   'name' => 'date_timezone',
45354   'type' => 'module',
45355   'owner' => '',
45356   'status' => '1',
45357   'throttle' => '0',
45358   'bootstrap' => '0',
45359   'schema_version' => '5200',
45360   'weight' => '0',
45361   '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";}',
45362 ))
45363 ->values(array(
45364   'filename' => 'sites/all/modules/date/date_tools/date_tools.module',
45365   'name' => 'date_tools',
45366   'type' => 'module',
45367   'owner' => '',
45368   'status' => '0',
45369   'throttle' => '0',
45370   'bootstrap' => '0',
45371   'schema_version' => '-1',
45372   'weight' => '0',
45373   '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";}',
45374 ))
45375 ->values(array(
45376   'filename' => 'sites/all/modules/ddblock/ddblock.module',
45377   'name' => 'ddblock',
45378   'type' => 'module',
45379   'owner' => '',
45380   'status' => '0',
45381   'throttle' => '0',
45382   'bootstrap' => '0',
45383   'schema_version' => '-1',
45384   'weight' => '0',
45385   '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";}',
45386 ))
45387 ->values(array(
45388   'filename' => 'sites/all/modules/devel/devel.module',
45389   'name' => 'devel',
45390   'type' => 'module',
45391   'owner' => '',
45392   'status' => '0',
45393   'throttle' => '0',
45394   'bootstrap' => '0',
45395   'schema_version' => '-1',
45396   'weight' => '0',
45397   '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";}',
45398 ))
45399 ->values(array(
45400   'filename' => 'sites/all/modules/devel/devel_generate.module',
45401   'name' => 'devel_generate',
45402   'type' => 'module',
45403   'owner' => '',
45404   'status' => '0',
45405   'throttle' => '0',
45406   'bootstrap' => '0',
45407   'schema_version' => '-1',
45408   'weight' => '0',
45409   '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";}',
45410 ))
45411 ->values(array(
45412   'filename' => 'sites/all/modules/devel/devel_node_access.module',
45413   'name' => 'devel_node_access',
45414   'type' => 'module',
45415   'owner' => '',
45416   'status' => '0',
45417   'throttle' => '0',
45418   'bootstrap' => '0',
45419   'schema_version' => '-1',
45420   'weight' => '0',
45421   '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";}',
45422 ))
45423 ->values(array(
45424   'filename' => 'sites/all/modules/email/email.module',
45425   'name' => 'email',
45426   'type' => 'module',
45427   'owner' => '',
45428   'status' => '1',
45429   'throttle' => '0',
45430   'bootstrap' => '0',
45431   'schema_version' => '6001',
45432   'weight' => '0',
45433   '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";}',
45434 ))
45435 ->values(array(
45436   'filename' => 'sites/all/modules/event/contrib/calendarsignup/calendarsignup.module',
45437   'name' => 'calendarsignup',
45438   'type' => 'module',
45439   'owner' => '',
45440   'status' => '0',
45441   'throttle' => '0',
45442   'bootstrap' => '0',
45443   'schema_version' => '-1',
45444   'weight' => '0',
45445   '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";}',
45446 ))
45447 ->values(array(
45448   'filename' => 'sites/all/modules/event/contrib/datepicker/datepicker.module',
45449   'name' => 'datepicker',
45450   'type' => 'module',
45451   'owner' => '',
45452   'status' => '0',
45453   'throttle' => '0',
45454   'bootstrap' => '0',
45455   'schema_version' => '-1',
45456   'weight' => '0',
45457   '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";}',
45458 ))
45459 ->values(array(
45460   'filename' => 'sites/all/modules/event/event.module',
45461   'name' => 'event',
45462   'type' => 'module',
45463   'owner' => '',
45464   'status' => '1',
45465   'throttle' => '0',
45466   'bootstrap' => '0',
45467   'schema_version' => '6005',
45468   'weight' => '0',
45469   '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";}',
45470 ))
45471 ->values(array(
45472   'filename' => 'sites/all/modules/filefield/filefield.module',
45473   'name' => 'filefield',
45474   'type' => 'module',
45475   'owner' => '',
45476   'status' => '1',
45477   'throttle' => '0',
45478   'bootstrap' => '0',
45479   'schema_version' => '6104',
45480   'weight' => '0',
45481   '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:{}}',
45482 ))
45483 ->values(array(
45484   'filename' => 'sites/all/modules/filefield/filefield_meta/filefield_meta.module',
45485   'name' => 'filefield_meta',
45486   'type' => 'module',
45487   'owner' => '',
45488   'status' => '0',
45489   'throttle' => '0',
45490   'bootstrap' => '0',
45491   'schema_version' => '-1',
45492   'weight' => '0',
45493   '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:{}}',
45494 ))
45495 ->values(array(
45496   'filename' => 'sites/all/modules/i18n/i18n.module',
45497   'name' => 'i18n',
45498   'type' => 'module',
45499   'owner' => '',
45500   'status' => '1',
45501   'throttle' => '0',
45502   'bootstrap' => '1',
45503   'schema_version' => '9',
45504   'weight' => '10',
45505   '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";}',
45506 ))
45507 ->values(array(
45508   'filename' => 'sites/all/modules/i18n/i18nblocks/i18nblocks.module',
45509   'name' => 'i18nblocks',
45510   'type' => 'module',
45511   'owner' => '',
45512   'status' => '1',
45513   'throttle' => '0',
45514   'bootstrap' => '0',
45515   'schema_version' => '6001',
45516   'weight' => '0',
45517   '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";}',
45518 ))
45519 ->values(array(
45520   'filename' => 'sites/all/modules/i18n/i18ncck/i18ncck.module',
45521   'name' => 'i18ncck',
45522   'type' => 'module',
45523   'owner' => '',
45524   'status' => '1',
45525   'throttle' => '0',
45526   'bootstrap' => '0',
45527   'schema_version' => '0',
45528   'weight' => '0',
45529   '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";}',
45530 ))
45531 ->values(array(
45532   'filename' => 'sites/all/modules/i18n/i18ncontent/i18ncontent.module',
45533   'name' => 'i18ncontent',
45534   'type' => 'module',
45535   'owner' => '',
45536   'status' => '1',
45537   'throttle' => '0',
45538   'bootstrap' => '0',
45539   'schema_version' => '6002',
45540   'weight' => '0',
45541   '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";}',
45542 ))
45543 ->values(array(
45544   'filename' => 'sites/all/modules/i18n/i18nmenu/i18nmenu.module',
45545   'name' => 'i18nmenu',
45546   'type' => 'module',
45547   'owner' => '',
45548   'status' => '1',
45549   'throttle' => '0',
45550   'bootstrap' => '0',
45551   'schema_version' => '0',
45552   'weight' => '0',
45553   '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";}',
45554 ))
45555 ->values(array(
45556   'filename' => 'sites/all/modules/i18n/i18npoll/i18npoll.module',
45557   'name' => 'i18npoll',
45558   'type' => 'module',
45559   'owner' => '',
45560   'status' => '0',
45561   'throttle' => '0',
45562   'bootstrap' => '0',
45563   'schema_version' => '-1',
45564   'weight' => '0',
45565   '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";}',
45566 ))
45567 ->values(array(
45568   'filename' => 'sites/all/modules/i18n/i18nprofile/i18nprofile.module',
45569   'name' => 'i18nprofile',
45570   'type' => 'module',
45571   'owner' => '',
45572   'status' => '1',
45573   'throttle' => '0',
45574   'bootstrap' => '0',
45575   'schema_version' => '2',
45576   'weight' => '0',
45577   '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";}',
45578 ))
45579 ->values(array(
45580   'filename' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.module',
45581   'name' => 'i18nstrings',
45582   'type' => 'module',
45583   'owner' => '',
45584   'status' => '1',
45585   'throttle' => '0',
45586   'bootstrap' => '0',
45587   'schema_version' => '6006',
45588   'weight' => '10',
45589   '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";}',
45590 ))
45591 ->values(array(
45592   'filename' => 'sites/all/modules/i18n/i18nsync/i18nsync.module',
45593   'name' => 'i18nsync',
45594   'type' => 'module',
45595   'owner' => '',
45596   'status' => '0',
45597   'throttle' => '0',
45598   'bootstrap' => '0',
45599   'schema_version' => '-1',
45600   'weight' => '0',
45601   '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";}',
45602 ))
45603 ->values(array(
45604   'filename' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.module',
45605   'name' => 'i18ntaxonomy',
45606   'type' => 'module',
45607   'owner' => '',
45608   'status' => '1',
45609   'throttle' => '0',
45610   'bootstrap' => '0',
45611   'schema_version' => '6002',
45612   'weight' => '5',
45613   '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";}',
45614 ))
45615 ->values(array(
45616   'filename' => 'sites/all/modules/i18n/i18nviews/i18nviews.module',
45617   'name' => 'i18nviews',
45618   'type' => 'module',
45619   'owner' => '',
45620   'status' => '0',
45621   'throttle' => '0',
45622   'bootstrap' => '0',
45623   'schema_version' => '-1',
45624   'weight' => '0',
45625   '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";}',
45626 ))
45627 ->values(array(
45628   'filename' => 'sites/all/modules/i18n/tests/i18n_test.module',
45629   'name' => 'i18n_test',
45630   'type' => 'module',
45631   'owner' => '',
45632   'status' => '0',
45633   'throttle' => '0',
45634   'bootstrap' => '0',
45635   'schema_version' => '-1',
45636   'weight' => '0',
45637   '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";}',
45638 ))
45639 ->values(array(
45640   'filename' => 'sites/all/modules/imageapi/imageapi.module',
45641   'name' => 'imageapi',
45642   'type' => 'module',
45643   'owner' => '',
45644   'status' => '1',
45645   'throttle' => '0',
45646   'bootstrap' => '0',
45647   'schema_version' => '0',
45648   'weight' => '0',
45649   '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:{}}',
45650 ))
45651 ->values(array(
45652   'filename' => 'sites/all/modules/imageapi/imageapi_gd.module',
45653   'name' => 'imageapi_gd',
45654   'type' => 'module',
45655   'owner' => '',
45656   'status' => '0',
45657   'throttle' => '0',
45658   'bootstrap' => '0',
45659   'schema_version' => '-1',
45660   'weight' => '0',
45661   '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\";}",
45662 ))
45663 ->values(array(
45664   'filename' => 'sites/all/modules/imageapi/imageapi_imagemagick.module',
45665   'name' => 'imageapi_imagemagick',
45666   'type' => 'module',
45667   'owner' => '',
45668   'status' => '0',
45669   'throttle' => '0',
45670   'bootstrap' => '0',
45671   'schema_version' => '-1',
45672   'weight' => '0',
45673   '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";}',
45674 ))
45675 ->values(array(
45676   'filename' => 'sites/all/modules/imagecache/imagecache.module',
45677   'name' => 'imagecache',
45678   'type' => 'module',
45679   'owner' => '',
45680   'status' => '1',
45681   'throttle' => '0',
45682   'bootstrap' => '0',
45683   'schema_version' => '6001',
45684   'weight' => '0',
45685   '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";}',
45686 ))
45687 ->values(array(
45688   'filename' => 'sites/all/modules/imagecache/imagecache_ui.module',
45689   'name' => 'imagecache_ui',
45690   'type' => 'module',
45691   'owner' => '',
45692   'status' => '0',
45693   'throttle' => '0',
45694   'bootstrap' => '0',
45695   'schema_version' => '-1',
45696   'weight' => '0',
45697   '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";}',
45698 ))
45699 ->values(array(
45700   'filename' => 'sites/all/modules/imagefield/imagefield.module',
45701   'name' => 'imagefield',
45702   'type' => 'module',
45703   'owner' => '',
45704   'status' => '1',
45705   'throttle' => '0',
45706   'bootstrap' => '0',
45707   'schema_version' => '6006',
45708   'weight' => '0',
45709   '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";}',
45710 ))
45711 ->values(array(
45712   'filename' => 'sites/all/modules/jquery_ui/jquery_ui.module',
45713   'name' => 'jquery_ui',
45714   'type' => 'module',
45715   'owner' => '',
45716   'status' => '0',
45717   'throttle' => '0',
45718   'bootstrap' => '0',
45719   'schema_version' => '-1',
45720   'weight' => '0',
45721   '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";}',
45722 ))
45723 ->values(array(
45724   'filename' => 'sites/all/modules/link/link.module',
45725   'name' => 'link',
45726   'type' => 'module',
45727   'owner' => '',
45728   'status' => '0',
45729   'throttle' => '0',
45730   'bootstrap' => '0',
45731   'schema_version' => '6002',
45732   'weight' => '0',
45733   '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";}',
45734 ))
45735 ->values(array(
45736   'filename' => 'sites/all/modules/nodeaccess/nodeaccess.module',
45737   'name' => 'nodeaccess',
45738   'type' => 'module',
45739   'owner' => '',
45740   'status' => '0',
45741   'throttle' => '0',
45742   'bootstrap' => '0',
45743   'schema_version' => '-1',
45744   'weight' => '0',
45745   '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";}',
45746 ))
45747 ->values(array(
45748   'filename' => 'sites/all/modules/phone/phone.module',
45749   'name' => 'phone',
45750   'type' => 'module',
45751   'owner' => '',
45752   'status' => '0',
45753   'throttle' => '0',
45754   'bootstrap' => '0',
45755   'schema_version' => '6200',
45756   'weight' => '0',
45757   '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";}',
45758 ))
45759 ->values(array(
45760   'filename' => 'sites/all/modules/variable/variable.module',
45761   'name' => 'variable',
45762   'type' => 'module',
45763   'owner' => '',
45764   'status' => '0',
45765   'throttle' => '0',
45766   'bootstrap' => '0',
45767   'schema_version' => '-1',
45768   'weight' => '0',
45769   '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";}',
45770 ))
45771 ->values(array(
45772   'filename' => 'sites/all/modules/variable/variable_admin/variable_admin.module',
45773   'name' => 'variable_admin',
45774   'type' => 'module',
45775   'owner' => '',
45776   'status' => '1',
45777   'throttle' => '0',
45778   'bootstrap' => '0',
45779   'schema_version' => '0',
45780   'weight' => '0',
45781   '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";}',
45782 ))
45783 ->values(array(
45784   'filename' => 'sites/all/modules/views/tests/views_test.module',
45785   'name' => 'views_test',
45786   'type' => 'module',
45787   'owner' => '',
45788   'status' => '0',
45789   'throttle' => '0',
45790   'bootstrap' => '0',
45791   'schema_version' => '-1',
45792   'weight' => '0',
45793   '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";}',
45794 ))
45795 ->values(array(
45796   'filename' => 'sites/all/modules/views/views.module',
45797   'name' => 'views',
45798   'type' => 'module',
45799   'owner' => '',
45800   'status' => '0',
45801   'throttle' => '0',
45802   'bootstrap' => '0',
45803   'schema_version' => '-1',
45804   'weight' => '0',
45805   '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";}',
45806 ))
45807 ->values(array(
45808   'filename' => 'sites/all/modules/views/views_export/views_export.module',
45809   'name' => 'views_export',
45810   'type' => 'module',
45811   'owner' => '',
45812   'status' => '0',
45813   'throttle' => '0',
45814   'bootstrap' => '0',
45815   'schema_version' => '-1',
45816   'weight' => '0',
45817   '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";}',
45818 ))
45819 ->values(array(
45820   'filename' => 'sites/all/modules/views/views_ui.module',
45821   'name' => 'views_ui',
45822   'type' => 'module',
45823   'owner' => '',
45824   'status' => '0',
45825   'throttle' => '0',
45826   'bootstrap' => '0',
45827   'schema_version' => '-1',
45828   'weight' => '0',
45829   '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";}',
45830 ))
45831 ->values(array(
45832   'filename' => 'themes/bluemarine/bluemarine.info',
45833   'name' => 'bluemarine',
45834   'type' => 'theme',
45835   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
45836   'status' => '0',
45837   'throttle' => '0',
45838   'bootstrap' => '0',
45839   'schema_version' => '-1',
45840   'weight' => '0',
45841   '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";}',
45842 ))
45843 ->values(array(
45844   'filename' => 'themes/chameleon/chameleon.info',
45845   'name' => 'chameleon',
45846   'type' => 'theme',
45847   'owner' => 'themes/chameleon/chameleon.theme',
45848   'status' => '0',
45849   'throttle' => '0',
45850   'bootstrap' => '0',
45851   'schema_version' => '-1',
45852   'weight' => '0',
45853   '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";}',
45854 ))
45855 ->values(array(
45856   'filename' => 'themes/chameleon/marvin/marvin.info',
45857   'name' => 'marvin',
45858   'type' => 'theme',
45859   'owner' => '',
45860   'status' => '0',
45861   'throttle' => '0',
45862   'bootstrap' => '0',
45863   'schema_version' => '-1',
45864   'weight' => '0',
45865   '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";}',
45866 ))
45867 ->values(array(
45868   'filename' => 'themes/garland/garland.info',
45869   'name' => 'garland',
45870   'type' => 'theme',
45871   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
45872   'status' => '1',
45873   'throttle' => '0',
45874   'bootstrap' => '0',
45875   'schema_version' => '-1',
45876   'weight' => '0',
45877   '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";}',
45878 ))
45879 ->values(array(
45880   'filename' => 'themes/garland/minnelli/minnelli.info',
45881   'name' => 'minnelli',
45882   'type' => 'theme',
45883   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
45884   'status' => '0',
45885   'throttle' => '0',
45886   'bootstrap' => '0',
45887   'schema_version' => '-1',
45888   'weight' => '0',
45889   '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";}',
45890 ))
45891 ->values(array(
45892   'filename' => 'themes/pushbutton/pushbutton.info',
45893   'name' => 'pushbutton',
45894   'type' => 'theme',
45895   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
45896   'status' => '0',
45897   'throttle' => '0',
45898   'bootstrap' => '0',
45899   'schema_version' => '-1',
45900   'weight' => '0',
45901   '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";}',
45902 ))
45903 ->execute();
45904
45905 $connection->schema()->createTable('term_data', array(
45906   'fields' => array(
45907     'tid' => array(
45908       'type' => 'serial',
45909       'not null' => TRUE,
45910       'size' => 'normal',
45911       'unsigned' => TRUE,
45912     ),
45913     'vid' => array(
45914       'type' => 'int',
45915       'not null' => TRUE,
45916       'size' => 'normal',
45917       'default' => '0',
45918       'unsigned' => TRUE,
45919     ),
45920     'name' => array(
45921       'type' => 'varchar',
45922       'not null' => TRUE,
45923       'length' => '255',
45924       'default' => '',
45925     ),
45926     'description' => array(
45927       'type' => 'text',
45928       'not null' => FALSE,
45929       'size' => 'normal',
45930     ),
45931     'weight' => array(
45932       'type' => 'int',
45933       'not null' => TRUE,
45934       'size' => 'normal',
45935       'default' => '0',
45936     ),
45937     'language' => array(
45938       'type' => 'varchar',
45939       'not null' => TRUE,
45940       'length' => '12',
45941       'default' => '',
45942     ),
45943     'trid' => array(
45944       'type' => 'int',
45945       'not null' => TRUE,
45946       'size' => 'normal',
45947       'default' => '0',
45948     ),
45949   ),
45950   'primary key' => array(
45951     'tid',
45952   ),
45953   'mysql_character_set' => 'utf8',
45954 ));
45955
45956 $connection->insert('term_data')
45957 ->fields(array(
45958   'tid',
45959   'vid',
45960   'name',
45961   'description',
45962   'weight',
45963   'language',
45964   'trid',
45965 ))
45966 ->values(array(
45967   'tid' => '1',
45968   'vid' => '1',
45969   'name' => 'zu - term 1 of vocabulary 1',
45970   'description' => 'zu - description of term 1 of vocabulary 1',
45971   'weight' => '0',
45972   'language' => 'zu',
45973   'trid' => '0',
45974 ))
45975 ->values(array(
45976   'tid' => '2',
45977   'vid' => '2',
45978   'name' => 'fr - term 2 of vocabulary 2',
45979   'description' => 'fr - description of term 2 of vocabulary 2',
45980   'weight' => '3',
45981   'language' => 'fr',
45982   'trid' => '0',
45983 ))
45984 ->values(array(
45985   'tid' => '3',
45986   'vid' => '2',
45987   'name' => 'fr - term 3 of vocabulary 2',
45988   'description' => 'fr - description of term 3 of vocabulary 2',
45989   'weight' => '4',
45990   'language' => 'fr',
45991   'trid' => '0',
45992 ))
45993 ->values(array(
45994   'tid' => '4',
45995   'vid' => '3',
45996   'name' => 'term 4 of vocabulary 3',
45997   'description' => 'description of term 4 of vocabulary 3',
45998   'weight' => '6',
45999   'language' => '',
46000   'trid' => '0',
46001 ))
46002 ->values(array(
46003   'tid' => '5',
46004   'vid' => '3',
46005   'name' => 'term 5 of vocabulary 3',
46006   'description' => 'description of term 5 of vocabulary 3',
46007   'weight' => '7',
46008   'language' => '',
46009   'trid' => '0',
46010 ))
46011 ->values(array(
46012   'tid' => '6',
46013   'vid' => '3',
46014   'name' => 'term 6 of vocabulary 3',
46015   'description' => 'description of term 6 of vocabulary 3',
46016   'weight' => '8',
46017   'language' => '',
46018   'trid' => '0',
46019 ))
46020 ->values(array(
46021   'tid' => '7',
46022   'vid' => '1',
46023   'name' => 'fr - term 2 of vocabulary 1',
46024   'description' => 'fr - desc of term 2 vocab 1',
46025   'weight' => '0',
46026   'language' => 'fr',
46027   'trid' => '0',
46028 ))
46029 ->execute();
46030
46031 $connection->schema()->createTable('term_hierarchy', array(
46032   'fields' => array(
46033     'tid' => array(
46034       'type' => 'int',
46035       'not null' => TRUE,
46036       'size' => 'normal',
46037       'default' => '0',
46038       'unsigned' => TRUE,
46039     ),
46040     'parent' => array(
46041       'type' => 'int',
46042       'not null' => TRUE,
46043       'size' => 'normal',
46044       'default' => '0',
46045       'unsigned' => TRUE,
46046     ),
46047   ),
46048   'primary key' => array(
46049     'tid',
46050     'parent',
46051   ),
46052   'mysql_character_set' => 'utf8',
46053 ));
46054
46055 $connection->insert('term_hierarchy')
46056 ->fields(array(
46057   'tid',
46058   'parent',
46059 ))
46060 ->values(array(
46061   'tid' => '1',
46062   'parent' => '0',
46063 ))
46064 ->values(array(
46065   'tid' => '2',
46066   'parent' => '0',
46067 ))
46068 ->values(array(
46069   'tid' => '4',
46070   'parent' => '0',
46071 ))
46072 ->values(array(
46073   'tid' => '7',
46074   'parent' => '0',
46075 ))
46076 ->values(array(
46077   'tid' => '3',
46078   'parent' => '2',
46079 ))
46080 ->values(array(
46081   'tid' => '5',
46082   'parent' => '4',
46083 ))
46084 ->values(array(
46085   'tid' => '6',
46086   'parent' => '4',
46087 ))
46088 ->values(array(
46089   'tid' => '6',
46090   'parent' => '5',
46091 ))
46092 ->execute();
46093
46094 $connection->schema()->createTable('term_node', array(
46095   'fields' => array(
46096     'nid' => array(
46097       'type' => 'int',
46098       'not null' => TRUE,
46099       'size' => 'normal',
46100       'default' => '0',
46101       'unsigned' => TRUE,
46102     ),
46103     'vid' => array(
46104       'type' => 'int',
46105       'not null' => TRUE,
46106       'size' => 'normal',
46107       'default' => '0',
46108       'unsigned' => TRUE,
46109     ),
46110     'tid' => array(
46111       'type' => 'int',
46112       'not null' => TRUE,
46113       'size' => 'normal',
46114       'default' => '0',
46115       'unsigned' => TRUE,
46116     ),
46117   ),
46118   'primary key' => array(
46119     'vid',
46120     'tid',
46121   ),
46122   'mysql_character_set' => 'utf8',
46123 ));
46124
46125 $connection->insert('term_node')
46126 ->fields(array(
46127   'nid',
46128   'vid',
46129   'tid',
46130 ))
46131 ->values(array(
46132   'nid' => '1',
46133   'vid' => '1',
46134   'tid' => '1',
46135 ))
46136 ->values(array(
46137   'nid' => '1',
46138   'vid' => '1',
46139   'tid' => '2',
46140 ))
46141 ->values(array(
46142   'nid' => '2',
46143   'vid' => '3',
46144   'tid' => '2',
46145 ))
46146 ->values(array(
46147   'nid' => '2',
46148   'vid' => '3',
46149   'tid' => '3',
46150 ))
46151 ->values(array(
46152   'nid' => '1',
46153   'vid' => '2',
46154   'tid' => '4',
46155 ))
46156 ->values(array(
46157   'nid' => '1',
46158   'vid' => '2',
46159   'tid' => '5',
46160 ))
46161 ->execute();
46162
46163 $connection->schema()->createTable('term_relation', array(
46164   'fields' => array(
46165     'trid' => array(
46166       'type' => 'serial',
46167       'not null' => TRUE,
46168       'size' => 'normal',
46169     ),
46170     'tid1' => array(
46171       'type' => 'int',
46172       'not null' => TRUE,
46173       'size' => 'normal',
46174       'default' => '0',
46175       'unsigned' => TRUE,
46176     ),
46177     'tid2' => array(
46178       'type' => 'int',
46179       'not null' => TRUE,
46180       'size' => 'normal',
46181       'default' => '0',
46182       'unsigned' => TRUE,
46183     ),
46184   ),
46185   'primary key' => array(
46186     'trid',
46187   ),
46188   'mysql_character_set' => 'utf8',
46189 ));
46190
46191 $connection->schema()->createTable('term_synonym', array(
46192   'fields' => array(
46193     'tsid' => array(
46194       'type' => 'serial',
46195       'not null' => TRUE,
46196       'size' => 'normal',
46197     ),
46198     'tid' => array(
46199       'type' => 'int',
46200       'not null' => TRUE,
46201       'size' => 'normal',
46202       'default' => '0',
46203       'unsigned' => TRUE,
46204     ),
46205     'name' => array(
46206       'type' => 'varchar',
46207       'not null' => TRUE,
46208       'length' => '255',
46209       'default' => '',
46210     ),
46211   ),
46212   'primary key' => array(
46213     'tsid',
46214   ),
46215   'mysql_character_set' => 'utf8',
46216 ));
46217
46218 $connection->schema()->createTable('upload', array(
46219   'fields' => array(
46220     'fid' => array(
46221       'type' => 'int',
46222       'not null' => TRUE,
46223       'size' => 'normal',
46224       'default' => '0',
46225       'unsigned' => TRUE,
46226     ),
46227     'nid' => array(
46228       'type' => 'int',
46229       'not null' => TRUE,
46230       'size' => 'normal',
46231       'default' => '0',
46232       'unsigned' => TRUE,
46233     ),
46234     'vid' => array(
46235       'type' => 'int',
46236       'not null' => TRUE,
46237       'size' => 'normal',
46238       'default' => '0',
46239       'unsigned' => TRUE,
46240     ),
46241     'description' => array(
46242       'type' => 'varchar',
46243       'not null' => TRUE,
46244       'length' => '255',
46245       'default' => '',
46246     ),
46247     'list' => array(
46248       'type' => 'int',
46249       'not null' => TRUE,
46250       'size' => 'normal',
46251       'default' => '0',
46252       'unsigned' => TRUE,
46253     ),
46254     'weight' => array(
46255       'type' => 'int',
46256       'not null' => TRUE,
46257       'size' => 'normal',
46258       'default' => '0',
46259     ),
46260   ),
46261   'primary key' => array(
46262     'fid',
46263     'vid',
46264   ),
46265   'mysql_character_set' => 'utf8',
46266 ));
46267
46268 $connection->insert('upload')
46269 ->fields(array(
46270   'fid',
46271   'nid',
46272   'vid',
46273   'description',
46274   'list',
46275   'weight',
46276 ))
46277 ->values(array(
46278   'fid' => '1',
46279   'nid' => '1',
46280   'vid' => '1',
46281   'description' => 'file 1-1-1',
46282   'list' => '0',
46283   'weight' => '-1',
46284 ))
46285 ->values(array(
46286   'fid' => '2',
46287   'nid' => '1',
46288   'vid' => '2',
46289   'description' => 'file 1-2-2',
46290   'list' => '1',
46291   'weight' => '4',
46292 ))
46293 ->values(array(
46294   'fid' => '2',
46295   'nid' => '2',
46296   'vid' => '3',
46297   'description' => 'file 2-3-2',
46298   'list' => '1',
46299   'weight' => '2',
46300 ))
46301 ->values(array(
46302   'fid' => '3',
46303   'nid' => '1',
46304   'vid' => '2',
46305   'description' => 'file 1-2-3',
46306   'list' => '0',
46307   'weight' => '3',
46308 ))
46309 ->values(array(
46310   'fid' => '3',
46311   'nid' => '2',
46312   'vid' => '3',
46313   'description' => 'file 2-3-3',
46314   'list' => '0',
46315   'weight' => '1',
46316 ))
46317 ->execute();
46318
46319 $connection->schema()->createTable('url_alias', array(
46320   'fields' => array(
46321     'pid' => array(
46322       'type' => 'serial',
46323       'not null' => TRUE,
46324       'size' => 'normal',
46325       'unsigned' => TRUE,
46326     ),
46327     'src' => array(
46328       'type' => 'varchar',
46329       'not null' => TRUE,
46330       'length' => '128',
46331       'default' => '',
46332     ),
46333     'dst' => array(
46334       'type' => 'varchar',
46335       'not null' => TRUE,
46336       'length' => '128',
46337       'default' => '',
46338     ),
46339     'language' => array(
46340       'type' => 'varchar',
46341       'not null' => TRUE,
46342       'length' => '12',
46343       'default' => '',
46344     ),
46345   ),
46346   'primary key' => array(
46347     'pid',
46348   ),
46349   'mysql_character_set' => 'utf8',
46350 ));
46351
46352 $connection->insert('url_alias')
46353 ->fields(array(
46354   'pid',
46355   'src',
46356   'dst',
46357   'language',
46358 ))
46359 ->values(array(
46360   'pid' => '1',
46361   'src' => 'node/1',
46362   'dst' => 'alias-one',
46363   'language' => 'af',
46364 ))
46365 ->values(array(
46366   'pid' => '2',
46367   'src' => 'node/2',
46368   'dst' => 'alias-two',
46369   'language' => 'en',
46370 ))
46371 ->values(array(
46372   'pid' => '3',
46373   'src' => 'node/3',
46374   'dst' => 'alias-three',
46375   'language' => '',
46376 ))
46377 ->values(array(
46378   'pid' => '4',
46379   'src' => 'node/10',
46380   'dst' => 'the-real-mccoy',
46381   'language' => 'en',
46382 ))
46383 ->values(array(
46384   'pid' => '5',
46385   'src' => 'node/11',
46386   'dst' => 'le-vrai-mccoy',
46387   'language' => 'fr',
46388 ))
46389 ->values(array(
46390   'pid' => '6',
46391   'src' => 'node/12',
46392   'dst' => 'abantu-zulu',
46393   'language' => 'zu',
46394 ))
46395 ->values(array(
46396   'pid' => '7',
46397   'src' => 'node/13',
46398   'dst' => 'the-zulu-people',
46399   'language' => 'en',
46400 ))
46401 ->execute();
46402
46403 $connection->schema()->createTable('users', array(
46404   'fields' => array(
46405     'uid' => array(
46406       'type' => 'serial',
46407       'not null' => TRUE,
46408       'size' => 'normal',
46409       'unsigned' => TRUE,
46410     ),
46411     'name' => array(
46412       'type' => 'varchar',
46413       'not null' => TRUE,
46414       'length' => '60',
46415       'default' => '',
46416     ),
46417     'pass' => array(
46418       'type' => 'varchar',
46419       'not null' => TRUE,
46420       'length' => '32',
46421       'default' => '',
46422     ),
46423     'mail' => array(
46424       'type' => 'varchar',
46425       'not null' => FALSE,
46426       'length' => '64',
46427       'default' => '',
46428     ),
46429     'mode' => array(
46430       'type' => 'int',
46431       'not null' => TRUE,
46432       'size' => 'normal',
46433       'default' => '0',
46434     ),
46435     'sort' => array(
46436       'type' => 'int',
46437       'not null' => FALSE,
46438       'size' => 'normal',
46439       'default' => '0',
46440     ),
46441     'threshold' => array(
46442       'type' => 'int',
46443       'not null' => FALSE,
46444       'size' => 'normal',
46445       'default' => '0',
46446     ),
46447     'theme' => array(
46448       'type' => 'varchar',
46449       'not null' => TRUE,
46450       'length' => '255',
46451       'default' => '',
46452     ),
46453     'signature' => array(
46454       'type' => 'varchar',
46455       'not null' => TRUE,
46456       'length' => '255',
46457       'default' => '',
46458     ),
46459     'signature_format' => array(
46460       'type' => 'int',
46461       'not null' => TRUE,
46462       'size' => 'normal',
46463       'default' => '0',
46464     ),
46465     'created' => array(
46466       'type' => 'int',
46467       'not null' => TRUE,
46468       'size' => 'normal',
46469       'default' => '0',
46470     ),
46471     'access' => array(
46472       'type' => 'int',
46473       'not null' => TRUE,
46474       'size' => 'normal',
46475       'default' => '0',
46476     ),
46477     'login' => array(
46478       'type' => 'int',
46479       'not null' => TRUE,
46480       'size' => 'normal',
46481       'default' => '0',
46482     ),
46483     'status' => array(
46484       'type' => 'int',
46485       'not null' => TRUE,
46486       'size' => 'normal',
46487       'default' => '0',
46488     ),
46489     'timezone' => array(
46490       'type' => 'varchar',
46491       'not null' => FALSE,
46492       'length' => '8',
46493     ),
46494     'language' => array(
46495       'type' => 'varchar',
46496       'not null' => TRUE,
46497       'length' => '12',
46498       'default' => '',
46499     ),
46500     'picture' => array(
46501       'type' => 'varchar',
46502       'not null' => TRUE,
46503       'length' => '255',
46504       'default' => '',
46505     ),
46506     'init' => array(
46507       'type' => 'varchar',
46508       'not null' => FALSE,
46509       'length' => '64',
46510       'default' => '',
46511     ),
46512     'data' => array(
46513       'type' => 'text',
46514       'not null' => FALSE,
46515       'size' => 'normal',
46516     ),
46517     'timezone_name' => array(
46518       'type' => 'varchar',
46519       'not null' => FALSE,
46520       'length' => '50',
46521       'default' => '',
46522     ),
46523     'pass_plain' => array(
46524       'type' => 'varchar',
46525       'not null' => TRUE,
46526       'length' => '255',
46527       'default' => '',
46528     ),
46529     'expected_timezone' => array(
46530       'type' => 'varchar',
46531       'not null' => FALSE,
46532       'length' => '50',
46533     ),
46534     'timezone_id' => array(
46535       'type' => 'int',
46536       'not null' => TRUE,
46537       'size' => 'normal',
46538       'default' => '0',
46539     ),
46540   ),
46541   'primary key' => array(
46542     'uid',
46543   ),
46544   'mysql_character_set' => 'utf8',
46545 ));
46546
46547 $connection->insert('users')
46548 ->fields(array(
46549   'uid',
46550   'name',
46551   'pass',
46552   'mail',
46553   'mode',
46554   'sort',
46555   'threshold',
46556   'theme',
46557   'signature',
46558   'signature_format',
46559   'created',
46560   'access',
46561   'login',
46562   'status',
46563   'timezone',
46564   'language',
46565   'picture',
46566   'init',
46567   'data',
46568   'timezone_name',
46569   'pass_plain',
46570   'expected_timezone',
46571   'timezone_id',
46572 ))
46573 ->values(array(
46574   'uid' => '1',
46575   'name' => 'root',
46576   'pass' => '63a9f0ea7bb98050796b649e85481845',
46577   'mail' => 'root@localhost',
46578   'mode' => '0',
46579   'sort' => '0',
46580   'threshold' => '0',
46581   'theme' => '',
46582   'signature' => '',
46583   'signature_format' => '0',
46584   'created' => '0',
46585   'access' => '1494966478',
46586   'login' => '1494966280',
46587   'status' => '1',
46588   'timezone' => NULL,
46589   'language' => '',
46590   'picture' => '',
46591   'init' => 'root@localhost',
46592   'data' => 'b:0;',
46593   'timezone_name' => '',
46594   'pass_plain' => 'root',
46595   'expected_timezone' => NULL,
46596   'timezone_id' => '0',
46597 ))
46598 ->values(array(
46599   'uid' => '2',
46600   'name' => 'john.doe',
46601   'pass' => '671cc45b3e2c6eb751d6a554dc5a5fe7',
46602   'mail' => 'john.doe@example.com',
46603   'mode' => '0',
46604   'sort' => '0',
46605   'threshold' => '0',
46606   'theme' => '',
46607   'signature' => 'John Doe | john.doe@example.com',
46608   'signature_format' => '1',
46609   'created' => '1391150052',
46610   'access' => '1391259672',
46611   'login' => '1391152253',
46612   'status' => '1',
46613   'timezone' => '3600',
46614   'language' => 'fr',
46615   'picture' => 'core/modules/simpletest/files/image-test.jpg',
46616   'init' => 'doe@example.com',
46617   'data' => 'a:2:{s:7:"contact";i:1;s:13:"form_build_id";s:48:"form-qu_DMjE-Vfg01arT5J4VbuBCkOgx_LeySJx4qrPOSuA";}',
46618   'timezone_name' => 'Europe/Berlin',
46619   'pass_plain' => 'john.doe_pass',
46620   'expected_timezone' => 'Europe/Berlin',
46621   'timezone_id' => '1',
46622 ))
46623 ->values(array(
46624   'uid' => '8',
46625   'name' => 'joe.roe',
46626   'pass' => '93a70546e6c032c135499fed70cfe438',
46627   'mail' => 'joe.roe@example.com',
46628   'mode' => '0',
46629   'sort' => '0',
46630   'threshold' => '0',
46631   'theme' => '',
46632   'signature' => 'JR',
46633   'signature_format' => '2',
46634   'created' => '1391150053',
46635   'access' => '1391259673',
46636   'login' => '1391152254',
46637   'status' => '1',
46638   'timezone' => '7200',
46639   'language' => 'ro',
46640   'picture' => 'core/modules/simpletest/files/image-test.png',
46641   'init' => 'roe@example.com',
46642   'data' => 'a:2:{s:7:"contact";i:0;s:13:"form_build_id";s:48:"form-1TxjbL2_1dEHIxEu2Db6OvEsSN1x9ILH1VCgnvsO6LE";}',
46643   'timezone_name' => 'Europe/Helsinki',
46644   'pass_plain' => 'joe.roe_pass',
46645   'expected_timezone' => 'Europe/Helsinki',
46646   'timezone_id' => '0',
46647 ))
46648 ->values(array(
46649   'uid' => '15',
46650   'name' => 'joe.bloggs',
46651   'pass' => '2ff23139aeb404274dc67cbee8c64fb0',
46652   'mail' => 'joe.bloggs@example.com',
46653   'mode' => '0',
46654   'sort' => '0',
46655   'threshold' => '0',
46656   'theme' => '',
46657   'signature' => 'bloggs',
46658   'signature_format' => '1',
46659   'created' => '1391150054',
46660   'access' => '1391259674',
46661   'login' => '1391152255',
46662   'status' => '1',
46663   'timezone' => '-28800',
46664   'language' => 'en',
46665   'picture' => '',
46666   'init' => 'bloggs@example.com',
46667   'data' => 'a:0:{}',
46668   'timezone_name' => 'America/Anchorage',
46669   'pass_plain' => 'joe.bloggs_pass',
46670   'expected_timezone' => NULL,
46671   'timezone_id' => '0',
46672 ))
46673 ->values(array(
46674   'uid' => '16',
46675   'name' => 'sal.saraniti',
46676   'pass' => '77404657c8bcd8e9aa8f3147856efb4f',
46677   'mail' => 'sal.saraniti@example.com',
46678   'mode' => '0',
46679   'sort' => '0',
46680   'threshold' => '0',
46681   'theme' => '',
46682   'signature' => '',
46683   'signature_format' => '0',
46684   'created' => '1391151054',
46685   'access' => '1391259574',
46686   'login' => '1391162255',
46687   'status' => '1',
46688   'timezone' => '0',
46689   'language' => 'en',
46690   'picture' => '',
46691   'init' => 'sal.saraniti@example.com',
46692   'data' => 'a:0:{}',
46693   'timezone_name' => 'UTC',
46694   'pass_plain' => 'sal.saraniti',
46695   'expected_timezone' => NULL,
46696   'timezone_id' => '0',
46697 ))
46698 ->values(array(
46699   'uid' => '17',
46700   'name' => 'terry.saraniti',
46701   'pass' => '8fb310d3ec746d720e0e8efefd0cce5c',
46702   'mail' => 'terry.saraniti@example.com',
46703   'mode' => '0',
46704   'sort' => '0',
46705   'threshold' => '0',
46706   'theme' => '',
46707   'signature' => '',
46708   'signature_format' => '0',
46709   'created' => '1390151054',
46710   'access' => '1390259574',
46711   'login' => '1390162255',
46712   'status' => '1',
46713   'timezone' => NULL,
46714   'language' => 'en',
46715   'picture' => '',
46716   'init' => 'terry.saraniti@example.com',
46717   'data' => 'a:0:{}',
46718   'timezone_name' => NULL,
46719   'pass_plain' => 'terry.saraniti',
46720   'expected_timezone' => NULL,
46721   'timezone_id' => '0',
46722 ))
46723 ->execute();
46724
46725 $connection->schema()->createTable('users_roles', array(
46726   'fields' => array(
46727     'uid' => array(
46728       'type' => 'int',
46729       'not null' => TRUE,
46730       'size' => 'normal',
46731       'default' => '0',
46732       'unsigned' => TRUE,
46733     ),
46734     'rid' => array(
46735       'type' => 'int',
46736       'not null' => TRUE,
46737       'size' => 'normal',
46738       'default' => '0',
46739       'unsigned' => TRUE,
46740     ),
46741   ),
46742   'primary key' => array(
46743     'uid',
46744     'rid',
46745   ),
46746   'mysql_character_set' => 'utf8',
46747 ));
46748
46749 $connection->insert('users_roles')
46750 ->fields(array(
46751   'uid',
46752   'rid',
46753 ))
46754 ->values(array(
46755   'uid' => '2',
46756   'rid' => '3',
46757 ))
46758 ->values(array(
46759   'uid' => '15',
46760   'rid' => '3',
46761 ))
46762 ->values(array(
46763   'uid' => '16',
46764   'rid' => '3',
46765 ))
46766 ->values(array(
46767   'uid' => '8',
46768   'rid' => '4',
46769 ))
46770 ->values(array(
46771   'uid' => '15',
46772   'rid' => '4',
46773 ))
46774 ->values(array(
46775   'uid' => '17',
46776   'rid' => '4',
46777 ))
46778 ->values(array(
46779   'uid' => '8',
46780   'rid' => '5',
46781 ))
46782 ->values(array(
46783   'uid' => '15',
46784   'rid' => '5',
46785 ))
46786 ->values(array(
46787   'uid' => '16',
46788   'rid' => '5',
46789 ))
46790 ->execute();
46791
46792 $connection->schema()->createTable('variable', array(
46793   'fields' => array(
46794     'name' => array(
46795       'type' => 'varchar',
46796       'not null' => TRUE,
46797       'length' => '128',
46798       'default' => '',
46799     ),
46800     'value' => array(
46801       'type' => 'text',
46802       'not null' => TRUE,
46803       'size' => 'normal',
46804     ),
46805   ),
46806   'primary key' => array(
46807     'name',
46808   ),
46809   'mysql_character_set' => 'utf8',
46810 ));
46811
46812 $connection->insert('variable')
46813 ->fields(array(
46814   'name',
46815   'value',
46816 ))
46817 ->values(array(
46818   'name' => 'actions_max_stack',
46819   'value' => 'i:35;',
46820 ))
46821 ->values(array(
46822   'name' => 'admin_compact_mode',
46823   'value' => 'b:0;',
46824 ))
46825 ->values(array(
46826   'name' => 'aggregator_allowed_html_tags',
46827   'value' => 's:70:"<a> <b> <br /> <dd> <dl> <dt> <em> <i> <li> <ol> <p> <strong> <u> <ul>";',
46828 ))
46829 ->values(array(
46830   'name' => 'aggregator_clear',
46831   'value' => 's:7:"9676800";',
46832 ))
46833 ->values(array(
46834   'name' => 'aggregator_fetcher',
46835   'value' => 's:10:"aggregator";',
46836 ))
46837 ->values(array(
46838   'name' => 'aggregator_parser',
46839   'value' => 's:10:"aggregator";',
46840 ))
46841 ->values(array(
46842   'name' => 'aggregator_processors',
46843   'value' => 'a:1:{i:0;s:10:"aggregator";}',
46844 ))
46845 ->values(array(
46846   'name' => 'aggregator_summary_items',
46847   'value' => 's:1:"3";',
46848 ))
46849 ->values(array(
46850   'name' => 'aggregator_teaser_length',
46851   'value' => 's:3:"600";',
46852 ))
46853 ->values(array(
46854   'name' => 'allowed_html_1',
46855   'value' => 's:61:"<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>";',
46856 ))
46857 ->values(array(
46858   'name' => 'allow_insecure_uploads',
46859   'value' => 'i:1;',
46860 ))
46861 ->values(array(
46862   'name' => 'anonymous',
46863   'value' => 's:5:"Guest";',
46864 ))
46865 ->values(array(
46866   'name' => 'array_filter',
46867   'value' => 'b:1;',
46868 ))
46869 ->values(array(
46870   'name' => 'book_allowed_types',
46871   'value' => 'a:1:{i:0;s:4:"book";}',
46872 ))
46873 ->values(array(
46874   'name' => 'book_block_mode',
46875   'value' => 's:10:"book pages";',
46876 ))
46877 ->values(array(
46878   'name' => 'book_child_type',
46879   'value' => 's:4:"book";',
46880 ))
46881 ->values(array(
46882   'name' => 'cache_lifetime',
46883   'value' => 'i:0;',
46884 ))
46885 ->values(array(
46886   'name' => 'comment_anonymous_article',
46887   'value' => 'i:0;',
46888 ))
46889 ->values(array(
46890   'name' => 'comment_anonymous_company',
46891   'value' => 'i:0;',
46892 ))
46893 ->values(array(
46894   'name' => 'comment_anonymous_employee',
46895   'value' => 'i:0;',
46896 ))
46897 ->values(array(
46898   'name' => 'comment_anonymous_page',
46899   'value' => 'i:0;',
46900 ))
46901 ->values(array(
46902   'name' => 'comment_anonymous_sponsor',
46903   'value' => 'i:0;',
46904 ))
46905 ->values(array(
46906   'name' => 'comment_anonymous_story',
46907   'value' => 'i:1;',
46908 ))
46909 ->values(array(
46910   'name' => 'comment_anonymous_test_event',
46911   'value' => 'i:0;',
46912 ))
46913 ->values(array(
46914   'name' => 'comment_anonymous_test_page',
46915   'value' => 'i:0;',
46916 ))
46917 ->values(array(
46918   'name' => 'comment_anonymous_test_planet',
46919   'value' => 'i:0;',
46920 ))
46921 ->values(array(
46922   'name' => 'comment_anonymous_test_story',
46923   'value' => 'i:0;',
46924 ))
46925 ->values(array(
46926   'name' => 'comment_article',
46927   'value' => 's:1:"2";',
46928 ))
46929 ->values(array(
46930   'name' => 'comment_company',
46931   'value' => 's:1:"2";',
46932 ))
46933 ->values(array(
46934   'name' => 'comment_controls_article',
46935   'value' => 'i:3;',
46936 ))
46937 ->values(array(
46938   'name' => 'comment_controls_company',
46939   'value' => 's:1:"3";',
46940 ))
46941 ->values(array(
46942   'name' => 'comment_controls_employee',
46943   'value' => 'i:3;',
46944 ))
46945 ->values(array(
46946   'name' => 'comment_controls_page',
46947   'value' => 's:1:"3";',
46948 ))
46949 ->values(array(
46950   'name' => 'comment_controls_sponsor',
46951   'value' => 'i:3;',
46952 ))
46953 ->values(array(
46954   'name' => 'comment_controls_story',
46955   'value' => 'i:3;',
46956 ))
46957 ->values(array(
46958   'name' => 'comment_controls_test_event',
46959   'value' => 'i:3;',
46960 ))
46961 ->values(array(
46962   'name' => 'comment_controls_test_page',
46963   'value' => 'i:3;',
46964 ))
46965 ->values(array(
46966   'name' => 'comment_controls_test_planet',
46967   'value' => 'i:3;',
46968 ))
46969 ->values(array(
46970   'name' => 'comment_controls_test_story',
46971   'value' => 'i:3;',
46972 ))
46973 ->values(array(
46974   'name' => 'comment_default_mode_article',
46975   'value' => 'i:4;',
46976 ))
46977 ->values(array(
46978   'name' => 'comment_default_mode_company',
46979   'value' => 's:1:"4";',
46980 ))
46981 ->values(array(
46982   'name' => 'comment_default_mode_employee',
46983   'value' => 'i:4;',
46984 ))
46985 ->values(array(
46986   'name' => 'comment_default_mode_page',
46987   'value' => 's:1:"4";',
46988 ))
46989 ->values(array(
46990   'name' => 'comment_default_mode_sponsor',
46991   'value' => 'i:4;',
46992 ))
46993 ->values(array(
46994   'name' => 'comment_default_mode_story',
46995   'value' => 's:1:"2";',
46996 ))
46997 ->values(array(
46998   'name' => 'comment_default_mode_test_event',
46999   'value' => 'i:4;',
47000 ))
47001 ->values(array(
47002   'name' => 'comment_default_mode_test_page',
47003   'value' => 'i:4;',
47004 ))
47005 ->values(array(
47006   'name' => 'comment_default_mode_test_planet',
47007   'value' => 'i:4;',
47008 ))
47009 ->values(array(
47010   'name' => 'comment_default_mode_test_story',
47011   'value' => 'i:4;',
47012 ))
47013 ->values(array(
47014   'name' => 'comment_default_order_article',
47015   'value' => 'i:1;',
47016 ))
47017 ->values(array(
47018   'name' => 'comment_default_order_company',
47019   'value' => 's:1:"1";',
47020 ))
47021 ->values(array(
47022   'name' => 'comment_default_order_employee',
47023   'value' => 'i:1;',
47024 ))
47025 ->values(array(
47026   'name' => 'comment_default_order_page',
47027   'value' => 's:1:"1";',
47028 ))
47029 ->values(array(
47030   'name' => 'comment_default_order_sponsor',
47031   'value' => 'i:1;',
47032 ))
47033 ->values(array(
47034   'name' => 'comment_default_order_story',
47035   'value' => 'i:1;',
47036 ))
47037 ->values(array(
47038   'name' => 'comment_default_order_test_event',
47039   'value' => 'i:1;',
47040 ))
47041 ->values(array(
47042   'name' => 'comment_default_order_test_page',
47043   'value' => 'i:1;',
47044 ))
47045 ->values(array(
47046   'name' => 'comment_default_order_test_planet',
47047   'value' => 'i:1;',
47048 ))
47049 ->values(array(
47050   'name' => 'comment_default_order_test_story',
47051   'value' => 'i:1;',
47052 ))
47053 ->values(array(
47054   'name' => 'comment_default_per_page_article',
47055   'value' => 'i:50;',
47056 ))
47057 ->values(array(
47058   'name' => 'comment_default_per_page_company',
47059   'value' => 's:2:"50";',
47060 ))
47061 ->values(array(
47062   'name' => 'comment_default_per_page_employee',
47063   'value' => 'i:50;',
47064 ))
47065 ->values(array(
47066   'name' => 'comment_default_per_page_page',
47067   'value' => 's:2:"50";',
47068 ))
47069 ->values(array(
47070   'name' => 'comment_default_per_page_sponsor',
47071   'value' => 'i:50;',
47072 ))
47073 ->values(array(
47074   'name' => 'comment_default_per_page_story',
47075   'value' => 'i:70;',
47076 ))
47077 ->values(array(
47078   'name' => 'comment_default_per_page_test_event',
47079   'value' => 'i:50;',
47080 ))
47081 ->values(array(
47082   'name' => 'comment_default_per_page_test_page',
47083   'value' => 'i:50;',
47084 ))
47085 ->values(array(
47086   'name' => 'comment_default_per_page_test_planet',
47087   'value' => 'i:50;',
47088 ))
47089 ->values(array(
47090   'name' => 'comment_default_per_page_test_story',
47091   'value' => 'i:50;',
47092 ))
47093 ->values(array(
47094   'name' => 'comment_form_location_article',
47095   'value' => 'i:0;',
47096 ))
47097 ->values(array(
47098   'name' => 'comment_form_location_company',
47099   'value' => 's:1:"0";',
47100 ))
47101 ->values(array(
47102   'name' => 'comment_form_location_employee',
47103   'value' => 'i:0;',
47104 ))
47105 ->values(array(
47106   'name' => 'comment_form_location_page',
47107   'value' => 's:1:"0";',
47108 ))
47109 ->values(array(
47110   'name' => 'comment_form_location_sponsor',
47111   'value' => 'i:0;',
47112 ))
47113 ->values(array(
47114   'name' => 'comment_form_location_story',
47115   'value' => 'i:0;',
47116 ))
47117 ->values(array(
47118   'name' => 'comment_form_location_test_event',
47119   'value' => 'i:0;',
47120 ))
47121 ->values(array(
47122   'name' => 'comment_form_location_test_page',
47123   'value' => 'i:0;',
47124 ))
47125 ->values(array(
47126   'name' => 'comment_form_location_test_planet',
47127   'value' => 'i:0;',
47128 ))
47129 ->values(array(
47130   'name' => 'comment_form_location_test_story',
47131   'value' => 'i:0;',
47132 ))
47133 ->values(array(
47134   'name' => 'comment_page',
47135   'value' => 's:1:"0";',
47136 ))
47137 ->values(array(
47138   'name' => 'comment_preview_article',
47139   'value' => 'i:1;',
47140 ))
47141 ->values(array(
47142   'name' => 'comment_preview_company',
47143   'value' => 's:1:"1";',
47144 ))
47145 ->values(array(
47146   'name' => 'comment_preview_employee',
47147   'value' => 'i:1;',
47148 ))
47149 ->values(array(
47150   'name' => 'comment_preview_page',
47151   'value' => 's:1:"1";',
47152 ))
47153 ->values(array(
47154   'name' => 'comment_preview_sponsor',
47155   'value' => 'i:1;',
47156 ))
47157 ->values(array(
47158   'name' => 'comment_preview_story',
47159   'value' => 'i:0;',
47160 ))
47161 ->values(array(
47162   'name' => 'comment_preview_test_event',
47163   'value' => 'i:1;',
47164 ))
47165 ->values(array(
47166   'name' => 'comment_preview_test_page',
47167   'value' => 'i:1;',
47168 ))
47169 ->values(array(
47170   'name' => 'comment_preview_test_planet',
47171   'value' => 'i:1;',
47172 ))
47173 ->values(array(
47174   'name' => 'comment_preview_test_story',
47175   'value' => 'i:1;',
47176 ))
47177 ->values(array(
47178   'name' => 'comment_story',
47179   'value' => 's:1:"2";',
47180 ))
47181 ->values(array(
47182   'name' => 'comment_subject_field_article',
47183   'value' => 'i:1;',
47184 ))
47185 ->values(array(
47186   'name' => 'comment_subject_field_company',
47187   'value' => 's:1:"1";',
47188 ))
47189 ->values(array(
47190   'name' => 'comment_subject_field_employee',
47191   'value' => 'i:1;',
47192 ))
47193 ->values(array(
47194   'name' => 'comment_subject_field_page',
47195   'value' => 'i:1;',
47196 ))
47197 ->values(array(
47198   'name' => 'comment_subject_field_sponsor',
47199   'value' => 'i:1;',
47200 ))
47201 ->values(array(
47202   'name' => 'comment_subject_field_story',
47203   'value' => 'i:0;',
47204 ))
47205 ->values(array(
47206   'name' => 'comment_subject_field_test_event',
47207   'value' => 'i:1;',
47208 ))
47209 ->values(array(
47210   'name' => 'comment_subject_field_test_page',
47211   'value' => 'i:1;',
47212 ))
47213 ->values(array(
47214   'name' => 'comment_subject_field_test_planet',
47215   'value' => 'i:1;',
47216 ))
47217 ->values(array(
47218   'name' => 'comment_subject_field_test_story',
47219   'value' => 'i:1;',
47220 ))
47221 ->values(array(
47222   'name' => 'configurable_timezones',
47223   'value' => 's:1:"0";',
47224 ))
47225 ->values(array(
47226   'name' => 'contact_default_status',
47227   'value' => 'i:1;',
47228 ))
47229 ->values(array(
47230   'name' => 'contact_hourly_threshold',
47231   'value' => 'i:3;',
47232 ))
47233 ->values(array(
47234   'name' => 'content_extra_weights_employee',
47235   '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";}',
47236 ))
47237 ->values(array(
47238   'name' => 'content_extra_weights_story',
47239   '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";}',
47240 ))
47241 ->values(array(
47242   'name' => 'content_extra_weights_test_page',
47243   '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";}',
47244 ))
47245 ->values(array(
47246   'name' => 'content_schema_version',
47247   'value' => 'i:6009;',
47248 ))
47249 ->values(array(
47250   'name' => 'cron_threshold_error',
47251   'value' => 'i:1209600;',
47252 ))
47253 ->values(array(
47254   'name' => 'cron_threshold_warning',
47255   'value' => 'i:172800;',
47256 ))
47257 ->values(array(
47258   'name' => 'css_js_query_string',
47259   'value' => 's:20:"y8SAkMTxRZndiw700000";',
47260 ))
47261 ->values(array(
47262   'name' => 'date:story:4:field_test_datestamp_fromto',
47263   'value' => 's:4:"both";',
47264 ))
47265 ->values(array(
47266   'name' => 'date:story:4:field_test_datestamp_multiple_from',
47267   'value' => 's:0:"";',
47268 ))
47269 ->values(array(
47270   'name' => 'date:story:4:field_test_datestamp_multiple_number',
47271   'value' => 's:0:"";',
47272 ))
47273 ->values(array(
47274   'name' => 'date:story:4:field_test_datestamp_multiple_to',
47275   'value' => 's:0:"";',
47276 ))
47277 ->values(array(
47278   'name' => 'date:story:4:field_test_datestamp_show_repeat_rule',
47279   'value' => 's:4:"show";',
47280 ))
47281 ->values(array(
47282   'name' => 'date:story:4:field_test_datetime_fromto',
47283   'value' => 's:4:"both";',
47284 ))
47285 ->values(array(
47286   'name' => 'date:story:4:field_test_datetime_multiple_from',
47287   'value' => 's:0:"";',
47288 ))
47289 ->values(array(
47290   'name' => 'date:story:4:field_test_datetime_multiple_number',
47291   'value' => 's:0:"";',
47292 ))
47293 ->values(array(
47294   'name' => 'date:story:4:field_test_datetime_multiple_to',
47295   'value' => 's:0:"";',
47296 ))
47297 ->values(array(
47298   'name' => 'date:story:4:field_test_datetime_show_repeat_rule',
47299   'value' => 's:4:"show";',
47300 ))
47301 ->values(array(
47302   'name' => 'date:story:4:field_test_date_fromto',
47303   'value' => 's:4:"both";',
47304 ))
47305 ->values(array(
47306   'name' => 'date:story:4:field_test_date_multiple_from',
47307   'value' => 's:0:"";',
47308 ))
47309 ->values(array(
47310   'name' => 'date:story:4:field_test_date_multiple_number',
47311   'value' => 's:0:"";',
47312 ))
47313 ->values(array(
47314   'name' => 'date:story:4:field_test_date_multiple_to',
47315   'value' => 's:0:"";',
47316 ))
47317 ->values(array(
47318   'name' => 'date:story:4:field_test_date_show_repeat_rule',
47319   'value' => 's:4:"show";',
47320 ))
47321 ->values(array(
47322   'name' => 'date:story:5:field_test_datestamp_fromto',
47323   'value' => 's:4:"both";',
47324 ))
47325 ->values(array(
47326   'name' => 'date:story:5:field_test_datestamp_multiple_from',
47327   'value' => 's:0:"";',
47328 ))
47329 ->values(array(
47330   'name' => 'date:story:5:field_test_datestamp_multiple_number',
47331   'value' => 's:0:"";',
47332 ))
47333 ->values(array(
47334   'name' => 'date:story:5:field_test_datestamp_multiple_to',
47335   'value' => 's:0:"";',
47336 ))
47337 ->values(array(
47338   'name' => 'date:story:5:field_test_datestamp_show_repeat_rule',
47339   'value' => 's:4:"show";',
47340 ))
47341 ->values(array(
47342   'name' => 'date:story:5:field_test_datetime_fromto',
47343   'value' => 's:4:"both";',
47344 ))
47345 ->values(array(
47346   'name' => 'date:story:5:field_test_datetime_multiple_from',
47347   'value' => 's:0:"";',
47348 ))
47349 ->values(array(
47350   'name' => 'date:story:5:field_test_datetime_multiple_number',
47351   'value' => 's:0:"";',
47352 ))
47353 ->values(array(
47354   'name' => 'date:story:5:field_test_datetime_multiple_to',
47355   'value' => 's:0:"";',
47356 ))
47357 ->values(array(
47358   'name' => 'date:story:5:field_test_datetime_show_repeat_rule',
47359   'value' => 's:4:"show";',
47360 ))
47361 ->values(array(
47362   'name' => 'date:story:5:field_test_date_fromto',
47363   'value' => 's:4:"both";',
47364 ))
47365 ->values(array(
47366   'name' => 'date:story:5:field_test_date_multiple_from',
47367   'value' => 's:0:"";',
47368 ))
47369 ->values(array(
47370   'name' => 'date:story:5:field_test_date_multiple_number',
47371   'value' => 's:0:"";',
47372 ))
47373 ->values(array(
47374   'name' => 'date:story:5:field_test_date_multiple_to',
47375   'value' => 's:0:"";',
47376 ))
47377 ->values(array(
47378   'name' => 'date:story:5:field_test_date_show_repeat_rule',
47379   'value' => 's:4:"show";',
47380 ))
47381 ->values(array(
47382   'name' => 'date:story:full:field_test_datestamp_fromto',
47383   'value' => 's:4:"both";',
47384 ))
47385 ->values(array(
47386   'name' => 'date:story:full:field_test_datestamp_multiple_from',
47387   'value' => 's:0:"";',
47388 ))
47389 ->values(array(
47390   'name' => 'date:story:full:field_test_datestamp_multiple_number',
47391   'value' => 's:0:"";',
47392 ))
47393 ->values(array(
47394   'name' => 'date:story:full:field_test_datestamp_multiple_to',
47395   'value' => 's:0:"";',
47396 ))
47397 ->values(array(
47398   'name' => 'date:story:full:field_test_datestamp_show_repeat_rule',
47399   'value' => 's:4:"show";',
47400 ))
47401 ->values(array(
47402   'name' => 'date:story:full:field_test_datetime_fromto',
47403   'value' => 's:4:"both";',
47404 ))
47405 ->values(array(
47406   'name' => 'date:story:full:field_test_datetime_multiple_from',
47407   'value' => 's:0:"";',
47408 ))
47409 ->values(array(
47410   'name' => 'date:story:full:field_test_datetime_multiple_number',
47411   'value' => 's:0:"";',
47412 ))
47413 ->values(array(
47414   'name' => 'date:story:full:field_test_datetime_multiple_to',
47415   'value' => 's:0:"";',
47416 ))
47417 ->values(array(
47418   'name' => 'date:story:full:field_test_datetime_show_repeat_rule',
47419   'value' => 's:4:"show";',
47420 ))
47421 ->values(array(
47422   'name' => 'date:story:full:field_test_date_fromto',
47423   'value' => 's:4:"both";',
47424 ))
47425 ->values(array(
47426   'name' => 'date:story:full:field_test_date_multiple_from',
47427   'value' => 's:0:"";',
47428 ))
47429 ->values(array(
47430   'name' => 'date:story:full:field_test_date_multiple_number',
47431   'value' => 's:0:"";',
47432 ))
47433 ->values(array(
47434   'name' => 'date:story:full:field_test_date_multiple_to',
47435   'value' => 's:0:"";',
47436 ))
47437 ->values(array(
47438   'name' => 'date:story:full:field_test_date_show_repeat_rule',
47439   'value' => 's:4:"show";',
47440 ))
47441 ->values(array(
47442   'name' => 'date:story:teaser:field_test_datestamp_fromto',
47443   'value' => 's:4:"both";',
47444 ))
47445 ->values(array(
47446   'name' => 'date:story:teaser:field_test_datestamp_multiple_from',
47447   'value' => 's:0:"";',
47448 ))
47449 ->values(array(
47450   'name' => 'date:story:teaser:field_test_datestamp_multiple_number',
47451   'value' => 's:0:"";',
47452 ))
47453 ->values(array(
47454   'name' => 'date:story:teaser:field_test_datestamp_multiple_to',
47455   'value' => 's:0:"";',
47456 ))
47457 ->values(array(
47458   'name' => 'date:story:teaser:field_test_datestamp_show_repeat_rule',
47459   'value' => 's:4:"show";',
47460 ))
47461 ->values(array(
47462   'name' => 'date:story:teaser:field_test_datetime_fromto',
47463   'value' => 's:4:"both";',
47464 ))
47465 ->values(array(
47466   'name' => 'date:story:teaser:field_test_datetime_multiple_from',
47467   'value' => 's:0:"";',
47468 ))
47469 ->values(array(
47470   'name' => 'date:story:teaser:field_test_datetime_multiple_number',
47471   'value' => 's:0:"";',
47472 ))
47473 ->values(array(
47474   'name' => 'date:story:teaser:field_test_datetime_multiple_to',
47475   'value' => 's:0:"";',
47476 ))
47477 ->values(array(
47478   'name' => 'date:story:teaser:field_test_datetime_show_repeat_rule',
47479   'value' => 's:4:"show";',
47480 ))
47481 ->values(array(
47482   'name' => 'date:story:teaser:field_test_date_fromto',
47483   'value' => 's:4:"both";',
47484 ))
47485 ->values(array(
47486   'name' => 'date:story:teaser:field_test_date_multiple_from',
47487   'value' => 's:0:"";',
47488 ))
47489 ->values(array(
47490   'name' => 'date:story:teaser:field_test_date_multiple_number',
47491   'value' => 's:0:"";',
47492 ))
47493 ->values(array(
47494   'name' => 'date:story:teaser:field_test_date_multiple_to',
47495   'value' => 's:0:"";',
47496 ))
47497 ->values(array(
47498   'name' => 'date:story:teaser:field_test_date_show_repeat_rule',
47499   'value' => 's:4:"show";',
47500 ))
47501 ->values(array(
47502   'name' => 'date_api_version',
47503   'value' => 's:3:"5.2";',
47504 ))
47505 ->values(array(
47506   'name' => 'date_default_timezone',
47507   'value' => 's:4:"3600";',
47508 ))
47509 ->values(array(
47510   'name' => 'date_first_day',
47511   'value' => 's:1:"4";',
47512 ))
47513 ->values(array(
47514   'name' => 'date_format_long',
47515   'value' => 's:24:"\L\O\N\G l, F j, Y - H:i";',
47516 ))
47517 ->values(array(
47518   'name' => 'date_format_medium',
47519   'value' => 's:27:"\M\E\D\I\U\M D, m/d/Y - H:i";',
47520 ))
47521 ->values(array(
47522   'name' => 'date_format_short',
47523   'value' => 's:22:"\S\H\O\R\T m/d/Y - H:i";',
47524 ))
47525 ->values(array(
47526   'name' => 'dblog_row_limit',
47527   'value' => 'i:10000;',
47528 ))
47529 ->values(array(
47530   'name' => 'drupal_badge_color',
47531   'value' => 's:12:"powered-blue";',
47532 ))
47533 ->values(array(
47534   'name' => 'drupal_badge_size',
47535   'value' => 's:5:"80x15";',
47536 ))
47537 ->values(array(
47538   'name' => 'drupal_http_request_fails',
47539   'value' => 'b:0;',
47540 ))
47541 ->values(array(
47542   'name' => 'drupal_private_key',
47543   'value' => 's:43:"6bTz0JLHTM1R1c7VtbZtbio47JygBoNuGuzS5G0JYWs";',
47544 ))
47545 ->values(array(
47546   'name' => 'error_level',
47547   'value' => 'i:1;',
47548 ))
47549 ->values(array(
47550   'name' => 'event_nodeapi_article',
47551   'value' => 's:5:"never";',
47552 ))
47553 ->values(array(
47554   'name' => 'event_nodeapi_company',
47555   'value' => 's:5:"never";',
47556 ))
47557 ->values(array(
47558   'name' => 'event_nodeapi_event',
47559   'value' => 's:3:"all";',
47560 ))
47561 ->values(array(
47562   'name' => 'event_timezone_display',
47563   'value' => 's:5:"event";',
47564 ))
47565 ->values(array(
47566   'name' => 'feed_default_items',
47567   'value' => 'i:10;',
47568 ))
47569 ->values(array(
47570   'name' => 'feed_item_length',
47571   'value' => 's:5:"title";',
47572 ))
47573 ->values(array(
47574   'name' => 'file_description_length',
47575   'value' => 'i:128;',
47576 ))
47577 ->values(array(
47578   'name' => 'file_description_type',
47579   'value' => 's:9:"textfield";',
47580 ))
47581 ->values(array(
47582   'name' => 'file_directory_path',
47583   'value' => 's:29:"core/modules/simpletest/files";',
47584 ))
47585 ->values(array(
47586   'name' => 'file_directory_temp',
47587   'value' => 's:10:"files/temp";',
47588 ))
47589 ->values(array(
47590   'name' => 'file_downloads',
47591   'value' => 's:1:"1";',
47592 ))
47593 ->values(array(
47594   'name' => 'file_icon_directory',
47595   'value' => 's:25:"sites/default/files/icons";',
47596 ))
47597 ->values(array(
47598   'name' => 'filter_allowed_protocols',
47599   '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";}',
47600 ))
47601 ->values(array(
47602   'name' => 'filter_html_1',
47603   'value' => 'i:1;',
47604 ))
47605 ->values(array(
47606   'name' => 'filter_html_help_1',
47607   'value' => 'i:1;',
47608 ))
47609 ->values(array(
47610   'name' => 'filter_html_nofollow_1',
47611   'value' => 'i:0;',
47612 ))
47613 ->values(array(
47614   'name' => 'filter_url_length_1',
47615   'value' => 's:2:"72";',
47616 ))
47617 ->values(array(
47618   'name' => 'form_build_id_article',
47619   'value' => 's:48:"form-t2zKJflpBD4rpYoGQH33ckjjWAYdo5lF3Hl1O_YnWyE";',
47620 ))
47621 ->values(array(
47622   'name' => 'form_build_id_company',
47623   'value' => 's:48:"form-jFw2agRukPxjG5dG-N6joZLyoxXmCoxTzua0HUciqK0";',
47624 ))
47625 ->values(array(
47626   'name' => 'forum_block_num_0',
47627   'value' => 's:1:"3";',
47628 ))
47629 ->values(array(
47630   'name' => 'forum_block_num_1',
47631   'value' => 's:1:"4";',
47632 ))
47633 ->values(array(
47634   'name' => 'forum_hot_topic',
47635   'value' => 's:2:"15";',
47636 ))
47637 ->values(array(
47638   'name' => 'forum_nav_vocabulary',
47639   'value' => 's:1:"1";',
47640 ))
47641 ->values(array(
47642   'name' => 'forum_order',
47643   'value' => 's:1:"1";',
47644 ))
47645 ->values(array(
47646   'name' => 'forum_per_page',
47647   'value' => 's:2:"25";',
47648 ))
47649 ->values(array(
47650   'name' => 'i18nstrings_allowed_formats',
47651   'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
47652 ))
47653 ->values(array(
47654   'name' => 'i18ntaxonomy_vocabulary',
47655   'value' => 'a:2:{i:1;s:1:"3";i:2;s:1:"2";}',
47656 ))
47657 ->values(array(
47658   'name' => 'i18n_lock_node_article',
47659   'value' => 'i:1;',
47660 ))
47661 ->values(array(
47662   'name' => 'image_jpeg_quality',
47663   'value' => 'i:75;',
47664 ))
47665 ->values(array(
47666   'name' => 'image_toolkit',
47667   'value' => 's:2:"gd";',
47668 ))
47669 ->values(array(
47670   'name' => 'javascript_parsed',
47671   '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";}',
47672 ))
47673 ->values(array(
47674   'name' => 'language_content_type_article',
47675   'value' => 's:1:"2";',
47676 ))
47677 ->values(array(
47678   'name' => 'language_content_type_employee',
47679   'value' => 's:1:"2";',
47680 ))
47681 ->values(array(
47682   'name' => 'language_count',
47683   'value' => 'i:11;',
47684 ))
47685 ->values(array(
47686   'name' => 'language_default',
47687   '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:"";}',
47688 ))
47689 ->values(array(
47690   'name' => 'language_negotiation',
47691   'value' => 's:1:"1";',
47692 ))
47693 ->values(array(
47694   'name' => 'locale_cache_strings',
47695   'value' => 'i:1;',
47696 ))
47697 ->values(array(
47698   'name' => 'locale_js_directory',
47699   'value' => 's:9:"languages";',
47700 ))
47701 ->values(array(
47702   'name' => 'menu_default_node_menu',
47703   'value' => 's:10:"navigation";',
47704 ))
47705 ->values(array(
47706   'name' => 'menu_expanded',
47707   'value' => 'a:1:{i:0;s:15:"secondary-links";}',
47708 ))
47709 ->values(array(
47710   'name' => 'menu_masks',
47711   '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;}',
47712 ))
47713 ->values(array(
47714   'name' => 'menu_override_parent_selector',
47715   'value' => 'b:0;',
47716 ))
47717 ->values(array(
47718   'name' => 'minimum_word_size',
47719   'value' => 's:1:"3";',
47720 ))
47721 ->values(array(
47722   'name' => 'node_admin_theme',
47723   'value' => 'i:0;',
47724 ))
47725 ->values(array(
47726   'name' => 'node_options_article',
47727   'value' => 'a:1:{i:0;s:7:"promote";}',
47728 ))
47729 ->values(array(
47730   'name' => 'node_options_book',
47731   'value' => 'a:1:{i:0;s:6:"status";}',
47732 ))
47733 ->values(array(
47734   'name' => 'node_options_company',
47735   'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
47736 ))
47737 ->values(array(
47738   'name' => 'node_options_forum',
47739   'value' => 'a:1:{i:0;s:6:"status";}',
47740 ))
47741 ->values(array(
47742   'name' => 'node_options_test_event',
47743   'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
47744 ))
47745 ->values(array(
47746   'name' => 'node_options_test_page',
47747   'value' => 'a:3:{i:0;s:6:"status";i:1;s:7:"promote";i:2;s:6:"sticky";}',
47748 ))
47749 ->values(array(
47750   'name' => 'node_options_test_planet',
47751   'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
47752 ))
47753 ->values(array(
47754   'name' => 'node_options_test_story',
47755   'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
47756 ))
47757 ->values(array(
47758   'name' => 'node_preview',
47759   'value' => 'i:0;',
47760 ))
47761 ->values(array(
47762   'name' => 'node_rank_comments',
47763   'value' => 's:1:"5";',
47764 ))
47765 ->values(array(
47766   'name' => 'node_rank_promote',
47767   'value' => 's:1:"0";',
47768 ))
47769 ->values(array(
47770   'name' => 'node_rank_recent',
47771   'value' => 's:1:"0";',
47772 ))
47773 ->values(array(
47774   'name' => 'node_rank_relevance',
47775   'value' => 's:1:"2";',
47776 ))
47777 ->values(array(
47778   'name' => 'node_rank_sticky',
47779   'value' => 's:1:"8";',
47780 ))
47781 ->values(array(
47782   'name' => 'node_rank_views',
47783   'value' => 's:1:"1";',
47784 ))
47785 ->values(array(
47786   'name' => 'overlap_cjk',
47787   'value' => 'i:1;',
47788 ))
47789 ->values(array(
47790   'name' => 'page_compression',
47791   'value' => 's:1:"1";',
47792 ))
47793 ->values(array(
47794   'name' => 'preprocess_css',
47795   'value' => 'i:0;',
47796 ))
47797 ->values(array(
47798   'name' => 'preprocess_js',
47799   'value' => 'i:0;',
47800 ))
47801 ->values(array(
47802   'name' => 'search_cron_limit',
47803   'value' => 's:3:"100";',
47804 ))
47805 ->values(array(
47806   'name' => 'simpletest_clear_results',
47807   'value' => 'b:1;',
47808 ))
47809 ->values(array(
47810   'name' => 'simpletest_httpauth_method',
47811   'value' => 'i:1;',
47812 ))
47813 ->values(array(
47814   'name' => 'simpletest_httpauth_password',
47815   'value' => 'N;',
47816 ))
47817 ->values(array(
47818   'name' => 'simpletest_httpauth_username',
47819   'value' => 'N;',
47820 ))
47821 ->values(array(
47822   'name' => 'simpletest_verbose',
47823   'value' => 'b:1;',
47824 ))
47825 ->values(array(
47826   'name' => 'site_403',
47827   'value' => 's:4:"user";',
47828 ))
47829 ->values(array(
47830   'name' => 'site_404',
47831   'value' => 's:14:"page-not-found";',
47832 ))
47833 ->values(array(
47834   'name' => 'site_frontpage',
47835   'value' => 's:4:"node";',
47836 ))
47837 ->values(array(
47838   'name' => 'site_mail',
47839   'value' => 's:21:"site_mail@example.com";',
47840 ))
47841 ->values(array(
47842   'name' => 'site_name',
47843   'value' => 's:9:"site_name";',
47844 ))
47845 ->values(array(
47846   'name' => 'site_offline',
47847   'value' => 'i:0;',
47848 ))
47849 ->values(array(
47850   'name' => 'site_offline_message',
47851   'value' => 's:94:"Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
47852 ))
47853 ->values(array(
47854   'name' => 'site_slogan',
47855   'value' => 's:13:"Migrate rocks";',
47856 ))
47857 ->values(array(
47858   'name' => 'statistics_block_top_all_num',
47859   'value' => 's:1:"8";',
47860 ))
47861 ->values(array(
47862   'name' => 'statistics_block_top_day_num',
47863   'value' => 's:1:"7";',
47864 ))
47865 ->values(array(
47866   'name' => 'statistics_block_top_last_num',
47867   'value' => 's:1:"9";',
47868 ))
47869 ->values(array(
47870   'name' => 'statistics_count_content_views',
47871   'value' => 's:1:"1";',
47872 ))
47873 ->values(array(
47874   'name' => 'statistics_enable_access_log',
47875   'value' => 's:1:"0";',
47876 ))
47877 ->values(array(
47878   'name' => 'statistics_flush_accesslog_timer',
47879   'value' => 's:6:"259200";',
47880 ))
47881 ->values(array(
47882   'name' => 'syslog_facility',
47883   'value' => 'i:128;',
47884 ))
47885 ->values(array(
47886   'name' => 'syslog_identity',
47887   'value' => 's:6:"drupal";',
47888 ))
47889 ->values(array(
47890   'name' => 'taxonomy_override_selector',
47891   'value' => 'b:0;',
47892 ))
47893 ->values(array(
47894   'name' => 'taxonomy_terms_per_page_admin',
47895   'value' => 'i:100;',
47896 ))
47897 ->values(array(
47898   'name' => 'teaser_length',
47899   'value' => 'i:456;',
47900 ))
47901 ->values(array(
47902   'name' => 'theme_default',
47903   'value' => 's:7:"garland";',
47904 ))
47905 ->values(array(
47906   'name' => 'theme_settings',
47907   '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;}',
47908 ))
47909 ->values(array(
47910   'name' => 'update_check_frequency',
47911   'value' => 's:1:"7";',
47912 ))
47913 ->values(array(
47914   'name' => 'update_fetch_url',
47915   'value' => 's:41:"http://updates.drupal.org/release-history";',
47916 ))
47917 ->values(array(
47918   'name' => 'update_max_fetch_attempts',
47919   'value' => 'i:2;',
47920 ))
47921 ->values(array(
47922   'name' => 'update_notification_threshold',
47923   'value' => 's:3:"all";',
47924 ))
47925 ->values(array(
47926   'name' => 'update_notify_emails',
47927   'value' => 'a:0:{}',
47928 ))
47929 ->values(array(
47930   'name' => 'upload_article',
47931   'value' => 'b:0;',
47932 ))
47933 ->values(array(
47934   'name' => 'upload_company',
47935   'value' => 's:1:"1";',
47936 ))
47937 ->values(array(
47938   'name' => 'upload_employee',
47939   'value' => 'b:0;',
47940 ))
47941 ->values(array(
47942   'name' => 'upload_event',
47943   'value' => 'b:0;',
47944 ))
47945 ->values(array(
47946   'name' => 'upload_sponsor',
47947   'value' => 'b:0;',
47948 ))
47949 ->values(array(
47950   'name' => 'upload_story',
47951   'value' => 'b:1;',
47952 ))
47953 ->values(array(
47954   'name' => 'upload_test_event',
47955   'value' => 'b:0;',
47956 ))
47957 ->values(array(
47958   'name' => 'upload_test_page',
47959   'value' => 'b:0;',
47960 ))
47961 ->values(array(
47962   'name' => 'upload_test_planet',
47963   'value' => 'b:0;',
47964 ))
47965 ->values(array(
47966   'name' => 'upload_test_story',
47967   'value' => 'b:0;',
47968 ))
47969 ->values(array(
47970   'name' => 'user_block_max_list_count',
47971   'value' => 's:2:"10";',
47972 ))
47973 ->values(array(
47974   'name' => 'user_block_seconds_online',
47975   'value' => 's:3:"900";',
47976 ))
47977 ->values(array(
47978   'name' => 'user_block_whois_new_count',
47979   'value' => 's:1:"5";',
47980 ))
47981 ->values(array(
47982   'name' => 'user_email_verification',
47983   'value' => 'i:0;',
47984 ))
47985 ->values(array(
47986   'name' => 'user_mail_password_reset_body',
47987   '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.\";",
47988 ))
47989 ->values(array(
47990   'name' => 'user_mail_password_reset_subject',
47991   'value' => 's:52:"Replacement login information for !username at !site";',
47992 ))
47993 ->values(array(
47994   'name' => 'user_mail_register_admin_created_body',
47995   '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\";",
47996 ))
47997 ->values(array(
47998   'name' => 'user_mail_register_admin_created_subject',
47999   'value' => 's:52:"An administrator created an account for you at !site";',
48000 ))
48001 ->values(array(
48002   'name' => 'user_mail_register_no_approval_required_body',
48003   '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\";",
48004 ))
48005 ->values(array(
48006   'name' => 'user_mail_register_no_approval_required_subject',
48007   'value' => 's:38:"Account details for !username at !site";',
48008 ))
48009 ->values(array(
48010   'name' => 'user_mail_register_pending_approval_body',
48011   '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\";",
48012 ))
48013 ->values(array(
48014   'name' => 'user_mail_register_pending_approval_subject',
48015   'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
48016 ))
48017 ->values(array(
48018   'name' => 'user_mail_status_activated_body',
48019   '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\";",
48020 ))
48021 ->values(array(
48022   'name' => 'user_mail_status_activated_notify',
48023   'value' => 'i:0;',
48024 ))
48025 ->values(array(
48026   'name' => 'user_mail_status_activated_subject',
48027   'value' => 's:49:"Account details for !username at !site (approved)";',
48028 ))
48029 ->values(array(
48030   'name' => 'user_mail_status_blocked_body',
48031   'value' => "s:51:\"!username,\n\nYour account on !site has been blocked.\";",
48032 ))
48033 ->values(array(
48034   'name' => 'user_mail_status_blocked_notify',
48035   'value' => 'i:1;',
48036 ))
48037 ->values(array(
48038   'name' => 'user_mail_status_blocked_subject',
48039   'value' => 's:48:"Account details for !username at !site (blocked)";',
48040 ))
48041 ->values(array(
48042   'name' => 'user_mail_status_deleted_body',
48043   'value' => "s:51:\"!username,\n\nYour account on !site has been deleted.\";",
48044 ))
48045 ->values(array(
48046   'name' => 'user_mail_status_deleted_subject',
48047   'value' => 's:48:"Account details for !username at !site (deleted)";',
48048 ))
48049 ->values(array(
48050   'name' => 'user_register',
48051   'value' => 'i:0;',
48052 ))
48053 ->values(array(
48054   'name' => 'user_signatures',
48055   'value' => 's:1:"1";',
48056 ))
48057 ->execute();
48058
48059 $connection->schema()->createTable('vocabulary', array(
48060   'fields' => array(
48061     'vid' => array(
48062       'type' => 'serial',
48063       'not null' => TRUE,
48064       'size' => 'normal',
48065       'unsigned' => TRUE,
48066     ),
48067     'name' => array(
48068       'type' => 'varchar',
48069       'not null' => TRUE,
48070       'length' => '255',
48071       'default' => '',
48072     ),
48073     'description' => array(
48074       'type' => 'text',
48075       'not null' => FALSE,
48076       'size' => 'normal',
48077     ),
48078     'help' => array(
48079       'type' => 'varchar',
48080       'not null' => TRUE,
48081       'length' => '255',
48082       'default' => '',
48083     ),
48084     'relations' => array(
48085       'type' => 'int',
48086       'not null' => TRUE,
48087       'size' => 'normal',
48088       'default' => '0',
48089       'unsigned' => TRUE,
48090     ),
48091     'hierarchy' => array(
48092       'type' => 'int',
48093       'not null' => TRUE,
48094       'size' => 'normal',
48095       'default' => '0',
48096       'unsigned' => TRUE,
48097     ),
48098     'multiple' => array(
48099       'type' => 'int',
48100       'not null' => TRUE,
48101       'size' => 'normal',
48102       'default' => '0',
48103       'unsigned' => TRUE,
48104     ),
48105     'required' => array(
48106       'type' => 'int',
48107       'not null' => TRUE,
48108       'size' => 'normal',
48109       'default' => '0',
48110       'unsigned' => TRUE,
48111     ),
48112     'tags' => array(
48113       'type' => 'int',
48114       'not null' => TRUE,
48115       'size' => 'normal',
48116       'default' => '0',
48117       'unsigned' => TRUE,
48118     ),
48119     'module' => array(
48120       'type' => 'varchar',
48121       'not null' => TRUE,
48122       'length' => '255',
48123       'default' => '',
48124     ),
48125     'weight' => array(
48126       'type' => 'int',
48127       'not null' => TRUE,
48128       'size' => 'normal',
48129       'default' => '0',
48130     ),
48131     'language' => array(
48132       'type' => 'varchar',
48133       'not null' => TRUE,
48134       'length' => '12',
48135       'default' => '',
48136     ),
48137   ),
48138   'primary key' => array(
48139     'vid',
48140   ),
48141   'mysql_character_set' => 'utf8',
48142 ));
48143
48144 $connection->insert('vocabulary')
48145 ->fields(array(
48146   'vid',
48147   'name',
48148   'description',
48149   'help',
48150   'relations',
48151   'hierarchy',
48152   'multiple',
48153   'required',
48154   'tags',
48155   'module',
48156   'weight',
48157   'language',
48158 ))
48159 ->values(array(
48160   'vid' => '1',
48161   'name' => 'vocabulary 1 (i=0)',
48162   'description' => 'description of vocabulary 1 (i=0)',
48163   'help' => '',
48164   'relations' => '1',
48165   'hierarchy' => '0',
48166   'multiple' => '0',
48167   'required' => '0',
48168   'tags' => '0',
48169   'module' => 'taxonomy',
48170   'weight' => '4',
48171   'language' => '',
48172 ))
48173 ->values(array(
48174   'vid' => '2',
48175   'name' => 'vocabulary 2 (i=1)',
48176   'description' => 'description of vocabulary 2 (i=1)',
48177   'help' => '',
48178   'relations' => '1',
48179   'hierarchy' => '1',
48180   'multiple' => '1',
48181   'required' => '0',
48182   'tags' => '1',
48183   'module' => 'taxonomy',
48184   'weight' => '5',
48185   'language' => 'fr',
48186 ))
48187 ->values(array(
48188   'vid' => '3',
48189   'name' => 'vocabulary 3 (i=2)',
48190   'description' => 'description of vocabulary 3 (i=2)',
48191   'help' => '',
48192   'relations' => '1',
48193   'hierarchy' => '2',
48194   'multiple' => '1',
48195   'required' => '0',
48196   'tags' => '0',
48197   'module' => 'taxonomy',
48198   'weight' => '6',
48199   'language' => '',
48200 ))
48201 ->values(array(
48202   'vid' => '4',
48203   'name' => 'Tags',
48204   'description' => 'Tags Vocabulary',
48205   'help' => '',
48206   'relations' => '1',
48207   'hierarchy' => '0',
48208   'multiple' => '0',
48209   'required' => '1',
48210   'tags' => '0',
48211   'module' => 'taxonomy',
48212   'weight' => '0',
48213   'language' => '',
48214 ))
48215 ->values(array(
48216   'vid' => '5',
48217   'name' => 'vocabulary name much longer than thirty two characters',
48218   'description' => 'description of vocabulary name much longer than thirty two characters',
48219   'help' => '',
48220   'relations' => '1',
48221   'hierarchy' => '3',
48222   'multiple' => '1',
48223   'required' => '0',
48224   'tags' => '0',
48225   'module' => 'taxonomy',
48226   'weight' => '7',
48227   'language' => '',
48228 ))
48229 ->execute();
48230
48231 $connection->schema()->createTable('vocabulary_node_types', array(
48232   'fields' => array(
48233     'vid' => array(
48234       'type' => 'int',
48235       'not null' => TRUE,
48236       'size' => 'normal',
48237       'default' => '0',
48238       'unsigned' => TRUE,
48239     ),
48240     'type' => array(
48241       'type' => 'varchar',
48242       'not null' => TRUE,
48243       'length' => '32',
48244       'default' => '',
48245     ),
48246   ),
48247   'primary key' => array(
48248     'vid',
48249     'type',
48250   ),
48251   'mysql_character_set' => 'utf8',
48252 ));
48253
48254 $connection->insert('vocabulary_node_types')
48255 ->fields(array(
48256   'vid',
48257   'type',
48258 ))
48259 ->values(array(
48260   'vid' => '4',
48261   'type' => 'article',
48262 ))
48263 ->values(array(
48264   'vid' => '1',
48265   'type' => 'forum',
48266 ))
48267 ->values(array(
48268   'vid' => '4',
48269   'type' => 'page',
48270 ))
48271 ->values(array(
48272   'vid' => '1',
48273   'type' => 'story',
48274 ))
48275 ->values(array(
48276   'vid' => '2',
48277   'type' => 'story',
48278 ))
48279 ->values(array(
48280   'vid' => '3',
48281   'type' => 'story',
48282 ))
48283 ->execute();
48284
48285 $connection->schema()->createTable('watchdog', array(
48286   'fields' => array(
48287     'wid' => array(
48288       'type' => 'serial',
48289       'not null' => TRUE,
48290       'size' => 'normal',
48291     ),
48292     'uid' => array(
48293       'type' => 'int',
48294       'not null' => TRUE,
48295       'size' => 'normal',
48296       'default' => '0',
48297     ),
48298     'type' => array(
48299       'type' => 'varchar',
48300       'not null' => TRUE,
48301       'length' => '16',
48302       'default' => '',
48303     ),
48304     'message' => array(
48305       'type' => 'text',
48306       'not null' => TRUE,
48307       'size' => 'normal',
48308     ),
48309     'variables' => array(
48310       'type' => 'text',
48311       'not null' => TRUE,
48312       'size' => 'normal',
48313     ),
48314     'severity' => array(
48315       'type' => 'int',
48316       'not null' => TRUE,
48317       'size' => 'normal',
48318       'default' => '0',
48319       'unsigned' => TRUE,
48320     ),
48321     'link' => array(
48322       'type' => 'varchar',
48323       'not null' => TRUE,
48324       'length' => '255',
48325       'default' => '',
48326     ),
48327     'location' => array(
48328       'type' => 'text',
48329       'not null' => TRUE,
48330       'size' => 'normal',
48331     ),
48332     'referer' => array(
48333       'type' => 'text',
48334       'not null' => FALSE,
48335       'size' => 'normal',
48336     ),
48337     'hostname' => array(
48338       'type' => 'varchar',
48339       'not null' => TRUE,
48340       'length' => '128',
48341       'default' => '',
48342     ),
48343     'timestamp' => array(
48344       'type' => 'int',
48345       'not null' => TRUE,
48346       'size' => 'normal',
48347       'default' => '0',
48348     ),
48349   ),
48350   'primary key' => array(
48351     'wid',
48352   ),
48353   'mysql_character_set' => 'utf8',
48354 ));