Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / migrate_drupal / tests / fixtures / drupal6.php
1 <?php
2 // @codingStandardsIgnoreFile
3 /**
4  * @file
5  * A database agnostic dump for testing purposes.
6  *
7  * This file was generated by the Drupal 8.0 db-tools.php script.
8  */
9
10 use Drupal\Core\Database\Database;
11
12 $connection = Database::getConnection();
13
14 $connection->schema()->createTable('access', array(
15   'fields' => array(
16     'aid' => array(
17       'type' => 'serial',
18       'not null' => TRUE,
19       'size' => 'normal',
20     ),
21     'mask' => array(
22       'type' => 'varchar',
23       'not null' => TRUE,
24       'length' => '255',
25       'default' => '',
26     ),
27     'type' => array(
28       'type' => 'varchar',
29       'not null' => TRUE,
30       'length' => '255',
31       'default' => '',
32     ),
33     'status' => array(
34       'type' => 'int',
35       'not null' => TRUE,
36       'size' => 'normal',
37       'default' => '0',
38     ),
39   ),
40   'primary key' => array(
41     'aid',
42   ),
43   'mysql_character_set' => 'utf8',
44 ));
45
46 $connection->schema()->createTable('accesslog', array(
47   'fields' => array(
48     'aid' => array(
49       'type' => 'serial',
50       'not null' => TRUE,
51       'size' => 'normal',
52     ),
53     'sid' => array(
54       'type' => 'varchar',
55       'not null' => TRUE,
56       'length' => '64',
57       'default' => '',
58     ),
59     'title' => array(
60       'type' => 'varchar',
61       'not null' => FALSE,
62       'length' => '255',
63     ),
64     'path' => array(
65       'type' => 'varchar',
66       'not null' => FALSE,
67       'length' => '255',
68     ),
69     'url' => array(
70       'type' => 'text',
71       'not null' => FALSE,
72       'size' => 'normal',
73     ),
74     'hostname' => array(
75       'type' => 'varchar',
76       'not null' => FALSE,
77       'length' => '128',
78     ),
79     'uid' => array(
80       'type' => 'int',
81       'not null' => FALSE,
82       'size' => 'normal',
83       'default' => '0',
84       'unsigned' => TRUE,
85     ),
86     'timer' => array(
87       'type' => 'int',
88       'not null' => TRUE,
89       'size' => 'normal',
90       'default' => '0',
91       'unsigned' => TRUE,
92     ),
93     'timestamp' => array(
94       'type' => 'int',
95       'not null' => TRUE,
96       'size' => 'normal',
97       'default' => '0',
98       'unsigned' => TRUE,
99     ),
100   ),
101   'primary key' => array(
102     'aid',
103   ),
104   'indexes' => array(
105     'accesslog_timestamp' => array(
106       'timestamp',
107     ),
108     'uid' => array(
109       'uid',
110     ),
111   ),
112   'mysql_character_set' => 'utf8',
113 ));
114
115 $connection->schema()->createTable('actions', array(
116   'fields' => array(
117     'aid' => array(
118       'type' => 'varchar',
119       'not null' => TRUE,
120       'length' => '255',
121       'default' => '0',
122     ),
123     'type' => array(
124       'type' => 'varchar',
125       'not null' => TRUE,
126       'length' => '32',
127       'default' => '',
128     ),
129     'callback' => array(
130       'type' => 'varchar',
131       'not null' => TRUE,
132       'length' => '255',
133       'default' => '',
134     ),
135     'parameters' => array(
136       'type' => 'text',
137       'not null' => TRUE,
138       'size' => 'normal',
139     ),
140     'description' => array(
141       'type' => 'varchar',
142       'not null' => TRUE,
143       'length' => '255',
144       'default' => '0',
145     ),
146   ),
147   'primary key' => array(
148     'aid',
149   ),
150   'mysql_character_set' => 'utf8',
151 ));
152
153 $connection->insert('actions')
154 ->fields(array(
155   'aid',
156   'type',
157   'callback',
158   'parameters',
159   'description',
160 ))
161 ->values(array(
162   'aid' => '1',
163   'type' => 'comment',
164   'callback' => 'comment_unpublish_by_keyword_action',
165   'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
166   'description' => 'Unpublish comment containing keyword(s)',
167 ))
168 ->values(array(
169   'aid' => '2',
170   'type' => 'node',
171   'callback' => 'node_assign_owner_action',
172   'parameters' => 'a:1:{s:9:"owner_uid";s:1:"2";}',
173   'description' => 'Change the author of a post',
174 ))
175 ->values(array(
176   'aid' => '3',
177   'type' => 'node',
178   'callback' => 'node_unpublish_by_keyword_action',
179   'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
180   'description' => 'Unpublish post containing keyword(s)',
181 ))
182 ->values(array(
183   'aid' => '4',
184   'type' => 'system',
185   'callback' => 'system_message_action',
186   'parameters' => 'a:1:{s:7:"message";s:21:"Drupal migration test";}',
187   'description' => 'Display a message to the user',
188 ))
189 ->values(array(
190   'aid' => '5',
191   'type' => 'system',
192   'callback' => 'system_send_email_action',
193   'parameters' => 'a:3:{s:9:"recipient";s:16:"test@example.com";s:7:"subject";s:21:"Drupal migration test";s:7:"message";s:21:"Drupal migration test";}',
194   'description' => 'Send e-mail',
195 ))
196 ->values(array(
197   'aid' => '6',
198   'type' => 'system',
199   'callback' => 'system_goto_action',
200   'parameters' => 'a:1:{s:3:"url";s:22:"https://www.drupal.org";}',
201   'description' => 'Redirect to URL',
202 ))
203 ->values(array(
204   'aid' => 'comment_publish_action',
205   'type' => 'comment',
206   'callback' => 'comment_publish_action',
207   'parameters' => '',
208   'description' => 'Publish comment',
209 ))
210 ->values(array(
211   'aid' => 'comment_unpublish_action',
212   'type' => 'comment',
213   'callback' => 'comment_unpublish_action',
214   'parameters' => '',
215   'description' => 'Unpublish comment',
216 ))
217 ->values(array(
218   'aid' => 'imagecache_flush_action',
219   'type' => 'node',
220   'callback' => 'imagecache_flush_action',
221   'parameters' => '',
222   'description' => "ImageCache: Flush ALL presets for this node's filefield images",
223 ))
224 ->values(array(
225   'aid' => 'imagecache_generate_all_action',
226   'type' => 'node',
227   'callback' => 'imagecache_generate_all_action',
228   'parameters' => '',
229   'description' => "ImageCache: Generate ALL presets for this node's filefield images",
230 ))
231 ->values(array(
232   'aid' => 'node_make_sticky_action',
233   'type' => 'node',
234   'callback' => 'node_make_sticky_action',
235   'parameters' => '',
236   'description' => 'Make post sticky',
237 ))
238 ->values(array(
239   'aid' => 'node_make_unsticky_action',
240   'type' => 'node',
241   'callback' => 'node_make_unsticky_action',
242   'parameters' => '',
243   'description' => 'Make post unsticky',
244 ))
245 ->values(array(
246   'aid' => 'node_promote_action',
247   'type' => 'node',
248   'callback' => 'node_promote_action',
249   'parameters' => '',
250   'description' => 'Promote post to front page',
251 ))
252 ->values(array(
253   'aid' => 'node_publish_action',
254   'type' => 'node',
255   'callback' => 'node_publish_action',
256   'parameters' => '',
257   'description' => 'Publish post',
258 ))
259 ->values(array(
260   'aid' => 'node_save_action',
261   'type' => 'node',
262   'callback' => 'node_save_action',
263   'parameters' => '',
264   'description' => 'Save post',
265 ))
266 ->values(array(
267   'aid' => 'node_unpromote_action',
268   'type' => 'node',
269   'callback' => 'node_unpromote_action',
270   'parameters' => '',
271   'description' => 'Remove post from front page',
272 ))
273 ->values(array(
274   'aid' => 'node_unpublish_action',
275   'type' => 'node',
276   'callback' => 'node_unpublish_action',
277   'parameters' => '',
278   'description' => 'Unpublish post',
279 ))
280 ->values(array(
281   'aid' => 'user_block_ip_action',
282   'type' => 'user',
283   'callback' => 'user_block_ip_action',
284   'parameters' => '',
285   'description' => 'Ban IP address of current user',
286 ))
287 ->values(array(
288   'aid' => 'user_block_user_action',
289   'type' => 'user',
290   'callback' => 'user_block_user_action',
291   'parameters' => '',
292   'description' => 'Block current user',
293 ))
294 ->execute();
295
296 $connection->schema()->createTable('actions_aid', array(
297   'fields' => array(
298     'aid' => array(
299       'type' => 'serial',
300       'not null' => TRUE,
301       'size' => 'normal',
302       'unsigned' => TRUE,
303     ),
304   ),
305   'primary key' => array(
306     'aid',
307   ),
308   'mysql_character_set' => 'utf8',
309 ));
310
311 $connection->insert('actions_aid')
312 ->fields(array(
313   'aid',
314 ))
315 ->values(array(
316   'aid' => '1',
317 ))
318 ->values(array(
319   'aid' => '2',
320 ))
321 ->values(array(
322   'aid' => '3',
323 ))
324 ->values(array(
325   'aid' => '4',
326 ))
327 ->values(array(
328   'aid' => '5',
329 ))
330 ->values(array(
331   'aid' => '6',
332 ))
333 ->execute();
334
335 $connection->schema()->createTable('aggregator_category', array(
336   'fields' => array(
337     'cid' => array(
338       'type' => 'serial',
339       'not null' => TRUE,
340       'size' => 'normal',
341     ),
342     'title' => array(
343       'type' => 'varchar',
344       'not null' => TRUE,
345       'length' => '255',
346       'default' => '',
347     ),
348     'description' => array(
349       'type' => 'text',
350       'not null' => TRUE,
351       'size' => 'normal',
352     ),
353     'block' => array(
354       'type' => 'int',
355       'not null' => TRUE,
356       'size' => 'normal',
357       'default' => '0',
358     ),
359   ),
360   'primary key' => array(
361     'cid',
362   ),
363   'mysql_character_set' => 'utf8',
364 ));
365
366 $connection->schema()->createTable('aggregator_feed', array(
367   'fields' => array(
368     'fid' => array(
369       'type' => 'serial',
370       'not null' => TRUE,
371       'size' => 'normal',
372     ),
373     'title' => array(
374       'type' => 'varchar',
375       'not null' => TRUE,
376       'length' => '255',
377       'default' => '',
378     ),
379     'url' => array(
380       'type' => 'varchar',
381       'not null' => TRUE,
382       'length' => '255',
383       'default' => '',
384     ),
385     'refresh' => array(
386       'type' => 'int',
387       'not null' => TRUE,
388       'size' => 'normal',
389       'default' => '0',
390     ),
391     'checked' => array(
392       'type' => 'int',
393       'not null' => TRUE,
394       'size' => 'normal',
395       'default' => '0',
396     ),
397     'link' => array(
398       'type' => 'varchar',
399       'not null' => TRUE,
400       'length' => '255',
401       'default' => '',
402     ),
403     'description' => array(
404       'type' => 'text',
405       'not null' => TRUE,
406       'size' => 'normal',
407     ),
408     'image' => array(
409       'type' => 'text',
410       'not null' => TRUE,
411       'size' => 'normal',
412     ),
413     'etag' => array(
414       'type' => 'varchar',
415       'not null' => TRUE,
416       'length' => '255',
417       'default' => '',
418     ),
419     'modified' => array(
420       'type' => 'int',
421       'not null' => TRUE,
422       'size' => 'normal',
423       'default' => '0',
424     ),
425     'block' => array(
426       'type' => 'int',
427       'not null' => TRUE,
428       'size' => 'normal',
429       'default' => '0',
430     ),
431   ),
432   'primary key' => array(
433     'fid',
434   ),
435   'mysql_character_set' => 'utf8',
436 ));
437
438 $connection->insert('aggregator_feed')
439 ->fields(array(
440   'fid',
441   'title',
442   'url',
443   'refresh',
444   'checked',
445   'link',
446   'description',
447   'image',
448   'etag',
449   'modified',
450   'block',
451 ))
452 ->values(array(
453   'fid' => '5',
454   'title' => 'Know Your Meme',
455   'url' => 'http://knowyourmeme.com/newsfeed.rss',
456   'refresh' => '900',
457   'checked' => '1387659487',
458   'link' => 'http://knowyourmeme.com',
459   'description' => 'New items added to the News Feed',
460   'image' => 'http://b.thumbs.redditmedia.com/harEHsUUZVajabtC.png',
461   'etag' => '"213cc1365b96c310e92053c5551f0504"',
462   'modified' => '0',
463   'block' => '7',
464 ))
465 ->execute();
466
467 $connection->schema()->createTable('aggregator_item', array(
468   'fields' => array(
469     'iid' => array(
470       'type' => 'serial',
471       'not null' => TRUE,
472       'size' => 'normal',
473     ),
474     'fid' => array(
475       'type' => 'int',
476       'not null' => TRUE,
477       'size' => 'normal',
478       'default' => '0',
479     ),
480     'title' => array(
481       'type' => 'varchar',
482       'not null' => TRUE,
483       'length' => '255',
484       'default' => '',
485     ),
486     'link' => array(
487       'type' => 'varchar',
488       'not null' => TRUE,
489       'length' => '255',
490       'default' => '',
491     ),
492     'author' => array(
493       'type' => 'varchar',
494       'not null' => TRUE,
495       'length' => '255',
496       'default' => '',
497     ),
498     'description' => array(
499       'type' => 'text',
500       'not null' => TRUE,
501       'size' => 'normal',
502     ),
503     'timestamp' => array(
504       'type' => 'int',
505       'not null' => FALSE,
506       'size' => 'normal',
507     ),
508     'guid' => array(
509       'type' => 'varchar',
510       'not null' => FALSE,
511       'length' => '255',
512     ),
513   ),
514   'primary key' => array(
515     'iid',
516   ),
517   'mysql_character_set' => 'utf8',
518 ));
519
520 $connection->insert('aggregator_item')
521 ->fields(array(
522   'iid',
523   'fid',
524   'title',
525   'link',
526   'author',
527   'description',
528   'timestamp',
529   'guid',
530 ))
531 ->values(array(
532   'iid' => '1',
533   'fid' => '5',
534   'title' => 'This (three) weeks in Drupal Core - January 10th 2014',
535   'link' => 'https://groups.drupal.org/node/395218',
536   'author' => 'larowlan',
537   'description' => "<h2 id='new'>What's new with Drupal 8?</h2>",
538   'timestamp' => '1389297196',
539   'guid' => '395218 at https://groups.drupal.org',
540 ))
541 ->execute();
542
543 $connection->schema()->createTable('authmap', array(
544   'fields' => array(
545     'aid' => array(
546       'type' => 'serial',
547       'not null' => TRUE,
548       'size' => 'normal',
549       'unsigned' => TRUE,
550     ),
551     'uid' => array(
552       'type' => 'int',
553       'not null' => TRUE,
554       'size' => 'normal',
555       'default' => '0',
556     ),
557     'authname' => array(
558       'type' => 'varchar',
559       'not null' => TRUE,
560       'length' => '128',
561       'default' => '',
562     ),
563     'module' => array(
564       'type' => 'varchar',
565       'not null' => TRUE,
566       'length' => '128',
567       'default' => '',
568     ),
569   ),
570   'primary key' => array(
571     'aid',
572   ),
573   'mysql_character_set' => 'utf8',
574 ));
575
576 $connection->schema()->createTable('batch', array(
577   'fields' => array(
578     'bid' => array(
579       'type' => 'serial',
580       'not null' => TRUE,
581       'size' => 'normal',
582       'unsigned' => TRUE,
583     ),
584     'token' => array(
585       'type' => 'varchar',
586       'not null' => TRUE,
587       'length' => '64',
588     ),
589     'timestamp' => array(
590       'type' => 'int',
591       'not null' => TRUE,
592       'size' => 'normal',
593     ),
594     'batch' => array(
595       'type' => 'text',
596       'not null' => FALSE,
597       'size' => 'normal',
598     ),
599   ),
600   'primary key' => array(
601     'bid',
602   ),
603   'mysql_character_set' => 'utf8',
604 ));
605
606 $connection->insert('batch')
607 ->fields(array(
608   'bid',
609   'token',
610   'timestamp',
611   'batch',
612 ))
613 ->values(array(
614   'bid' => '1',
615   'token' => '',
616   'timestamp' => '1494966324',
617   'batch' => NULL,
618 ))
619 ->execute();
620
621 $connection->schema()->createTable('blocks', array(
622   'fields' => array(
623     'bid' => array(
624       'type' => 'serial',
625       'not null' => TRUE,
626       'size' => 'normal',
627     ),
628     'module' => array(
629       'type' => 'varchar',
630       'not null' => TRUE,
631       'length' => '64',
632       'default' => '',
633     ),
634     'delta' => array(
635       'type' => 'varchar',
636       'not null' => TRUE,
637       'length' => '32',
638       'default' => '0',
639     ),
640     'theme' => array(
641       'type' => 'varchar',
642       'not null' => TRUE,
643       'length' => '64',
644       'default' => '',
645     ),
646     'status' => array(
647       'type' => 'int',
648       'not null' => TRUE,
649       'size' => 'normal',
650       'default' => '0',
651     ),
652     'weight' => array(
653       'type' => 'int',
654       'not null' => TRUE,
655       'size' => 'normal',
656       'default' => '0',
657     ),
658     'region' => array(
659       'type' => 'varchar',
660       'not null' => TRUE,
661       'length' => '64',
662       'default' => '',
663     ),
664     'custom' => array(
665       'type' => 'int',
666       'not null' => TRUE,
667       'size' => 'normal',
668       'default' => '0',
669     ),
670     'throttle' => array(
671       'type' => 'int',
672       'not null' => TRUE,
673       'size' => 'normal',
674       'default' => '0',
675     ),
676     'visibility' => array(
677       'type' => 'int',
678       'not null' => TRUE,
679       'size' => 'normal',
680       'default' => '0',
681     ),
682     'pages' => array(
683       'type' => 'text',
684       'not null' => TRUE,
685       'size' => 'normal',
686     ),
687     'title' => array(
688       'type' => 'varchar',
689       'not null' => TRUE,
690       'length' => '64',
691       'default' => '',
692     ),
693     'cache' => array(
694       'type' => 'int',
695       'not null' => TRUE,
696       'size' => 'normal',
697       'default' => '1',
698     ),
699   ),
700   'primary key' => array(
701     'bid',
702   ),
703   'mysql_character_set' => 'utf8',
704 ));
705
706 $connection->insert('blocks')
707 ->fields(array(
708   'bid',
709   'module',
710   'delta',
711   'theme',
712   'status',
713   'weight',
714   'region',
715   'custom',
716   'throttle',
717   'visibility',
718   'pages',
719   'title',
720   'cache',
721 ))
722 ->values(array(
723   'bid' => '1',
724   'module' => 'user',
725   'delta' => '0',
726   'theme' => 'garland',
727   'status' => '1',
728   'weight' => '-10',
729   'region' => 'left',
730   'custom' => '0',
731   'throttle' => '0',
732   'visibility' => '0',
733   'pages' => "<front>\r\nnode/1\nblog/*",
734   'title' => '',
735   'cache' => '-1',
736 ))
737 ->values(array(
738   'bid' => '2',
739   'module' => 'user',
740   'delta' => '1',
741   'theme' => 'garland',
742   'status' => '1',
743   'weight' => '-11',
744   'region' => 'left',
745   'custom' => '0',
746   'throttle' => '0',
747   'visibility' => '0',
748   'pages' => '',
749   'title' => 'zu - Navigation',
750   'cache' => '-1',
751 ))
752 ->values(array(
753   'bid' => '3',
754   'module' => 'system',
755   'delta' => '0',
756   'theme' => 'garland',
757   'status' => '1',
758   'weight' => '-5',
759   'region' => 'footer',
760   'custom' => '0',
761   'throttle' => '0',
762   'visibility' => '0',
763   'pages' => 'node/1',
764   'title' => '',
765   'cache' => '-1',
766 ))
767 ->values(array(
768   'bid' => '4',
769   'module' => 'comment',
770   'delta' => '0',
771   'theme' => 'garland',
772   'status' => '0',
773   'weight' => '-9',
774   'region' => '',
775   'custom' => '0',
776   'throttle' => '0',
777   'visibility' => '0',
778   'pages' => '',
779   'title' => '',
780   'cache' => '1',
781 ))
782 ->values(array(
783   'bid' => '5',
784   'module' => 'menu',
785   'delta' => 'primary-links',
786   'theme' => 'garland',
787   'status' => '1',
788   'weight' => '-5',
789   'region' => 'header',
790   'custom' => '0',
791   'throttle' => '0',
792   'visibility' => '0',
793   'pages' => '',
794   'title' => '',
795   'cache' => '-1',
796 ))
797 ->values(array(
798   'bid' => '6',
799   'module' => 'menu',
800   'delta' => 'secondary-links',
801   'theme' => 'garland',
802   'status' => '0',
803   'weight' => '-8',
804   'region' => '',
805   'custom' => '0',
806   'throttle' => '0',
807   'visibility' => '0',
808   'pages' => '',
809   'title' => '',
810   'cache' => '-1',
811 ))
812 ->values(array(
813   'bid' => '7',
814   'module' => 'node',
815   'delta' => '0',
816   'theme' => 'garland',
817   'status' => '0',
818   'weight' => '-7',
819   'region' => '',
820   'custom' => '0',
821   'throttle' => '0',
822   'visibility' => '0',
823   'pages' => '',
824   'title' => '',
825   'cache' => '-1',
826 ))
827 ->values(array(
828   'bid' => '8',
829   'module' => 'user',
830   'delta' => '2',
831   'theme' => 'garland',
832   'status' => '1',
833   'weight' => '-11',
834   'region' => 'right',
835   'custom' => '0',
836   'throttle' => '0',
837   'visibility' => '0',
838   'pages' => '',
839   'title' => '',
840   'cache' => '1',
841 ))
842 ->values(array(
843   'bid' => '9',
844   'module' => 'user',
845   'delta' => '3',
846   'theme' => 'garland',
847   'status' => '1',
848   'weight' => '-10',
849   'region' => 'right',
850   'custom' => '0',
851   'throttle' => '0',
852   'visibility' => '0',
853   'pages' => '',
854   'title' => '',
855   'cache' => '-1',
856 ))
857 ->values(array(
858   'bid' => '10',
859   'module' => 'block',
860   'delta' => '1',
861   'theme' => 'garland',
862   'status' => '1',
863   'weight' => '0',
864   'region' => 'content',
865   'custom' => '0',
866   'throttle' => '0',
867   'visibility' => '1',
868   'pages' => '<front>',
869   'title' => 'Static Block',
870   'cache' => '-1',
871 ))
872 ->values(array(
873   'bid' => '11',
874   'module' => 'block',
875   'delta' => '2',
876   'theme' => 'bluemarine',
877   'status' => '1',
878   'weight' => '-4',
879   'region' => 'right',
880   'custom' => '0',
881   'throttle' => '0',
882   'visibility' => '1',
883   'pages' => 'node',
884   'title' => 'Another Static Block',
885   'cache' => '-1',
886 ))
887 ->values(array(
888   'bid' => '12',
889   'module' => 'block',
890   'delta' => '1',
891   'theme' => 'test_theme',
892   'status' => '1',
893   'weight' => '-7',
894   'region' => 'right',
895   'custom' => '0',
896   'throttle' => '0',
897   'visibility' => '0',
898   'pages' => '',
899   'title' => '',
900   'cache' => '-1',
901 ))
902 ->values(array(
903   'bid' => '13',
904   'module' => 'block',
905   'delta' => '2',
906   'theme' => 'test_theme',
907   'status' => '1',
908   'weight' => '-2',
909   'region' => 'left',
910   'custom' => '0',
911   'throttle' => '0',
912   'visibility' => '2',
913   'pages' => "<?php\nreturn TRUE;",
914   'title' => '',
915   'cache' => '-1',
916 ))
917 ->values(array(
918   'bid' => '14',
919   'module' => 'aggregator',
920   'delta' => 'feed-5',
921   'theme' => 'garland',
922   'status' => '1',
923   'weight' => '-2',
924   'region' => 'right',
925   'custom' => '0',
926   'throttle' => '0',
927   'visibility' => '0',
928   'pages' => '',
929   'title' => '',
930   'cache' => '1',
931 ))
932 ->values(array(
933   'bid' => '15',
934   'module' => 'block',
935   'delta' => '2',
936   'theme' => 'garland',
937   'status' => '0',
938   'weight' => '1',
939   'region' => '',
940   'custom' => '0',
941   'throttle' => '0',
942   'visibility' => '0',
943   'pages' => '',
944   'title' => '',
945   'cache' => '-1',
946 ))
947 ->values(array(
948   'bid' => '16',
949   'module' => 'profile',
950   'delta' => '0',
951   'theme' => 'garland',
952   'status' => '0',
953   'weight' => '-5',
954   'region' => '',
955   'custom' => '0',
956   'throttle' => '0',
957   'visibility' => '0',
958   'pages' => '',
959   'title' => '',
960   'cache' => '5',
961 ))
962 ->values(array(
963   'bid' => '17',
964   'module' => 'event',
965   'delta' => '0',
966   'theme' => 'garland',
967   'status' => '0',
968   'weight' => '-3',
969   'region' => '',
970   'custom' => '0',
971   'throttle' => '0',
972   'visibility' => '0',
973   'pages' => '',
974   'title' => '',
975   'cache' => '1',
976 ))
977 ->values(array(
978   'bid' => '18',
979   'module' => 'event',
980   'delta' => '1',
981   'theme' => 'garland',
982   'status' => '0',
983   'weight' => '0',
984   'region' => '',
985   'custom' => '0',
986   'throttle' => '0',
987   'visibility' => '0',
988   'pages' => '',
989   'title' => '',
990   'cache' => '1',
991 ))
992 ->values(array(
993   'bid' => '19',
994   'module' => 'event',
995   'delta' => 'event-upcoming-event',
996   'theme' => 'garland',
997   'status' => '0',
998   'weight' => '-1',
999   'region' => '',
1000   'custom' => '0',
1001   'throttle' => '0',
1002   'visibility' => '0',
1003   'pages' => '',
1004   'title' => '',
1005   'cache' => '1',
1006 ))
1007 ->values(array(
1008   'bid' => '20',
1009   'module' => 'book',
1010   'delta' => '0',
1011   'theme' => 'garland',
1012   'status' => '1',
1013   'weight' => '-4',
1014   'region' => 'right',
1015   'custom' => '0',
1016   'throttle' => '0',
1017   'visibility' => '0',
1018   'pages' => '',
1019   'title' => '',
1020   'cache' => '5',
1021 ))
1022 ->values(array(
1023   'bid' => '21',
1024   'module' => 'locale',
1025   'delta' => '0',
1026   'theme' => 'garland',
1027   'status' => '0',
1028   'weight' => '0',
1029   'region' => '',
1030   'custom' => '0',
1031   'throttle' => '0',
1032   'visibility' => '0',
1033   'pages' => '',
1034   'title' => '',
1035   'cache' => '-1',
1036 ))
1037 ->values(array(
1038   'bid' => '22',
1039   'module' => 'forum',
1040   'delta' => '0',
1041   'theme' => 'garland',
1042   'status' => '1',
1043   'weight' => '-8',
1044   'region' => 'left',
1045   'custom' => '0',
1046   'throttle' => '0',
1047   'visibility' => '0',
1048   'pages' => '',
1049   'title' => '',
1050   'cache' => '1',
1051 ))
1052 ->values(array(
1053   'bid' => '23',
1054   'module' => 'forum',
1055   'delta' => '1',
1056   'theme' => 'garland',
1057   'status' => '1',
1058   'weight' => '-9',
1059   'region' => 'left',
1060   'custom' => '0',
1061   'throttle' => '0',
1062   'visibility' => '0',
1063   'pages' => '',
1064   'title' => '',
1065   'cache' => '1',
1066 ))
1067 ->values(array(
1068   'bid' => '24',
1069   'module' => 'statistics',
1070   'delta' => '0',
1071   'theme' => 'garland',
1072   'status' => '1',
1073   'weight' => '0',
1074   'region' => 'right',
1075   'custom' => '0',
1076   'throttle' => '0',
1077   'visibility' => '0',
1078   'pages' => '',
1079   'title' => '',
1080   'cache' => '-1',
1081 ))
1082 ->execute();
1083
1084 $connection->schema()->createTable('blocks_roles', array(
1085   'fields' => array(
1086     'module' => array(
1087       'type' => 'varchar',
1088       'not null' => TRUE,
1089       'length' => '64',
1090     ),
1091     'delta' => array(
1092       'type' => 'varchar',
1093       'not null' => TRUE,
1094       'length' => '32',
1095     ),
1096     'rid' => array(
1097       'type' => 'int',
1098       'not null' => TRUE,
1099       'size' => 'normal',
1100       'unsigned' => TRUE,
1101     ),
1102   ),
1103   'primary key' => array(
1104     'module',
1105     'delta',
1106     'rid',
1107   ),
1108   'mysql_character_set' => 'utf8',
1109 ));
1110
1111 $connection->insert('blocks_roles')
1112 ->fields(array(
1113   'module',
1114   'delta',
1115   'rid',
1116 ))
1117 ->values(array(
1118   'module' => 'user',
1119   'delta' => '2',
1120   'rid' => '2',
1121 ))
1122 ->values(array(
1123   'module' => 'user',
1124   'delta' => '3',
1125   'rid' => '3',
1126 ))
1127 ->execute();
1128
1129 $connection->schema()->createTable('book', array(
1130   'fields' => array(
1131     'mlid' => array(
1132       'type' => 'int',
1133       'not null' => TRUE,
1134       'size' => 'normal',
1135       'default' => '0',
1136       'unsigned' => TRUE,
1137     ),
1138     'nid' => array(
1139       'type' => 'int',
1140       'not null' => TRUE,
1141       'size' => 'normal',
1142       'default' => '0',
1143       'unsigned' => TRUE,
1144     ),
1145     'bid' => array(
1146       'type' => 'int',
1147       'not null' => TRUE,
1148       'size' => 'normal',
1149       'default' => '0',
1150       'unsigned' => TRUE,
1151     ),
1152   ),
1153   'primary key' => array(
1154     'mlid',
1155   ),
1156   'mysql_character_set' => 'utf8',
1157 ));
1158
1159 $connection->insert('book')
1160 ->fields(array(
1161   'mlid',
1162   'nid',
1163   'bid',
1164 ))
1165 ->values(array(
1166   'mlid' => '1',
1167   'nid' => '4',
1168   'bid' => '4',
1169 ))
1170 ->values(array(
1171   'mlid' => '2',
1172   'nid' => '5',
1173   'bid' => '4',
1174 ))
1175 ->values(array(
1176   'mlid' => '3',
1177   'nid' => '6',
1178   'bid' => '4',
1179 ))
1180 ->values(array(
1181   'mlid' => '4',
1182   'nid' => '7',
1183   'bid' => '4',
1184 ))
1185 ->values(array(
1186   'mlid' => '5',
1187   'nid' => '8',
1188   'bid' => '8',
1189 ))
1190 ->execute();
1191
1192 $connection->schema()->createTable('boxes', array(
1193   'fields' => array(
1194     'bid' => array(
1195       'type' => 'serial',
1196       'not null' => TRUE,
1197       'size' => 'normal',
1198       'unsigned' => TRUE,
1199     ),
1200     'body' => array(
1201       'type' => 'text',
1202       'not null' => FALSE,
1203       'size' => 'normal',
1204     ),
1205     'info' => array(
1206       'type' => 'varchar',
1207       'not null' => TRUE,
1208       'length' => '128',
1209       'default' => '',
1210     ),
1211     'format' => array(
1212       'type' => 'int',
1213       'not null' => TRUE,
1214       'size' => 'normal',
1215       'default' => '0',
1216     ),
1217   ),
1218   'primary key' => array(
1219     'bid',
1220   ),
1221   'mysql_character_set' => 'utf8',
1222 ));
1223
1224 $connection->insert('boxes')
1225 ->fields(array(
1226   'bid',
1227   'body',
1228   'info',
1229   'format',
1230 ))
1231 ->values(array(
1232   'bid' => '1',
1233   'body' => '<h3>My first custom block body</h3>',
1234   'info' => 'My block 1',
1235   'format' => '2',
1236 ))
1237 ->values(array(
1238   'bid' => '2',
1239   'body' => '<h3>My second custom block body</h3>',
1240   'info' => 'My block 2',
1241   'format' => '2',
1242 ))
1243 ->execute();
1244
1245 $connection->schema()->createTable('cache', array(
1246   'fields' => array(
1247     'cid' => array(
1248       'type' => 'varchar',
1249       'not null' => TRUE,
1250       'length' => '255',
1251       'default' => '',
1252     ),
1253     'data' => array(
1254       'type' => 'blob',
1255       'not null' => FALSE,
1256       'size' => 'big',
1257     ),
1258     'expire' => array(
1259       'type' => 'int',
1260       'not null' => TRUE,
1261       'size' => 'normal',
1262       'default' => '0',
1263     ),
1264     'created' => array(
1265       'type' => 'int',
1266       'not null' => TRUE,
1267       'size' => 'normal',
1268       'default' => '0',
1269     ),
1270     'headers' => array(
1271       'type' => 'text',
1272       'not null' => FALSE,
1273       'size' => 'normal',
1274     ),
1275     'serialized' => array(
1276       'type' => 'int',
1277       'not null' => TRUE,
1278       'size' => 'normal',
1279       'default' => '0',
1280     ),
1281   ),
1282   'primary key' => array(
1283     'cid',
1284   ),
1285   'mysql_character_set' => 'utf8',
1286 ));
1287
1288 $connection->schema()->createTable('cache_block', array(
1289   'fields' => array(
1290     'cid' => array(
1291       'type' => 'varchar',
1292       'not null' => TRUE,
1293       'length' => '255',
1294       'default' => '',
1295     ),
1296     'data' => array(
1297       'type' => 'blob',
1298       'not null' => FALSE,
1299       'size' => 'big',
1300     ),
1301     'expire' => array(
1302       'type' => 'int',
1303       'not null' => TRUE,
1304       'size' => 'normal',
1305       'default' => '0',
1306     ),
1307     'created' => array(
1308       'type' => 'int',
1309       'not null' => TRUE,
1310       'size' => 'normal',
1311       'default' => '0',
1312     ),
1313     'headers' => array(
1314       'type' => 'text',
1315       'not null' => FALSE,
1316       'size' => 'normal',
1317     ),
1318     'serialized' => array(
1319       'type' => 'int',
1320       'not null' => TRUE,
1321       'size' => 'normal',
1322       'default' => '0',
1323     ),
1324   ),
1325   'primary key' => array(
1326     'cid',
1327   ),
1328   'mysql_character_set' => 'utf8',
1329 ));
1330
1331 $connection->schema()->createTable('cache_bootstrap', array(
1332   'fields' => array(
1333     'cid' => array(
1334       'type' => 'varchar',
1335       'not null' => TRUE,
1336       'length' => '255',
1337       'default' => '',
1338     ),
1339     'data' => array(
1340       'type' => 'blob',
1341       'not null' => FALSE,
1342       'size' => 'big',
1343     ),
1344     'expire' => array(
1345       'type' => 'int',
1346       'not null' => TRUE,
1347       'size' => 'normal',
1348       'default' => '0',
1349     ),
1350     'created' => array(
1351       'type' => 'numeric',
1352       'not null' => TRUE,
1353       'precision' => '14',
1354       'scale' => '3',
1355       'default' => '0.000',
1356     ),
1357     'serialized' => array(
1358       'type' => 'int',
1359       'not null' => TRUE,
1360       'size' => 'normal',
1361       'default' => '0',
1362     ),
1363     'tags' => array(
1364       'type' => 'text',
1365       'not null' => FALSE,
1366       'size' => 'normal',
1367     ),
1368     'checksum_invalidations' => array(
1369       'type' => 'int',
1370       'not null' => TRUE,
1371       'size' => 'normal',
1372       'default' => '0',
1373     ),
1374     'checksum_deletions' => array(
1375       'type' => 'int',
1376       'not null' => TRUE,
1377       'size' => 'normal',
1378       'default' => '0',
1379     ),
1380   ),
1381   'primary key' => array(
1382     'cid',
1383   ),
1384   'mysql_character_set' => 'utf8',
1385 ));
1386
1387 $connection->schema()->createTable('cache_config', array(
1388   'fields' => array(
1389     'cid' => array(
1390       'type' => 'varchar',
1391       'not null' => TRUE,
1392       'length' => '255',
1393       'default' => '',
1394     ),
1395     'data' => array(
1396       'type' => 'blob',
1397       'not null' => FALSE,
1398       'size' => 'big',
1399     ),
1400     'expire' => array(
1401       'type' => 'int',
1402       'not null' => TRUE,
1403       'size' => 'normal',
1404       'default' => '0',
1405     ),
1406     'created' => array(
1407       'type' => 'numeric',
1408       'not null' => TRUE,
1409       'precision' => '14',
1410       'scale' => '3',
1411       'default' => '0.000',
1412     ),
1413     'serialized' => array(
1414       'type' => 'int',
1415       'not null' => TRUE,
1416       'size' => 'normal',
1417       'default' => '0',
1418     ),
1419     'tags' => array(
1420       'type' => 'text',
1421       'not null' => FALSE,
1422       'size' => 'normal',
1423     ),
1424     'checksum_invalidations' => array(
1425       'type' => 'int',
1426       'not null' => TRUE,
1427       'size' => 'normal',
1428       'default' => '0',
1429     ),
1430     'checksum_deletions' => array(
1431       'type' => 'int',
1432       'not null' => TRUE,
1433       'size' => 'normal',
1434       'default' => '0',
1435     ),
1436   ),
1437   'primary key' => array(
1438     'cid',
1439   ),
1440   'mysql_character_set' => 'utf8',
1441 ));
1442
1443 $connection->schema()->createTable('cache_content', array(
1444   'fields' => array(
1445     'cid' => array(
1446       'type' => 'varchar',
1447       'not null' => TRUE,
1448       'length' => '255',
1449       'default' => '',
1450     ),
1451     'data' => array(
1452       'type' => 'blob',
1453       'not null' => FALSE,
1454       'size' => 'big',
1455     ),
1456     'expire' => array(
1457       'type' => 'int',
1458       'not null' => TRUE,
1459       'size' => 'normal',
1460       'default' => '0',
1461     ),
1462     'created' => array(
1463       'type' => 'int',
1464       'not null' => TRUE,
1465       'size' => 'normal',
1466       'default' => '0',
1467     ),
1468     'headers' => array(
1469       'type' => 'text',
1470       'not null' => FALSE,
1471       'size' => 'normal',
1472     ),
1473     'serialized' => array(
1474       'type' => 'int',
1475       'not null' => TRUE,
1476       'size' => 'normal',
1477       'default' => '0',
1478     ),
1479   ),
1480   'primary key' => array(
1481     'cid',
1482   ),
1483   'mysql_character_set' => 'utf8',
1484 ));
1485
1486 $connection->schema()->createTable('cache_discovery', array(
1487   'fields' => array(
1488     'cid' => array(
1489       'type' => 'varchar',
1490       'not null' => TRUE,
1491       'length' => '255',
1492       'default' => '',
1493     ),
1494     'data' => array(
1495       'type' => 'blob',
1496       'not null' => FALSE,
1497       'size' => 'big',
1498     ),
1499     'expire' => array(
1500       'type' => 'int',
1501       'not null' => TRUE,
1502       'size' => 'normal',
1503       'default' => '0',
1504     ),
1505     'created' => array(
1506       'type' => 'numeric',
1507       'not null' => TRUE,
1508       'precision' => '14',
1509       'scale' => '3',
1510       'default' => '0.000',
1511     ),
1512     'serialized' => array(
1513       'type' => 'int',
1514       'not null' => TRUE,
1515       'size' => 'normal',
1516       'default' => '0',
1517     ),
1518     'tags' => array(
1519       'type' => 'text',
1520       'not null' => FALSE,
1521       'size' => 'normal',
1522     ),
1523     'checksum_invalidations' => array(
1524       'type' => 'int',
1525       'not null' => TRUE,
1526       'size' => 'normal',
1527       'default' => '0',
1528     ),
1529     'checksum_deletions' => array(
1530       'type' => 'int',
1531       'not null' => TRUE,
1532       'size' => 'normal',
1533       'default' => '0',
1534     ),
1535   ),
1536   'primary key' => array(
1537     'cid',
1538   ),
1539   'mysql_character_set' => 'utf8',
1540 ));
1541
1542 $connection->schema()->createTable('cache_filter', array(
1543   'fields' => array(
1544     'cid' => array(
1545       'type' => 'varchar',
1546       'not null' => TRUE,
1547       'length' => '255',
1548       'default' => '',
1549     ),
1550     'data' => array(
1551       'type' => 'blob',
1552       'not null' => FALSE,
1553       'size' => 'big',
1554     ),
1555     'expire' => array(
1556       'type' => 'int',
1557       'not null' => TRUE,
1558       'size' => 'normal',
1559       'default' => '0',
1560     ),
1561     'created' => array(
1562       'type' => 'int',
1563       'not null' => TRUE,
1564       'size' => 'normal',
1565       'default' => '0',
1566     ),
1567     'headers' => array(
1568       'type' => 'text',
1569       'not null' => FALSE,
1570       'size' => 'normal',
1571     ),
1572     'serialized' => array(
1573       'type' => 'int',
1574       'not null' => TRUE,
1575       'size' => 'normal',
1576       'default' => '0',
1577     ),
1578   ),
1579   'primary key' => array(
1580     'cid',
1581   ),
1582   'mysql_character_set' => 'utf8',
1583 ));
1584
1585 $connection->schema()->createTable('cache_form', array(
1586   'fields' => array(
1587     'cid' => array(
1588       'type' => 'varchar',
1589       'not null' => TRUE,
1590       'length' => '255',
1591       'default' => '',
1592     ),
1593     'data' => array(
1594       'type' => 'blob',
1595       'not null' => FALSE,
1596       'size' => 'big',
1597     ),
1598     'expire' => array(
1599       'type' => 'int',
1600       'not null' => TRUE,
1601       'size' => 'normal',
1602       'default' => '0',
1603     ),
1604     'created' => array(
1605       'type' => 'int',
1606       'not null' => TRUE,
1607       'size' => 'normal',
1608       'default' => '0',
1609     ),
1610     'headers' => array(
1611       'type' => 'text',
1612       'not null' => FALSE,
1613       'size' => 'normal',
1614     ),
1615     'serialized' => array(
1616       'type' => 'int',
1617       'not null' => TRUE,
1618       'size' => 'normal',
1619       'default' => '0',
1620     ),
1621   ),
1622   'primary key' => array(
1623     'cid',
1624   ),
1625   'mysql_character_set' => 'utf8',
1626 ));
1627
1628 $connection->schema()->createTable('cache_menu', array(
1629   'fields' => array(
1630     'cid' => array(
1631       'type' => 'varchar',
1632       'not null' => TRUE,
1633       'length' => '255',
1634       'default' => '',
1635     ),
1636     'data' => array(
1637       'type' => 'blob',
1638       'not null' => FALSE,
1639       'size' => 'big',
1640     ),
1641     'expire' => array(
1642       'type' => 'int',
1643       'not null' => TRUE,
1644       'size' => 'normal',
1645       'default' => '0',
1646     ),
1647     'created' => array(
1648       'type' => 'int',
1649       'not null' => TRUE,
1650       'size' => 'normal',
1651       'default' => '0',
1652     ),
1653     'headers' => array(
1654       'type' => 'text',
1655       'not null' => FALSE,
1656       'size' => 'normal',
1657     ),
1658     'serialized' => array(
1659       'type' => 'int',
1660       'not null' => TRUE,
1661       'size' => 'normal',
1662       'default' => '0',
1663     ),
1664   ),
1665   'primary key' => array(
1666     'cid',
1667   ),
1668   'mysql_character_set' => 'utf8',
1669 ));
1670
1671 $connection->schema()->createTable('cache_page', array(
1672   'fields' => array(
1673     'cid' => array(
1674       'type' => 'varchar',
1675       'not null' => TRUE,
1676       'length' => '255',
1677       'default' => '',
1678     ),
1679     'data' => array(
1680       'type' => 'blob',
1681       'not null' => FALSE,
1682       'size' => 'big',
1683     ),
1684     'expire' => array(
1685       'type' => 'int',
1686       'not null' => TRUE,
1687       'size' => 'normal',
1688       'default' => '0',
1689     ),
1690     'created' => array(
1691       'type' => 'int',
1692       'not null' => TRUE,
1693       'size' => 'normal',
1694       'default' => '0',
1695     ),
1696     'headers' => array(
1697       'type' => 'text',
1698       'not null' => FALSE,
1699       'size' => 'normal',
1700     ),
1701     'serialized' => array(
1702       'type' => 'int',
1703       'not null' => TRUE,
1704       'size' => 'normal',
1705       'default' => '0',
1706     ),
1707   ),
1708   'primary key' => array(
1709     'cid',
1710   ),
1711   'mysql_character_set' => 'utf8',
1712 ));
1713
1714 $connection->schema()->createTable('cache_update', array(
1715   'fields' => array(
1716     'cid' => array(
1717       'type' => 'varchar',
1718       'not null' => TRUE,
1719       'length' => '255',
1720       'default' => '',
1721     ),
1722     'data' => array(
1723       'type' => 'blob',
1724       'not null' => FALSE,
1725       'size' => 'big',
1726     ),
1727     'expire' => array(
1728       'type' => 'int',
1729       'not null' => TRUE,
1730       'size' => 'normal',
1731       'default' => '0',
1732     ),
1733     'created' => array(
1734       'type' => 'int',
1735       'not null' => TRUE,
1736       'size' => 'normal',
1737       'default' => '0',
1738     ),
1739     'headers' => array(
1740       'type' => 'text',
1741       'not null' => FALSE,
1742       'size' => 'normal',
1743     ),
1744     'serialized' => array(
1745       'type' => 'int',
1746       'not null' => TRUE,
1747       'size' => 'normal',
1748       'default' => '0',
1749     ),
1750   ),
1751   'primary key' => array(
1752     'cid',
1753   ),
1754   'mysql_character_set' => 'utf8',
1755 ));
1756
1757 $connection->schema()->createTable('cachetags', array(
1758   'fields' => array(
1759     'tag' => array(
1760       'type' => 'varchar',
1761       'not null' => TRUE,
1762       'length' => '255',
1763       'default' => '',
1764     ),
1765     'invalidations' => array(
1766       'type' => 'int',
1767       'not null' => TRUE,
1768       'size' => 'normal',
1769       'default' => '0',
1770     ),
1771     'deletions' => array(
1772       'type' => 'int',
1773       'not null' => TRUE,
1774       'size' => 'normal',
1775       'default' => '0',
1776     ),
1777   ),
1778   'primary key' => array(
1779     'tag',
1780   ),
1781   'mysql_character_set' => 'utf8',
1782 ));
1783
1784 $connection->schema()->createTable('comments', array(
1785   'fields' => array(
1786     'cid' => array(
1787       'type' => 'serial',
1788       'not null' => TRUE,
1789       'size' => 'normal',
1790     ),
1791     'pid' => array(
1792       'type' => 'int',
1793       'not null' => TRUE,
1794       'size' => 'normal',
1795       'default' => '0',
1796     ),
1797     'nid' => array(
1798       'type' => 'int',
1799       'not null' => TRUE,
1800       'size' => 'normal',
1801       'default' => '0',
1802     ),
1803     'uid' => array(
1804       'type' => 'int',
1805       'not null' => TRUE,
1806       'size' => 'normal',
1807       'default' => '0',
1808     ),
1809     'subject' => array(
1810       'type' => 'varchar',
1811       'not null' => TRUE,
1812       'length' => '64',
1813       'default' => '',
1814     ),
1815     'comment' => array(
1816       'type' => 'text',
1817       'not null' => TRUE,
1818       'size' => 'normal',
1819     ),
1820     'hostname' => array(
1821       'type' => 'varchar',
1822       'not null' => TRUE,
1823       'length' => '128',
1824       'default' => '',
1825     ),
1826     'timestamp' => array(
1827       'type' => 'int',
1828       'not null' => TRUE,
1829       'size' => 'normal',
1830       'default' => '0',
1831     ),
1832     'status' => array(
1833       'type' => 'int',
1834       'not null' => TRUE,
1835       'size' => 'normal',
1836       'default' => '0',
1837       'unsigned' => TRUE,
1838     ),
1839     'format' => array(
1840       'type' => 'int',
1841       'not null' => TRUE,
1842       'size' => 'normal',
1843       'default' => '0',
1844     ),
1845     'thread' => array(
1846       'type' => 'varchar',
1847       'not null' => TRUE,
1848       'length' => '255',
1849     ),
1850     'name' => array(
1851       'type' => 'varchar',
1852       'not null' => FALSE,
1853       'length' => '60',
1854     ),
1855     'mail' => array(
1856       'type' => 'varchar',
1857       'not null' => FALSE,
1858       'length' => '64',
1859     ),
1860     'homepage' => array(
1861       'type' => 'varchar',
1862       'not null' => FALSE,
1863       'length' => '255',
1864     ),
1865   ),
1866   'primary key' => array(
1867     'cid',
1868   ),
1869   'indexes' => array(
1870     'pid' => array(
1871       'pid',
1872     ),
1873     'comment_uid' => array(
1874       'uid',
1875     ),
1876   ),
1877   'mysql_character_set' => 'utf8',
1878 ));
1879
1880 $connection->insert('comments')
1881 ->fields(array(
1882   'cid',
1883   'pid',
1884   'nid',
1885   'uid',
1886   'subject',
1887   'comment',
1888   'hostname',
1889   'timestamp',
1890   'status',
1891   'format',
1892   'thread',
1893   'name',
1894   'mail',
1895   'homepage',
1896 ))
1897 ->values(array(
1898   'cid' => '1',
1899   'pid' => '0',
1900   'nid' => '1',
1901   'uid' => '0',
1902   'subject' => 'The first comment.',
1903   'comment' => 'The first comment body.',
1904   'hostname' => '203.0.113.1',
1905   'timestamp' => '1390264918',
1906   'status' => '0',
1907   'format' => '1',
1908   'thread' => '01/',
1909   'name' => '1st comment author name',
1910   'mail' => 'comment1@example.com',
1911   'homepage' => 'https://www.drupal.org',
1912 ))
1913 ->values(array(
1914   'cid' => '2',
1915   'pid' => '3',
1916   'nid' => '1',
1917   'uid' => '0',
1918   'subject' => 'The response to the second comment.',
1919   'comment' => 'The second comment response body.',
1920   'hostname' => '203.0.113.2',
1921   'timestamp' => '1390264938',
1922   'status' => '0',
1923   'format' => '1',
1924   'thread' => '02/01',
1925   'name' => '3rd comment author name',
1926   'mail' => 'comment3@example.com',
1927   'homepage' => 'https://www.drupal.org',
1928 ))
1929 ->values(array(
1930   'cid' => '3',
1931   'pid' => '0',
1932   'nid' => '1',
1933   'uid' => '0',
1934   'subject' => 'The second comment.',
1935   'comment' => 'The second comment body.',
1936   'hostname' => '203.0.113.3',
1937   'timestamp' => '1390264948',
1938   'status' => '1',
1939   'format' => '1',
1940   'thread' => '02/',
1941   'name' => '3rd comment author name',
1942   'mail' => 'comment3@example.com',
1943   'homepage' => 'https://www.drupal.org',
1944 ))
1945 ->values(array(
1946   'cid' => '4',
1947   'pid' => '0',
1948   'nid' => '19',
1949   'uid' => '1',
1950   'subject' => 'Subject 1',
1951   'comment' => 'Comment 1',
1952   'hostname' => '127.0.0.1',
1953   'timestamp' => '1501955780',
1954   'status' => '0',
1955   'format' => '1',
1956   'thread' => '01/',
1957   'name' => 'root',
1958   'mail' => '',
1959   'homepage' => '',
1960 ))
1961 ->values(array(
1962   'cid' => '5',
1963   'pid' => '4',
1964   'nid' => '19',
1965   'uid' => '1',
1966   'subject' => 'Subject 2',
1967   'comment' => 'Comment 2',
1968   'hostname' => '127.0.0.1',
1969   'timestamp' => '1501955792',
1970   'status' => '0',
1971   'format' => '1',
1972   'thread' => '01.00/',
1973   'name' => 'root',
1974   'mail' => '',
1975   'homepage' => '',
1976 ))
1977 ->values(array(
1978   'cid' => '6',
1979   'pid' => '5',
1980   'nid' => '19',
1981   'uid' => '1',
1982   'subject' => 'Subject 3',
1983   'comment' => 'Comment 3',
1984   'hostname' => '127.0.0.1',
1985   'timestamp' => '1501955803',
1986   'status' => '0',
1987   'format' => '1',
1988   'thread' => '01.00.00/',
1989   'name' => 'root',
1990   'mail' => '',
1991   'homepage' => '',
1992 ))
1993 ->values(array(
1994   'cid' => '7',
1995   'pid' => '0',
1996   'nid' => '21',
1997   'uid' => '1',
1998   'subject' => 'Comment to John Smith - EN',
1999   'comment' => 'This is an English comment.',
2000   'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
2001   'timestamp' => '1534014729',
2002   'status' => '0',
2003   'format' => '1',
2004   'thread' => '01/',
2005   'name' => 'root',
2006   'mail' => '',
2007   'homepage' => '',
2008 ))
2009 ->values(array(
2010   'cid' => '8',
2011   'pid' => '0',
2012   'nid' => '22',
2013   'uid' => '1',
2014   'subject' => 'Comment to John Smith - FR',
2015   'comment' => 'This is a French comment.',
2016   'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
2017   'timestamp' => '1534014763',
2018   'status' => '0',
2019   'format' => '1',
2020   'thread' => '01/',
2021   'name' => 'root',
2022   'mail' => '',
2023   'homepage' => '',
2024 ))
2025 ->execute();
2026
2027 $connection->schema()->createTable('config', array(
2028   'fields' => array(
2029     'collection' => array(
2030       'type' => 'varchar',
2031       'not null' => TRUE,
2032       'length' => '255',
2033       'default' => '',
2034     ),
2035     'name' => array(
2036       'type' => 'varchar',
2037       'not null' => TRUE,
2038       'length' => '255',
2039       'default' => '',
2040     ),
2041     'data' => array(
2042       'type' => 'blob',
2043       'not null' => FALSE,
2044       'size' => 'normal',
2045     ),
2046   ),
2047   'primary key' => array(
2048     'collection',
2049     'name',
2050   ),
2051   'mysql_character_set' => 'utf8',
2052 ));
2053
2054 $connection->insert('config')
2055 ->fields(array(
2056   'collection',
2057   'name',
2058   'data',
2059 ))
2060 ->values(array(
2061   'collection' => '',
2062   'name' => 'system.file',
2063   'data' => 'a:1:{s:4:"path";a:1:{s:9:"temporary";s:4:"/tmp";}}',
2064 ))
2065 ->execute();
2066
2067 $connection->schema()->createTable('contact', array(
2068   'fields' => array(
2069     'cid' => array(
2070       'type' => 'serial',
2071       'not null' => TRUE,
2072       'size' => 'normal',
2073       'unsigned' => TRUE,
2074     ),
2075     'category' => array(
2076       'type' => 'varchar',
2077       'not null' => TRUE,
2078       'length' => '255',
2079       'default' => '',
2080     ),
2081     'recipients' => array(
2082       'type' => 'text',
2083       'not null' => TRUE,
2084       'size' => 'normal',
2085     ),
2086     'reply' => array(
2087       'type' => 'text',
2088       'not null' => TRUE,
2089       'size' => 'normal',
2090     ),
2091     'weight' => array(
2092       'type' => 'int',
2093       'not null' => TRUE,
2094       'size' => 'normal',
2095       'default' => '0',
2096     ),
2097     'selected' => array(
2098       'type' => 'int',
2099       'not null' => TRUE,
2100       'size' => 'normal',
2101       'default' => '0',
2102     ),
2103   ),
2104   'primary key' => array(
2105     'cid',
2106   ),
2107   'mysql_character_set' => 'utf8',
2108 ));
2109
2110 $connection->insert('contact')
2111 ->fields(array(
2112   'cid',
2113   'category',
2114   'recipients',
2115   'reply',
2116   'weight',
2117   'selected',
2118 ))
2119 ->values(array(
2120   'cid' => '1',
2121   'category' => 'Website feedback',
2122   'recipients' => 'admin@example.com',
2123   'reply' => '',
2124   'weight' => '0',
2125   'selected' => '0',
2126 ))
2127 ->values(array(
2128   'cid' => '2',
2129   'category' => 'Some other category',
2130   'recipients' => 'test@example.com',
2131   'reply' => 'Thanks for contacting us, we will reply ASAP!',
2132   'weight' => '1',
2133   'selected' => '1',
2134 ))
2135 ->values(array(
2136   'cid' => '3',
2137   'category' => 'A category much longer than thirty two characters',
2138   'recipients' => 'fortyninechars@example.com',
2139   'reply' => '',
2140   'weight' => '2',
2141   'selected' => '0',
2142 ))
2143 ->execute();
2144
2145 $connection->schema()->createTable('content_field_company', array(
2146   'fields' => array(
2147     'vid' => array(
2148       'type' => 'int',
2149       'not null' => TRUE,
2150       'size' => 'normal',
2151       'default' => '0',
2152       'unsigned' => TRUE,
2153     ),
2154     'nid' => array(
2155       'type' => 'int',
2156       'not null' => TRUE,
2157       'size' => 'normal',
2158       'default' => '0',
2159       'unsigned' => TRUE,
2160     ),
2161     'delta' => array(
2162       'type' => 'int',
2163       'not null' => TRUE,
2164       'size' => 'normal',
2165       'default' => '0',
2166       'unsigned' => TRUE,
2167     ),
2168     'field_company_nid' => array(
2169       'type' => 'int',
2170       'not null' => FALSE,
2171       'size' => 'normal',
2172       'unsigned' => TRUE,
2173     ),
2174   ),
2175   'primary key' => array(
2176     'vid',
2177     'delta',
2178   ),
2179   'indexes' => array(
2180     'nid' => array(
2181       'nid',
2182     ),
2183     'field_company_nid' => array(
2184       'field_company_nid',
2185     ),
2186   ),
2187   'mysql_character_set' => 'utf8',
2188 ));
2189
2190 $connection->insert('content_field_company')
2191 ->fields(array(
2192   'vid',
2193   'nid',
2194   'delta',
2195   'field_company_nid',
2196 ))
2197 ->values(array(
2198   'vid' => '21',
2199   'nid' => '18',
2200   'delta' => '0',
2201   'field_company_nid' => '15',
2202 ))
2203 ->values(array(
2204   'vid' => '2002',
2205   'nid' => '21',
2206   'delta' => '0',
2207   'field_company_nid' => NULL,
2208 ))
2209 ->values(array(
2210   'vid' => '2003',
2211   'nid' => '22',
2212   'delta' => '0',
2213   'field_company_nid' => NULL,
2214 ))
2215 ->values(array(
2216   'vid' => '21',
2217   'nid' => '18',
2218   'delta' => '1',
2219   'field_company_nid' => '16',
2220 ))
2221 ->execute();
2222
2223 $connection->schema()->createTable('content_field_image', array(
2224   'fields' => array(
2225     'vid' => array(
2226       'type' => 'int',
2227       'not null' => TRUE,
2228       'size' => 'normal',
2229       'default' => '0',
2230       'unsigned' => TRUE,
2231     ),
2232     'nid' => array(
2233       'type' => 'int',
2234       'not null' => TRUE,
2235       'size' => 'normal',
2236       'default' => '0',
2237       'unsigned' => TRUE,
2238     ),
2239     'field_image_fid' => array(
2240       'type' => 'int',
2241       'not null' => FALSE,
2242       'size' => 'normal',
2243     ),
2244     'field_image_list' => array(
2245       'type' => 'int',
2246       'not null' => FALSE,
2247       'size' => 'normal',
2248     ),
2249     'field_image_data' => array(
2250       'type' => 'text',
2251       'not null' => FALSE,
2252       'size' => 'normal',
2253     ),
2254   ),
2255   'primary key' => array(
2256     'vid',
2257   ),
2258   'mysql_character_set' => 'utf8',
2259 ));
2260
2261 $connection->insert('content_field_image')
2262 ->fields(array(
2263   'vid',
2264   'nid',
2265   'field_image_fid',
2266   'field_image_list',
2267   'field_image_data',
2268 ))
2269 ->values(array(
2270   'vid' => '1',
2271   'nid' => '1',
2272   'field_image_fid' => '2',
2273   'field_image_list' => '1',
2274   'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
2275 ))
2276 ->values(array(
2277   'vid' => '2',
2278   'nid' => '2',
2279   'field_image_fid' => NULL,
2280   'field_image_list' => NULL,
2281   'field_image_data' => NULL,
2282 ))
2283 ->values(array(
2284   'vid' => '3',
2285   'nid' => '1',
2286   'field_image_fid' => '2',
2287   'field_image_list' => '1',
2288   'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
2289 ))
2290 ->execute();
2291
2292 $connection->schema()->createTable('content_field_multivalue', array(
2293   'fields' => array(
2294     'vid' => array(
2295       'type' => 'int',
2296       'not null' => TRUE,
2297       'size' => 'normal',
2298       'default' => '0',
2299       'unsigned' => TRUE,
2300     ),
2301     'nid' => array(
2302       'type' => 'int',
2303       'not null' => TRUE,
2304       'size' => 'normal',
2305       'default' => '0',
2306       'unsigned' => TRUE,
2307     ),
2308     'field_multivalue_value' => array(
2309       'type' => 'numeric',
2310       'not null' => FALSE,
2311       'precision' => '10',
2312       'scale' => '2',
2313     ),
2314     'delta' => array(
2315       'type' => 'int',
2316       'not null' => TRUE,
2317       'size' => 'normal',
2318       'default' => '0',
2319       'unsigned' => TRUE,
2320     ),
2321   ),
2322   'primary key' => array(
2323     'vid',
2324     'delta',
2325   ),
2326   'indexes' => array(
2327     'nid' => array(
2328       'nid',
2329     ),
2330   ),
2331   'mysql_character_set' => 'utf8',
2332 ));
2333
2334 $connection->insert('content_field_multivalue')
2335 ->fields(array(
2336   'vid',
2337   'nid',
2338   'field_multivalue_value',
2339   'delta',
2340 ))
2341 ->values(array(
2342   'vid' => '4',
2343   'nid' => '3',
2344   'field_multivalue_value' => '33.00',
2345   'delta' => '0',
2346 ))
2347 ->values(array(
2348   'vid' => '4',
2349   'nid' => '3',
2350   'field_multivalue_value' => '44.00',
2351   'delta' => '1',
2352 ))
2353 ->execute();
2354
2355 $connection->schema()->createTable('content_field_test', array(
2356   'fields' => array(
2357     'vid' => array(
2358       'type' => 'int',
2359       'not null' => TRUE,
2360       'size' => 'normal',
2361       'default' => '0',
2362       'unsigned' => TRUE,
2363     ),
2364     'nid' => array(
2365       'type' => 'int',
2366       'not null' => TRUE,
2367       'size' => 'normal',
2368       'default' => '0',
2369       'unsigned' => TRUE,
2370     ),
2371     'field_test_value' => array(
2372       'type' => 'text',
2373       'not null' => FALSE,
2374       'size' => 'normal',
2375     ),
2376     'field_test_format' => array(
2377       'type' => 'int',
2378       'not null' => FALSE,
2379       'size' => 'normal',
2380       'unsigned' => TRUE,
2381     ),
2382   ),
2383   'primary key' => array(
2384     'vid',
2385   ),
2386   'indexes' => array(
2387     'nid' => array(
2388       'nid',
2389     ),
2390   ),
2391   'mysql_character_set' => 'utf8',
2392 ));
2393
2394 $connection->insert('content_field_test')
2395 ->fields(array(
2396   'vid',
2397   'nid',
2398   'field_test_value',
2399   'field_test_format',
2400 ))
2401 ->values(array(
2402   'vid' => '1',
2403   'nid' => '1',
2404   'field_test_value' => 'This is a shared text field',
2405   'field_test_format' => '1',
2406 ))
2407 ->values(array(
2408   'vid' => '2',
2409   'nid' => '1',
2410   'field_test_value' => 'This is a shared text field',
2411   'field_test_format' => '1',
2412 ))
2413 ->values(array(
2414   'vid' => '3',
2415   'nid' => '2',
2416   'field_test_value' => NULL,
2417   'field_test_format' => NULL,
2418 ))
2419 ->values(array(
2420   'vid' => '5',
2421   'nid' => '2',
2422   'field_test_value' => NULL,
2423   'field_test_format' => NULL,
2424 ))
2425 ->values(array(
2426   'vid' => '12',
2427   'nid' => '9',
2428   'field_test_value' => 'text for default value',
2429   'field_test_format' => '1',
2430 ))
2431 ->execute();
2432
2433 $connection->schema()->createTable('content_field_test_text_single_checkbox', array(
2434   'fields' => array(
2435     'vid' => array(
2436       'type' => 'int',
2437       'not null' => TRUE,
2438       'size' => 'normal',
2439       'default' => '0',
2440       'unsigned' => TRUE,
2441     ),
2442     'nid' => array(
2443       'type' => 'int',
2444       'not null' => TRUE,
2445       'size' => 'normal',
2446       'default' => '0',
2447       'unsigned' => TRUE,
2448     ),
2449     'field_test_text_single_checkbox_value' => array(
2450       'type' => 'text',
2451       'not null' => FALSE,
2452       'size' => 'normal',
2453     ),
2454   ),
2455   'primary key' => array(
2456     'vid',
2457   ),
2458   'indexes' => array(
2459     'nid' => array(
2460       'nid',
2461     ),
2462   ),
2463   'mysql_character_set' => 'utf8',
2464 ));
2465
2466 $connection->insert('content_field_test_text_single_checkbox')
2467 ->fields(array(
2468   'vid',
2469   'nid',
2470   'field_test_text_single_checkbox_value',
2471 ))
2472 ->values(array(
2473   'vid' => '1',
2474   'nid' => '1',
2475   'field_test_text_single_checkbox_value' => '0',
2476 ))
2477 ->values(array(
2478   'vid' => '2',
2479   'nid' => '1',
2480   'field_test_text_single_checkbox_value' => NULL,
2481 ))
2482 ->values(array(
2483   'vid' => '3',
2484   'nid' => '2',
2485   'field_test_text_single_checkbox_value' => NULL,
2486 ))
2487 ->values(array(
2488   'vid' => '5',
2489   'nid' => '2',
2490   'field_test_text_single_checkbox_value' => NULL,
2491 ))
2492 ->values(array(
2493   'vid' => '12',
2494   'nid' => '9',
2495   'field_test_text_single_checkbox_value' => '0',
2496 ))
2497 ->execute();
2498
2499 $connection->schema()->createTable('content_field_test_two', array(
2500   'fields' => array(
2501     'vid' => array(
2502       'type' => 'int',
2503       'not null' => TRUE,
2504       'size' => 'normal',
2505       'default' => '0',
2506       'unsigned' => TRUE,
2507     ),
2508     'nid' => array(
2509       'type' => 'int',
2510       'not null' => TRUE,
2511       'size' => 'normal',
2512       'default' => '0',
2513       'unsigned' => TRUE,
2514     ),
2515     'delta' => array(
2516       'type' => 'int',
2517       'not null' => TRUE,
2518       'size' => 'normal',
2519       'default' => '0',
2520       'unsigned' => TRUE,
2521     ),
2522     'field_test_two_value' => array(
2523       'type' => 'int',
2524       'not null' => FALSE,
2525       'size' => 'normal',
2526     ),
2527   ),
2528   'primary key' => array(
2529     'vid',
2530     'delta',
2531   ),
2532   'indexes' => array(
2533     'nid' => array(
2534       'nid',
2535     ),
2536   ),
2537   'mysql_character_set' => 'utf8',
2538 ));
2539
2540 $connection->insert('content_field_test_two')
2541 ->fields(array(
2542   'vid',
2543   'nid',
2544   'delta',
2545   'field_test_two_value',
2546 ))
2547 ->values(array(
2548   'vid' => '1',
2549   'nid' => '1',
2550   'delta' => '0',
2551   'field_test_two_value' => '10',
2552 ))
2553 ->values(array(
2554   'vid' => '2',
2555   'nid' => '1',
2556   'delta' => '0',
2557   'field_test_two_value' => NULL,
2558 ))
2559 ->values(array(
2560   'vid' => '3',
2561   'nid' => '2',
2562   'delta' => '0',
2563   'field_test_two_value' => NULL,
2564 ))
2565 ->values(array(
2566   'vid' => '5',
2567   'nid' => '2',
2568   'delta' => '0',
2569   'field_test_two_value' => NULL,
2570 ))
2571 ->values(array(
2572   'vid' => '12',
2573   'nid' => '9',
2574   'delta' => '0',
2575   'field_test_two_value' => NULL,
2576 ))
2577 ->values(array(
2578   'vid' => '1',
2579   'nid' => '1',
2580   'delta' => '1',
2581   'field_test_two_value' => '20',
2582 ))
2583 ->execute();
2584
2585 $connection->schema()->createTable('content_group', array(
2586   'fields' => array(
2587     'group_type' => array(
2588       'type' => 'varchar',
2589       'not null' => TRUE,
2590       'length' => '32',
2591       'default' => 'standard',
2592     ),
2593     'type_name' => array(
2594       'type' => 'varchar',
2595       'not null' => TRUE,
2596       'length' => '32',
2597       'default' => '',
2598     ),
2599     'group_name' => array(
2600       'type' => 'varchar',
2601       'not null' => TRUE,
2602       'length' => '32',
2603       'default' => '',
2604     ),
2605     'label' => array(
2606       'type' => 'varchar',
2607       'not null' => TRUE,
2608       'length' => '255',
2609       'default' => '',
2610     ),
2611     'settings' => array(
2612       'type' => 'text',
2613       'not null' => TRUE,
2614       'size' => 'normal',
2615     ),
2616     'weight' => array(
2617       'type' => 'int',
2618       'not null' => TRUE,
2619       'size' => 'normal',
2620       'default' => '0',
2621     ),
2622   ),
2623   'primary key' => array(
2624     'type_name',
2625     'group_name',
2626   ),
2627   'mysql_character_set' => 'utf8',
2628 ));
2629
2630 $connection->schema()->createTable('content_group_fields', array(
2631   'fields' => array(
2632     'type_name' => array(
2633       'type' => 'varchar',
2634       'not null' => TRUE,
2635       'length' => '32',
2636       'default' => '',
2637     ),
2638     'group_name' => array(
2639       'type' => 'varchar',
2640       'not null' => TRUE,
2641       'length' => '32',
2642       'default' => '',
2643     ),
2644     'field_name' => array(
2645       'type' => 'varchar',
2646       'not null' => TRUE,
2647       'length' => '32',
2648       'default' => '',
2649     ),
2650   ),
2651   'primary key' => array(
2652     'type_name',
2653     'group_name',
2654     'field_name',
2655   ),
2656   'mysql_character_set' => 'utf8',
2657 ));
2658
2659 $connection->schema()->createTable('content_node_field', array(
2660   'fields' => array(
2661     'field_name' => array(
2662       'type' => 'varchar',
2663       'not null' => TRUE,
2664       'length' => '32',
2665       'default' => '',
2666     ),
2667     'type' => array(
2668       'type' => 'varchar',
2669       'not null' => TRUE,
2670       'length' => '127',
2671       'default' => '',
2672     ),
2673     'global_settings' => array(
2674       'type' => 'text',
2675       'not null' => TRUE,
2676       'size' => 'normal',
2677     ),
2678     'required' => array(
2679       'type' => 'int',
2680       'not null' => TRUE,
2681       'size' => 'normal',
2682       'default' => '0',
2683     ),
2684     'multiple' => array(
2685       'type' => 'int',
2686       'not null' => TRUE,
2687       'size' => 'normal',
2688       'default' => '0',
2689     ),
2690     'db_storage' => array(
2691       'type' => 'int',
2692       'not null' => TRUE,
2693       'size' => 'normal',
2694       'default' => '1',
2695     ),
2696     'module' => array(
2697       'type' => 'varchar',
2698       'not null' => TRUE,
2699       'length' => '127',
2700       'default' => '',
2701     ),
2702     'db_columns' => array(
2703       'type' => 'text',
2704       'not null' => TRUE,
2705       'size' => 'normal',
2706     ),
2707     'active' => array(
2708       'type' => 'int',
2709       'not null' => TRUE,
2710       'size' => 'normal',
2711       'default' => '0',
2712     ),
2713     'locked' => array(
2714       'type' => 'int',
2715       'not null' => TRUE,
2716       'size' => 'tiny',
2717       'default' => '0',
2718     ),
2719   ),
2720   'primary key' => array(
2721     'field_name',
2722   ),
2723   'mysql_character_set' => 'utf8',
2724 ));
2725
2726 $connection->insert('content_node_field')
2727 ->fields(array(
2728   'field_name',
2729   'type',
2730   'global_settings',
2731   'required',
2732   'multiple',
2733   'db_storage',
2734   'module',
2735   'db_columns',
2736   'active',
2737   'locked',
2738 ))
2739 ->values(array(
2740   'field_name' => 'field_commander',
2741   'type' => 'userreference',
2742   'global_settings' => 'a:2:{s:19:"referenceable_roles";a:4:{i:2;i:2;i:3;i:0;i:4;i:0;i:5;i:0;}s:20:"referenceable_status";s:0:"";}',
2743   'required' => '0',
2744   'multiple' => '0',
2745   'db_storage' => '1',
2746   'module' => 'userreference',
2747   'db_columns' => 'a:1:{s:3:"uid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
2748   'active' => '1',
2749   'locked' => '0',
2750 ))
2751 ->values(array(
2752   'field_name' => 'field_company',
2753   'type' => 'nodereference',
2754   'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
2755   'required' => '0',
2756   'multiple' => '1',
2757   'db_storage' => '0',
2758   'module' => 'nodereference',
2759   'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
2760   'active' => '1',
2761   'locked' => '0',
2762 ))
2763 ->values(array(
2764   'field_name' => 'field_company_2',
2765   'type' => 'nodereference',
2766   'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
2767   'required' => '0',
2768   'multiple' => '0',
2769   'db_storage' => '1',
2770   'module' => 'nodereference',
2771   'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
2772   'active' => '1',
2773   'locked' => '0',
2774 ))
2775 ->values(array(
2776   'field_name' => 'field_company_3',
2777   'type' => 'nodereference',
2778   'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
2779   'required' => '0',
2780   'multiple' => '0',
2781   'db_storage' => '1',
2782   'module' => 'nodereference',
2783   'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
2784   'active' => '1',
2785   'locked' => '0',
2786 ))
2787 ->values(array(
2788   'field_name' => 'field_multivalue',
2789   'type' => 'number_decimal',
2790   'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
2791   'required' => '0',
2792   'multiple' => '1',
2793   'db_storage' => '0',
2794   'module' => 'number',
2795   'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2796   'active' => '1',
2797   'locked' => '0',
2798 ))
2799 ->values(array(
2800   'field_name' => 'field_reference',
2801   'type' => 'nodereference',
2802   'global_settings' => 'a:1:{s:19:"referenceable_types";a:11:{s:4:"page";s:4:"page";s:7:"article";i:0;s:7:"company";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
2803   'required' => '0',
2804   'multiple' => '0',
2805   'db_storage' => '1',
2806   'module' => 'nodereference',
2807   'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
2808   'active' => '1',
2809   'locked' => '0',
2810 ))
2811 ->values(array(
2812   'field_name' => 'field_reference_2',
2813   'type' => 'nodereference',
2814   'global_settings' => 'a:1:{s:19:"referenceable_types";a:11:{s:4:"page";s:4:"page";s:7:"article";i:0;s:7:"company";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
2815   'required' => '0',
2816   'multiple' => '0',
2817   'db_storage' => '1',
2818   'module' => 'nodereference',
2819   'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
2820   'active' => '1',
2821   'locked' => '0',
2822 ))
2823 ->values(array(
2824   'field_name' => 'field_test',
2825   'type' => 'text',
2826   'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
2827   'required' => '0',
2828   'multiple' => '0',
2829   'db_storage' => '0',
2830   'module' => 'text',
2831   'db_columns' => 'a:2:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
2832   'active' => '1',
2833   'locked' => '0',
2834 ))
2835 ->values(array(
2836   'field_name' => 'field_test_date',
2837   'type' => 'date',
2838   'global_settings' => 'a:7:{s:11:"granularity";a:5:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:16:"repeat_collapsed";s:0:"";s:14:"default_format";s:6:"medium";}',
2839   'required' => '0',
2840   'multiple' => '0',
2841   'db_storage' => '1',
2842   'module' => 'date',
2843   'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"varchar";s:6:"length";i:20;s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
2844   'active' => '1',
2845   'locked' => '0',
2846 ))
2847 ->values(array(
2848   'field_name' => 'field_test_datestamp',
2849   'type' => 'datestamp',
2850   'global_settings' => 'a:13:{s:11:"granularity";a:6:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";s:6:"second";i:0;}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:18:"output_format_date";s:5:"m/d/Y";s:20:"output_format_custom";s:0:"";s:23:"output_format_date_long";s:5:"m/d/Y";s:25:"output_format_custom_long";s:0:"";s:25:"output_format_date_medium";s:5:"m/d/Y";s:27:"output_format_custom_medium";s:0:"";s:24:"output_format_date_short";s:5:"m/d/Y";s:26:"output_format_custom_short";s:0:"";}',
2851   'required' => '0',
2852   'multiple' => '0',
2853   'db_storage' => '1',
2854   'module' => 'date',
2855   'db_columns' => 'a:2:{s:5:"value";a:4:{s:4:"type";s:3:"int";s:6:"length";i:11;s:8:"not null";b:0;s:8:"sortable";b:1;}s:6:"value2";a:4:{s:4:"type";s:3:"int";s:6:"length";i:11;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2856   'active' => '1',
2857   'locked' => '0',
2858 ))
2859 ->values(array(
2860   'field_name' => 'field_test_datetime',
2861   'type' => 'datetime',
2862   'global_settings' => 'a:13:{s:11:"granularity";a:6:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";s:6:"second";i:0;}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:18:"output_format_date";s:5:"m/d/Y";s:20:"output_format_custom";s:0:"";s:23:"output_format_date_long";s:5:"m/d/Y";s:25:"output_format_custom_long";s:0:"";s:25:"output_format_date_medium";s:5:"m/d/Y";s:27:"output_format_custom_medium";s:0:"";s:24:"output_format_date_short";s:5:"m/d/Y";s:26:"output_format_custom_short";s:0:"";}',
2863   'required' => '0',
2864   'multiple' => '0',
2865   'db_storage' => '1',
2866   'module' => 'date',
2867   'db_columns' => 'a:2:{s:5:"value";a:3:{s:4:"type";s:8:"datetime";s:8:"not null";b:0;s:8:"sortable";b:1;}s:6:"value2";a:3:{s:4:"type";s:8:"datetime";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2868   'active' => '1',
2869   'locked' => '0',
2870 ))
2871 ->values(array(
2872   'field_name' => 'field_test_decimal_radio_buttons',
2873   'type' => 'number_decimal',
2874   'global_settings' => "a:9:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:8:\"1.2\r\n2.1\";s:18:\"allowed_values_php\";s:0:\"\";s:9:\"precision\";s:2:\"10\";s:5:\"scale\";s:1:\"2\";s:7:\"decimal\";s:1:\".\";}",
2875   'required' => '0',
2876   'multiple' => '0',
2877   'db_storage' => '1',
2878   'module' => 'number',
2879   'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2880   'active' => '1',
2881   'locked' => '0',
2882 ))
2883 ->values(array(
2884   'field_name' => 'field_test_email',
2885   'type' => 'email',
2886   'global_settings' => 'a:0:{}',
2887   'required' => '0',
2888   'multiple' => '0',
2889   'db_storage' => '1',
2890   'module' => 'email',
2891   'db_columns' => 'a:1:{s:5:"email";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2892   'active' => '1',
2893   'locked' => '0',
2894 ))
2895 ->values(array(
2896   'field_name' => 'field_test_exclude_unset',
2897   'type' => 'text',
2898   'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
2899   'required' => '0',
2900   'multiple' => '0',
2901   'db_storage' => '1',
2902   'module' => 'text',
2903   'db_columns' => 'a:2:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
2904   'active' => '1',
2905   'locked' => '0',
2906 ))
2907 ->values(array(
2908   'field_name' => 'field_test_filefield',
2909   'type' => 'filefield',
2910   'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"1";}',
2911   'required' => '0',
2912   'multiple' => '0',
2913   'db_storage' => '1',
2914   'module' => 'filefield',
2915   'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
2916   'active' => '1',
2917   'locked' => '0',
2918 ))
2919 ->values(array(
2920   'field_name' => 'field_test_float_single_checkbox',
2921   'type' => 'number_float',
2922   'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:12:\"3.142\r\n1.234\";s:18:\"allowed_values_php\";s:0:\"\";}",
2923   'required' => '0',
2924   'multiple' => '0',
2925   'db_storage' => '1',
2926   'module' => 'number',
2927   'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2928   'active' => '1',
2929   'locked' => '0',
2930 ))
2931 ->values(array(
2932   'field_name' => 'field_test_four',
2933   'type' => 'number_float',
2934   'global_settings' => 'a:6:{s:6:"prefix";s:3:"id-";s:6:"suffix";s:0:"";s:3:"min";s:3:"100";s:3:"max";s:3:"200";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
2935   'required' => '0',
2936   'multiple' => '0',
2937   'db_storage' => '1',
2938   'module' => 'number',
2939   'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2940   'active' => '1',
2941   'locked' => '0',
2942 ))
2943 ->values(array(
2944   'field_name' => 'field_test_identical1',
2945   'type' => 'number_integer',
2946   'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
2947   'required' => '0',
2948   'multiple' => '0',
2949   'db_storage' => '1',
2950   'module' => 'number',
2951   'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2952   'active' => '1',
2953   'locked' => '0',
2954 ))
2955 ->values(array(
2956   'field_name' => 'field_test_identical2',
2957   'type' => 'number_integer',
2958   'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
2959   'required' => '0',
2960   'multiple' => '0',
2961   'db_storage' => '1',
2962   'module' => 'number',
2963   'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2964   'active' => '1',
2965   'locked' => '0',
2966 ))
2967 ->values(array(
2968   'field_name' => 'field_test_imagefield',
2969   'type' => 'filefield',
2970   'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"0";}',
2971   'required' => '0',
2972   'multiple' => '0',
2973   'db_storage' => '1',
2974   'module' => 'filefield',
2975   'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
2976   'active' => '1',
2977   'locked' => '0',
2978 ))
2979 ->values(array(
2980   'field_name' => 'field_test_integer_selectlist',
2981   'type' => 'number_integer',
2982   'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:22:\"1234\r\n2341\r\n3412\r\n4123\";s:18:\"allowed_values_php\";s:0:\"\";}",
2983   'required' => '0',
2984   'multiple' => '0',
2985   'db_storage' => '1',
2986   'module' => 'number',
2987   'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
2988   'active' => '1',
2989   'locked' => '0',
2990 ))
2991 ->values(array(
2992   'field_name' => 'field_test_link',
2993   'type' => 'link',
2994   'global_settings' => 'a:7:{s:10:"attributes";a:4:{s:6:"target";s:4:"user";s:3:"rel";s:8:"nofollow";s:5:"class";s:0:"";s:5:"title";s:10:"Link Title";}s:7:"display";a:1:{s:10:"url_cutoff";s:2:"80";}s:3:"url";i:0;s:5:"title";s:8:"required";s:11:"title_value";s:0:"";s:13:"enable_tokens";s:0:"";s:12:"validate_url";i:1;}',
2995   'required' => '0',
2996   'multiple' => '0',
2997   'db_storage' => '1',
2998   'module' => 'link',
2999   'db_columns' => 'a:3:{s:3:"url";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:2048;s:8:"not null";b:0;s:8:"sortable";b:1;}s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}s:10:"attributes";a:3:{s:4:"type";s:4:"text";s:4:"size";s:6:"medium";s:8:"not null";b:0;}}',
3000   'active' => '1',
3001   'locked' => '0',
3002 ))
3003 ->values(array(
3004   'field_name' => 'field_test_phone',
3005   'type' => 'au_phone',
3006   'global_settings' => 'a:1:{s:18:"phone_country_code";i:0;}',
3007   'required' => '0',
3008   'multiple' => '0',
3009   'db_storage' => '1',
3010   'module' => 'phone',
3011   'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;}}',
3012   'active' => '1',
3013   'locked' => '0',
3014 ))
3015 ->values(array(
3016   'field_name' => 'field_test_string_selectlist',
3017   'type' => 'text',
3018   'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:18:\"A|Black\r\nB|White\r\n\";s:18:\"allowed_values_php\";s:0:\"\";}",
3019   'required' => '0',
3020   'multiple' => '0',
3021   'db_storage' => '1',
3022   'module' => 'text',
3023   'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
3024   'active' => '1',
3025   'locked' => '0',
3026 ))
3027 ->values(array(
3028   'field_name' => 'field_test_text_single_checkbox',
3029   'type' => 'text',
3030   'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:18:\"0|Hello\r\n1|Goodbye\";s:18:\"allowed_values_php\";s:0:\"\";}",
3031   'required' => '0',
3032   'multiple' => '0',
3033   'db_storage' => '0',
3034   'module' => 'text',
3035   'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
3036   'active' => '1',
3037   'locked' => '0',
3038 ))
3039 ->values(array(
3040   'field_name' => 'field_test_text_single_checkbox2',
3041   'type' => 'text',
3042   'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:10:\"Off\r\nHello\";s:18:\"allowed_values_php\";s:0:\"\";}",
3043   'required' => '0',
3044   'multiple' => '0',
3045   'db_storage' => '1',
3046   'module' => 'text',
3047   'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
3048   'active' => '1',
3049   'locked' => '0',
3050 ))
3051 ->values(array(
3052   'field_name' => 'field_test_three',
3053   'type' => 'number_decimal',
3054   'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:3:"600";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
3055   'required' => '0',
3056   'multiple' => '0',
3057   'db_storage' => '1',
3058   'module' => 'number',
3059   'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
3060   'active' => '1',
3061   'locked' => '0',
3062 ))
3063 ->values(array(
3064   'field_name' => 'field_test_two',
3065   'type' => 'number_integer',
3066   'global_settings' => 'a:6:{s:6:"prefix";s:4:"pref";s:6:"suffix";s:3:"suf";s:3:"min";s:2:"10";s:3:"max";s:3:"100";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
3067   'required' => '0',
3068   'multiple' => '1',
3069   'db_storage' => '0',
3070   'module' => 'number',
3071   'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
3072   'active' => '1',
3073   'locked' => '0',
3074 ))
3075 ->execute();
3076
3077 $connection->schema()->createTable('content_node_field_instance', array(
3078   'fields' => array(
3079     'field_name' => array(
3080       'type' => 'varchar',
3081       'not null' => TRUE,
3082       'length' => '32',
3083       'default' => '',
3084     ),
3085     'type_name' => array(
3086       'type' => 'varchar',
3087       'not null' => TRUE,
3088       'length' => '32',
3089       'default' => '',
3090     ),
3091     'weight' => array(
3092       'type' => 'int',
3093       'not null' => TRUE,
3094       'size' => 'normal',
3095       'default' => '0',
3096     ),
3097     'label' => array(
3098       'type' => 'varchar',
3099       'not null' => TRUE,
3100       'length' => '255',
3101       'default' => '',
3102     ),
3103     'widget_type' => array(
3104       'type' => 'varchar',
3105       'not null' => TRUE,
3106       'length' => '32',
3107       'default' => '',
3108     ),
3109     'widget_settings' => array(
3110       'type' => 'text',
3111       'not null' => TRUE,
3112       'size' => 'normal',
3113     ),
3114     'display_settings' => array(
3115       'type' => 'text',
3116       'not null' => TRUE,
3117       'size' => 'normal',
3118     ),
3119     'description' => array(
3120       'type' => 'text',
3121       'not null' => TRUE,
3122       'size' => 'normal',
3123     ),
3124     'widget_module' => array(
3125       'type' => 'varchar',
3126       'not null' => TRUE,
3127       'length' => '127',
3128       'default' => '',
3129     ),
3130     'widget_active' => array(
3131       'type' => 'int',
3132       'not null' => TRUE,
3133       'size' => 'normal',
3134       'default' => '0',
3135     ),
3136   ),
3137   'primary key' => array(
3138     'field_name',
3139     'type_name',
3140   ),
3141   'mysql_character_set' => 'utf8',
3142 ));
3143
3144 $connection->insert('content_node_field_instance')
3145 ->fields(array(
3146   'field_name',
3147   'type_name',
3148   'weight',
3149   'label',
3150   'widget_type',
3151   'widget_settings',
3152   'display_settings',
3153   'description',
3154   'widget_module',
3155   'widget_active',
3156 ))
3157 ->values(array(
3158   'field_name' => 'field_commander',
3159   'type_name' => 'employee',
3160   'weight' => '32',
3161   'label' => 'Commanding Officer',
3162   'widget_type' => 'userreference_select',
3163   'widget_settings' => 'a:5:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:12:"reverse_link";i:0;s:13:"default_value";a:1:{i:0;a:1:{s:3:"uid";s:0:"";}}s:17:"default_value_php";N;}',
3164   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3165   'description' => '',
3166   'widget_module' => 'userreference',
3167   'widget_active' => '1',
3168 ))
3169 ->values(array(
3170   'field_name' => 'field_company',
3171   'type_name' => 'employee',
3172   'weight' => '31',
3173   'label' => 'Company',
3174   'widget_type' => 'nodereference_select',
3175   'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
3176   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:5:"plain";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3177   'description' => '',
3178   'widget_module' => 'nodereference',
3179   'widget_active' => '1',
3180 ))
3181 ->values(array(
3182   'field_name' => 'field_company_2',
3183   'type_name' => 'employee',
3184   'weight' => '33',
3185   'label' => 'Company 2',
3186   'widget_type' => 'nodereference_buttons',
3187   'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
3188   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3189   'description' => '',
3190   'widget_module' => 'nodereference',
3191   'widget_active' => '1',
3192 ))
3193 ->values(array(
3194   'field_name' => 'field_company_3',
3195   'type_name' => 'employee',
3196   'weight' => '34',
3197   'label' => 'Company 3',
3198   'widget_type' => 'nodereference_autocomplete',
3199   'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:3:"nid";N;s:14:"_error_element";s:50:"default_value_widget][field_company_3][0][nid][nid";}}s:17:"default_value_php";N;}',
3200   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3201   'description' => '',
3202   'widget_module' => 'nodereference',
3203   'widget_active' => '1',
3204 ))
3205 ->values(array(
3206   'field_name' => 'field_multivalue',
3207   'type_name' => 'test_planet',
3208   'weight' => '2',
3209   'label' => 'Decimal Field',
3210   'widget_type' => 'number',
3211   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_multivalue][0][value";}}s:17:"default_value_php";N;}',
3212   'display_settings' => 'a:6:{s:6:"weight";i:2;s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3213   'description' => 'An example multi-valued decimal field.',
3214   'widget_module' => 'number',
3215   'widget_active' => '1',
3216 ))
3217 ->values(array(
3218   'field_name' => 'field_reference',
3219   'type_name' => 'page',
3220   'weight' => '31',
3221   'label' => 'Reference',
3222   'widget_type' => 'nodereference_select',
3223   'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
3224   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3225   'description' => '',
3226   'widget_module' => 'nodereference',
3227   'widget_active' => '1',
3228 ))
3229 ->values(array(
3230   'field_name' => 'field_reference_2',
3231   'type_name' => 'page',
3232   'weight' => '32',
3233   'label' => 'Reference',
3234   'widget_type' => 'nodereference_select',
3235   'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
3236   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3237   'description' => '',
3238   'widget_module' => 'nodereference',
3239   'widget_active' => '1',
3240 ))
3241 ->values(array(
3242   'field_name' => 'field_test',
3243   'type_name' => 'story',
3244   'weight' => '1',
3245   'label' => 'Text Field',
3246   'widget_type' => 'text_textfield',
3247   'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
3248   'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}}',
3249   'description' => 'An example text field.',
3250   'widget_module' => 'text',
3251   'widget_active' => '1',
3252 ))
3253 ->values(array(
3254   'field_name' => 'field_test',
3255   'type_name' => 'test_page',
3256   'weight' => '35',
3257   'label' => 'Text Field',
3258   'widget_type' => 'text_textfield',
3259   'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:3:{s:5:"value";s:22:"text for default value";s:6:"format";s:1:"1";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
3260   'display_settings' => 'a:6:{s:6:"weight";s:2:"35";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3261   'description' => 'An example text field.',
3262   'widget_module' => 'text',
3263   'widget_active' => '1',
3264 ))
3265 ->values(array(
3266   'field_name' => 'field_test_date',
3267   'type_name' => 'story',
3268   'weight' => '10',
3269   'label' => 'Date Field',
3270   'widget_type' => 'date_select',
3271   'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
3272   'display_settings' => 'a:7:{s:6:"weight";s:2:"10";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"long";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3273   'description' => 'An example date field.',
3274   'widget_module' => 'date',
3275   'widget_active' => '1',
3276 ))
3277 ->values(array(
3278   'field_name' => 'field_test_datestamp',
3279   'type_name' => 'story',
3280   'weight' => '11',
3281   'label' => 'Date Stamp Field',
3282   'widget_type' => 'date_text',
3283   'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
3284   'display_settings' => 'a:7:{s:6:"weight";s:2:"11";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:6:"medium";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3285   'description' => 'An example date stamp field.',
3286   'widget_module' => 'date',
3287   'widget_active' => '1',
3288 ))
3289 ->values(array(
3290   'field_name' => 'field_test_datetime',
3291   'type_name' => 'story',
3292   'weight' => '12',
3293   'label' => 'Datetime Field',
3294   'widget_type' => 'date_popup',
3295   'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:11:"d/m/Y H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
3296   'display_settings' => 'a:7:{s:6:"weight";s:2:"12";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:5:"short";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3297   'description' => 'An example datetime field.',
3298   'widget_module' => 'date',
3299   'widget_active' => '1',
3300 ))
3301 ->values(array(
3302   'field_name' => 'field_test_decimal_radio_buttons',
3303   'type_name' => 'story',
3304   'weight' => '14',
3305   'label' => 'Decimal Radio Buttons Field',
3306   'widget_type' => 'optionwidgets_buttons',
3307   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
3308   'display_settings' => 'a:7:{s:6:"weight";s:2:"14";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3309   'description' => 'An example decimal field using radio buttons.',
3310   'widget_module' => 'optionwidgets',
3311   'widget_active' => '1',
3312 ))
3313 ->values(array(
3314   'field_name' => 'field_test_email',
3315   'type_name' => 'story',
3316   'weight' => '6',
3317   'label' => 'Email Field',
3318   'widget_type' => 'email_textfield',
3319   'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:1:{s:5:"email";s:17:"benjy@example.com";}}s:17:"default_value_php";N;}',
3320   'display_settings' => 'a:7:{s:6:"weight";s:1:"6";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3321   'description' => 'An example email field.',
3322   'widget_module' => 'email',
3323   'widget_active' => '1',
3324 ))
3325 ->values(array(
3326   'field_name' => 'field_test_exclude_unset',
3327   'type_name' => 'story',
3328   'weight' => '0',
3329   'label' => 'Text Field',
3330   'widget_type' => 'text_textfield',
3331   'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
3332   'display_settings' => 'a:8:{s:6:"weight";i:0;s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}i:1;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3333   'description' => 'An example text field without exclude.',
3334   'widget_module' => 'text',
3335   'widget_active' => '1',
3336 ))
3337 ->values(array(
3338   'field_name' => 'field_test_filefield',
3339   'type_name' => 'story',
3340   'weight' => '8',
3341   'label' => 'File Field',
3342   'widget_type' => 'filefield_widget',
3343   'widget_settings' => 'a:5:{s:15:"file_extensions";s:11:"txt pdf doc";s:9:"file_path";s:6:"images";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:4:"200K";s:21:"max_filesize_per_node";s:3:"20M";}',
3344   'display_settings' => 'a:7:{s:6:"weight";s:1:"8";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:10:"path_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3345   'description' => 'An example image field.',
3346   'widget_module' => 'filefield',
3347   'widget_active' => '1',
3348 ))
3349 ->values(array(
3350   'field_name' => 'field_test_float_single_checkbox',
3351   'type_name' => 'story',
3352   'weight' => '15',
3353   'label' => 'Float Single Checkbox Field',
3354   'widget_type' => 'optionwidgets_onoff',
3355   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
3356   'display_settings' => 'a:7:{s:6:"weight";s:2:"15";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3357   'description' => 'An example float field using a single on/off checkbox.',
3358   'widget_module' => 'optionwidgets',
3359   'widget_active' => '1',
3360 ))
3361 ->values(array(
3362   'field_name' => 'field_test_four',
3363   'type_name' => 'story',
3364   'weight' => '3',
3365   'label' => 'Float Field',
3366   'widget_type' => 'number',
3367   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:3:"101";s:14:"_error_element";s:47:"default_value_widget][field_test_four][0][value";}}s:17:"default_value_php";N;}',
3368   'display_settings' => 'a:7:{s:6:"weight";s:1:"3";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3369   'description' => 'An example float field.',
3370   'widget_module' => 'number',
3371   'widget_active' => '1',
3372 ))
3373 ->values(array(
3374   'field_name' => 'field_test_identical1',
3375   'type_name' => 'story',
3376   'weight' => '4',
3377   'label' => 'Integer Field',
3378   'widget_type' => 'number',
3379   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
3380   'display_settings' => 'a:7:{s:6:"weight";s:1:"4";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
3381   'description' => 'An example integer field.',
3382   'widget_module' => 'number',
3383   'widget_active' => '1',
3384 ))
3385 ->values(array(
3386   'field_name' => 'field_test_identical2',
3387   'type_name' => 'story',
3388   'weight' => '5',
3389   'label' => 'Integer Field',
3390   'widget_type' => 'number',
3391   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
3392   'display_settings' => 'a:7:{s:6:"weight";s:1:"5";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
3393   'description' => 'An example integer field.',
3394   'widget_module' => 'number',
3395   'widget_active' => '1',
3396 ))
3397 ->values(array(
3398   'field_name' => 'field_test_imagefield',
3399   'type_name' => 'story',
3400   'weight' => '9',
3401   'label' => 'Image Field',
3402   'widget_type' => 'imagefield_widget',
3403   'widget_settings' => 'a:14:{s:15:"file_extensions";s:16:"png gif jpg jpeg";s:9:"file_path";s:0:"";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:0:"";s:21:"max_filesize_per_node";s:0:"";s:14:"max_resolution";s:1:"0";s:14:"min_resolution";s:1:"0";s:3:"alt";s:8:"Test alt";s:10:"custom_alt";i:0;s:5:"title";s:10:"Test title";s:12:"custom_title";i:0;s:10:"title_type";s:9:"textfield";s:13:"default_image";N;s:17:"use_default_image";i:0;}',
3404   'display_settings' => 'a:7:{s:6:"weight";s:1:"9";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:15:"image_imagelink";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:11:"image_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3405   'description' => 'An example image field.',
3406   'widget_module' => 'imagefield',
3407   'widget_active' => '1',
3408 ))
3409 ->values(array(
3410   'field_name' => 'field_test_integer_selectlist',
3411   'type_name' => 'story',
3412   'weight' => '16',
3413   'label' => 'Integer Select List Field',
3414   'widget_type' => 'optionwidgets_select',
3415   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
3416   'display_settings' => 'a:7:{s:6:"weight";s:2:"16";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3417   'description' => 'An example integer field using a select list.',
3418   'widget_module' => 'optionwidgets',
3419   'widget_active' => '1',
3420 ))
3421 ->values(array(
3422   'field_name' => 'field_test_link',
3423   'type_name' => 'story',
3424   'weight' => '7',
3425   'label' => 'Link Field',
3426   'widget_type' => 'link',
3427   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"title";s:18:"default link title";s:3:"url";s:22:"https://www.drupal.org";}}s:17:"default_value_php";N;}',
3428   'display_settings' => 'a:7:{s:6:"weight";s:1:"7";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:8:"absolute";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3429   'description' => 'An example link field.',
3430   'widget_module' => 'link',
3431   'widget_active' => '1',
3432 ))
3433 ->values(array(
3434   'field_name' => 'field_test_phone',
3435   'type_name' => 'story',
3436   'weight' => '13',
3437   'label' => 'Phone Field',
3438   'widget_type' => 'phone_textfield',
3439   'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_test_phone][0][value";}}s:17:"default_value_php";N;}',
3440   'display_settings' => 'a:7:{s:6:"weight";s:2:"13";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3441   'description' => 'An example phone field.',
3442   'widget_module' => 'phone',
3443   'widget_active' => '1',
3444 ))
3445 ->values(array(
3446   'field_name' => 'field_test_string_selectlist',
3447   'type_name' => 'story',
3448   'weight' => '31',
3449   'label' => 'String Select List Field',
3450   'widget_type' => 'optionwidgets_select',
3451   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
3452   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3453   'description' => '',
3454   'widget_module' => 'optionwidgets',
3455   'widget_active' => '1',
3456 ))
3457 ->values(array(
3458   'field_name' => 'field_test_text_single_checkbox',
3459   'type_name' => 'story',
3460   'weight' => '17',
3461   'label' => 'Text Single Checkbox Field',
3462   'widget_type' => 'optionwidgets_onoff',
3463   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:1:"a";}}s:17:"default_value_php";N;}',
3464   'display_settings' => 'a:7:{s:6:"weight";s:2:"17";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3465   'description' => 'An example text field using a single on/off checkbox.',
3466   'widget_module' => 'optionwidgets',
3467   'widget_active' => '1',
3468 ))
3469 ->values(array(
3470   'field_name' => 'field_test_text_single_checkbox',
3471   'type_name' => 'test_planet',
3472   'weight' => '32',
3473   'label' => 'Text Single Checkbox Field',
3474   'widget_type' => 'text_textfield',
3475   'widget_settings' => 'a:4:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:1:"0";s:14:"_error_element";s:63:"default_value_widget][field_test_text_single_checkbox][0][value";}}s:17:"default_value_php";N;s:4:"rows";i:5;s:4:"size";s:3:"255";}',
3476   'display_settings' => 'a:7:{s:6:"weight";s:2:"32";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:6:"hidden";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3477   'description' => 'An example text field using a single on/off checkbox.',
3478   'widget_module' => 'text',
3479   'widget_active' => '1',
3480 ))
3481 ->values(array(
3482   'field_name' => 'field_test_text_single_checkbox2',
3483   'type_name' => 'story',
3484   'weight' => '19',
3485   'label' => 'Text Single Checkbox Field 2',
3486   'widget_type' => 'optionwidgets_onoff',
3487   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
3488   'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
3489   'description' => 'Checkbox that uses keys only and no label.',
3490   'widget_module' => 'optionwidgets',
3491   'widget_active' => '1',
3492 ))
3493 ->values(array(
3494   'field_name' => 'field_test_three',
3495   'type_name' => 'story',
3496   'weight' => '2',
3497   'label' => 'Decimal Field',
3498   'widget_type' => 'number',
3499   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";d:101;s:14:"_error_element";s:48:"default_value_widget][field_test_three][0][value";}}s:17:"default_value_php";N;}',
3500   'display_settings' => 'a:7:{s:6:"weight";s:1:"2";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_2";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
3501   'description' => 'An example decimal field.',
3502   'widget_module' => 'number',
3503   'widget_active' => '1',
3504 ))
3505 ->values(array(
3506   'field_name' => 'field_test_two',
3507   'type_name' => 'story',
3508   'weight' => '1',
3509   'label' => 'Integer Field',
3510   'widget_type' => 'number',
3511   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:46:"default_value_widget][field_test_two][0][value";}}s:17:"default_value_php";N;}',
3512   'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
3513   'description' => 'An example integer field.',
3514   'widget_module' => 'number',
3515   'widget_active' => '1',
3516 ))
3517 ->execute();
3518
3519 $connection->schema()->createTable('content_type_employee', array(
3520   'fields' => array(
3521     'vid' => array(
3522       'type' => 'int',
3523       'not null' => TRUE,
3524       'size' => 'normal',
3525       'default' => '0',
3526       'unsigned' => TRUE,
3527     ),
3528     'nid' => array(
3529       'type' => 'int',
3530       'not null' => TRUE,
3531       'size' => 'normal',
3532       'default' => '0',
3533       'unsigned' => TRUE,
3534     ),
3535     'field_commander_uid' => array(
3536       'type' => 'int',
3537       'not null' => FALSE,
3538       'size' => 'normal',
3539       'unsigned' => TRUE,
3540     ),
3541     'field_company_2_nid' => array(
3542       'type' => 'int',
3543       'not null' => FALSE,
3544       'size' => 'normal',
3545       'unsigned' => TRUE,
3546     ),
3547     'field_company_3_nid' => array(
3548       'type' => 'int',
3549       'not null' => FALSE,
3550       'size' => 'normal',
3551       'unsigned' => TRUE,
3552     ),
3553   ),
3554   'primary key' => array(
3555     'vid',
3556   ),
3557   'indexes' => array(
3558     'nid' => array(
3559       'nid',
3560     ),
3561     'field_commander_uid' => array(
3562       'field_commander_uid',
3563     ),
3564     'field_company_2_nid' => array(
3565       'field_company_2_nid',
3566     ),
3567     'field_company_3_nid' => array(
3568       'field_company_3_nid',
3569     ),
3570   ),
3571   'mysql_character_set' => 'utf8',
3572 ));
3573
3574 $connection->insert('content_type_employee')
3575 ->fields(array(
3576   'vid',
3577   'nid',
3578   'field_commander_uid',
3579   'field_company_2_nid',
3580   'field_company_3_nid',
3581 ))
3582 ->values(array(
3583   'vid' => '21',
3584   'nid' => '18',
3585   'field_commander_uid' => '8',
3586   'field_company_2_nid' => '15',
3587   'field_company_3_nid' => '16',
3588 ))
3589 ->values(array(
3590   'vid' => '2002',
3591   'nid' => '21',
3592   'field_commander_uid' => NULL,
3593   'field_company_2_nid' => NULL,
3594   'field_company_3_nid' => NULL,
3595 ))
3596 ->values(array(
3597   'vid' => '2003',
3598   'nid' => '22',
3599   'field_commander_uid' => NULL,
3600   'field_company_2_nid' => NULL,
3601   'field_company_3_nid' => NULL,
3602 ))
3603 ->execute();
3604
3605 $connection->schema()->createTable('content_type_page', array(
3606   'fields' => array(
3607     'vid' => array(
3608       'type' => 'int',
3609       'not null' => TRUE,
3610       'size' => 'normal',
3611       'default' => '0',
3612       'unsigned' => TRUE,
3613     ),
3614     'nid' => array(
3615       'type' => 'int',
3616       'not null' => TRUE,
3617       'size' => 'normal',
3618       'default' => '0',
3619       'unsigned' => TRUE,
3620     ),
3621     'field_text_field_value' => array(
3622       'type' => 'text',
3623       'not null' => FALSE,
3624       'size' => 'normal',
3625     ),
3626     'field_reference_nid' => array(
3627       'type' => 'int',
3628       'not null' => FALSE,
3629       'size' => 'normal',
3630       'unsigned' => TRUE,
3631     ),
3632     'field_reference_2_nid' => array(
3633       'type' => 'int',
3634       'not null' => FALSE,
3635       'size' => 'normal',
3636       'unsigned' => TRUE,
3637     ),
3638   ),
3639   'primary key' => array(
3640     'vid',
3641   ),
3642   'indexes' => array(
3643     'field_reference_nid' => array(
3644       'field_reference_nid',
3645     ),
3646     'field_reference_2_nid' => array(
3647       'field_reference_2_nid',
3648     ),
3649   ),
3650   'mysql_character_set' => 'utf8',
3651 ));
3652
3653 $connection->insert('content_type_page')
3654 ->fields(array(
3655   'vid',
3656   'nid',
3657   'field_text_field_value',
3658   'field_reference_nid',
3659   'field_reference_2_nid',
3660 ))
3661 ->values(array(
3662   'vid' => '13',
3663   'nid' => '10',
3664   'field_text_field_value' => NULL,
3665   'field_reference_nid' => '13',
3666   'field_reference_2_nid' => '13',
3667 ))
3668 ->values(array(
3669   'vid' => '14',
3670   'nid' => '11',
3671   'field_text_field_value' => NULL,
3672   'field_reference_nid' => '20',
3673   'field_reference_2_nid' => '20',
3674 ))
3675 ->values(array(
3676   'vid' => '16',
3677   'nid' => '13',
3678   'field_text_field_value' => NULL,
3679   'field_reference_nid' => '10',
3680   'field_reference_2_nid' => '10',
3681 ))
3682 ->values(array(
3683   'vid' => '23',
3684   'nid' => '20',
3685   'field_text_field_value' => NULL,
3686   'field_reference_nid' => '11',
3687   'field_reference_2_nid' => '11',
3688 ))
3689 ->execute();
3690
3691 $connection->schema()->createTable('content_type_story', array(
3692   'fields' => array(
3693     'nid' => array(
3694       'type' => 'int',
3695       'not null' => TRUE,
3696       'size' => 'normal',
3697       'default' => '0',
3698       'unsigned' => TRUE,
3699     ),
3700     'vid' => array(
3701       'type' => 'serial',
3702       'not null' => TRUE,
3703       'size' => 'normal',
3704       'unsigned' => TRUE,
3705     ),
3706     'uid' => array(
3707       'type' => 'int',
3708       'not null' => TRUE,
3709       'size' => 'normal',
3710       'unsigned' => TRUE,
3711     ),
3712     'field_test_three_value' => array(
3713       'type' => 'numeric',
3714       'not null' => FALSE,
3715       'precision' => '10',
3716       'scale' => '2',
3717     ),
3718     'field_test_identical1_value' => array(
3719       'type' => 'int',
3720       'not null' => FALSE,
3721       'size' => 'normal',
3722       'unsigned' => TRUE,
3723     ),
3724     'field_test_identical2_value' => array(
3725       'type' => 'int',
3726       'not null' => FALSE,
3727       'size' => 'normal',
3728       'unsigned' => TRUE,
3729     ),
3730     'field_test_link_url' => array(
3731       'type' => 'varchar',
3732       'not null' => FALSE,
3733       'length' => '2048',
3734     ),
3735     'field_test_link_title' => array(
3736       'type' => 'varchar',
3737       'not null' => FALSE,
3738       'length' => '255',
3739     ),
3740     'field_test_link_attributes' => array(
3741       'type' => 'text',
3742       'not null' => FALSE,
3743       'size' => 'normal',
3744     ),
3745     'field_test_date_value' => array(
3746       'type' => 'varchar',
3747       'not null' => FALSE,
3748       'length' => '20',
3749     ),
3750     'field_test_datestamp_value' => array(
3751       'type' => 'int',
3752       'not null' => FALSE,
3753       'size' => 'normal',
3754     ),
3755     'field_test_datetime_value' => array(
3756       'type' => 'varchar',
3757       'not null' => FALSE,
3758       'length' => '100',
3759     ),
3760     'field_test_email_email' => array(
3761       'type' => 'varchar',
3762       'not null' => FALSE,
3763       'length' => '255',
3764     ),
3765     'field_test_filefield_fid' => array(
3766       'type' => 'int',
3767       'not null' => FALSE,
3768       'size' => 'normal',
3769     ),
3770     'field_test_filefield_list' => array(
3771       'type' => 'int',
3772       'not null' => FALSE,
3773       'size' => 'normal',
3774     ),
3775     'field_test_filefield_data' => array(
3776       'type' => 'text',
3777       'not null' => FALSE,
3778       'size' => 'normal',
3779     ),
3780     'field_test_four_value' => array(
3781       'type' => 'numeric',
3782       'not null' => FALSE,
3783       'precision' => '10',
3784       'scale' => '0',
3785     ),
3786     'field_test_integer_selectlist_value' => array(
3787       'type' => 'int',
3788       'not null' => FALSE,
3789       'size' => 'normal',
3790     ),
3791     'field_test_float_single_checkbox_value' => array(
3792       'type' => 'numeric',
3793       'not null' => FALSE,
3794       'precision' => '10',
3795       'scale' => '0',
3796     ),
3797     'field_test_decimal_radio_buttons_value' => array(
3798       'type' => 'numeric',
3799       'not null' => FALSE,
3800       'precision' => '10',
3801       'scale' => '2',
3802     ),
3803     'field_test_phone_value' => array(
3804       'type' => 'varchar',
3805       'not null' => FALSE,
3806       'length' => '255',
3807     ),
3808     'field_test_exclude_unset_value' => array(
3809       'type' => 'text',
3810       'not null' => FALSE,
3811       'size' => 'normal',
3812     ),
3813     'field_test_exclude_unset_format' => array(
3814       'type' => 'int',
3815       'not null' => FALSE,
3816       'size' => 'normal',
3817       'unsigned' => TRUE,
3818     ),
3819     'field_test_imagefield_fid' => array(
3820       'type' => 'int',
3821       'not null' => FALSE,
3822       'size' => 'normal',
3823     ),
3824     'field_test_imagefield_list' => array(
3825       'type' => 'int',
3826       'not null' => FALSE,
3827       'size' => 'normal',
3828     ),
3829     'field_test_imagefield_data' => array(
3830       'type' => 'text',
3831       'not null' => FALSE,
3832       'size' => 'normal',
3833     ),
3834     'field_test_text_single_checkbox2_value' => array(
3835       'type' => 'text',
3836       'not null' => FALSE,
3837       'size' => 'big',
3838     ),
3839     'field_test_datestamp_value2' => array(
3840       'type' => 'int',
3841       'not null' => FALSE,
3842       'size' => 'normal',
3843     ),
3844     'field_test_datetime_value2' => array(
3845       'type' => 'varchar',
3846       'not null' => FALSE,
3847       'length' => '100',
3848     ),
3849     'field_test_string_selectlist_value' => array(
3850       'type' => 'text',
3851       'not null' => FALSE,
3852       'size' => 'big',
3853     ),
3854   ),
3855   'primary key' => array(
3856     'vid',
3857   ),
3858   'indexes' => array(
3859     'nid' => array(
3860       'nid',
3861     ),
3862   ),
3863   'mysql_character_set' => 'utf8',
3864 ));
3865
3866 $connection->insert('content_type_story')
3867 ->fields(array(
3868   'nid',
3869   'vid',
3870   'uid',
3871   'field_test_three_value',
3872   'field_test_identical1_value',
3873   'field_test_identical2_value',
3874   'field_test_link_url',
3875   'field_test_link_title',
3876   'field_test_link_attributes',
3877   'field_test_date_value',
3878   'field_test_datestamp_value',
3879   'field_test_datetime_value',
3880   'field_test_email_email',
3881   'field_test_filefield_fid',
3882   'field_test_filefield_list',
3883   'field_test_filefield_data',
3884   'field_test_four_value',
3885   'field_test_integer_selectlist_value',
3886   'field_test_float_single_checkbox_value',
3887   'field_test_decimal_radio_buttons_value',
3888   'field_test_phone_value',
3889   'field_test_exclude_unset_value',
3890   'field_test_exclude_unset_format',
3891   'field_test_imagefield_fid',
3892   'field_test_imagefield_list',
3893   'field_test_imagefield_data',
3894   'field_test_text_single_checkbox2_value',
3895   'field_test_datestamp_value2',
3896   'field_test_datetime_value2',
3897   'field_test_string_selectlist_value',
3898 ))
3899 ->values(array(
3900   'nid' => '1',
3901   'vid' => '1',
3902   'uid' => '1',
3903   'field_test_three_value' => '42.42',
3904   'field_test_identical1_value' => '1',
3905   'field_test_identical2_value' => '1',
3906   'field_test_link_url' => 'https://www.drupal.org/project/drupal',
3907   'field_test_link_title' => 'Drupal project page',
3908   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
3909   'field_test_date_value' => '2013-01-02T04:05:00',
3910   'field_test_datestamp_value' => '1391357160',
3911   'field_test_datetime_value' => '2015-03-04 06:07:00',
3912   'field_test_email_email' => 'PrincessRuwenne@example.com',
3913   'field_test_filefield_fid' => '5',
3914   'field_test_filefield_list' => '1',
3915   'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
3916   'field_test_four_value' => NULL,
3917   'field_test_integer_selectlist_value' => '3412',
3918   'field_test_float_single_checkbox_value' => '3',
3919   'field_test_decimal_radio_buttons_value' => NULL,
3920   'field_test_phone_value' => NULL,
3921   'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
3922   'field_test_exclude_unset_format' => '1',
3923   'field_test_imagefield_fid' => NULL,
3924   'field_test_imagefield_list' => NULL,
3925   'field_test_imagefield_data' => NULL,
3926   'field_test_text_single_checkbox2_value' => 'Hello',
3927   'field_test_datestamp_value2' => NULL,
3928   'field_test_datetime_value2' => NULL,
3929   'field_test_string_selectlist_value' => NULL,
3930 ))
3931 ->values(array(
3932   'nid' => '1',
3933   'vid' => '2',
3934   'uid' => '1',
3935   'field_test_three_value' => '42.42',
3936   'field_test_identical1_value' => '1',
3937   'field_test_identical2_value' => '1',
3938   'field_test_link_url' => 'https://www.drupal.org/project/drupal',
3939   'field_test_link_title' => 'Drupal project page',
3940   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
3941   'field_test_date_value' => '2013-01-02T04:05:00',
3942   'field_test_datestamp_value' => '1391357160',
3943   'field_test_datetime_value' => '2015-03-04 06:07:00',
3944   'field_test_email_email' => 'PrincessRuwenne@example.com',
3945   'field_test_filefield_fid' => NULL,
3946   'field_test_filefield_list' => NULL,
3947   'field_test_filefield_data' => NULL,
3948   'field_test_four_value' => NULL,
3949   'field_test_integer_selectlist_value' => NULL,
3950   'field_test_float_single_checkbox_value' => NULL,
3951   'field_test_decimal_radio_buttons_value' => NULL,
3952   'field_test_phone_value' => NULL,
3953   'field_test_exclude_unset_value' => NULL,
3954   'field_test_exclude_unset_format' => NULL,
3955   'field_test_imagefield_fid' => NULL,
3956   'field_test_imagefield_list' => NULL,
3957   'field_test_imagefield_data' => NULL,
3958   'field_test_text_single_checkbox2_value' => NULL,
3959   'field_test_datestamp_value2' => NULL,
3960   'field_test_datetime_value2' => NULL,
3961   'field_test_string_selectlist_value' => NULL,
3962 ))
3963 ->values(array(
3964   'nid' => '2',
3965   'vid' => '3',
3966   'uid' => '1',
3967   'field_test_three_value' => '23.20',
3968   'field_test_identical1_value' => '1',
3969   'field_test_identical2_value' => '1',
3970   'field_test_link_url' => 'http://groups.drupal.org/',
3971   'field_test_link_title' => 'Drupal Groups',
3972   'field_test_link_attributes' => 's:6:"a:0:{}";',
3973   'field_test_date_value' => NULL,
3974   'field_test_datestamp_value' => NULL,
3975   'field_test_datetime_value' => NULL,
3976   'field_test_email_email' => NULL,
3977   'field_test_filefield_fid' => NULL,
3978   'field_test_filefield_list' => NULL,
3979   'field_test_filefield_data' => NULL,
3980   'field_test_four_value' => NULL,
3981   'field_test_integer_selectlist_value' => NULL,
3982   'field_test_float_single_checkbox_value' => NULL,
3983   'field_test_decimal_radio_buttons_value' => NULL,
3984   'field_test_phone_value' => NULL,
3985   'field_test_exclude_unset_value' => NULL,
3986   'field_test_exclude_unset_format' => NULL,
3987   'field_test_imagefield_fid' => NULL,
3988   'field_test_imagefield_list' => NULL,
3989   'field_test_imagefield_data' => NULL,
3990   'field_test_text_single_checkbox2_value' => NULL,
3991   'field_test_datestamp_value2' => NULL,
3992   'field_test_datetime_value2' => NULL,
3993   'field_test_string_selectlist_value' => NULL,
3994 ))
3995 ->values(array(
3996   'nid' => '2',
3997   'vid' => '5',
3998   'uid' => '1',
3999   'field_test_three_value' => '23.20',
4000   'field_test_identical1_value' => '1',
4001   'field_test_identical2_value' => '1',
4002   'field_test_link_url' => 'http://groups.drupal.org/',
4003   'field_test_link_title' => 'Drupal Groups',
4004   'field_test_link_attributes' => 's:6:"a:0:{}";',
4005   'field_test_date_value' => NULL,
4006   'field_test_datestamp_value' => NULL,
4007   'field_test_datetime_value' => NULL,
4008   'field_test_email_email' => NULL,
4009   'field_test_filefield_fid' => NULL,
4010   'field_test_filefield_list' => NULL,
4011   'field_test_filefield_data' => NULL,
4012   'field_test_four_value' => NULL,
4013   'field_test_integer_selectlist_value' => NULL,
4014   'field_test_float_single_checkbox_value' => NULL,
4015   'field_test_decimal_radio_buttons_value' => NULL,
4016   'field_test_phone_value' => NULL,
4017   'field_test_exclude_unset_value' => NULL,
4018   'field_test_exclude_unset_format' => NULL,
4019   'field_test_imagefield_fid' => NULL,
4020   'field_test_imagefield_list' => NULL,
4021   'field_test_imagefield_data' => NULL,
4022   'field_test_text_single_checkbox2_value' => NULL,
4023   'field_test_datestamp_value2' => NULL,
4024   'field_test_datetime_value2' => NULL,
4025   'field_test_string_selectlist_value' => NULL,
4026 ))
4027 ->values(array(
4028   'nid' => '9',
4029   'vid' => '12',
4030   'uid' => '0',
4031   'field_test_three_value' => '101.00',
4032   'field_test_identical1_value' => NULL,
4033   'field_test_identical2_value' => NULL,
4034   'field_test_link_url' => 'node/10',
4035   'field_test_link_title' => 'Buy it now',
4036   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
4037   'field_test_date_value' => NULL,
4038   'field_test_datestamp_value' => NULL,
4039   'field_test_datetime_value' => NULL,
4040   'field_test_email_email' => NULL,
4041   'field_test_filefield_fid' => NULL,
4042   'field_test_filefield_list' => NULL,
4043   'field_test_filefield_data' => NULL,
4044   'field_test_four_value' => '101',
4045   'field_test_integer_selectlist_value' => NULL,
4046   'field_test_float_single_checkbox_value' => '3',
4047   'field_test_decimal_radio_buttons_value' => NULL,
4048   'field_test_phone_value' => NULL,
4049   'field_test_exclude_unset_value' => 'text for default value',
4050   'field_test_exclude_unset_format' => '1',
4051   'field_test_imagefield_fid' => '2',
4052   'field_test_imagefield_list' => '1',
4053   'field_test_imagefield_data' => 'a:2:{s:3:"alt";s:8:"Test alt";s:5:"title";s:10:"Test title";}',
4054   'field_test_text_single_checkbox2_value' => 'Off',
4055   'field_test_datestamp_value2' => '1391357160',
4056   'field_test_datetime_value2' => '2015-03-04 06:07:00',
4057   'field_test_string_selectlist_value' => NULL,
4058 ))
4059 ->execute();
4060
4061 $connection->schema()->createTable('content_type_test_page', array(
4062   'fields' => array(
4063     'vid' => array(
4064       'type' => 'int',
4065       'not null' => TRUE,
4066       'size' => 'normal',
4067       'default' => '0',
4068       'unsigned' => TRUE,
4069     ),
4070     'nid' => array(
4071       'type' => 'int',
4072       'not null' => TRUE,
4073       'size' => 'normal',
4074       'default' => '0',
4075       'unsigned' => TRUE,
4076     ),
4077     'field_test_value' => array(
4078       'type' => 'text',
4079       'not null' => FALSE,
4080       'size' => 'normal',
4081     ),
4082     'field_test_format' => array(
4083       'type' => 'int',
4084       'not null' => FALSE,
4085       'size' => 'normal',
4086       'unsigned' => TRUE,
4087     ),
4088   ),
4089   'primary key' => array(
4090     'vid',
4091   ),
4092   'mysql_character_set' => 'utf8',
4093 ));
4094
4095 $connection->schema()->createTable('content_type_test_planet', array(
4096   'fields' => array(
4097     'nid' => array(
4098       'type' => 'int',
4099       'not null' => TRUE,
4100       'size' => 'normal',
4101       'default' => '0',
4102       'unsigned' => TRUE,
4103     ),
4104     'vid' => array(
4105       'type' => 'serial',
4106       'not null' => TRUE,
4107       'size' => 'normal',
4108       'unsigned' => TRUE,
4109     ),
4110   ),
4111   'primary key' => array(
4112     'vid',
4113   ),
4114   'mysql_character_set' => 'utf8',
4115 ));
4116
4117 $connection->insert('content_type_test_planet')
4118 ->fields(array(
4119   'nid',
4120   'vid',
4121 ))
4122 ->values(array(
4123   'nid' => '3',
4124   'vid' => '4',
4125 ))
4126 ->values(array(
4127   'nid' => '4',
4128   'vid' => '6',
4129 ))
4130 ->values(array(
4131   'nid' => '5',
4132   'vid' => '7',
4133 ))
4134 ->values(array(
4135   'nid' => '6',
4136   'vid' => '8',
4137 ))
4138 ->values(array(
4139   'nid' => '7',
4140   'vid' => '9',
4141 ))
4142 ->values(array(
4143   'nid' => '8',
4144   'vid' => '10',
4145 ))
4146 ->values(array(
4147   'nid' => '9',
4148   'vid' => '11',
4149 ))
4150 ->execute();
4151
4152 $connection->schema()->createTable('date_format_locale', array(
4153   'fields' => array(
4154     'format' => array(
4155       'type' => 'varchar',
4156       'not null' => TRUE,
4157       'length' => '100',
4158     ),
4159     'type' => array(
4160       'type' => 'varchar',
4161       'not null' => TRUE,
4162       'length' => '200',
4163     ),
4164     'language' => array(
4165       'type' => 'varchar',
4166       'not null' => TRUE,
4167       'length' => '12',
4168     ),
4169   ),
4170   'primary key' => array(
4171     'type',
4172     'language',
4173   ),
4174   'mysql_character_set' => 'utf8',
4175 ));
4176
4177 $connection->schema()->createTable('date_format_types', array(
4178   'fields' => array(
4179     'type' => array(
4180       'type' => 'varchar',
4181       'not null' => TRUE,
4182       'length' => '200',
4183     ),
4184     'title' => array(
4185       'type' => 'varchar',
4186       'not null' => TRUE,
4187       'length' => '255',
4188     ),
4189     'locked' => array(
4190       'type' => 'int',
4191       'not null' => TRUE,
4192       'size' => 'normal',
4193       'default' => '0',
4194     ),
4195   ),
4196   'primary key' => array(
4197     'type',
4198   ),
4199   'mysql_character_set' => 'utf8',
4200 ));
4201
4202 $connection->insert('date_format_types')
4203 ->fields(array(
4204   'type',
4205   'title',
4206   'locked',
4207 ))
4208 ->values(array(
4209   'type' => 'long',
4210   'title' => 'Long',
4211   'locked' => '1',
4212 ))
4213 ->values(array(
4214   'type' => 'medium',
4215   'title' => 'Medium',
4216   'locked' => '1',
4217 ))
4218 ->values(array(
4219   'type' => 'short',
4220   'title' => 'Short',
4221   'locked' => '1',
4222 ))
4223 ->execute();
4224
4225 $connection->schema()->createTable('date_formats', array(
4226   'fields' => array(
4227     'dfid' => array(
4228       'type' => 'serial',
4229       'not null' => TRUE,
4230       'size' => 'normal',
4231       'unsigned' => TRUE,
4232     ),
4233     'format' => array(
4234       'type' => 'varchar',
4235       'not null' => TRUE,
4236       'length' => '100',
4237     ),
4238     'type' => array(
4239       'type' => 'varchar',
4240       'not null' => TRUE,
4241       'length' => '200',
4242     ),
4243     'locked' => array(
4244       'type' => 'int',
4245       'not null' => TRUE,
4246       'size' => 'normal',
4247       'default' => '0',
4248     ),
4249   ),
4250   'primary key' => array(
4251     'dfid',
4252   ),
4253   'mysql_character_set' => 'utf8',
4254 ));
4255
4256 $connection->insert('date_formats')
4257 ->fields(array(
4258   'dfid',
4259   'format',
4260   'type',
4261   'locked',
4262 ))
4263 ->values(array(
4264   'dfid' => '1',
4265   'format' => 'Y-m-d H:i',
4266   'type' => 'short',
4267   'locked' => '1',
4268 ))
4269 ->values(array(
4270   'dfid' => '2',
4271   'format' => 'm/d/Y - H:i',
4272   'type' => 'short',
4273   'locked' => '1',
4274 ))
4275 ->values(array(
4276   'dfid' => '3',
4277   'format' => 'd/m/Y - H:i',
4278   'type' => 'short',
4279   'locked' => '1',
4280 ))
4281 ->values(array(
4282   'dfid' => '4',
4283   'format' => 'Y/m/d - H:i',
4284   'type' => 'short',
4285   'locked' => '1',
4286 ))
4287 ->values(array(
4288   'dfid' => '5',
4289   'format' => 'd.m.Y - H:i',
4290   'type' => 'short',
4291   'locked' => '1',
4292 ))
4293 ->values(array(
4294   'dfid' => '6',
4295   'format' => 'm/d/Y - g:ia',
4296   'type' => 'short',
4297   'locked' => '1',
4298 ))
4299 ->values(array(
4300   'dfid' => '7',
4301   'format' => 'd/m/Y - g:ia',
4302   'type' => 'short',
4303   'locked' => '1',
4304 ))
4305 ->values(array(
4306   'dfid' => '8',
4307   'format' => 'Y/m/d - g:ia',
4308   'type' => 'short',
4309   'locked' => '1',
4310 ))
4311 ->values(array(
4312   'dfid' => '9',
4313   'format' => 'M j Y - H:i',
4314   'type' => 'short',
4315   'locked' => '1',
4316 ))
4317 ->values(array(
4318   'dfid' => '10',
4319   'format' => 'j M Y - H:i',
4320   'type' => 'short',
4321   'locked' => '1',
4322 ))
4323 ->values(array(
4324   'dfid' => '11',
4325   'format' => 'Y M j - H:i',
4326   'type' => 'short',
4327   'locked' => '1',
4328 ))
4329 ->values(array(
4330   'dfid' => '12',
4331   'format' => 'M j Y - g:ia',
4332   'type' => 'short',
4333   'locked' => '1',
4334 ))
4335 ->values(array(
4336   'dfid' => '13',
4337   'format' => 'j M Y - g:ia',
4338   'type' => 'short',
4339   'locked' => '1',
4340 ))
4341 ->values(array(
4342   'dfid' => '14',
4343   'format' => 'Y M j - g:ia',
4344   'type' => 'short',
4345   'locked' => '1',
4346 ))
4347 ->values(array(
4348   'dfid' => '15',
4349   'format' => 'D, Y-m-d H:i',
4350   'type' => 'medium',
4351   'locked' => '1',
4352 ))
4353 ->values(array(
4354   'dfid' => '16',
4355   'format' => 'D, m/d/Y - H:i',
4356   'type' => 'medium',
4357   'locked' => '1',
4358 ))
4359 ->values(array(
4360   'dfid' => '17',
4361   'format' => 'D, d/m/Y - H:i',
4362   'type' => 'medium',
4363   'locked' => '1',
4364 ))
4365 ->values(array(
4366   'dfid' => '18',
4367   'format' => 'D, Y/m/d - H:i',
4368   'type' => 'medium',
4369   'locked' => '1',
4370 ))
4371 ->values(array(
4372   'dfid' => '19',
4373   'format' => 'F j, Y - H:i',
4374   'type' => 'medium',
4375   'locked' => '1',
4376 ))
4377 ->values(array(
4378   'dfid' => '20',
4379   'format' => 'j F, Y - H:i',
4380   'type' => 'medium',
4381   'locked' => '1',
4382 ))
4383 ->values(array(
4384   'dfid' => '21',
4385   'format' => 'Y, F j - H:i',
4386   'type' => 'medium',
4387   'locked' => '1',
4388 ))
4389 ->values(array(
4390   'dfid' => '22',
4391   'format' => 'D, m/d/Y - g:ia',
4392   'type' => 'medium',
4393   'locked' => '1',
4394 ))
4395 ->values(array(
4396   'dfid' => '23',
4397   'format' => 'D, d/m/Y - g:ia',
4398   'type' => 'medium',
4399   'locked' => '1',
4400 ))
4401 ->values(array(
4402   'dfid' => '24',
4403   'format' => 'D, Y/m/d - g:ia',
4404   'type' => 'medium',
4405   'locked' => '1',
4406 ))
4407 ->values(array(
4408   'dfid' => '25',
4409   'format' => 'F j, Y - g:ia',
4410   'type' => 'medium',
4411   'locked' => '1',
4412 ))
4413 ->values(array(
4414   'dfid' => '26',
4415   'format' => 'j F Y - g:ia',
4416   'type' => 'medium',
4417   'locked' => '1',
4418 ))
4419 ->values(array(
4420   'dfid' => '27',
4421   'format' => 'Y, F j - g:ia',
4422   'type' => 'medium',
4423   'locked' => '1',
4424 ))
4425 ->values(array(
4426   'dfid' => '28',
4427   'format' => 'j. F Y - G:i',
4428   'type' => 'medium',
4429   'locked' => '1',
4430 ))
4431 ->values(array(
4432   'dfid' => '29',
4433   'format' => 'l, F j, Y - H:i',
4434   'type' => 'long',
4435   'locked' => '1',
4436 ))
4437 ->values(array(
4438   'dfid' => '30',
4439   'format' => 'l, j F, Y - H:i',
4440   'type' => 'long',
4441   'locked' => '1',
4442 ))
4443 ->values(array(
4444   'dfid' => '31',
4445   'format' => 'l, Y,  F j - H:i',
4446   'type' => 'long',
4447   'locked' => '1',
4448 ))
4449 ->values(array(
4450   'dfid' => '32',
4451   'format' => 'l, F j, Y - g:ia',
4452   'type' => 'long',
4453   'locked' => '1',
4454 ))
4455 ->values(array(
4456   'dfid' => '33',
4457   'format' => 'l, j F Y - g:ia',
4458   'type' => 'long',
4459   'locked' => '1',
4460 ))
4461 ->values(array(
4462   'dfid' => '34',
4463   'format' => 'l, Y,  F j - g:ia',
4464   'type' => 'long',
4465   'locked' => '1',
4466 ))
4467 ->values(array(
4468   'dfid' => '35',
4469   'format' => 'l, j. F Y - G:i',
4470   'type' => 'long',
4471   'locked' => '1',
4472 ))
4473 ->execute();
4474
4475 $connection->schema()->createTable('event', array(
4476   'fields' => array(
4477     'nid' => array(
4478       'type' => 'int',
4479       'not null' => TRUE,
4480       'size' => 'normal',
4481       'default' => '0',
4482       'unsigned' => TRUE,
4483     ),
4484     'event_start' => array(
4485       'type' => 'varchar',
4486       'not null' => TRUE,
4487       'length' => '100',
4488     ),
4489     'event_end' => array(
4490       'type' => 'varchar',
4491       'not null' => TRUE,
4492       'length' => '100',
4493     ),
4494     'timezone' => array(
4495       'type' => 'int',
4496       'not null' => TRUE,
4497       'size' => 'normal',
4498       'default' => '0',
4499     ),
4500     'start_in_dst' => array(
4501       'type' => 'int',
4502       'not null' => TRUE,
4503       'size' => 'normal',
4504       'default' => '0',
4505     ),
4506     'end_in_dst' => array(
4507       'type' => 'int',
4508       'not null' => TRUE,
4509       'size' => 'normal',
4510       'default' => '0',
4511     ),
4512     'has_time' => array(
4513       'type' => 'int',
4514       'not null' => TRUE,
4515       'size' => 'normal',
4516       'default' => '1',
4517     ),
4518     'has_end_date' => array(
4519       'type' => 'int',
4520       'not null' => TRUE,
4521       'size' => 'normal',
4522       'default' => '1',
4523     ),
4524   ),
4525   'primary key' => array(
4526     'nid',
4527   ),
4528   'mysql_character_set' => 'utf8',
4529 ));
4530
4531 $connection->schema()->createTable('event_timezones', array(
4532   'fields' => array(
4533     'timezone' => array(
4534       'type' => 'int',
4535       'not null' => TRUE,
4536       'size' => 'normal',
4537       'default' => '0',
4538     ),
4539     'name' => array(
4540       'type' => 'varchar',
4541       'not null' => TRUE,
4542       'length' => '255',
4543       'default' => '',
4544     ),
4545     'offset' => array(
4546       'type' => 'varchar',
4547       'not null' => TRUE,
4548       'length' => '100',
4549       'default' => '00:00:00',
4550     ),
4551     'offset_dst' => array(
4552       'type' => 'varchar',
4553       'not null' => TRUE,
4554       'length' => '100',
4555       'default' => '00:00:00',
4556     ),
4557     'dst_region' => array(
4558       'type' => 'int',
4559       'not null' => TRUE,
4560       'size' => 'normal',
4561       'default' => '0',
4562     ),
4563     'is_dst' => array(
4564       'type' => 'int',
4565       'not null' => TRUE,
4566       'size' => 'normal',
4567       'default' => '0',
4568     ),
4569   ),
4570   'primary key' => array(
4571     'timezone',
4572   ),
4573   'mysql_character_set' => 'utf8',
4574 ));
4575
4576 $connection->insert('event_timezones')
4577 ->fields(array(
4578   'timezone',
4579   'name',
4580   'offset',
4581   'offset_dst',
4582   'dst_region',
4583   'is_dst',
4584 ))
4585 ->values(array(
4586   'timezone' => '1',
4587   'name' => 'Africa/Addis Ababa',
4588   'offset' => '03:00:00',
4589   'offset_dst' => '03:00:00',
4590   'dst_region' => '0',
4591   'is_dst' => '0',
4592 ))
4593 ->values(array(
4594   'timezone' => '2',
4595   'name' => 'Africa/Algiers',
4596   'offset' => '01:00:00',
4597   'offset_dst' => '01:00:00',
4598   'dst_region' => '0',
4599   'is_dst' => '0',
4600 ))
4601 ->values(array(
4602   'timezone' => '3',
4603   'name' => 'Africa/Asmera',
4604   'offset' => '03:00:00',
4605   'offset_dst' => '03:00:00',
4606   'dst_region' => '0',
4607   'is_dst' => '0',
4608 ))
4609 ->values(array(
4610   'timezone' => '4',
4611   'name' => 'Africa/Bangui',
4612   'offset' => '01:00:00',
4613   'offset_dst' => '01:00:00',
4614   'dst_region' => '0',
4615   'is_dst' => '0',
4616 ))
4617 ->values(array(
4618   'timezone' => '5',
4619   'name' => 'Africa/Blantyre',
4620   'offset' => '02:00:00',
4621   'offset_dst' => '02:00:00',
4622   'dst_region' => '0',
4623   'is_dst' => '0',
4624 ))
4625 ->values(array(
4626   'timezone' => '6',
4627   'name' => 'Africa/Brazzaville',
4628   'offset' => '01:00:00',
4629   'offset_dst' => '01:00:00',
4630   'dst_region' => '0',
4631   'is_dst' => '0',
4632 ))
4633 ->values(array(
4634   'timezone' => '7',
4635   'name' => 'Africa/Bujumbura',
4636   'offset' => '02:00:00',
4637   'offset_dst' => '02:00:00',
4638   'dst_region' => '0',
4639   'is_dst' => '0',
4640 ))
4641 ->values(array(
4642   'timezone' => '8',
4643   'name' => 'Africa/Cairo',
4644   'offset' => '02:00:00',
4645   'offset_dst' => '03:00:00',
4646   'dst_region' => '1',
4647   'is_dst' => '0',
4648 ))
4649 ->values(array(
4650   'timezone' => '9',
4651   'name' => 'Africa/Ceuta',
4652   'offset' => '01:00:00',
4653   'offset_dst' => '02:00:00',
4654   'dst_region' => '1',
4655   'is_dst' => '0',
4656 ))
4657 ->values(array(
4658   'timezone' => '10',
4659   'name' => 'Africa/Dar es Salaam',
4660   'offset' => '03:00:00',
4661   'offset_dst' => '03:00:00',
4662   'dst_region' => '0',
4663   'is_dst' => '0',
4664 ))
4665 ->values(array(
4666   'timezone' => '11',
4667   'name' => 'Africa/Djibouti',
4668   'offset' => '03:00:00',
4669   'offset_dst' => '03:00:00',
4670   'dst_region' => '0',
4671   'is_dst' => '0',
4672 ))
4673 ->values(array(
4674   'timezone' => '12',
4675   'name' => 'Africa/Douala',
4676   'offset' => '01:00:00',
4677   'offset_dst' => '01:00:00',
4678   'dst_region' => '0',
4679   'is_dst' => '0',
4680 ))
4681 ->values(array(
4682   'timezone' => '13',
4683   'name' => 'Africa/Gaborone',
4684   'offset' => '02:00:00',
4685   'offset_dst' => '02:00:00',
4686   'dst_region' => '0',
4687   'is_dst' => '0',
4688 ))
4689 ->values(array(
4690   'timezone' => '14',
4691   'name' => 'Africa/Harare',
4692   'offset' => '02:00:00',
4693   'offset_dst' => '02:00:00',
4694   'dst_region' => '0',
4695   'is_dst' => '0',
4696 ))
4697 ->values(array(
4698   'timezone' => '15',
4699   'name' => 'Africa/Johannesburg',
4700   'offset' => '02:00:00',
4701   'offset_dst' => '02:00:00',
4702   'dst_region' => '0',
4703   'is_dst' => '0',
4704 ))
4705 ->values(array(
4706   'timezone' => '16',
4707   'name' => 'Africa/Kampala',
4708   'offset' => '03:00:00',
4709   'offset_dst' => '03:00:00',
4710   'dst_region' => '0',
4711   'is_dst' => '0',
4712 ))
4713 ->values(array(
4714   'timezone' => '17',
4715   'name' => 'Africa/Khartoum',
4716   'offset' => '03:00:00',
4717   'offset_dst' => '03:00:00',
4718   'dst_region' => '0',
4719   'is_dst' => '0',
4720 ))
4721 ->values(array(
4722   'timezone' => '18',
4723   'name' => 'Africa/Kigali',
4724   'offset' => '02:00:00',
4725   'offset_dst' => '02:00:00',
4726   'dst_region' => '0',
4727   'is_dst' => '0',
4728 ))
4729 ->values(array(
4730   'timezone' => '19',
4731   'name' => 'Africa/Kinshasa',
4732   'offset' => '01:00:00',
4733   'offset_dst' => '01:00:00',
4734   'dst_region' => '0',
4735   'is_dst' => '0',
4736 ))
4737 ->values(array(
4738   'timezone' => '20',
4739   'name' => 'Africa/Lagos',
4740   'offset' => '01:00:00',
4741   'offset_dst' => '01:00:00',
4742   'dst_region' => '0',
4743   'is_dst' => '0',
4744 ))
4745 ->values(array(
4746   'timezone' => '21',
4747   'name' => 'Africa/Libreville',
4748   'offset' => '01:00:00',
4749   'offset_dst' => '01:00:00',
4750   'dst_region' => '0',
4751   'is_dst' => '0',
4752 ))
4753 ->values(array(
4754   'timezone' => '22',
4755   'name' => 'Africa/Luanda',
4756   'offset' => '01:00:00',
4757   'offset_dst' => '01:00:00',
4758   'dst_region' => '0',
4759   'is_dst' => '0',
4760 ))
4761 ->values(array(
4762   'timezone' => '23',
4763   'name' => 'Africa/Lubumbashi',
4764   'offset' => '02:00:00',
4765   'offset_dst' => '02:00:00',
4766   'dst_region' => '0',
4767   'is_dst' => '0',
4768 ))
4769 ->values(array(
4770   'timezone' => '24',
4771   'name' => 'Africa/Lusaka',
4772   'offset' => '02:00:00',
4773   'offset_dst' => '02:00:00',
4774   'dst_region' => '0',
4775   'is_dst' => '0',
4776 ))
4777 ->values(array(
4778   'timezone' => '25',
4779   'name' => 'Africa/Malabo',
4780   'offset' => '01:00:00',
4781   'offset_dst' => '01:00:00',
4782   'dst_region' => '0',
4783   'is_dst' => '0',
4784 ))
4785 ->values(array(
4786   'timezone' => '26',
4787   'name' => 'Africa/Maputo',
4788   'offset' => '02:00:00',
4789   'offset_dst' => '02:00:00',
4790   'dst_region' => '0',
4791   'is_dst' => '0',
4792 ))
4793 ->values(array(
4794   'timezone' => '27',
4795   'name' => 'Africa/Maseru',
4796   'offset' => '02:00:00',
4797   'offset_dst' => '02:00:00',
4798   'dst_region' => '0',
4799   'is_dst' => '0',
4800 ))
4801 ->values(array(
4802   'timezone' => '28',
4803   'name' => 'Africa/Mbabane',
4804   'offset' => '02:00:00',
4805   'offset_dst' => '02:00:00',
4806   'dst_region' => '0',
4807   'is_dst' => '0',
4808 ))
4809 ->values(array(
4810   'timezone' => '29',
4811   'name' => 'Africa/Mogadishu',
4812   'offset' => '03:00:00',
4813   'offset_dst' => '03:00:00',
4814   'dst_region' => '0',
4815   'is_dst' => '0',
4816 ))
4817 ->values(array(
4818   'timezone' => '30',
4819   'name' => 'Africa/Nairobi',
4820   'offset' => '03:00:00',
4821   'offset_dst' => '03:00:00',
4822   'dst_region' => '0',
4823   'is_dst' => '0',
4824 ))
4825 ->values(array(
4826   'timezone' => '31',
4827   'name' => 'Africa/Ndjamena',
4828   'offset' => '01:00:00',
4829   'offset_dst' => '01:00:00',
4830   'dst_region' => '0',
4831   'is_dst' => '0',
4832 ))
4833 ->values(array(
4834   'timezone' => '32',
4835   'name' => 'Africa/Niamey',
4836   'offset' => '01:00:00',
4837   'offset_dst' => '01:00:00',
4838   'dst_region' => '0',
4839   'is_dst' => '0',
4840 ))
4841 ->values(array(
4842   'timezone' => '33',
4843   'name' => 'Africa/Porto-Novo',
4844   'offset' => '01:00:00',
4845   'offset_dst' => '01:00:00',
4846   'dst_region' => '0',
4847   'is_dst' => '0',
4848 ))
4849 ->values(array(
4850   'timezone' => '34',
4851   'name' => 'Africa/Tripoli',
4852   'offset' => '02:00:00',
4853   'offset_dst' => '02:00:00',
4854   'dst_region' => '0',
4855   'is_dst' => '0',
4856 ))
4857 ->values(array(
4858   'timezone' => '35',
4859   'name' => 'Africa/Tunis',
4860   'offset' => '01:00:00',
4861   'offset_dst' => '01:00:00',
4862   'dst_region' => '0',
4863   'is_dst' => '0',
4864 ))
4865 ->values(array(
4866   'timezone' => '36',
4867   'name' => 'Africa/Windhoek',
4868   'offset' => '02:00:00',
4869   'offset_dst' => '01:00:00',
4870   'dst_region' => '2',
4871   'is_dst' => '0',
4872 ))
4873 ->values(array(
4874   'timezone' => '37',
4875   'name' => 'America/Adak',
4876   'offset' => '-10:00:00',
4877   'offset_dst' => '-09:00:00',
4878   'dst_region' => '15',
4879   'is_dst' => '0',
4880 ))
4881 ->values(array(
4882   'timezone' => '38',
4883   'name' => 'America/Anchorage',
4884   'offset' => '-09:00:00',
4885   'offset_dst' => '-08:00:00',
4886   'dst_region' => '15',
4887   'is_dst' => '0',
4888 ))
4889 ->values(array(
4890   'timezone' => '39',
4891   'name' => 'America/Anguilla',
4892   'offset' => '-04:00:00',
4893   'offset_dst' => '-04:00:00',
4894   'dst_region' => '0',
4895   'is_dst' => '0',
4896 ))
4897 ->values(array(
4898   'timezone' => '40',
4899   'name' => 'America/Antigua',
4900   'offset' => '-04:00:00',
4901   'offset_dst' => '-04:00:00',
4902   'dst_region' => '0',
4903   'is_dst' => '0',
4904 ))
4905 ->values(array(
4906   'timezone' => '41',
4907   'name' => 'America/Araguaina',
4908   'offset' => '-02:00:00',
4909   'offset_dst' => '-03:00:00',
4910   'dst_region' => '17',
4911   'is_dst' => '0',
4912 ))
4913 ->values(array(
4914   'timezone' => '42',
4915   'name' => 'America/Aruba',
4916   'offset' => '-04:00:00',
4917   'offset_dst' => '-04:00:00',
4918   'dst_region' => '0',
4919   'is_dst' => '0',
4920 ))
4921 ->values(array(
4922   'timezone' => '43',
4923   'name' => 'America/Asuncion',
4924   'offset' => '-03:00:00',
4925   'offset_dst' => '-04:00:00',
4926   'dst_region' => '20',
4927   'is_dst' => '0',
4928 ))
4929 ->values(array(
4930   'timezone' => '44',
4931   'name' => 'America/Atka',
4932   'offset' => '-10:00:00',
4933   'offset_dst' => '-09:00:00',
4934   'dst_region' => '15',
4935   'is_dst' => '0',
4936 ))
4937 ->values(array(
4938   'timezone' => '45',
4939   'name' => 'America/Barbados',
4940   'offset' => '-04:00:00',
4941   'offset_dst' => '-04:00:00',
4942   'dst_region' => '0',
4943   'is_dst' => '0',
4944 ))
4945 ->values(array(
4946   'timezone' => '46',
4947   'name' => 'America/Belem',
4948   'offset' => '-03:00:00',
4949   'offset_dst' => '-03:00:00',
4950   'dst_region' => '0',
4951   'is_dst' => '0',
4952 ))
4953 ->values(array(
4954   'timezone' => '47',
4955   'name' => 'America/Belize',
4956   'offset' => '-06:00:00',
4957   'offset_dst' => '-06:00:00',
4958   'dst_region' => '0',
4959   'is_dst' => '0',
4960 ))
4961 ->values(array(
4962   'timezone' => '48',
4963   'name' => 'America/Boa Vista',
4964   'offset' => '-04:00:00',
4965   'offset_dst' => '-04:00:00',
4966   'dst_region' => '0',
4967   'is_dst' => '0',
4968 ))
4969 ->values(array(
4970   'timezone' => '49',
4971   'name' => 'America/Bogota',
4972   'offset' => '-05:00:00',
4973   'offset_dst' => '-05:00:00',
4974   'dst_region' => '0',
4975   'is_dst' => '0',
4976 ))
4977 ->values(array(
4978   'timezone' => '50',
4979   'name' => 'America/Boise',
4980   'offset' => '-07:00:00',
4981   'offset_dst' => '-06:00:00',
4982   'dst_region' => '15',
4983   'is_dst' => '0',
4984 ))
4985 ->values(array(
4986   'timezone' => '51',
4987   'name' => 'America/Buenos Aires',
4988   'offset' => '-03:00:00',
4989   'offset_dst' => '-03:00:00',
4990   'dst_region' => '0',
4991   'is_dst' => '0',
4992 ))
4993 ->values(array(
4994   'timezone' => '52',
4995   'name' => 'America/Cambridge Bay',
4996   'offset' => '-07:00:00',
4997   'offset_dst' => '-06:00:00',
4998   'dst_region' => '15',
4999   'is_dst' => '0',
5000 ))
5001 ->values(array(
5002   'timezone' => '53',
5003   'name' => 'America/Cancun',
5004   'offset' => '-06:00:00',
5005   'offset_dst' => '-05:00:00',
5006   'dst_region' => '15',
5007   'is_dst' => '0',
5008 ))
5009 ->values(array(
5010   'timezone' => '54',
5011   'name' => 'America/Caracas',
5012   'offset' => '-04:00:00',
5013   'offset_dst' => '-04:00:00',
5014   'dst_region' => '0',
5015   'is_dst' => '0',
5016 ))
5017 ->values(array(
5018   'timezone' => '55',
5019   'name' => 'America/Catamarca',
5020   'offset' => '-03:00:00',
5021   'offset_dst' => '-03:00:00',
5022   'dst_region' => '0',
5023   'is_dst' => '0',
5024 ))
5025 ->values(array(
5026   'timezone' => '56',
5027   'name' => 'America/Cayenne',
5028   'offset' => '-03:00:00',
5029   'offset_dst' => '-03:00:00',
5030   'dst_region' => '0',
5031   'is_dst' => '0',
5032 ))
5033 ->values(array(
5034   'timezone' => '57',
5035   'name' => 'America/Cayman',
5036   'offset' => '-05:00:00',
5037   'offset_dst' => '-05:00:00',
5038   'dst_region' => '0',
5039   'is_dst' => '0',
5040 ))
5041 ->values(array(
5042   'timezone' => '58',
5043   'name' => 'America/Chicago',
5044   'offset' => '-06:00:00',
5045   'offset_dst' => '-05:00:00',
5046   'dst_region' => '15',
5047   'is_dst' => '0',
5048 ))
5049 ->values(array(
5050   'timezone' => '59',
5051   'name' => 'America/Chihuahua',
5052   'offset' => '-07:00:00',
5053   'offset_dst' => '-06:00:00',
5054   'dst_region' => '15',
5055   'is_dst' => '0',
5056 ))
5057 ->values(array(
5058   'timezone' => '60',
5059   'name' => 'America/Cordoba',
5060   'offset' => '-03:00:00',
5061   'offset_dst' => '-03:00:00',
5062   'dst_region' => '0',
5063   'is_dst' => '0',
5064 ))
5065 ->values(array(
5066   'timezone' => '61',
5067   'name' => 'America/Costa Rica',
5068   'offset' => '-06:00:00',
5069   'offset_dst' => '-06:00:00',
5070   'dst_region' => '0',
5071   'is_dst' => '0',
5072 ))
5073 ->values(array(
5074   'timezone' => '62',
5075   'name' => 'America/Cuiaba',
5076   'offset' => '-03:00:00',
5077   'offset_dst' => '-04:00:00',
5078   'dst_region' => '17',
5079   'is_dst' => '0',
5080 ))
5081 ->values(array(
5082   'timezone' => '63',
5083   'name' => 'America/Curacao',
5084   'offset' => '-04:00:00',
5085   'offset_dst' => '-04:00:00',
5086   'dst_region' => '0',
5087   'is_dst' => '0',
5088 ))
5089 ->values(array(
5090   'timezone' => '64',
5091   'name' => 'America/Dawson',
5092   'offset' => '-08:00:00',
5093   'offset_dst' => '-07:00:00',
5094   'dst_region' => '15',
5095   'is_dst' => '0',
5096 ))
5097 ->values(array(
5098   'timezone' => '65',
5099   'name' => 'America/Dawson Creek',
5100   'offset' => '-07:00:00',
5101   'offset_dst' => '-07:00:00',
5102   'dst_region' => '0',
5103   'is_dst' => '0',
5104 ))
5105 ->values(array(
5106   'timezone' => '66',
5107   'name' => 'America/Denver',
5108   'offset' => '-07:00:00',
5109   'offset_dst' => '-06:00:00',
5110   'dst_region' => '15',
5111   'is_dst' => '0',
5112 ))
5113 ->values(array(
5114   'timezone' => '67',
5115   'name' => 'America/Detroit',
5116   'offset' => '-05:00:00',
5117   'offset_dst' => '-04:00:00',
5118   'dst_region' => '15',
5119   'is_dst' => '0',
5120 ))
5121 ->values(array(
5122   'timezone' => '68',
5123   'name' => 'America/Dominica',
5124   'offset' => '-04:00:00',
5125   'offset_dst' => '-04:00:00',
5126   'dst_region' => '0',
5127   'is_dst' => '0',
5128 ))
5129 ->values(array(
5130   'timezone' => '69',
5131   'name' => 'America/Edmonton',
5132   'offset' => '-07:00:00',
5133   'offset_dst' => '-06:00:00',
5134   'dst_region' => '15',
5135   'is_dst' => '0',
5136 ))
5137 ->values(array(
5138   'timezone' => '70',
5139   'name' => 'America/Eirunepe',
5140   'offset' => '-05:00:00',
5141   'offset_dst' => '-05:00:00',
5142   'dst_region' => '0',
5143   'is_dst' => '0',
5144 ))
5145 ->values(array(
5146   'timezone' => '71',
5147   'name' => 'America/El Salvador',
5148   'offset' => '-06:00:00',
5149   'offset_dst' => '-06:00:00',
5150   'dst_region' => '0',
5151   'is_dst' => '0',
5152 ))
5153 ->values(array(
5154   'timezone' => '72',
5155   'name' => 'America/Ensenada',
5156   'offset' => '-08:00:00',
5157   'offset_dst' => '-07:00:00',
5158   'dst_region' => '15',
5159   'is_dst' => '0',
5160 ))
5161 ->values(array(
5162   'timezone' => '73',
5163   'name' => 'America/Fort Wayne',
5164   'offset' => '-05:00:00',
5165   'offset_dst' => '-05:00:00',
5166   'dst_region' => '0',
5167   'is_dst' => '0',
5168 ))
5169 ->values(array(
5170   'timezone' => '74',
5171   'name' => 'America/Fortaleza',
5172   'offset' => '-03:00:00',
5173   'offset_dst' => '-03:00:00',
5174   'dst_region' => '0',
5175   'is_dst' => '0',
5176 ))
5177 ->values(array(
5178   'timezone' => '75',
5179   'name' => 'America/Glace Bay',
5180   'offset' => '-04:00:00',
5181   'offset_dst' => '-03:00:00',
5182   'dst_region' => '15',
5183   'is_dst' => '0',
5184 ))
5185 ->values(array(
5186   'timezone' => '76',
5187   'name' => 'America/Godthab',
5188   'offset' => '-03:00:00',
5189   'offset_dst' => '-02:00:00',
5190   'dst_region' => '15',
5191   'is_dst' => '0',
5192 ))
5193 ->values(array(
5194   'timezone' => '77',
5195   'name' => 'America/Goose Bay',
5196   'offset' => '-04:00:00',
5197   'offset_dst' => '-03:00:00',
5198   'dst_region' => '15',
5199   'is_dst' => '0',
5200 ))
5201 ->values(array(
5202   'timezone' => '78',
5203   'name' => 'America/Grand Turk',
5204   'offset' => '-05:00:00',
5205   'offset_dst' => '-04:00:00',
5206   'dst_region' => '16',
5207   'is_dst' => '0',
5208 ))
5209 ->values(array(
5210   'timezone' => '79',
5211   'name' => 'America/Grenada',
5212   'offset' => '-04:00:00',
5213   'offset_dst' => '-04:00:00',
5214   'dst_region' => '0',
5215   'is_dst' => '0',
5216 ))
5217 ->values(array(
5218   'timezone' => '80',
5219   'name' => 'America/Guadeloupe',
5220   'offset' => '-04:00:00',
5221   'offset_dst' => '-04:00:00',
5222   'dst_region' => '0',
5223   'is_dst' => '0',
5224 ))
5225 ->values(array(
5226   'timezone' => '81',
5227   'name' => 'America/Guatemala',
5228   'offset' => '-06:00:00',
5229   'offset_dst' => '-06:00:00',
5230   'dst_region' => '0',
5231   'is_dst' => '0',
5232 ))
5233 ->values(array(
5234   'timezone' => '82',
5235   'name' => 'America/Guayaquil',
5236   'offset' => '-05:00:00',
5237   'offset_dst' => '-05:00:00',
5238   'dst_region' => '0',
5239   'is_dst' => '0',
5240 ))
5241 ->values(array(
5242   'timezone' => '83',
5243   'name' => 'America/Guyana',
5244   'offset' => '-04:00:00',
5245   'offset_dst' => '-04:00:00',
5246   'dst_region' => '0',
5247   'is_dst' => '0',
5248 ))
5249 ->values(array(
5250   'timezone' => '84',
5251   'name' => 'America/Halifax',
5252   'offset' => '-04:00:00',
5253   'offset_dst' => '-03:00:00',
5254   'dst_region' => '15',
5255   'is_dst' => '0',
5256 ))
5257 ->values(array(
5258   'timezone' => '85',
5259   'name' => 'America/Havana',
5260   'offset' => '-05:00:00',
5261   'offset_dst' => '-04:00:00',
5262   'dst_region' => '16',
5263   'is_dst' => '0',
5264 ))
5265 ->values(array(
5266   'timezone' => '86',
5267   'name' => 'America/Hermosillo',
5268   'offset' => '-07:00:00',
5269   'offset_dst' => '-07:00:00',
5270   'dst_region' => '0',
5271   'is_dst' => '0',
5272 ))
5273 ->values(array(
5274   'timezone' => '87',
5275   'name' => 'America/Indiana/Indianapolis',
5276   'offset' => '-05:00:00',
5277   'offset_dst' => '-05:00:00',
5278   'dst_region' => '0',
5279   'is_dst' => '0',
5280 ))
5281 ->values(array(
5282   'timezone' => '88',
5283   'name' => 'America/Indiana/Knox',
5284   'offset' => '-05:00:00',
5285   'offset_dst' => '-05:00:00',
5286   'dst_region' => '0',
5287   'is_dst' => '0',
5288 ))
5289 ->values(array(
5290   'timezone' => '89',
5291   'name' => 'America/Indiana/Marengo',
5292   'offset' => '-05:00:00',
5293   'offset_dst' => '-05:00:00',
5294   'dst_region' => '0',
5295   'is_dst' => '0',
5296 ))
5297 ->values(array(
5298   'timezone' => '90',
5299   'name' => 'America/Indiana/Vevay',
5300   'offset' => '-05:00:00',
5301   'offset_dst' => '-05:00:00',
5302   'dst_region' => '0',
5303   'is_dst' => '0',
5304 ))
5305 ->values(array(
5306   'timezone' => '91',
5307   'name' => 'America/Indianapolis',
5308   'offset' => '-05:00:00',
5309   'offset_dst' => '-05:00:00',
5310   'dst_region' => '0',
5311   'is_dst' => '0',
5312 ))
5313 ->values(array(
5314   'timezone' => '92',
5315   'name' => 'America/Inuvik',
5316   'offset' => '-07:00:00',
5317   'offset_dst' => '-06:00:00',
5318   'dst_region' => '15',
5319   'is_dst' => '0',
5320 ))
5321 ->values(array(
5322   'timezone' => '93',
5323   'name' => 'America/Iqaluit',
5324   'offset' => '-05:00:00',
5325   'offset_dst' => '-04:00:00',
5326   'dst_region' => '15',
5327   'is_dst' => '0',
5328 ))
5329 ->values(array(
5330   'timezone' => '94',
5331   'name' => 'America/Jamaica',
5332   'offset' => '-05:00:00',
5333   'offset_dst' => '-05:00:00',
5334   'dst_region' => '0',
5335   'is_dst' => '0',
5336 ))
5337 ->values(array(
5338   'timezone' => '95',
5339   'name' => 'America/Jujuy',
5340   'offset' => '-03:00:00',
5341   'offset_dst' => '-03:00:00',
5342   'dst_region' => '0',
5343   'is_dst' => '0',
5344 ))
5345 ->values(array(
5346   'timezone' => '96',
5347   'name' => 'America/Juneau',
5348   'offset' => '-09:00:00',
5349   'offset_dst' => '-08:00:00',
5350   'dst_region' => '15',
5351   'is_dst' => '0',
5352 ))
5353 ->values(array(
5354   'timezone' => '97',
5355   'name' => 'America/Kentucky/Louisville',
5356   'offset' => '-05:00:00',
5357   'offset_dst' => '-04:00:00',
5358   'dst_region' => '15',
5359   'is_dst' => '0',
5360 ))
5361 ->values(array(
5362   'timezone' => '98',
5363   'name' => 'America/Kentucky/Monticello',
5364   'offset' => '-05:00:00',
5365   'offset_dst' => '-04:00:00',
5366   'dst_region' => '15',
5367   'is_dst' => '0',
5368 ))
5369 ->values(array(
5370   'timezone' => '99',
5371   'name' => 'America/Knox IN',
5372   'offset' => '-05:00:00',
5373   'offset_dst' => '-05:00:00',
5374   'dst_region' => '0',
5375   'is_dst' => '0',
5376 ))
5377 ->values(array(
5378   'timezone' => '100',
5379   'name' => 'America/La Paz',
5380   'offset' => '-04:00:00',
5381   'offset_dst' => '-04:00:00',
5382   'dst_region' => '0',
5383   'is_dst' => '0',
5384 ))
5385 ->values(array(
5386   'timezone' => '101',
5387   'name' => 'America/Lima',
5388   'offset' => '-05:00:00',
5389   'offset_dst' => '-05:00:00',
5390   'dst_region' => '0',
5391   'is_dst' => '0',
5392 ))
5393 ->values(array(
5394   'timezone' => '102',
5395   'name' => 'America/Los Angeles',
5396   'offset' => '-08:00:00',
5397   'offset_dst' => '-07:00:00',
5398   'dst_region' => '15',
5399   'is_dst' => '0',
5400 ))
5401 ->values(array(
5402   'timezone' => '103',
5403   'name' => 'America/Louisville',
5404   'offset' => '-05:00:00',
5405   'offset_dst' => '-04:00:00',
5406   'dst_region' => '15',
5407   'is_dst' => '0',
5408 ))
5409 ->values(array(
5410   'timezone' => '104',
5411   'name' => 'America/Maceio',
5412   'offset' => '-03:00:00',
5413   'offset_dst' => '-03:00:00',
5414   'dst_region' => '0',
5415   'is_dst' => '0',
5416 ))
5417 ->values(array(
5418   'timezone' => '105',
5419   'name' => 'America/Managua',
5420   'offset' => '-06:00:00',
5421   'offset_dst' => '-06:00:00',
5422   'dst_region' => '0',
5423   'is_dst' => '0',
5424 ))
5425 ->values(array(
5426   'timezone' => '106',
5427   'name' => 'America/Manaus',
5428   'offset' => '-04:00:00',
5429   'offset_dst' => '-04:00:00',
5430   'dst_region' => '0',
5431   'is_dst' => '0',
5432 ))
5433 ->values(array(
5434   'timezone' => '107',
5435   'name' => 'America/Martinique',
5436   'offset' => '-04:00:00',
5437   'offset_dst' => '-04:00:00',
5438   'dst_region' => '0',
5439   'is_dst' => '0',
5440 ))
5441 ->values(array(
5442   'timezone' => '108',
5443   'name' => 'America/Mazatlan',
5444   'offset' => '-07:00:00',
5445   'offset_dst' => '-06:00:00',
5446   'dst_region' => '15',
5447   'is_dst' => '0',
5448 ))
5449 ->values(array(
5450   'timezone' => '109',
5451   'name' => 'America/Mendoza',
5452   'offset' => '-03:00:00',
5453   'offset_dst' => '-03:00:00',
5454   'dst_region' => '0',
5455   'is_dst' => '0',
5456 ))
5457 ->values(array(
5458   'timezone' => '110',
5459   'name' => 'America/Menominee',
5460   'offset' => '-06:00:00',
5461   'offset_dst' => '-05:00:00',
5462   'dst_region' => '15',
5463   'is_dst' => '0',
5464 ))
5465 ->values(array(
5466   'timezone' => '111',
5467   'name' => 'America/Merida',
5468   'offset' => '-06:00:00',
5469   'offset_dst' => '-05:00:00',
5470   'dst_region' => '15',
5471   'is_dst' => '0',
5472 ))
5473 ->values(array(
5474   'timezone' => '112',
5475   'name' => 'America/Mexico City',
5476   'offset' => '-06:00:00',
5477   'offset_dst' => '-05:00:00',
5478   'dst_region' => '15',
5479   'is_dst' => '0',
5480 ))
5481 ->values(array(
5482   'timezone' => '113',
5483   'name' => 'America/Miquelon',
5484   'offset' => '-03:00:00',
5485   'offset_dst' => '-02:00:00',
5486   'dst_region' => '15',
5487   'is_dst' => '0',
5488 ))
5489 ->values(array(
5490   'timezone' => '114',
5491   'name' => 'America/Monterrey',
5492   'offset' => '-06:00:00',
5493   'offset_dst' => '-05:00:00',
5494   'dst_region' => '15',
5495   'is_dst' => '0',
5496 ))
5497 ->values(array(
5498   'timezone' => '115',
5499   'name' => 'America/Montevideo',
5500   'offset' => '-03:00:00',
5501   'offset_dst' => '-03:00:00',
5502   'dst_region' => '0',
5503   'is_dst' => '0',
5504 ))
5505 ->values(array(
5506   'timezone' => '116',
5507   'name' => 'America/Montreal',
5508   'offset' => '-05:00:00',
5509   'offset_dst' => '-04:00:00',
5510   'dst_region' => '15',
5511   'is_dst' => '0',
5512 ))
5513 ->values(array(
5514   'timezone' => '117',
5515   'name' => 'America/Montserrat',
5516   'offset' => '-04:00:00',
5517   'offset_dst' => '-04:00:00',
5518   'dst_region' => '0',
5519   'is_dst' => '0',
5520 ))
5521 ->values(array(
5522   'timezone' => '118',
5523   'name' => 'America/Nassau',
5524   'offset' => '-05:00:00',
5525   'offset_dst' => '-04:00:00',
5526   'dst_region' => '15',
5527   'is_dst' => '0',
5528 ))
5529 ->values(array(
5530   'timezone' => '119',
5531   'name' => 'America/New York',
5532   'offset' => '-05:00:00',
5533   'offset_dst' => '-04:00:00',
5534   'dst_region' => '15',
5535   'is_dst' => '0',
5536 ))
5537 ->values(array(
5538   'timezone' => '120',
5539   'name' => 'America/Nipigon',
5540   'offset' => '-05:00:00',
5541   'offset_dst' => '-04:00:00',
5542   'dst_region' => '15',
5543   'is_dst' => '0',
5544 ))
5545 ->values(array(
5546   'timezone' => '121',
5547   'name' => 'America/Nome',
5548   'offset' => '-09:00:00',
5549   'offset_dst' => '-08:00:00',
5550   'dst_region' => '15',
5551   'is_dst' => '0',
5552 ))
5553 ->values(array(
5554   'timezone' => '122',
5555   'name' => 'America/Noronha',
5556   'offset' => '-02:00:00',
5557   'offset_dst' => '-02:00:00',
5558   'dst_region' => '0',
5559   'is_dst' => '0',
5560 ))
5561 ->values(array(
5562   'timezone' => '123',
5563   'name' => 'America/Panama',
5564   'offset' => '-05:00:00',
5565   'offset_dst' => '-05:00:00',
5566   'dst_region' => '0',
5567   'is_dst' => '0',
5568 ))
5569 ->values(array(
5570   'timezone' => '124',
5571   'name' => 'America/Pangnirtung',
5572   'offset' => '-05:00:00',
5573   'offset_dst' => '-04:00:00',
5574   'dst_region' => '15',
5575   'is_dst' => '0',
5576 ))
5577 ->values(array(
5578   'timezone' => '125',
5579   'name' => 'America/Paramaribo',
5580   'offset' => '-03:00:00',
5581   'offset_dst' => '-03:00:00',
5582   'dst_region' => '0',
5583   'is_dst' => '0',
5584 ))
5585 ->values(array(
5586   'timezone' => '126',
5587   'name' => 'America/Phoenix',
5588   'offset' => '-07:00:00',
5589   'offset_dst' => '-07:00:00',
5590   'dst_region' => '0',
5591   'is_dst' => '0',
5592 ))
5593 ->values(array(
5594   'timezone' => '127',
5595   'name' => 'America/Port-au-Prince',
5596   'offset' => '-05:00:00',
5597   'offset_dst' => '-05:00:00',
5598   'dst_region' => '0',
5599   'is_dst' => '0',
5600 ))
5601 ->values(array(
5602   'timezone' => '128',
5603   'name' => 'America/Port of Spain',
5604   'offset' => '-04:00:00',
5605   'offset_dst' => '-04:00:00',
5606   'dst_region' => '0',
5607   'is_dst' => '0',
5608 ))
5609 ->values(array(
5610   'timezone' => '129',
5611   'name' => 'America/Porto Acre',
5612   'offset' => '-05:00:00',
5613   'offset_dst' => '-05:00:00',
5614   'dst_region' => '0',
5615   'is_dst' => '0',
5616 ))
5617 ->values(array(
5618   'timezone' => '130',
5619   'name' => 'America/Porto Velho',
5620   'offset' => '-04:00:00',
5621   'offset_dst' => '-04:00:00',
5622   'dst_region' => '0',
5623   'is_dst' => '0',
5624 ))
5625 ->values(array(
5626   'timezone' => '131',
5627   'name' => 'America/Puerto Rico',
5628   'offset' => '-04:00:00',
5629   'offset_dst' => '-04:00:00',
5630   'dst_region' => '0',
5631   'is_dst' => '0',
5632 ))
5633 ->values(array(
5634   'timezone' => '132',
5635   'name' => 'America/Rainy River',
5636   'offset' => '-06:00:00',
5637   'offset_dst' => '-05:00:00',
5638   'dst_region' => '15',
5639   'is_dst' => '0',
5640 ))
5641 ->values(array(
5642   'timezone' => '133',
5643   'name' => 'America/Rankin Inlet',
5644   'offset' => '-06:00:00',
5645   'offset_dst' => '-05:00:00',
5646   'dst_region' => '15',
5647   'is_dst' => '0',
5648 ))
5649 ->values(array(
5650   'timezone' => '134',
5651   'name' => 'America/Recife',
5652   'offset' => '-03:00:00',
5653   'offset_dst' => '-03:00:00',
5654   'dst_region' => '0',
5655   'is_dst' => '0',
5656 ))
5657 ->values(array(
5658   'timezone' => '135',
5659   'name' => 'America/Regina',
5660   'offset' => '-06:00:00',
5661   'offset_dst' => '-06:00:00',
5662   'dst_region' => '0',
5663   'is_dst' => '0',
5664 ))
5665 ->values(array(
5666   'timezone' => '136',
5667   'name' => 'America/Rio Branco',
5668   'offset' => '-05:00:00',
5669   'offset_dst' => '-05:00:00',
5670   'dst_region' => '0',
5671   'is_dst' => '0',
5672 ))
5673 ->values(array(
5674   'timezone' => '137',
5675   'name' => 'America/Rosario',
5676   'offset' => '-03:00:00',
5677   'offset_dst' => '-03:00:00',
5678   'dst_region' => '0',
5679   'is_dst' => '0',
5680 ))
5681 ->values(array(
5682   'timezone' => '138',
5683   'name' => 'America/Santiago',
5684   'offset' => '-03:00:00',
5685   'offset_dst' => '-04:00:00',
5686   'dst_region' => '15',
5687   'is_dst' => '0',
5688 ))
5689 ->values(array(
5690   'timezone' => '139',
5691   'name' => 'America/Santo Domingo',
5692   'offset' => '-04:00:00',
5693   'offset_dst' => '-04:00:00',
5694   'dst_region' => '0',
5695   'is_dst' => '0',
5696 ))
5697 ->values(array(
5698   'timezone' => '140',
5699   'name' => 'America/Sao Paulo',
5700   'offset' => '-02:00:00',
5701   'offset_dst' => '-03:00:00',
5702   'dst_region' => '15',
5703   'is_dst' => '0',
5704 ))
5705 ->values(array(
5706   'timezone' => '141',
5707   'name' => 'America/Scoresbysund',
5708   'offset' => '-01:00:00',
5709   'offset_dst' => '00:00:00',
5710   'dst_region' => '15',
5711   'is_dst' => '0',
5712 ))
5713 ->values(array(
5714   'timezone' => '142',
5715   'name' => 'America/Shiprock',
5716   'offset' => '-07:00:00',
5717   'offset_dst' => '-06:00:00',
5718   'dst_region' => '15',
5719   'is_dst' => '0',
5720 ))
5721 ->values(array(
5722   'timezone' => '143',
5723   'name' => 'America/St Johns',
5724   'offset' => '-03:30:00',
5725   'offset_dst' => '-02:30:00',
5726   'dst_region' => '15',
5727   'is_dst' => '0',
5728 ))
5729 ->values(array(
5730   'timezone' => '144',
5731   'name' => 'America/St Kitts',
5732   'offset' => '-04:00:00',
5733   'offset_dst' => '-04:00:00',
5734   'dst_region' => '0',
5735   'is_dst' => '0',
5736 ))
5737 ->values(array(
5738   'timezone' => '145',
5739   'name' => 'America/St Lucia',
5740   'offset' => '-04:00:00',
5741   'offset_dst' => '-04:00:00',
5742   'dst_region' => '0',
5743   'is_dst' => '0',
5744 ))
5745 ->values(array(
5746   'timezone' => '146',
5747   'name' => 'America/St Thomas',
5748   'offset' => '-04:00:00',
5749   'offset_dst' => '-04:00:00',
5750   'dst_region' => '0',
5751   'is_dst' => '0',
5752 ))
5753 ->values(array(
5754   'timezone' => '147',
5755   'name' => 'America/St Vincent',
5756   'offset' => '-04:00:00',
5757   'offset_dst' => '-04:00:00',
5758   'dst_region' => '0',
5759   'is_dst' => '0',
5760 ))
5761 ->values(array(
5762   'timezone' => '148',
5763   'name' => 'America/Swift Current',
5764   'offset' => '-06:00:00',
5765   'offset_dst' => '-06:00:00',
5766   'dst_region' => '0',
5767   'is_dst' => '0',
5768 ))
5769 ->values(array(
5770   'timezone' => '149',
5771   'name' => 'America/Tegucigalpa',
5772   'offset' => '-06:00:00',
5773   'offset_dst' => '-06:00:00',
5774   'dst_region' => '0',
5775   'is_dst' => '0',
5776 ))
5777 ->values(array(
5778   'timezone' => '150',
5779   'name' => 'America/Thule',
5780   'offset' => '-04:00:00',
5781   'offset_dst' => '-03:00:00',
5782   'dst_region' => '15',
5783   'is_dst' => '0',
5784 ))
5785 ->values(array(
5786   'timezone' => '151',
5787   'name' => 'America/Thunder Bay',
5788   'offset' => '-05:00:00',
5789   'offset_dst' => '-04:00:00',
5790   'dst_region' => '15',
5791   'is_dst' => '0',
5792 ))
5793 ->values(array(
5794   'timezone' => '152',
5795   'name' => 'America/Tijuana',
5796   'offset' => '-08:00:00',
5797   'offset_dst' => '-07:00:00',
5798   'dst_region' => '15',
5799   'is_dst' => '0',
5800 ))
5801 ->values(array(
5802   'timezone' => '153',
5803   'name' => 'America/Tortola',
5804   'offset' => '-04:00:00',
5805   'offset_dst' => '-04:00:00',
5806   'dst_region' => '0',
5807   'is_dst' => '0',
5808 ))
5809 ->values(array(
5810   'timezone' => '154',
5811   'name' => 'America/Vancouver',
5812   'offset' => '-08:00:00',
5813   'offset_dst' => '-07:00:00',
5814   'dst_region' => '15',
5815   'is_dst' => '0',
5816 ))
5817 ->values(array(
5818   'timezone' => '155',
5819   'name' => 'America/Virgin',
5820   'offset' => '-04:00:00',
5821   'offset_dst' => '-04:00:00',
5822   'dst_region' => '0',
5823   'is_dst' => '0',
5824 ))
5825 ->values(array(
5826   'timezone' => '156',
5827   'name' => 'America/Whitehorse',
5828   'offset' => '-08:00:00',
5829   'offset_dst' => '-07:00:00',
5830   'dst_region' => '15',
5831   'is_dst' => '0',
5832 ))
5833 ->values(array(
5834   'timezone' => '157',
5835   'name' => 'America/Winnipeg',
5836   'offset' => '-06:00:00',
5837   'offset_dst' => '-05:00:00',
5838   'dst_region' => '15',
5839   'is_dst' => '0',
5840 ))
5841 ->values(array(
5842   'timezone' => '158',
5843   'name' => 'America/Yakutat',
5844   'offset' => '-09:00:00',
5845   'offset_dst' => '-08:00:00',
5846   'dst_region' => '15',
5847   'is_dst' => '0',
5848 ))
5849 ->values(array(
5850   'timezone' => '159',
5851   'name' => 'America/Yellowknife',
5852   'offset' => '-07:00:00',
5853   'offset_dst' => '-06:00:00',
5854   'dst_region' => '15',
5855   'is_dst' => '0',
5856 ))
5857 ->values(array(
5858   'timezone' => '160',
5859   'name' => 'Antarctica/Casey',
5860   'offset' => '08:00:00',
5861   'offset_dst' => '08:00:00',
5862   'dst_region' => '0',
5863   'is_dst' => '0',
5864 ))
5865 ->values(array(
5866   'timezone' => '161',
5867   'name' => 'Antarctica/Davis',
5868   'offset' => '07:00:00',
5869   'offset_dst' => '07:00:00',
5870   'dst_region' => '0',
5871   'is_dst' => '0',
5872 ))
5873 ->values(array(
5874   'timezone' => '162',
5875   'name' => 'Antarctica/DumontDUrville',
5876   'offset' => '10:00:00',
5877   'offset_dst' => '10:00:00',
5878   'dst_region' => '0',
5879   'is_dst' => '0',
5880 ))
5881 ->values(array(
5882   'timezone' => '163',
5883   'name' => 'Antarctica/Mawson',
5884   'offset' => '06:00:00',
5885   'offset_dst' => '06:00:00',
5886   'dst_region' => '0',
5887   'is_dst' => '0',
5888 ))
5889 ->values(array(
5890   'timezone' => '164',
5891   'name' => 'Antarctica/McMurdo',
5892   'offset' => '13:00:00',
5893   'offset_dst' => '12:00:00',
5894   'dst_region' => '11',
5895   'is_dst' => '0',
5896 ))
5897 ->values(array(
5898   'timezone' => '165',
5899   'name' => 'Antarctica/Palmer',
5900   'offset' => '-03:00:00',
5901   'offset_dst' => '-04:00:00',
5902   'dst_region' => '18',
5903   'is_dst' => '0',
5904 ))
5905 ->values(array(
5906   'timezone' => '166',
5907   'name' => 'Antarctica/South Pole',
5908   'offset' => '13:00:00',
5909   'offset_dst' => '12:00:00',
5910   'dst_region' => '11',
5911   'is_dst' => '0',
5912 ))
5913 ->values(array(
5914   'timezone' => '167',
5915   'name' => 'Antarctica/Syowa',
5916   'offset' => '03:00:00',
5917   'offset_dst' => '03:00:00',
5918   'dst_region' => '0',
5919   'is_dst' => '0',
5920 ))
5921 ->values(array(
5922   'timezone' => '168',
5923   'name' => 'Antarctica/Vostok',
5924   'offset' => '06:00:00',
5925   'offset_dst' => '06:00:00',
5926   'dst_region' => '0',
5927   'is_dst' => '0',
5928 ))
5929 ->values(array(
5930   'timezone' => '169',
5931   'name' => 'Arctic/Longyearbyen',
5932   'offset' => '01:00:00',
5933   'offset_dst' => '02:00:00',
5934   'dst_region' => '14',
5935   'is_dst' => '0',
5936 ))
5937 ->values(array(
5938   'timezone' => '170',
5939   'name' => 'Asia/Aden',
5940   'offset' => '03:00:00',
5941   'offset_dst' => '03:00:00',
5942   'dst_region' => '0',
5943   'is_dst' => '0',
5944 ))
5945 ->values(array(
5946   'timezone' => '171',
5947   'name' => 'Asia/Almaty',
5948   'offset' => '06:00:00',
5949   'offset_dst' => '06:00:00',
5950   'dst_region' => '0',
5951   'is_dst' => '0',
5952 ))
5953 ->values(array(
5954   'timezone' => '172',
5955   'name' => 'Asia/Amman',
5956   'offset' => '02:00:00',
5957   'offset_dst' => '03:00:00',
5958   'dst_region' => '8',
5959   'is_dst' => '0',
5960 ))
5961 ->values(array(
5962   'timezone' => '173',
5963   'name' => 'Asia/Anadyr',
5964   'offset' => '12:00:00',
5965   'offset_dst' => '13:00:00',
5966   'dst_region' => '3',
5967   'is_dst' => '0',
5968 ))
5969 ->values(array(
5970   'timezone' => '174',
5971   'name' => 'Asia/Aqtau',
5972   'offset' => '04:00:00',
5973   'offset_dst' => '05:00:00',
5974   'dst_region' => '3',
5975   'is_dst' => '0',
5976 ))
5977 ->values(array(
5978   'timezone' => '175',
5979   'name' => 'Asia/Aqtobe',
5980   'offset' => '05:00:00',
5981   'offset_dst' => '06:00:00',
5982   'dst_region' => '3',
5983   'is_dst' => '0',
5984 ))
5985 ->values(array(
5986   'timezone' => '176',
5987   'name' => 'Asia/Ashgabat',
5988   'offset' => '05:00:00',
5989   'offset_dst' => '05:00:00',
5990   'dst_region' => '0',
5991   'is_dst' => '0',
5992 ))
5993 ->values(array(
5994   'timezone' => '177',
5995   'name' => 'Asia/Ashkhabad',
5996   'offset' => '05:00:00',
5997   'offset_dst' => '05:00:00',
5998   'dst_region' => '0',
5999   'is_dst' => '0',
6000 ))
6001 ->values(array(
6002   'timezone' => '178',
6003   'name' => 'Asia/Baghdad',
6004   'offset' => '03:00:00',
6005   'offset_dst' => '04:00:00',
6006   'dst_region' => '4',
6007   'is_dst' => '0',
6008 ))
6009 ->values(array(
6010   'timezone' => '179',
6011   'name' => 'Asia/Bahrain',
6012   'offset' => '03:00:00',
6013   'offset_dst' => '03:00:00',
6014   'dst_region' => '0',
6015   'is_dst' => '0',
6016 ))
6017 ->values(array(
6018   'timezone' => '180',
6019   'name' => 'Asia/Baku',
6020   'offset' => '04:00:00',
6021   'offset_dst' => '05:00:00',
6022   'dst_region' => '3',
6023   'is_dst' => '0',
6024 ))
6025 ->values(array(
6026   'timezone' => '181',
6027   'name' => 'Asia/Bangkok',
6028   'offset' => '07:00:00',
6029   'offset_dst' => '07:00:00',
6030   'dst_region' => '0',
6031   'is_dst' => '0',
6032 ))
6033 ->values(array(
6034   'timezone' => '182',
6035   'name' => 'Asia/Beirut',
6036   'offset' => '02:00:00',
6037   'offset_dst' => '03:00:00',
6038   'dst_region' => '6',
6039   'is_dst' => '0',
6040 ))
6041 ->values(array(
6042   'timezone' => '183',
6043   'name' => 'Asia/Bishkek',
6044   'offset' => '05:00:00',
6045   'offset_dst' => '06:00:00',
6046   'dst_region' => '6',
6047   'is_dst' => '0',
6048 ))
6049 ->values(array(
6050   'timezone' => '184',
6051   'name' => 'Asia/Brunei',
6052   'offset' => '08:00:00',
6053   'offset_dst' => '08:00:00',
6054   'dst_region' => '0',
6055   'is_dst' => '0',
6056 ))
6057 ->values(array(
6058   'timezone' => '185',
6059   'name' => 'Asia/Calcutta',
6060   'offset' => '05:30:00',
6061   'offset_dst' => '05:30:30',
6062   'dst_region' => '0',
6063   'is_dst' => '0',
6064 ))
6065 ->values(array(
6066   'timezone' => '186',
6067   'name' => 'Asia/Chungking',
6068   'offset' => '08:00:00',
6069   'offset_dst' => '08:00:00',
6070   'dst_region' => '0',
6071   'is_dst' => '0',
6072 ))
6073 ->values(array(
6074   'timezone' => '187',
6075   'name' => 'Asia/Colombo',
6076   'offset' => '06:00:00',
6077   'offset_dst' => '06:00:00',
6078   'dst_region' => '0',
6079   'is_dst' => '0',
6080 ))
6081 ->values(array(
6082   'timezone' => '188',
6083   'name' => 'Asia/Dacca',
6084   'offset' => '06:00:00',
6085   'offset_dst' => '06:00:00',
6086   'dst_region' => '0',
6087   'is_dst' => '0',
6088 ))
6089 ->values(array(
6090   'timezone' => '189',
6091   'name' => 'Asia/Damascus',
6092   'offset' => '02:00:00',
6093   'offset_dst' => '03:00:00',
6094   'dst_region' => '4',
6095   'is_dst' => '0',
6096 ))
6097 ->values(array(
6098   'timezone' => '190',
6099   'name' => 'Asia/Dhaka',
6100   'offset' => '06:00:00',
6101   'offset_dst' => '06:00:00',
6102   'dst_region' => '0',
6103   'is_dst' => '0',
6104 ))
6105 ->values(array(
6106   'timezone' => '191',
6107   'name' => 'Asia/Dili',
6108   'offset' => '09:00:00',
6109   'offset_dst' => '09:00:00',
6110   'dst_region' => '0',
6111   'is_dst' => '0',
6112 ))
6113 ->values(array(
6114   'timezone' => '192',
6115   'name' => 'Asia/Dubai',
6116   'offset' => '04:00:00',
6117   'offset_dst' => '04:00:00',
6118   'dst_region' => '0',
6119   'is_dst' => '0',
6120 ))
6121 ->values(array(
6122   'timezone' => '193',
6123   'name' => 'Asia/Dushanbe',
6124   'offset' => '05:00:00',
6125   'offset_dst' => '05:00:00',
6126   'dst_region' => '0',
6127   'is_dst' => '0',
6128 ))
6129 ->values(array(
6130   'timezone' => '194',
6131   'name' => 'Asia/Gaza',
6132   'offset' => '02:00:00',
6133   'offset_dst' => '03:00:00',
6134   'dst_region' => '7',
6135   'is_dst' => '0',
6136 ))
6137 ->values(array(
6138   'timezone' => '195',
6139   'name' => 'Asia/Harbin',
6140   'offset' => '08:00:00',
6141   'offset_dst' => '08:00:00',
6142   'dst_region' => '0',
6143   'is_dst' => '0',
6144 ))
6145 ->values(array(
6146   'timezone' => '196',
6147   'name' => 'Asia/Hong Kong',
6148   'offset' => '08:00:00',
6149   'offset_dst' => '08:00:00',
6150   'dst_region' => '0',
6151   'is_dst' => '0',
6152 ))
6153 ->values(array(
6154   'timezone' => '197',
6155   'name' => 'Asia/Hovd',
6156   'offset' => '07:00:00',
6157   'offset_dst' => '07:00:00',
6158   'dst_region' => '0',
6159   'is_dst' => '0',
6160 ))
6161 ->values(array(
6162   'timezone' => '198',
6163   'name' => 'Asia/Irkutsk',
6164   'offset' => '08:00:00',
6165   'offset_dst' => '09:00:00',
6166   'dst_region' => '3',
6167   'is_dst' => '0',
6168 ))
6169 ->values(array(
6170   'timezone' => '199',
6171   'name' => 'Asia/Istanbul',
6172   'offset' => '02:00:00',
6173   'offset_dst' => '03:00:00',
6174   'dst_region' => '3',
6175   'is_dst' => '0',
6176 ))
6177 ->values(array(
6178   'timezone' => '200',
6179   'name' => 'Asia/Jakarta',
6180   'offset' => '07:00:00',
6181   'offset_dst' => '07:00:00',
6182   'dst_region' => '0',
6183   'is_dst' => '0',
6184 ))
6185 ->values(array(
6186   'timezone' => '201',
6187   'name' => 'Asia/Jayapura',
6188   'offset' => '09:00:00',
6189   'offset_dst' => '09:00:00',
6190   'dst_region' => '0',
6191   'is_dst' => '0',
6192 ))
6193 ->values(array(
6194   'timezone' => '202',
6195   'name' => 'Asia/Jerusalem',
6196   'offset' => '02:00:00',
6197   'offset_dst' => '03:00:00',
6198   'dst_region' => '5',
6199   'is_dst' => '0',
6200 ))
6201 ->values(array(
6202   'timezone' => '203',
6203   'name' => 'Asia/Kabul',
6204   'offset' => '04:30:00',
6205   'offset_dst' => '04:30:00',
6206   'dst_region' => '0',
6207   'is_dst' => '0',
6208 ))
6209 ->values(array(
6210   'timezone' => '204',
6211   'name' => 'Asia/Kamchatka',
6212   'offset' => '12:00:00',
6213   'offset_dst' => '13:00:00',
6214   'dst_region' => '3',
6215   'is_dst' => '0',
6216 ))
6217 ->values(array(
6218   'timezone' => '205',
6219   'name' => 'Asia/Karachi',
6220   'offset' => '05:00:00',
6221   'offset_dst' => '05:00:00',
6222   'dst_region' => '0',
6223   'is_dst' => '0',
6224 ))
6225 ->values(array(
6226   'timezone' => '206',
6227   'name' => 'Asia/Kashgar',
6228   'offset' => '08:00:00',
6229   'offset_dst' => '08:00:00',
6230   'dst_region' => '0',
6231   'is_dst' => '0',
6232 ))
6233 ->values(array(
6234   'timezone' => '207',
6235   'name' => 'Asia/Katmandu',
6236   'offset' => '05:45:00',
6237   'offset_dst' => '05:45:00',
6238   'dst_region' => '0',
6239   'is_dst' => '0',
6240 ))
6241 ->values(array(
6242   'timezone' => '208',
6243   'name' => 'Asia/Krasnoyarsk',
6244   'offset' => '07:00:00',
6245   'offset_dst' => '08:00:00',
6246   'dst_region' => '3',
6247   'is_dst' => '0',
6248 ))
6249 ->values(array(
6250   'timezone' => '209',
6251   'name' => 'Asia/Kuala Lumpur',
6252   'offset' => '08:00:00',
6253   'offset_dst' => '08:00:00',
6254   'dst_region' => '0',
6255   'is_dst' => '0',
6256 ))
6257 ->values(array(
6258   'timezone' => '210',
6259   'name' => 'Asia/Kuching',
6260   'offset' => '08:00:00',
6261   'offset_dst' => '08:00:00',
6262   'dst_region' => '0',
6263   'is_dst' => '0',
6264 ))
6265 ->values(array(
6266   'timezone' => '211',
6267   'name' => 'Asia/Kuwait',
6268   'offset' => '03:00:00',
6269   'offset_dst' => '03:00:00',
6270   'dst_region' => '0',
6271   'is_dst' => '0',
6272 ))
6273 ->values(array(
6274   'timezone' => '212',
6275   'name' => 'Asia/Macao',
6276   'offset' => '08:00:00',
6277   'offset_dst' => '08:00:00',
6278   'dst_region' => '0',
6279   'is_dst' => '0',
6280 ))
6281 ->values(array(
6282   'timezone' => '213',
6283   'name' => 'Asia/Magadan',
6284   'offset' => '11:00:00',
6285   'offset_dst' => '12:00:00',
6286   'dst_region' => '3',
6287   'is_dst' => '0',
6288 ))
6289 ->values(array(
6290   'timezone' => '214',
6291   'name' => 'Asia/Manila',
6292   'offset' => '08:00:00',
6293   'offset_dst' => '08:00:00',
6294   'dst_region' => '0',
6295   'is_dst' => '0',
6296 ))
6297 ->values(array(
6298   'timezone' => '215',
6299   'name' => 'Asia/Muscat',
6300   'offset' => '04:00:00',
6301   'offset_dst' => '04:00:00',
6302   'dst_region' => '0',
6303   'is_dst' => '0',
6304 ))
6305 ->values(array(
6306   'timezone' => '216',
6307   'name' => 'Asia/Nicosia',
6308   'offset' => '02:00:00',
6309   'offset_dst' => '03:00:00',
6310   'dst_region' => '3',
6311   'is_dst' => '0',
6312 ))
6313 ->values(array(
6314   'timezone' => '217',
6315   'name' => 'Asia/Novosibirsk',
6316   'offset' => '06:00:00',
6317   'offset_dst' => '07:00:00',
6318   'dst_region' => '3',
6319   'is_dst' => '0',
6320 ))
6321 ->values(array(
6322   'timezone' => '218',
6323   'name' => 'Asia/Omsk',
6324   'offset' => '06:00:00',
6325   'offset_dst' => '07:00:00',
6326   'dst_region' => '3',
6327   'is_dst' => '0',
6328 ))
6329 ->values(array(
6330   'timezone' => '219',
6331   'name' => 'Asia/Phnom Penh',
6332   'offset' => '07:00:00',
6333   'offset_dst' => '07:00:00',
6334   'dst_region' => '0',
6335   'is_dst' => '0',
6336 ))
6337 ->values(array(
6338   'timezone' => '220',
6339   'name' => 'Asia/Pyongyang',
6340   'offset' => '09:00:00',
6341   'offset_dst' => '09:00:00',
6342   'dst_region' => '0',
6343   'is_dst' => '0',
6344 ))
6345 ->values(array(
6346   'timezone' => '221',
6347   'name' => 'Asia/Qatar',
6348   'offset' => '03:00:00',
6349   'offset_dst' => '03:00:00',
6350   'dst_region' => '0',
6351   'is_dst' => '0',
6352 ))
6353 ->values(array(
6354   'timezone' => '222',
6355   'name' => 'Asia/Rangoon',
6356   'offset' => '06:30:00',
6357   'offset_dst' => '06:30:00',
6358   'dst_region' => '0',
6359   'is_dst' => '0',
6360 ))
6361 ->values(array(
6362   'timezone' => '223',
6363   'name' => 'Asia/Riyadh',
6364   'offset' => '03:00:00',
6365   'offset_dst' => '03:00:00',
6366   'dst_region' => '0',
6367   'is_dst' => '0',
6368 ))
6369 ->values(array(
6370   'timezone' => '224',
6371   'name' => 'Asia/Riyadh87',
6372   'offset' => '03:07:04',
6373   'offset_dst' => '03:07:04',
6374   'dst_region' => '0',
6375   'is_dst' => '0',
6376 ))
6377 ->values(array(
6378   'timezone' => '225',
6379   'name' => 'Asia/Riyadh88',
6380   'offset' => '03:07:04',
6381   'offset_dst' => '03:07:04',
6382   'dst_region' => '0',
6383   'is_dst' => '0',
6384 ))
6385 ->values(array(
6386   'timezone' => '226',
6387   'name' => 'Asia/Riyadh89',
6388   'offset' => '03:07:04',
6389   'offset_dst' => '03:07:04',
6390   'dst_region' => '0',
6391   'is_dst' => '0',
6392 ))
6393 ->values(array(
6394   'timezone' => '227',
6395   'name' => 'Asia/Saigon',
6396   'offset' => '07:00:00',
6397   'offset_dst' => '07:00:00',
6398   'dst_region' => '0',
6399   'is_dst' => '0',
6400 ))
6401 ->values(array(
6402   'timezone' => '228',
6403   'name' => 'Asia/Samarkand',
6404   'offset' => '05:00:00',
6405   'offset_dst' => '05:00:00',
6406   'dst_region' => '0',
6407   'is_dst' => '0',
6408 ))
6409 ->values(array(
6410   'timezone' => '229',
6411   'name' => 'Asia/Seoul',
6412   'offset' => '09:00:00',
6413   'offset_dst' => '09:00:00',
6414   'dst_region' => '0',
6415   'is_dst' => '0',
6416 ))
6417 ->values(array(
6418   'timezone' => '230',
6419   'name' => 'Asia/Shanghai',
6420   'offset' => '08:00:00',
6421   'offset_dst' => '08:00:00',
6422   'dst_region' => '0',
6423   'is_dst' => '0',
6424 ))
6425 ->values(array(
6426   'timezone' => '231',
6427   'name' => 'Asia/Singapore',
6428   'offset' => '08:00:00',
6429   'offset_dst' => '08:00:00',
6430   'dst_region' => '0',
6431   'is_dst' => '0',
6432 ))
6433 ->values(array(
6434   'timezone' => '232',
6435   'name' => 'Asia/Taipei',
6436   'offset' => '08:00:00',
6437   'offset_dst' => '08:00:00',
6438   'dst_region' => '0',
6439   'is_dst' => '0',
6440 ))
6441 ->values(array(
6442   'timezone' => '233',
6443   'name' => 'Asia/Tashkent',
6444   'offset' => '05:00:00',
6445   'offset_dst' => '05:00:00',
6446   'dst_region' => '0',
6447   'is_dst' => '0',
6448 ))
6449 ->values(array(
6450   'timezone' => '234',
6451   'name' => 'Asia/Tbilisi',
6452   'offset' => '04:00:00',
6453   'offset_dst' => '05:00:00',
6454   'dst_region' => '3',
6455   'is_dst' => '0',
6456 ))
6457 ->values(array(
6458   'timezone' => '235',
6459   'name' => 'Asia/Tehran',
6460   'offset' => '03:30:00',
6461   'offset_dst' => '04:30:00',
6462   'dst_region' => '8',
6463   'is_dst' => '0',
6464 ))
6465 ->values(array(
6466   'timezone' => '236',
6467   'name' => 'Asia/Tel Aviv',
6468   'offset' => '02:00:00',
6469   'offset_dst' => '03:00:00',
6470   'dst_region' => '5',
6471   'is_dst' => '0',
6472 ))
6473 ->values(array(
6474   'timezone' => '237',
6475   'name' => 'Asia/Thimbu',
6476   'offset' => '06:00:00',
6477   'offset_dst' => '06:00:00',
6478   'dst_region' => '0',
6479   'is_dst' => '0',
6480 ))
6481 ->values(array(
6482   'timezone' => '238',
6483   'name' => 'Asia/Thimphu',
6484   'offset' => '06:00:00',
6485   'offset_dst' => '06:00:00',
6486   'dst_region' => '0',
6487   'is_dst' => '0',
6488 ))
6489 ->values(array(
6490   'timezone' => '239',
6491   'name' => 'Asia/Tokyo',
6492   'offset' => '09:00:00',
6493   'offset_dst' => '09:00:00',
6494   'dst_region' => '0',
6495   'is_dst' => '0',
6496 ))
6497 ->values(array(
6498   'timezone' => '240',
6499   'name' => 'Asia/Ujung Pandang',
6500   'offset' => '08:00:00',
6501   'offset_dst' => '08:00:00',
6502   'dst_region' => '0',
6503   'is_dst' => '0',
6504 ))
6505 ->values(array(
6506   'timezone' => '241',
6507   'name' => 'Asia/Ulaanbaatar',
6508   'offset' => '08:00:00',
6509   'offset_dst' => '08:00:00',
6510   'dst_region' => '0',
6511   'is_dst' => '0',
6512 ))
6513 ->values(array(
6514   'timezone' => '242',
6515   'name' => 'Asia/Ulan Bator',
6516   'offset' => '08:00:00',
6517   'offset_dst' => '08:00:00',
6518   'dst_region' => '0',
6519   'is_dst' => '0',
6520 ))
6521 ->values(array(
6522   'timezone' => '243',
6523   'name' => 'Asia/Urumqi',
6524   'offset' => '08:00:00',
6525   'offset_dst' => '08:00:00',
6526   'dst_region' => '0',
6527   'is_dst' => '0',
6528 ))
6529 ->values(array(
6530   'timezone' => '244',
6531   'name' => 'Asia/Vientiane',
6532   'offset' => '07:00:00',
6533   'offset_dst' => '07:00:00',
6534   'dst_region' => '0',
6535   'is_dst' => '0',
6536 ))
6537 ->values(array(
6538   'timezone' => '245',
6539   'name' => 'Asia/Vladivostok',
6540   'offset' => '10:00:00',
6541   'offset_dst' => '11:00:00',
6542   'dst_region' => '3',
6543   'is_dst' => '0',
6544 ))
6545 ->values(array(
6546   'timezone' => '246',
6547   'name' => 'Asia/Yakutsk',
6548   'offset' => '09:00:00',
6549   'offset_dst' => '10:00:00',
6550   'dst_region' => '3',
6551   'is_dst' => '0',
6552 ))
6553 ->values(array(
6554   'timezone' => '247',
6555   'name' => 'Asia/Yekaterinburg',
6556   'offset' => '05:00:00',
6557   'offset_dst' => '06:00:00',
6558   'dst_region' => '3',
6559   'is_dst' => '0',
6560 ))
6561 ->values(array(
6562   'timezone' => '248',
6563   'name' => 'Asia/Yerevan',
6564   'offset' => '04:00:00',
6565   'offset_dst' => '05:00:00',
6566   'dst_region' => '3',
6567   'is_dst' => '0',
6568 ))
6569 ->values(array(
6570   'timezone' => '249',
6571   'name' => 'Atlantic/Azores',
6572   'offset' => '-01:00:00',
6573   'offset_dst' => '00:00:00',
6574   'dst_region' => '13',
6575   'is_dst' => '0',
6576 ))
6577 ->values(array(
6578   'timezone' => '250',
6579   'name' => 'Atlantic/Bermuda',
6580   'offset' => '-04:00:00',
6581   'offset_dst' => '-03:00:00',
6582   'dst_region' => '15',
6583   'is_dst' => '0',
6584 ))
6585 ->values(array(
6586   'timezone' => '251',
6587   'name' => 'Atlantic/Canary',
6588   'offset' => '00:00:00',
6589   'offset_dst' => '01:00:00',
6590   'dst_region' => '15',
6591   'is_dst' => '0',
6592 ))
6593 ->values(array(
6594   'timezone' => '252',
6595   'name' => 'Atlantic/Cape Verde',
6596   'offset' => '-01:00:00',
6597   'offset_dst' => '-01:00:00',
6598   'dst_region' => '0',
6599   'is_dst' => '0',
6600 ))
6601 ->values(array(
6602   'timezone' => '253',
6603   'name' => 'Atlantic/Faeroe',
6604   'offset' => '00:00:00',
6605   'offset_dst' => '01:00:00',
6606   'dst_region' => '13',
6607   'is_dst' => '0',
6608 ))
6609 ->values(array(
6610   'timezone' => '254',
6611   'name' => 'Atlantic/Jan Mayen',
6612   'offset' => '-01:00:00',
6613   'offset_dst' => '-01:00:00',
6614   'dst_region' => '0',
6615   'is_dst' => '0',
6616 ))
6617 ->values(array(
6618   'timezone' => '255',
6619   'name' => 'Atlantic/Madeira',
6620   'offset' => '00:00:00',
6621   'offset_dst' => '01:00:00',
6622   'dst_region' => '13',
6623   'is_dst' => '0',
6624 ))
6625 ->values(array(
6626   'timezone' => '256',
6627   'name' => 'Atlantic/South Georgia',
6628   'offset' => '-02:00:00',
6629   'offset_dst' => '-02:00:00',
6630   'dst_region' => '0',
6631   'is_dst' => '0',
6632 ))
6633 ->values(array(
6634   'timezone' => '257',
6635   'name' => 'Atlantic/Stanley',
6636   'offset' => '-03:00:00',
6637   'offset_dst' => '-04:00:00',
6638   'dst_region' => '19',
6639   'is_dst' => '0',
6640 ))
6641 ->values(array(
6642   'timezone' => '258',
6643   'name' => 'Australia/ACT',
6644   'offset' => '10:00:00',
6645   'offset_dst' => '11:00:00',
6646   'dst_region' => '9',
6647   'is_dst' => '0',
6648 ))
6649 ->values(array(
6650   'timezone' => '259',
6651   'name' => 'Australia/Adelaide',
6652   'offset' => '10:30:00',
6653   'offset_dst' => '09:30:00',
6654   'dst_region' => '9',
6655   'is_dst' => '0',
6656 ))
6657 ->values(array(
6658   'timezone' => '260',
6659   'name' => 'Australia/Brisbane',
6660   'offset' => '10:00:00',
6661   'offset_dst' => '10:00:00',
6662   'dst_region' => '0',
6663   'is_dst' => '0',
6664 ))
6665 ->values(array(
6666   'timezone' => '261',
6667   'name' => 'Australia/Broken Hill',
6668   'offset' => '10:30:00',
6669   'offset_dst' => '09:30:00',
6670   'dst_region' => '9',
6671   'is_dst' => '0',
6672 ))
6673 ->values(array(
6674   'timezone' => '262',
6675   'name' => 'Australia/Canberra',
6676   'offset' => '11:00:00',
6677   'offset_dst' => '10:00:00',
6678   'dst_region' => '9',
6679   'is_dst' => '0',
6680 ))
6681 ->values(array(
6682   'timezone' => '263',
6683   'name' => 'Australia/Darwin',
6684   'offset' => '09:30:00',
6685   'offset_dst' => '09:30:00',
6686   'dst_region' => '0',
6687   'is_dst' => '0',
6688 ))
6689 ->values(array(
6690   'timezone' => '264',
6691   'name' => 'Australia/Hobart',
6692   'offset' => '11:00:00',
6693   'offset_dst' => '10:00:00',
6694   'dst_region' => '10',
6695   'is_dst' => '0',
6696 ))
6697 ->values(array(
6698   'timezone' => '265',
6699   'name' => 'Australia/LHI',
6700   'offset' => '11:00:00',
6701   'offset_dst' => '10:30:00',
6702   'dst_region' => '9',
6703   'is_dst' => '0',
6704 ))
6705 ->values(array(
6706   'timezone' => '266',
6707   'name' => 'Australia/Lindeman',
6708   'offset' => '10:00:00',
6709   'offset_dst' => '10:00:00',
6710   'dst_region' => '0',
6711   'is_dst' => '0',
6712 ))
6713 ->values(array(
6714   'timezone' => '267',
6715   'name' => 'Australia/Lord Howe',
6716   'offset' => '11:00:00',
6717   'offset_dst' => '10:30:00',
6718   'dst_region' => '9',
6719   'is_dst' => '0',
6720 ))
6721 ->values(array(
6722   'timezone' => '268',
6723   'name' => 'Australia/Melbourne',
6724   'offset' => '10:00:00',
6725   'offset_dst' => '11:00:00',
6726   'dst_region' => '10',
6727   'is_dst' => '0',
6728 ))
6729 ->values(array(
6730   'timezone' => '269',
6731   'name' => 'Australia/NSW',
6732   'offset' => '10:00:00',
6733   'offset_dst' => '11:00:00',
6734   'dst_region' => '9',
6735   'is_dst' => '0',
6736 ))
6737 ->values(array(
6738   'timezone' => '270',
6739   'name' => 'Australia/North',
6740   'offset' => '09:30:00',
6741   'offset_dst' => '09:30:00',
6742   'dst_region' => '0',
6743   'is_dst' => '0',
6744 ))
6745 ->values(array(
6746   'timezone' => '271',
6747   'name' => 'Australia/Perth',
6748   'offset' => '08:00:00',
6749   'offset_dst' => '08:00:00',
6750   'dst_region' => '0',
6751   'is_dst' => '0',
6752 ))
6753 ->values(array(
6754   'timezone' => '272',
6755   'name' => 'Australia/Queensland',
6756   'offset' => '10:00:00',
6757   'offset_dst' => '10:00:00',
6758   'dst_region' => '0',
6759   'is_dst' => '0',
6760 ))
6761 ->values(array(
6762   'timezone' => '273',
6763   'name' => 'Australia/South',
6764   'offset' => '10:30:00',
6765   'offset_dst' => '09:30:00',
6766   'dst_region' => '9',
6767   'is_dst' => '0',
6768 ))
6769 ->values(array(
6770   'timezone' => '274',
6771   'name' => 'Australia/Sydney',
6772   'offset' => '10:00:00',
6773   'offset_dst' => '11:00:00',
6774   'dst_region' => '10',
6775   'is_dst' => '0',
6776 ))
6777 ->values(array(
6778   'timezone' => '275',
6779   'name' => 'Australia/Tasmania',
6780   'offset' => '10:00:00',
6781   'offset_dst' => '11:00:00',
6782   'dst_region' => '9',
6783   'is_dst' => '0',
6784 ))
6785 ->values(array(
6786   'timezone' => '276',
6787   'name' => 'Australia/Victoria',
6788   'offset' => '10:00:00',
6789   'offset_dst' => '11:00:00',
6790   'dst_region' => '9',
6791   'is_dst' => '0',
6792 ))
6793 ->values(array(
6794   'timezone' => '277',
6795   'name' => 'Australia/West',
6796   'offset' => '08:00:00',
6797   'offset_dst' => '08:00:00',
6798   'dst_region' => '0',
6799   'is_dst' => '0',
6800 ))
6801 ->values(array(
6802   'timezone' => '278',
6803   'name' => 'Australia/Yancowinna',
6804   'offset' => '10:30:00',
6805   'offset_dst' => '09:30:00',
6806   'dst_region' => '10',
6807   'is_dst' => '0',
6808 ))
6809 ->values(array(
6810   'timezone' => '279',
6811   'name' => 'Brazil/Acre',
6812   'offset' => '-05:00:00',
6813   'offset_dst' => '-05:00:00',
6814   'dst_region' => '0',
6815   'is_dst' => '0',
6816 ))
6817 ->values(array(
6818   'timezone' => '280',
6819   'name' => 'Brazil/DeNoronha',
6820   'offset' => '-02:00:00',
6821   'offset_dst' => '-02:00:00',
6822   'dst_region' => '0',
6823   'is_dst' => '0',
6824 ))
6825 ->values(array(
6826   'timezone' => '281',
6827   'name' => 'Brazil/East',
6828   'offset' => '-02:00:00',
6829   'offset_dst' => '-03:00:00',
6830   'dst_region' => '17',
6831   'is_dst' => '0',
6832 ))
6833 ->values(array(
6834   'timezone' => '282',
6835   'name' => 'Brazil/West',
6836   'offset' => '-04:00:00',
6837   'offset_dst' => '-04:00:00',
6838   'dst_region' => '0',
6839   'is_dst' => '0',
6840 ))
6841 ->values(array(
6842   'timezone' => '285',
6843   'name' => 'Canada/Atlantic',
6844   'offset' => '-04:00:00',
6845   'offset_dst' => '-03:00:00',
6846   'dst_region' => '15',
6847   'is_dst' => '0',
6848 ))
6849 ->values(array(
6850   'timezone' => '286',
6851   'name' => 'Canada/Central',
6852   'offset' => '-06:00:00',
6853   'offset_dst' => '-05:00:00',
6854   'dst_region' => '15',
6855   'is_dst' => '0',
6856 ))
6857 ->values(array(
6858   'timezone' => '287',
6859   'name' => 'Canada/Central-Saskatchewan',
6860   'offset' => '-06:00:00',
6861   'offset_dst' => '-06:00:00',
6862   'dst_region' => '0',
6863   'is_dst' => '0',
6864 ))
6865 ->values(array(
6866   'timezone' => '288',
6867   'name' => 'Canada/Eastern',
6868   'offset' => '-05:00:00',
6869   'offset_dst' => '-04:00:00',
6870   'dst_region' => '15',
6871   'is_dst' => '0',
6872 ))
6873 ->values(array(
6874   'timezone' => '289',
6875   'name' => 'Canada/Mountain',
6876   'offset' => '-07:00:00',
6877   'offset_dst' => '-06:00:00',
6878   'dst_region' => '15',
6879   'is_dst' => '0',
6880 ))
6881 ->values(array(
6882   'timezone' => '290',
6883   'name' => 'Canada/Newfoundland',
6884   'offset' => '-03:30:00',
6885   'offset_dst' => '-02:30:00',
6886   'dst_region' => '15',
6887   'is_dst' => '0',
6888 ))
6889 ->values(array(
6890   'timezone' => '291',
6891   'name' => 'Canada/Pacific',
6892   'offset' => '-08:00:00',
6893   'offset_dst' => '-07:00:00',
6894   'dst_region' => '15',
6895   'is_dst' => '0',
6896 ))
6897 ->values(array(
6898   'timezone' => '292',
6899   'name' => 'Canada/Saskatchewan',
6900   'offset' => '-06:00:00',
6901   'offset_dst' => '-06:00:00',
6902   'dst_region' => '0',
6903   'is_dst' => '0',
6904 ))
6905 ->values(array(
6906   'timezone' => '293',
6907   'name' => 'Canada/Yukon',
6908   'offset' => '-08:00:00',
6909   'offset_dst' => '-07:00:00',
6910   'dst_region' => '15',
6911   'is_dst' => '0',
6912 ))
6913 ->values(array(
6914   'timezone' => '294',
6915   'name' => 'Chile/Continental',
6916   'offset' => '-03:00:00',
6917   'offset_dst' => '-04:00:00',
6918   'dst_region' => '18',
6919   'is_dst' => '0',
6920 ))
6921 ->values(array(
6922   'timezone' => '295',
6923   'name' => 'Chile/EasterIsland',
6924   'offset' => '-05:00:00',
6925   'offset_dst' => '-06:00:00',
6926   'dst_region' => '18',
6927   'is_dst' => '0',
6928 ))
6929 ->values(array(
6930   'timezone' => '296',
6931   'name' => 'Cuba',
6932   'offset' => '-05:00:00',
6933   'offset_dst' => '-04:00:00',
6934   'dst_region' => '16',
6935   'is_dst' => '0',
6936 ))
6937 ->values(array(
6938   'timezone' => '298',
6939   'name' => 'EST',
6940   'offset' => '-05:00:00',
6941   'offset_dst' => '-05:00:00',
6942   'dst_region' => '0',
6943   'is_dst' => '0',
6944 ))
6945 ->values(array(
6946   'timezone' => '300',
6947   'name' => 'Egypt',
6948   'offset' => '02:00:00',
6949   'offset_dst' => '03:00:00',
6950   'dst_region' => '1',
6951   'is_dst' => '0',
6952 ))
6953 ->values(array(
6954   'timezone' => '301',
6955   'name' => 'Eire',
6956   'offset' => '00:00:00',
6957   'offset_dst' => '01:00:00',
6958   'dst_region' => '13',
6959   'is_dst' => '0',
6960 ))
6961 ->values(array(
6962   'timezone' => '302',
6963   'name' => 'Etc/GMT-1',
6964   'offset' => '-01:00:00',
6965   'offset_dst' => '-01:00:00',
6966   'dst_region' => '0',
6967   'is_dst' => '0',
6968 ))
6969 ->values(array(
6970   'timezone' => '303',
6971   'name' => 'Etc/GMT-10',
6972   'offset' => '-10:00:00',
6973   'offset_dst' => '-10:00:00',
6974   'dst_region' => '0',
6975   'is_dst' => '0',
6976 ))
6977 ->values(array(
6978   'timezone' => '304',
6979   'name' => 'Etc/GMT-11',
6980   'offset' => '-11:00:00',
6981   'offset_dst' => '-11:00:00',
6982   'dst_region' => '0',
6983   'is_dst' => '0',
6984 ))
6985 ->values(array(
6986   'timezone' => '305',
6987   'name' => 'Etc/GMT-12',
6988   'offset' => '-12:00:00',
6989   'offset_dst' => '-12:00:00',
6990   'dst_region' => '0',
6991   'is_dst' => '0',
6992 ))
6993 ->values(array(
6994   'timezone' => '306',
6995   'name' => 'Etc/GMT-2',
6996   'offset' => '-02:00:00',
6997   'offset_dst' => '-02:00:00',
6998   'dst_region' => '0',
6999   'is_dst' => '0',
7000 ))
7001 ->values(array(
7002   'timezone' => '307',
7003   'name' => 'Etc/GMT-3',
7004   'offset' => '-03:00:00',
7005   'offset_dst' => '-03:00:00',
7006   'dst_region' => '0',
7007   'is_dst' => '0',
7008 ))
7009 ->values(array(
7010   'timezone' => '308',
7011   'name' => 'Etc/GMT-4',
7012   'offset' => '-04:00:00',
7013   'offset_dst' => '-04:00:00',
7014   'dst_region' => '0',
7015   'is_dst' => '0',
7016 ))
7017 ->values(array(
7018   'timezone' => '309',
7019   'name' => 'Etc/GMT-5',
7020   'offset' => '-05:00:00',
7021   'offset_dst' => '-05:00:00',
7022   'dst_region' => '0',
7023   'is_dst' => '0',
7024 ))
7025 ->values(array(
7026   'timezone' => '310',
7027   'name' => 'Etc/GMT-6',
7028   'offset' => '-06:00:00',
7029   'offset_dst' => '-06:00:00',
7030   'dst_region' => '0',
7031   'is_dst' => '0',
7032 ))
7033 ->values(array(
7034   'timezone' => '311',
7035   'name' => 'Etc/GMT-7',
7036   'offset' => '-07:00:00',
7037   'offset_dst' => '-07:00:00',
7038   'dst_region' => '0',
7039   'is_dst' => '0',
7040 ))
7041 ->values(array(
7042   'timezone' => '312',
7043   'name' => 'Etc/GMT-8',
7044   'offset' => '-08:00:00',
7045   'offset_dst' => '-08:00:00',
7046   'dst_region' => '0',
7047   'is_dst' => '0',
7048 ))
7049 ->values(array(
7050   'timezone' => '313',
7051   'name' => 'Etc/GMT-9',
7052   'offset' => '-09:00:00',
7053   'offset_dst' => '-09:00:00',
7054   'dst_region' => '0',
7055   'is_dst' => '0',
7056 ))
7057 ->values(array(
7058   'timezone' => '314',
7059   'name' => 'Etc/GMT+1',
7060   'offset' => '01:00:00',
7061   'offset_dst' => '01:00:00',
7062   'dst_region' => '0',
7063   'is_dst' => '0',
7064 ))
7065 ->values(array(
7066   'timezone' => '315',
7067   'name' => 'Etc/GMT+10',
7068   'offset' => '10:00:00',
7069   'offset_dst' => '10:00:00',
7070   'dst_region' => '0',
7071   'is_dst' => '0',
7072 ))
7073 ->values(array(
7074   'timezone' => '316',
7075   'name' => 'Etc/GMT+11',
7076   'offset' => '11:00:00',
7077   'offset_dst' => '11:00:00',
7078   'dst_region' => '0',
7079   'is_dst' => '0',
7080 ))
7081 ->values(array(
7082   'timezone' => '317',
7083   'name' => 'Etc/GMT+12',
7084   'offset' => '12:00:00',
7085   'offset_dst' => '12:00:00',
7086   'dst_region' => '0',
7087   'is_dst' => '0',
7088 ))
7089 ->values(array(
7090   'timezone' => '318',
7091   'name' => 'Etc/GMT+13',
7092   'offset' => '13:00:00',
7093   'offset_dst' => '13:00:00',
7094   'dst_region' => '0',
7095   'is_dst' => '0',
7096 ))
7097 ->values(array(
7098   'timezone' => '319',
7099   'name' => 'Etc/GMT+14',
7100   'offset' => '14:00:00',
7101   'offset_dst' => '14:00:00',
7102   'dst_region' => '0',
7103   'is_dst' => '0',
7104 ))
7105 ->values(array(
7106   'timezone' => '320',
7107   'name' => 'Etc/GMT+2',
7108   'offset' => '02:00:00',
7109   'offset_dst' => '02:00:00',
7110   'dst_region' => '0',
7111   'is_dst' => '0',
7112 ))
7113 ->values(array(
7114   'timezone' => '321',
7115   'name' => 'Etc/GMT+3',
7116   'offset' => '03:00:00',
7117   'offset_dst' => '03:00:00',
7118   'dst_region' => '0',
7119   'is_dst' => '0',
7120 ))
7121 ->values(array(
7122   'timezone' => '322',
7123   'name' => 'Etc/GMT+4',
7124   'offset' => '04:00:00',
7125   'offset_dst' => '04:00:00',
7126   'dst_region' => '0',
7127   'is_dst' => '0',
7128 ))
7129 ->values(array(
7130   'timezone' => '323',
7131   'name' => 'Etc/GMT+5',
7132   'offset' => '05:00:00',
7133   'offset_dst' => '05:00:00',
7134   'dst_region' => '0',
7135   'is_dst' => '0',
7136 ))
7137 ->values(array(
7138   'timezone' => '324',
7139   'name' => 'Etc/GMT+6',
7140   'offset' => '06:00:00',
7141   'offset_dst' => '06:00:00',
7142   'dst_region' => '0',
7143   'is_dst' => '0',
7144 ))
7145 ->values(array(
7146   'timezone' => '325',
7147   'name' => 'Etc/GMT+7',
7148   'offset' => '07:00:00',
7149   'offset_dst' => '07:00:00',
7150   'dst_region' => '0',
7151   'is_dst' => '0',
7152 ))
7153 ->values(array(
7154   'timezone' => '326',
7155   'name' => 'Etc/GMT+8',
7156   'offset' => '08:00:00',
7157   'offset_dst' => '08:00:00',
7158   'dst_region' => '0',
7159   'is_dst' => '0',
7160 ))
7161 ->values(array(
7162   'timezone' => '327',
7163   'name' => 'Etc/GMT+9',
7164   'offset' => '09:00:00',
7165   'offset_dst' => '09:00:00',
7166   'dst_region' => '0',
7167   'is_dst' => '0',
7168 ))
7169 ->values(array(
7170   'timezone' => '328',
7171   'name' => 'Europe/Amsterdam',
7172   'offset' => '01:00:00',
7173   'offset_dst' => '02:00:00',
7174   'dst_region' => '13',
7175   'is_dst' => '0',
7176 ))
7177 ->values(array(
7178   'timezone' => '329',
7179   'name' => 'Europe/Andorra',
7180   'offset' => '01:00:00',
7181   'offset_dst' => '02:00:00',
7182   'dst_region' => '13',
7183   'is_dst' => '0',
7184 ))
7185 ->values(array(
7186   'timezone' => '330',
7187   'name' => 'Europe/Athens',
7188   'offset' => '02:00:00',
7189   'offset_dst' => '03:00:00',
7190   'dst_region' => '13',
7191   'is_dst' => '0',
7192 ))
7193 ->values(array(
7194   'timezone' => '331',
7195   'name' => 'Europe/Belfast',
7196   'offset' => '00:00:00',
7197   'offset_dst' => '01:00:00',
7198   'dst_region' => '13',
7199   'is_dst' => '0',
7200 ))
7201 ->values(array(
7202   'timezone' => '332',
7203   'name' => 'Europe/Belgrade',
7204   'offset' => '01:00:00',
7205   'offset_dst' => '02:00:00',
7206   'dst_region' => '13',
7207   'is_dst' => '0',
7208 ))
7209 ->values(array(
7210   'timezone' => '333',
7211   'name' => 'Europe/Berlin',
7212   'offset' => '01:00:00',
7213   'offset_dst' => '02:00:00',
7214   'dst_region' => '13',
7215   'is_dst' => '0',
7216 ))
7217 ->values(array(
7218   'timezone' => '334',
7219   'name' => 'Europe/Bratislava',
7220   'offset' => '01:00:00',
7221   'offset_dst' => '02:00:00',
7222   'dst_region' => '13',
7223   'is_dst' => '0',
7224 ))
7225 ->values(array(
7226   'timezone' => '335',
7227   'name' => 'Europe/Brussels',
7228   'offset' => '01:00:00',
7229   'offset_dst' => '02:00:00',
7230   'dst_region' => '13',
7231   'is_dst' => '0',
7232 ))
7233 ->values(array(
7234   'timezone' => '336',
7235   'name' => 'Europe/Bucharest',
7236   'offset' => '02:00:00',
7237   'offset_dst' => '03:00:00',
7238   'dst_region' => '13',
7239   'is_dst' => '0',
7240 ))
7241 ->values(array(
7242   'timezone' => '337',
7243   'name' => 'Europe/Budapest',
7244   'offset' => '01:00:00',
7245   'offset_dst' => '02:00:00',
7246   'dst_region' => '13',
7247   'is_dst' => '0',
7248 ))
7249 ->values(array(
7250   'timezone' => '338',
7251   'name' => 'Europe/Chisinau',
7252   'offset' => '02:00:00',
7253   'offset_dst' => '03:00:00',
7254   'dst_region' => '13',
7255   'is_dst' => '0',
7256 ))
7257 ->values(array(
7258   'timezone' => '339',
7259   'name' => 'Europe/Copenhagen',
7260   'offset' => '01:00:00',
7261   'offset_dst' => '02:00:00',
7262   'dst_region' => '13',
7263   'is_dst' => '0',
7264 ))
7265 ->values(array(
7266   'timezone' => '340',
7267   'name' => 'Europe/Dublin',
7268   'offset' => '00:00:00',
7269   'offset_dst' => '01:00:00',
7270   'dst_region' => '13',
7271   'is_dst' => '0',
7272 ))
7273 ->values(array(
7274   'timezone' => '341',
7275   'name' => 'Europe/Gibraltar',
7276   'offset' => '01:00:00',
7277   'offset_dst' => '02:00:00',
7278   'dst_region' => '13',
7279   'is_dst' => '0',
7280 ))
7281 ->values(array(
7282   'timezone' => '342',
7283   'name' => 'Europe/Helsinki',
7284   'offset' => '02:00:00',
7285   'offset_dst' => '03:00:00',
7286   'dst_region' => '13',
7287   'is_dst' => '0',
7288 ))
7289 ->values(array(
7290   'timezone' => '343',
7291   'name' => 'Europe/Istanbul',
7292   'offset' => '02:00:00',
7293   'offset_dst' => '03:00:00',
7294   'dst_region' => '13',
7295   'is_dst' => '0',
7296 ))
7297 ->values(array(
7298   'timezone' => '344',
7299   'name' => 'Europe/Kaliningrad',
7300   'offset' => '02:00:00',
7301   'offset_dst' => '03:00:00',
7302   'dst_region' => '13',
7303   'is_dst' => '0',
7304 ))
7305 ->values(array(
7306   'timezone' => '345',
7307   'name' => 'Europe/Kiev',
7308   'offset' => '02:00:00',
7309   'offset_dst' => '03:00:00',
7310   'dst_region' => '13',
7311   'is_dst' => '0',
7312 ))
7313 ->values(array(
7314   'timezone' => '346',
7315   'name' => 'Europe/Lisbon',
7316   'offset' => '00:00:00',
7317   'offset_dst' => '01:00:00',
7318   'dst_region' => '13',
7319   'is_dst' => '0',
7320 ))
7321 ->values(array(
7322   'timezone' => '347',
7323   'name' => 'Europe/Ljubljana',
7324   'offset' => '01:00:00',
7325   'offset_dst' => '02:00:00',
7326   'dst_region' => '13',
7327   'is_dst' => '0',
7328 ))
7329 ->values(array(
7330   'timezone' => '348',
7331   'name' => 'Europe/London',
7332   'offset' => '00:00:00',
7333   'offset_dst' => '01:00:00',
7334   'dst_region' => '13',
7335   'is_dst' => '0',
7336 ))
7337 ->values(array(
7338   'timezone' => '349',
7339   'name' => 'Europe/Luxembourg',
7340   'offset' => '01:00:00',
7341   'offset_dst' => '02:00:00',
7342   'dst_region' => '13',
7343   'is_dst' => '0',
7344 ))
7345 ->values(array(
7346   'timezone' => '350',
7347   'name' => 'Europe/Madrid',
7348   'offset' => '01:00:00',
7349   'offset_dst' => '02:00:00',
7350   'dst_region' => '13',
7351   'is_dst' => '0',
7352 ))
7353 ->values(array(
7354   'timezone' => '351',
7355   'name' => 'Europe/Malta',
7356   'offset' => '01:00:00',
7357   'offset_dst' => '02:00:00',
7358   'dst_region' => '13',
7359   'is_dst' => '0',
7360 ))
7361 ->values(array(
7362   'timezone' => '352',
7363   'name' => 'Europe/Minsk',
7364   'offset' => '02:00:00',
7365   'offset_dst' => '03:00:00',
7366   'dst_region' => '13',
7367   'is_dst' => '0',
7368 ))
7369 ->values(array(
7370   'timezone' => '353',
7371   'name' => 'Europe/Monaco',
7372   'offset' => '01:00:00',
7373   'offset_dst' => '02:00:00',
7374   'dst_region' => '13',
7375   'is_dst' => '0',
7376 ))
7377 ->values(array(
7378   'timezone' => '354',
7379   'name' => 'Europe/Moscow',
7380   'offset' => '03:00:00',
7381   'offset_dst' => '04:00:00',
7382   'dst_region' => '14',
7383   'is_dst' => '0',
7384 ))
7385 ->values(array(
7386   'timezone' => '355',
7387   'name' => 'Europe/Nicosia',
7388   'offset' => '02:00:00',
7389   'offset_dst' => '03:00:00',
7390   'dst_region' => '13',
7391   'is_dst' => '0',
7392 ))
7393 ->values(array(
7394   'timezone' => '356',
7395   'name' => 'Europe/Oslo',
7396   'offset' => '01:00:00',
7397   'offset_dst' => '02:00:00',
7398   'dst_region' => '13',
7399   'is_dst' => '0',
7400 ))
7401 ->values(array(
7402   'timezone' => '357',
7403   'name' => 'Europe/Paris',
7404   'offset' => '01:00:00',
7405   'offset_dst' => '02:00:00',
7406   'dst_region' => '13',
7407   'is_dst' => '0',
7408 ))
7409 ->values(array(
7410   'timezone' => '358',
7411   'name' => 'Europe/Prague',
7412   'offset' => '01:00:00',
7413   'offset_dst' => '02:00:00',
7414   'dst_region' => '13',
7415   'is_dst' => '0',
7416 ))
7417 ->values(array(
7418   'timezone' => '359',
7419   'name' => 'Europe/Riga',
7420   'offset' => '02:00:00',
7421   'offset_dst' => '03:00:00',
7422   'dst_region' => '13',
7423   'is_dst' => '0',
7424 ))
7425 ->values(array(
7426   'timezone' => '360',
7427   'name' => 'Europe/Rome',
7428   'offset' => '01:00:00',
7429   'offset_dst' => '02:00:00',
7430   'dst_region' => '13',
7431   'is_dst' => '0',
7432 ))
7433 ->values(array(
7434   'timezone' => '361',
7435   'name' => 'Europe/Samara',
7436   'offset' => '04:00:00',
7437   'offset_dst' => '05:00:00',
7438   'dst_region' => '13',
7439   'is_dst' => '0',
7440 ))
7441 ->values(array(
7442   'timezone' => '362',
7443   'name' => 'Europe/San Marino',
7444   'offset' => '01:00:00',
7445   'offset_dst' => '02:00:00',
7446   'dst_region' => '13',
7447   'is_dst' => '0',
7448 ))
7449 ->values(array(
7450   'timezone' => '363',
7451   'name' => 'Europe/Sarajevo',
7452   'offset' => '01:00:00',
7453   'offset_dst' => '02:00:00',
7454   'dst_region' => '13',
7455   'is_dst' => '0',
7456 ))
7457 ->values(array(
7458   'timezone' => '364',
7459   'name' => 'Europe/Simferopol',
7460   'offset' => '02:00:00',
7461   'offset_dst' => '03:00:00',
7462   'dst_region' => '13',
7463   'is_dst' => '0',
7464 ))
7465 ->values(array(
7466   'timezone' => '365',
7467   'name' => 'Europe/Skopje',
7468   'offset' => '01:00:00',
7469   'offset_dst' => '02:00:00',
7470   'dst_region' => '13',
7471   'is_dst' => '0',
7472 ))
7473 ->values(array(
7474   'timezone' => '366',
7475   'name' => 'Europe/Sofia',
7476   'offset' => '02:00:00',
7477   'offset_dst' => '03:00:00',
7478   'dst_region' => '13',
7479   'is_dst' => '0',
7480 ))
7481 ->values(array(
7482   'timezone' => '367',
7483   'name' => 'Europe/Stockholm',
7484   'offset' => '01:00:00',
7485   'offset_dst' => '02:00:00',
7486   'dst_region' => '13',
7487   'is_dst' => '0',
7488 ))
7489 ->values(array(
7490   'timezone' => '368',
7491   'name' => 'Europe/Tallinn',
7492   'offset' => '02:00:00',
7493   'offset_dst' => '02:00:00',
7494   'dst_region' => '0',
7495   'is_dst' => '0',
7496 ))
7497 ->values(array(
7498   'timezone' => '369',
7499   'name' => 'Europe/Tirane',
7500   'offset' => '01:00:00',
7501   'offset_dst' => '02:00:00',
7502   'dst_region' => '13',
7503   'is_dst' => '0',
7504 ))
7505 ->values(array(
7506   'timezone' => '370',
7507   'name' => 'Europe/Tiraspol',
7508   'offset' => '02:00:00',
7509   'offset_dst' => '03:00:00',
7510   'dst_region' => '13',
7511   'is_dst' => '0',
7512 ))
7513 ->values(array(
7514   'timezone' => '371',
7515   'name' => 'Europe/Uzhgorod',
7516   'offset' => '02:00:00',
7517   'offset_dst' => '03:00:00',
7518   'dst_region' => '13',
7519   'is_dst' => '0',
7520 ))
7521 ->values(array(
7522   'timezone' => '372',
7523   'name' => 'Europe/Vaduz',
7524   'offset' => '01:00:00',
7525   'offset_dst' => '02:00:00',
7526   'dst_region' => '13',
7527   'is_dst' => '0',
7528 ))
7529 ->values(array(
7530   'timezone' => '373',
7531   'name' => 'Europe/Vatican',
7532   'offset' => '01:00:00',
7533   'offset_dst' => '02:00:00',
7534   'dst_region' => '13',
7535   'is_dst' => '0',
7536 ))
7537 ->values(array(
7538   'timezone' => '374',
7539   'name' => 'Europe/Vienna',
7540   'offset' => '01:00:00',
7541   'offset_dst' => '02:00:00',
7542   'dst_region' => '13',
7543   'is_dst' => '0',
7544 ))
7545 ->values(array(
7546   'timezone' => '375',
7547   'name' => 'Europe/Vilnius',
7548   'offset' => '02:00:00',
7549   'offset_dst' => '02:00:00',
7550   'dst_region' => '0',
7551   'is_dst' => '0',
7552 ))
7553 ->values(array(
7554   'timezone' => '376',
7555   'name' => 'Europe/Warsaw',
7556   'offset' => '01:00:00',
7557   'offset_dst' => '02:00:00',
7558   'dst_region' => '13',
7559   'is_dst' => '0',
7560 ))
7561 ->values(array(
7562   'timezone' => '377',
7563   'name' => 'Europe/Zagreb',
7564   'offset' => '01:00:00',
7565   'offset_dst' => '02:00:00',
7566   'dst_region' => '13',
7567   'is_dst' => '0',
7568 ))
7569 ->values(array(
7570   'timezone' => '378',
7571   'name' => 'Europe/Zaporozhye',
7572   'offset' => '02:00:00',
7573   'offset_dst' => '03:00:00',
7574   'dst_region' => '13',
7575   'is_dst' => '0',
7576 ))
7577 ->values(array(
7578   'timezone' => '379',
7579   'name' => 'Europe/Zurich',
7580   'offset' => '01:00:00',
7581   'offset_dst' => '02:00:00',
7582   'dst_region' => '13',
7583   'is_dst' => '0',
7584 ))
7585 ->values(array(
7586   'timezone' => '380',
7587   'name' => 'GB',
7588   'offset' => '00:00:00',
7589   'offset_dst' => '01:00:00',
7590   'dst_region' => '13',
7591   'is_dst' => '0',
7592 ))
7593 ->values(array(
7594   'timezone' => '381',
7595   'name' => 'GB-Eire',
7596   'offset' => '00:00:00',
7597   'offset_dst' => '01:00:00',
7598   'dst_region' => '13',
7599   'is_dst' => '0',
7600 ))
7601 ->values(array(
7602   'timezone' => '383',
7603   'name' => 'Hongkong',
7604   'offset' => '08:00:00',
7605   'offset_dst' => '08:00:00',
7606   'dst_region' => '0',
7607   'is_dst' => '0',
7608 ))
7609 ->values(array(
7610   'timezone' => '384',
7611   'name' => 'Indian/Antananarivo',
7612   'offset' => '03:00:00',
7613   'offset_dst' => '03:00:00',
7614   'dst_region' => '0',
7615   'is_dst' => '0',
7616 ))
7617 ->values(array(
7618   'timezone' => '385',
7619   'name' => 'Indian/Chagos',
7620   'offset' => '05:00:00',
7621   'offset_dst' => '05:00:00',
7622   'dst_region' => '0',
7623   'is_dst' => '0',
7624 ))
7625 ->values(array(
7626   'timezone' => '386',
7627   'name' => 'Indian/Christmas',
7628   'offset' => '07:00:00',
7629   'offset_dst' => '07:00:00',
7630   'dst_region' => '0',
7631   'is_dst' => '0',
7632 ))
7633 ->values(array(
7634   'timezone' => '387',
7635   'name' => 'Indian/Cocos',
7636   'offset' => '06:30:00',
7637   'offset_dst' => '06:30:00',
7638   'dst_region' => '0',
7639   'is_dst' => '0',
7640 ))
7641 ->values(array(
7642   'timezone' => '388',
7643   'name' => 'Indian/Comoro',
7644   'offset' => '03:00:00',
7645   'offset_dst' => '03:00:00',
7646   'dst_region' => '0',
7647   'is_dst' => '0',
7648 ))
7649 ->values(array(
7650   'timezone' => '389',
7651   'name' => 'Indian/Kerguelen',
7652   'offset' => '05:00:00',
7653   'offset_dst' => '05:00:00',
7654   'dst_region' => '0',
7655   'is_dst' => '0',
7656 ))
7657 ->values(array(
7658   'timezone' => '390',
7659   'name' => 'Indian/Mahe',
7660   'offset' => '04:00:00',
7661   'offset_dst' => '04:00:00',
7662   'dst_region' => '0',
7663   'is_dst' => '0',
7664 ))
7665 ->values(array(
7666   'timezone' => '391',
7667   'name' => 'Indian/Maldives',
7668   'offset' => '05:00:00',
7669   'offset_dst' => '05:00:00',
7670   'dst_region' => '0',
7671   'is_dst' => '0',
7672 ))
7673 ->values(array(
7674   'timezone' => '392',
7675   'name' => 'Indian/Mauritius',
7676   'offset' => '04:00:00',
7677   'offset_dst' => '04:00:00',
7678   'dst_region' => '0',
7679   'is_dst' => '0',
7680 ))
7681 ->values(array(
7682   'timezone' => '393',
7683   'name' => 'Indian/Mayotte',
7684   'offset' => '03:00:00',
7685   'offset_dst' => '03:00:00',
7686   'dst_region' => '0',
7687   'is_dst' => '0',
7688 ))
7689 ->values(array(
7690   'timezone' => '394',
7691   'name' => 'Indian/Reunion',
7692   'offset' => '04:00:00',
7693   'offset_dst' => '04:00:00',
7694   'dst_region' => '0',
7695   'is_dst' => '0',
7696 ))
7697 ->values(array(
7698   'timezone' => '395',
7699   'name' => 'Iran',
7700   'offset' => '03:30:00',
7701   'offset_dst' => '04:30:00',
7702   'dst_region' => '8',
7703   'is_dst' => '0',
7704 ))
7705 ->values(array(
7706   'timezone' => '396',
7707   'name' => 'Israel',
7708   'offset' => '02:00:00',
7709   'offset_dst' => '03:00:00',
7710   'dst_region' => '5',
7711   'is_dst' => '0',
7712 ))
7713 ->values(array(
7714   'timezone' => '397',
7715   'name' => 'Jamaica',
7716   'offset' => '-05:00:00',
7717   'offset_dst' => '-05:00:00',
7718   'dst_region' => '0',
7719   'is_dst' => '0',
7720 ))
7721 ->values(array(
7722   'timezone' => '398',
7723   'name' => 'Japan',
7724   'offset' => '09:00:00',
7725   'offset_dst' => '09:00:00',
7726   'dst_region' => '0',
7727   'is_dst' => '0',
7728 ))
7729 ->values(array(
7730   'timezone' => '399',
7731   'name' => 'Kwajalein',
7732   'offset' => '12:00:00',
7733   'offset_dst' => '12:00:00',
7734   'dst_region' => '0',
7735   'is_dst' => '0',
7736 ))
7737 ->values(array(
7738   'timezone' => '400',
7739   'name' => 'Libya',
7740   'offset' => '02:00:00',
7741   'offset_dst' => '02:00:00',
7742   'dst_region' => '0',
7743   'is_dst' => '0',
7744 ))
7745 ->values(array(
7746   'timezone' => '404',
7747   'name' => 'Mexico/BajaNorte',
7748   'offset' => '-08:00:00',
7749   'offset_dst' => '-07:00:00',
7750   'dst_region' => '15',
7751   'is_dst' => '0',
7752 ))
7753 ->values(array(
7754   'timezone' => '405',
7755   'name' => 'Mexico/BajaSur',
7756   'offset' => '-07:00:00',
7757   'offset_dst' => '-06:00:00',
7758   'dst_region' => '15',
7759   'is_dst' => '0',
7760 ))
7761 ->values(array(
7762   'timezone' => '406',
7763   'name' => 'Mexico/General',
7764   'offset' => '-06:00:00',
7765   'offset_dst' => '-05:00:00',
7766   'dst_region' => '15',
7767   'is_dst' => '0',
7768 ))
7769 ->values(array(
7770   'timezone' => '407',
7771   'name' => 'Mideast/Riyadh87',
7772   'offset' => '03:07:04',
7773   'offset_dst' => '03:07:04',
7774   'dst_region' => '0',
7775   'is_dst' => '0',
7776 ))
7777 ->values(array(
7778   'timezone' => '408',
7779   'name' => 'Mideast/Riyadh88',
7780   'offset' => '03:07:04',
7781   'offset_dst' => '03:07:04',
7782   'dst_region' => '0',
7783   'is_dst' => '0',
7784 ))
7785 ->values(array(
7786   'timezone' => '409',
7787   'name' => 'Mideast/Riyadh89',
7788   'offset' => '03:07:04',
7789   'offset_dst' => '03:07:04',
7790   'dst_region' => '0',
7791   'is_dst' => '0',
7792 ))
7793 ->values(array(
7794   'timezone' => '410',
7795   'name' => 'NZ',
7796   'offset' => '13:00:00',
7797   'offset_dst' => '12:00:00',
7798   'dst_region' => '11',
7799   'is_dst' => '0',
7800 ))
7801 ->values(array(
7802   'timezone' => '412',
7803   'name' => 'Navajo',
7804   'offset' => '-07:00:00',
7805   'offset_dst' => '-06:00:00',
7806   'dst_region' => '15',
7807   'is_dst' => '0',
7808 ))
7809 ->values(array(
7810   'timezone' => '415',
7811   'name' => 'Pacific/Apia',
7812   'offset' => '-11:00:00',
7813   'offset_dst' => '-11:00:00',
7814   'dst_region' => '0',
7815   'is_dst' => '0',
7816 ))
7817 ->values(array(
7818   'timezone' => '416',
7819   'name' => 'Pacific/Auckland',
7820   'offset' => '13:00:00',
7821   'offset_dst' => '12:00:00',
7822   'dst_region' => '15',
7823   'is_dst' => '0',
7824 ))
7825 ->values(array(
7826   'timezone' => '417',
7827   'name' => 'Pacific/Chatham',
7828   'offset' => '13:45:00',
7829   'offset_dst' => '12:45:00',
7830   'dst_region' => '15',
7831   'is_dst' => '0',
7832 ))
7833 ->values(array(
7834   'timezone' => '418',
7835   'name' => 'Pacific/Easter',
7836   'offset' => '-05:00:00',
7837   'offset_dst' => '-06:00:00',
7838   'dst_region' => '0',
7839   'is_dst' => '0',
7840 ))
7841 ->values(array(
7842   'timezone' => '419',
7843   'name' => 'Pacific/Efate',
7844   'offset' => '11:00:00',
7845   'offset_dst' => '11:00:00',
7846   'dst_region' => '0',
7847   'is_dst' => '0',
7848 ))
7849 ->values(array(
7850   'timezone' => '420',
7851   'name' => 'Pacific/Enderbury',
7852   'offset' => '13:00:00',
7853   'offset_dst' => '13:00:00',
7854   'dst_region' => '0',
7855   'is_dst' => '0',
7856 ))
7857 ->values(array(
7858   'timezone' => '421',
7859   'name' => 'Pacific/Fakaofo',
7860   'offset' => '-10:00:00',
7861   'offset_dst' => '-10:00:00',
7862   'dst_region' => '0',
7863   'is_dst' => '0',
7864 ))
7865 ->values(array(
7866   'timezone' => '422',
7867   'name' => 'Pacific/Fiji',
7868   'offset' => '12:00:00',
7869   'offset_dst' => '12:00:00',
7870   'dst_region' => '0',
7871   'is_dst' => '0',
7872 ))
7873 ->values(array(
7874   'timezone' => '423',
7875   'name' => 'Pacific/Funafuti',
7876   'offset' => '12:00:00',
7877   'offset_dst' => '12:00:00',
7878   'dst_region' => '0',
7879   'is_dst' => '0',
7880 ))
7881 ->values(array(
7882   'timezone' => '424',
7883   'name' => 'Pacific/Galapagos',
7884   'offset' => '-06:00:00',
7885   'offset_dst' => '-06:00:00',
7886   'dst_region' => '0',
7887   'is_dst' => '0',
7888 ))
7889 ->values(array(
7890   'timezone' => '425',
7891   'name' => 'Pacific/Gambier',
7892   'offset' => '-09:00:00',
7893   'offset_dst' => '-09:00:00',
7894   'dst_region' => '0',
7895   'is_dst' => '0',
7896 ))
7897 ->values(array(
7898   'timezone' => '426',
7899   'name' => 'Pacific/Guadalcanal',
7900   'offset' => '11:00:00',
7901   'offset_dst' => '11:00:00',
7902   'dst_region' => '0',
7903   'is_dst' => '0',
7904 ))
7905 ->values(array(
7906   'timezone' => '427',
7907   'name' => 'Pacific/Guam',
7908   'offset' => '10:00:00',
7909   'offset_dst' => '10:00:00',
7910   'dst_region' => '0',
7911   'is_dst' => '0',
7912 ))
7913 ->values(array(
7914   'timezone' => '428',
7915   'name' => 'Pacific/Honolulu',
7916   'offset' => '-10:00:00',
7917   'offset_dst' => '-10:00:00',
7918   'dst_region' => '0',
7919   'is_dst' => '0',
7920 ))
7921 ->values(array(
7922   'timezone' => '429',
7923   'name' => 'Pacific/Johnston',
7924   'offset' => '-10:00:00',
7925   'offset_dst' => '-10:00:00',
7926   'dst_region' => '0',
7927   'is_dst' => '0',
7928 ))
7929 ->values(array(
7930   'timezone' => '430',
7931   'name' => 'Pacific/Kiritimati',
7932   'offset' => '14:00:00',
7933   'offset_dst' => '14:00:00',
7934   'dst_region' => '0',
7935   'is_dst' => '0',
7936 ))
7937 ->values(array(
7938   'timezone' => '431',
7939   'name' => 'Pacific/Kosrae',
7940   'offset' => '11:00:00',
7941   'offset_dst' => '11:00:00',
7942   'dst_region' => '0',
7943   'is_dst' => '0',
7944 ))
7945 ->values(array(
7946   'timezone' => '432',
7947   'name' => 'Pacific/Kwajalein',
7948   'offset' => '12:00:00',
7949   'offset_dst' => '12:00:00',
7950   'dst_region' => '0',
7951   'is_dst' => '0',
7952 ))
7953 ->values(array(
7954   'timezone' => '433',
7955   'name' => 'Pacific/Majuro',
7956   'offset' => '12:00:00',
7957   'offset_dst' => '12:00:00',
7958   'dst_region' => '0',
7959   'is_dst' => '0',
7960 ))
7961 ->values(array(
7962   'timezone' => '434',
7963   'name' => 'Pacific/Marquesas',
7964   'offset' => '-09:30:00',
7965   'offset_dst' => '-09:30:00',
7966   'dst_region' => '0',
7967   'is_dst' => '0',
7968 ))
7969 ->values(array(
7970   'timezone' => '435',
7971   'name' => 'Pacific/Midway',
7972   'offset' => '-11:00:00',
7973   'offset_dst' => '-11:00:00',
7974   'dst_region' => '0',
7975   'is_dst' => '0',
7976 ))
7977 ->values(array(
7978   'timezone' => '436',
7979   'name' => 'Pacific/Nauru',
7980   'offset' => '12:00:00',
7981   'offset_dst' => '12:00:00',
7982   'dst_region' => '0',
7983   'is_dst' => '0',
7984 ))
7985 ->values(array(
7986   'timezone' => '437',
7987   'name' => 'Pacific/Niue',
7988   'offset' => '-11:00:00',
7989   'offset_dst' => '-11:00:00',
7990   'dst_region' => '0',
7991   'is_dst' => '0',
7992 ))
7993 ->values(array(
7994   'timezone' => '438',
7995   'name' => 'Pacific/Norfolk',
7996   'offset' => '11:30:00',
7997   'offset_dst' => '11:30:00',
7998   'dst_region' => '0',
7999   'is_dst' => '0',
8000 ))
8001 ->values(array(
8002   'timezone' => '439',
8003   'name' => 'Pacific/Noumea',
8004   'offset' => '11:00:00',
8005   'offset_dst' => '11:00:00',
8006   'dst_region' => '0',
8007   'is_dst' => '0',
8008 ))
8009 ->values(array(
8010   'timezone' => '440',
8011   'name' => 'Pacific/Pago Pago',
8012   'offset' => '-11:00:00',
8013   'offset_dst' => '-11:00:00',
8014   'dst_region' => '0',
8015   'is_dst' => '0',
8016 ))
8017 ->values(array(
8018   'timezone' => '441',
8019   'name' => 'Pacific/Palau',
8020   'offset' => '09:00:00',
8021   'offset_dst' => '09:00:00',
8022   'dst_region' => '0',
8023   'is_dst' => '0',
8024 ))
8025 ->values(array(
8026   'timezone' => '442',
8027   'name' => 'Pacific/Pitcairn',
8028   'offset' => '-08:00:00',
8029   'offset_dst' => '-08:00:00',
8030   'dst_region' => '0',
8031   'is_dst' => '0',
8032 ))
8033 ->values(array(
8034   'timezone' => '443',
8035   'name' => 'Pacific/Ponape',
8036   'offset' => '11:00:00',
8037   'offset_dst' => '11:00:00',
8038   'dst_region' => '0',
8039   'is_dst' => '0',
8040 ))
8041 ->values(array(
8042   'timezone' => '444',
8043   'name' => 'Pacific/Port Moresby',
8044   'offset' => '10:00:00',
8045   'offset_dst' => '10:00:00',
8046   'dst_region' => '0',
8047   'is_dst' => '0',
8048 ))
8049 ->values(array(
8050   'timezone' => '445',
8051   'name' => 'Pacific/Rarotonga',
8052   'offset' => '-10:00:00',
8053   'offset_dst' => '-10:00:00',
8054   'dst_region' => '0',
8055   'is_dst' => '0',
8056 ))
8057 ->values(array(
8058   'timezone' => '446',
8059   'name' => 'Pacific/Saipan',
8060   'offset' => '10:00:00',
8061   'offset_dst' => '10:00:00',
8062   'dst_region' => '0',
8063   'is_dst' => '0',
8064 ))
8065 ->values(array(
8066   'timezone' => '447',
8067   'name' => 'Pacific/Samoa',
8068   'offset' => '-11:00:00',
8069   'offset_dst' => '-11:00:00',
8070   'dst_region' => '0',
8071   'is_dst' => '0',
8072 ))
8073 ->values(array(
8074   'timezone' => '448',
8075   'name' => 'Pacific/Tahiti',
8076   'offset' => '-10:00:00',
8077   'offset_dst' => '-10:00:00',
8078   'dst_region' => '0',
8079   'is_dst' => '0',
8080 ))
8081 ->values(array(
8082   'timezone' => '449',
8083   'name' => 'Pacific/Tarawa',
8084   'offset' => '12:00:00',
8085   'offset_dst' => '12:00:00',
8086   'dst_region' => '0',
8087   'is_dst' => '0',
8088 ))
8089 ->values(array(
8090   'timezone' => '450',
8091   'name' => 'Pacific/Tongatapu',
8092   'offset' => '13:00:00',
8093   'offset_dst' => '13:00:00',
8094   'dst_region' => '0',
8095   'is_dst' => '0',
8096 ))
8097 ->values(array(
8098   'timezone' => '451',
8099   'name' => 'Pacific/Truk',
8100   'offset' => '10:00:00',
8101   'offset_dst' => '10:00:00',
8102   'dst_region' => '0',
8103   'is_dst' => '0',
8104 ))
8105 ->values(array(
8106   'timezone' => '452',
8107   'name' => 'Pacific/Wake',
8108   'offset' => '12:00:00',
8109   'offset_dst' => '12:00:00',
8110   'dst_region' => '0',
8111   'is_dst' => '0',
8112 ))
8113 ->values(array(
8114   'timezone' => '453',
8115   'name' => 'Pacific/Wallis',
8116   'offset' => '12:00:00',
8117   'offset_dst' => '12:00:00',
8118   'dst_region' => '0',
8119   'is_dst' => '0',
8120 ))
8121 ->values(array(
8122   'timezone' => '454',
8123   'name' => 'Pacific/Yap',
8124   'offset' => '10:00:00',
8125   'offset_dst' => '10:00:00',
8126   'dst_region' => '0',
8127   'is_dst' => '0',
8128 ))
8129 ->values(array(
8130   'timezone' => '455',
8131   'name' => 'Poland',
8132   'offset' => '01:00:00',
8133   'offset_dst' => '02:00:00',
8134   'dst_region' => '13',
8135   'is_dst' => '0',
8136 ))
8137 ->values(array(
8138   'timezone' => '456',
8139   'name' => 'Portugal',
8140   'offset' => '00:00:00',
8141   'offset_dst' => '01:00:00',
8142   'dst_region' => '13',
8143   'is_dst' => '0',
8144 ))
8145 ->values(array(
8146   'timezone' => '459',
8147   'name' => 'Singapore',
8148   'offset' => '08:00:00',
8149   'offset_dst' => '08:00:00',
8150   'dst_region' => '0',
8151   'is_dst' => '0',
8152 ))
8153 ->values(array(
8154   'timezone' => '473',
8155   'name' => 'Turkey',
8156   'offset' => '02:00:00',
8157   'offset_dst' => '03:00:00',
8158   'dst_region' => '13',
8159   'is_dst' => '0',
8160 ))
8161 ->values(array(
8162   'timezone' => '474',
8163   'name' => 'US/Alaska',
8164   'offset' => '-09:00:00',
8165   'offset_dst' => '-08:00:00',
8166   'dst_region' => '15',
8167   'is_dst' => '0',
8168 ))
8169 ->values(array(
8170   'timezone' => '475',
8171   'name' => 'US/Aleutian',
8172   'offset' => '-10:00:00',
8173   'offset_dst' => '-09:00:00',
8174   'dst_region' => '15',
8175   'is_dst' => '0',
8176 ))
8177 ->values(array(
8178   'timezone' => '476',
8179   'name' => 'US/Arizona',
8180   'offset' => '-07:00:00',
8181   'offset_dst' => '-07:00:00',
8182   'dst_region' => '0',
8183   'is_dst' => '0',
8184 ))
8185 ->values(array(
8186   'timezone' => '477',
8187   'name' => 'US/Central',
8188   'offset' => '-06:00:00',
8189   'offset_dst' => '-05:00:00',
8190   'dst_region' => '15',
8191   'is_dst' => '0',
8192 ))
8193 ->values(array(
8194   'timezone' => '478',
8195   'name' => 'US/East-Indiana',
8196   'offset' => '-05:00:00',
8197   'offset_dst' => '-05:00:00',
8198   'dst_region' => '0',
8199   'is_dst' => '0',
8200 ))
8201 ->values(array(
8202   'timezone' => '479',
8203   'name' => 'US/Eastern',
8204   'offset' => '-05:00:00',
8205   'offset_dst' => '-04:00:00',
8206   'dst_region' => '15',
8207   'is_dst' => '0',
8208 ))
8209 ->values(array(
8210   'timezone' => '480',
8211   'name' => 'US/Hawaii',
8212   'offset' => '-10:00:00',
8213   'offset_dst' => '-10:00:00',
8214   'dst_region' => '0',
8215   'is_dst' => '0',
8216 ))
8217 ->values(array(
8218   'timezone' => '481',
8219   'name' => 'US/Indiana-Starke',
8220   'offset' => '-05:00:00',
8221   'offset_dst' => '-05:00:00',
8222   'dst_region' => '0',
8223   'is_dst' => '0',
8224 ))
8225 ->values(array(
8226   'timezone' => '482',
8227   'name' => 'US/Michigan',
8228   'offset' => '-05:00:00',
8229   'offset_dst' => '-04:00:00',
8230   'dst_region' => '15',
8231   'is_dst' => '0',
8232 ))
8233 ->values(array(
8234   'timezone' => '483',
8235   'name' => 'US/Mountain',
8236   'offset' => '-07:00:00',
8237   'offset_dst' => '-06:00:00',
8238   'dst_region' => '15',
8239   'is_dst' => '0',
8240 ))
8241 ->values(array(
8242   'timezone' => '484',
8243   'name' => 'US/Pacific',
8244   'offset' => '-08:00:00',
8245   'offset_dst' => '-07:00:00',
8246   'dst_region' => '15',
8247   'is_dst' => '0',
8248 ))
8249 ->values(array(
8250   'timezone' => '485',
8251   'name' => 'US/Samoa',
8252   'offset' => '-11:00:00',
8253   'offset_dst' => '-11:00:00',
8254   'dst_region' => '0',
8255   'is_dst' => '0',
8256 ))
8257 ->values(array(
8258   'timezone' => '486',
8259   'name' => 'Pacific/French Polynesia-Marquesas Islands',
8260   'offset' => '-09:30:00',
8261   'offset_dst' => '-09:30:00',
8262   'dst_region' => '0',
8263   'is_dst' => '0',
8264 ))
8265 ->values(array(
8266   'timezone' => '487',
8267   'name' => 'Etc/GMT',
8268   'offset' => '00:00:00',
8269   'offset_dst' => '00:00:00',
8270   'dst_region' => '0',
8271   'is_dst' => '0',
8272 ))
8273 ->execute();
8274
8275 $connection->schema()->createTable('files', array(
8276   'fields' => array(
8277     'fid' => array(
8278       'type' => 'serial',
8279       'not null' => TRUE,
8280       'size' => 'normal',
8281       'unsigned' => TRUE,
8282     ),
8283     'uid' => array(
8284       'type' => 'int',
8285       'not null' => TRUE,
8286       'size' => 'normal',
8287       'default' => '0',
8288       'unsigned' => TRUE,
8289     ),
8290     'filename' => array(
8291       'type' => 'varchar',
8292       'not null' => TRUE,
8293       'length' => '255',
8294       'default' => '',
8295     ),
8296     'filepath' => array(
8297       'type' => 'varchar',
8298       'not null' => TRUE,
8299       'length' => '255',
8300       'default' => '',
8301     ),
8302     'filemime' => array(
8303       'type' => 'varchar',
8304       'not null' => TRUE,
8305       'length' => '255',
8306       'default' => '',
8307     ),
8308     'filesize' => array(
8309       'type' => 'int',
8310       'not null' => TRUE,
8311       'size' => 'normal',
8312       'default' => '0',
8313       'unsigned' => TRUE,
8314     ),
8315     'status' => array(
8316       'type' => 'int',
8317       'not null' => TRUE,
8318       'size' => 'normal',
8319       'default' => '0',
8320     ),
8321     'timestamp' => array(
8322       'type' => 'int',
8323       'not null' => TRUE,
8324       'size' => 'normal',
8325       'default' => '0',
8326       'unsigned' => TRUE,
8327     ),
8328   ),
8329   'primary key' => array(
8330     'fid',
8331   ),
8332   'mysql_character_set' => 'utf8',
8333 ));
8334
8335 $connection->insert('files')
8336 ->fields(array(
8337   'fid',
8338   'uid',
8339   'filename',
8340   'filepath',
8341   'filemime',
8342   'filesize',
8343   'status',
8344   'timestamp',
8345 ))
8346 ->values(array(
8347   'fid' => '1',
8348   'uid' => '1',
8349   'filename' => 'Image1.png',
8350   'filepath' => 'core/modules/simpletest/files/image-1.png',
8351   'filemime' => 'image/png',
8352   'filesize' => '39325',
8353   'status' => '1',
8354   'timestamp' => '1388880660',
8355 ))
8356 ->values(array(
8357   'fid' => '2',
8358   'uid' => '1',
8359   'filename' => 'Image2.jpg',
8360   'filepath' => 'core/modules/simpletest/files/image-2.jpg',
8361   'filemime' => 'image/jpeg',
8362   'filesize' => '1831',
8363   'status' => '1',
8364   'timestamp' => '1388880664',
8365 ))
8366 ->values(array(
8367   'fid' => '3',
8368   'uid' => '1',
8369   'filename' => 'Image-test.gif',
8370   'filepath' => 'core/modules/simpletest/files/image-test.gif',
8371   'filemime' => 'image/jpeg',
8372   'filesize' => '183',
8373   'status' => '1',
8374   'timestamp' => '1388880668',
8375 ))
8376 ->values(array(
8377   'fid' => '5',
8378   'uid' => '1',
8379   'filename' => 'html-1.txt',
8380   'filepath' => 'core/modules/simpletest/files/html-1.txt',
8381   'filemime' => 'text/plain',
8382   'filesize' => '24',
8383   'status' => '1',
8384   'timestamp' => '1420858106',
8385 ))
8386 ->values(array(
8387   'fid' => '6',
8388   'uid' => '1',
8389   'filename' => 'some-temp-file.jpg',
8390   'filepath' => '/tmp/some-temp-file.jpg',
8391   'filemime' => 'image/jpeg',
8392   'filesize' => '24',
8393   'status' => '0',
8394   'timestamp' => '1420858106',
8395 ))
8396 ->execute();
8397
8398 $connection->schema()->createTable('filter_formats', array(
8399   'fields' => array(
8400     'format' => array(
8401       'type' => 'serial',
8402       'not null' => TRUE,
8403       'size' => 'normal',
8404     ),
8405     'name' => array(
8406       'type' => 'varchar',
8407       'not null' => TRUE,
8408       'length' => '255',
8409       'default' => '',
8410     ),
8411     'roles' => array(
8412       'type' => 'varchar',
8413       'not null' => TRUE,
8414       'length' => '255',
8415       'default' => '',
8416     ),
8417     'cache' => array(
8418       'type' => 'int',
8419       'not null' => TRUE,
8420       'size' => 'normal',
8421       'default' => '0',
8422     ),
8423   ),
8424   'primary key' => array(
8425     'format',
8426   ),
8427   'mysql_character_set' => 'utf8',
8428 ));
8429
8430 $connection->insert('filter_formats')
8431 ->fields(array(
8432   'format',
8433   'name',
8434   'roles',
8435   'cache',
8436 ))
8437 ->values(array(
8438   'format' => '1',
8439   'name' => 'Filtered HTML',
8440   'roles' => ',1,2,',
8441   'cache' => '1',
8442 ))
8443 ->values(array(
8444   'format' => '2',
8445   'name' => 'Full HTML',
8446   'roles' => '3',
8447   'cache' => '1',
8448 ))
8449 ->values(array(
8450   'format' => '3',
8451   'name' => 'Escape HTML Filter',
8452   'roles' => '',
8453   'cache' => '1',
8454 ))
8455 ->values(array(
8456   'format' => '4',
8457   'name' => 'PHP Code',
8458   'roles' => ',3,4,5,',
8459   'cache' => '0',
8460 ))
8461 ->execute();
8462
8463 $connection->schema()->createTable('filters', array(
8464   'fields' => array(
8465     'fid' => array(
8466       'type' => 'serial',
8467       'not null' => TRUE,
8468       'size' => 'normal',
8469     ),
8470     'format' => array(
8471       'type' => 'int',
8472       'not null' => TRUE,
8473       'size' => 'normal',
8474       'default' => '0',
8475     ),
8476     'module' => array(
8477       'type' => 'varchar',
8478       'not null' => TRUE,
8479       'length' => '64',
8480       'default' => '',
8481     ),
8482     'delta' => array(
8483       'type' => 'int',
8484       'not null' => TRUE,
8485       'size' => 'normal',
8486       'default' => '0',
8487     ),
8488     'weight' => array(
8489       'type' => 'int',
8490       'not null' => TRUE,
8491       'size' => 'normal',
8492       'default' => '0',
8493     ),
8494   ),
8495   'primary key' => array(
8496     'fid',
8497   ),
8498   'mysql_character_set' => 'utf8',
8499 ));
8500
8501 $connection->insert('filters')
8502 ->fields(array(
8503   'fid',
8504   'format',
8505   'module',
8506   'delta',
8507   'weight',
8508 ))
8509 ->values(array(
8510   'fid' => '1',
8511   'format' => '1',
8512   'module' => 'filter',
8513   'delta' => '2',
8514   'weight' => '0',
8515 ))
8516 ->values(array(
8517   'fid' => '2',
8518   'format' => '1',
8519   'module' => 'filter',
8520   'delta' => '0',
8521   'weight' => '1',
8522 ))
8523 ->values(array(
8524   'fid' => '3',
8525   'format' => '1',
8526   'module' => 'filter',
8527   'delta' => '1',
8528   'weight' => '2',
8529 ))
8530 ->values(array(
8531   'fid' => '4',
8532   'format' => '1',
8533   'module' => 'filter',
8534   'delta' => '3',
8535   'weight' => '10',
8536 ))
8537 ->values(array(
8538   'fid' => '5',
8539   'format' => '2',
8540   'module' => 'filter',
8541   'delta' => '2',
8542   'weight' => '0',
8543 ))
8544 ->values(array(
8545   'fid' => '6',
8546   'format' => '2',
8547   'module' => 'filter',
8548   'delta' => '1',
8549   'weight' => '1',
8550 ))
8551 ->values(array(
8552   'fid' => '7',
8553   'format' => '2',
8554   'module' => 'filter',
8555   'delta' => '3',
8556   'weight' => '10',
8557 ))
8558 ->values(array(
8559   'fid' => '8',
8560   'format' => '6',
8561   'module' => 'filter',
8562   'delta' => '2',
8563   'weight' => '0',
8564 ))
8565 ->values(array(
8566   'fid' => '9',
8567   'format' => '6',
8568   'module' => 'filter',
8569   'delta' => '0',
8570   'weight' => '1',
8571 ))
8572 ->values(array(
8573   'fid' => '10',
8574   'format' => '6',
8575   'module' => 'filter',
8576   'delta' => '1',
8577   'weight' => '2',
8578 ))
8579 ->values(array(
8580   'fid' => '11',
8581   'format' => '6',
8582   'module' => 'filter',
8583   'delta' => '3',
8584   'weight' => '10',
8585 ))
8586 ->values(array(
8587   'fid' => '16',
8588   'format' => '4',
8589   'module' => 'php',
8590   'delta' => '0',
8591   'weight' => '10',
8592 ))
8593 ->execute();
8594
8595 $connection->schema()->createTable('flood', array(
8596   'fields' => array(
8597     'fid' => array(
8598       'type' => 'serial',
8599       'not null' => TRUE,
8600       'size' => 'normal',
8601     ),
8602     'event' => array(
8603       'type' => 'varchar',
8604       'not null' => TRUE,
8605       'length' => '64',
8606       'default' => '',
8607     ),
8608     'hostname' => array(
8609       'type' => 'varchar',
8610       'not null' => TRUE,
8611       'length' => '128',
8612       'default' => '',
8613     ),
8614     'timestamp' => array(
8615       'type' => 'int',
8616       'not null' => TRUE,
8617       'size' => 'normal',
8618       'default' => '0',
8619     ),
8620   ),
8621   'primary key' => array(
8622     'fid',
8623   ),
8624   'mysql_character_set' => 'utf8',
8625 ));
8626
8627 $connection->schema()->createTable('forum', array(
8628   'fields' => array(
8629     'nid' => array(
8630       'type' => 'int',
8631       'not null' => TRUE,
8632       'size' => 'normal',
8633       'default' => '0',
8634       'unsigned' => TRUE,
8635     ),
8636     'vid' => array(
8637       'type' => 'int',
8638       'not null' => TRUE,
8639       'size' => 'normal',
8640       'default' => '0',
8641       'unsigned' => TRUE,
8642     ),
8643     'tid' => array(
8644       'type' => 'int',
8645       'not null' => TRUE,
8646       'size' => 'normal',
8647       'default' => '0',
8648       'unsigned' => TRUE,
8649     ),
8650   ),
8651   'primary key' => array(
8652     'vid',
8653   ),
8654   'indexes' => array(
8655     'nid' => array(
8656       'nid',
8657     ),
8658     'tid' => array(
8659       'tid',
8660     ),
8661   ),
8662   'mysql_character_set' => 'utf8',
8663 ));
8664
8665 $connection->insert('forum')
8666 ->fields(array(
8667   'nid',
8668   'vid',
8669   'tid',
8670 ))
8671 ->values(array(
8672   'nid' => '19',
8673   'vid' => '22',
8674   'tid' => '8',
8675 ))
8676 ->execute();
8677
8678 $connection->schema()->createTable('history', array(
8679   'fields' => array(
8680     'uid' => array(
8681       'type' => 'int',
8682       'not null' => TRUE,
8683       'size' => 'normal',
8684       'default' => '0',
8685     ),
8686     'nid' => array(
8687       'type' => 'int',
8688       'not null' => TRUE,
8689       'size' => 'normal',
8690       'default' => '0',
8691     ),
8692     'timestamp' => array(
8693       'type' => 'int',
8694       'not null' => TRUE,
8695       'size' => 'normal',
8696       'default' => '0',
8697     ),
8698   ),
8699   'primary key' => array(
8700     'uid',
8701     'nid',
8702   ),
8703   'mysql_character_set' => 'utf8',
8704 ));
8705
8706 $connection->insert('history')
8707 ->fields(array(
8708   'uid',
8709   'nid',
8710   'timestamp',
8711 ))
8712 ->values(array(
8713   'uid' => '1',
8714   'nid' => '3',
8715   'timestamp' => '1457654737',
8716 ))
8717 ->values(array(
8718   'uid' => '1',
8719   'nid' => '9',
8720   'timestamp' => '1468384961',
8721 ))
8722 ->values(array(
8723   'uid' => '1',
8724   'nid' => '12',
8725   'timestamp' => '1468384823',
8726 ))
8727 ->values(array(
8728   'uid' => '1',
8729   'nid' => '13',
8730   'timestamp' => '1468384931',
8731 ))
8732 ->values(array(
8733   'uid' => '1',
8734   'nid' => '14',
8735   'timestamp' => '1493066668',
8736 ))
8737 ->values(array(
8738   'uid' => '1',
8739   'nid' => '15',
8740   'timestamp' => '1493066677',
8741 ))
8742 ->values(array(
8743   'uid' => '1',
8744   'nid' => '16',
8745   'timestamp' => '1493066685',
8746 ))
8747 ->values(array(
8748   'uid' => '1',
8749   'nid' => '17',
8750   'timestamp' => '1493066693',
8751 ))
8752 ->values(array(
8753   'uid' => '1',
8754   'nid' => '18',
8755   'timestamp' => '1493066711',
8756 ))
8757 ->values(array(
8758   'uid' => '1',
8759   'nid' => '19',
8760   'timestamp' => '1501955803',
8761 ))
8762 ->values(array(
8763   'uid' => '1',
8764   'nid' => '21',
8765   'timestamp' => '1534014729',
8766 ))
8767 ->values(array(
8768   'uid' => '1',
8769   'nid' => '22',
8770   'timestamp' => '1534014763',
8771 ))
8772 ->execute();
8773
8774 $connection->schema()->createTable('i18n_blocks', array(
8775   'fields' => array(
8776     'ibid' => array(
8777       'type' => 'serial',
8778       'not null' => TRUE,
8779       'size' => 'normal',
8780       'unsigned' => TRUE,
8781     ),
8782     'module' => array(
8783       'type' => 'varchar',
8784       'not null' => TRUE,
8785       'length' => '64',
8786     ),
8787     'delta' => array(
8788       'type' => 'varchar',
8789       'not null' => TRUE,
8790       'length' => '32',
8791       'default' => '0',
8792     ),
8793     'type' => array(
8794       'type' => 'int',
8795       'not null' => TRUE,
8796       'size' => 'normal',
8797       'default' => '0',
8798     ),
8799     'language' => array(
8800       'type' => 'varchar',
8801       'not null' => TRUE,
8802       'length' => '12',
8803       'default' => '',
8804     ),
8805   ),
8806   'primary key' => array(
8807     'ibid',
8808   ),
8809   'mysql_character_set' => 'utf8',
8810 ));
8811
8812 $connection->insert('i18n_blocks')
8813 ->fields(array(
8814   'ibid',
8815   'module',
8816   'delta',
8817   'type',
8818   'language',
8819 ))
8820 ->values(array(
8821   'ibid' => '1',
8822   'module' => 'user',
8823   'delta' => '1',
8824   'type' => '0',
8825   'language' => 'zu',
8826 ))
8827 ->values(array(
8828   'ibid' => '2',
8829   'module' => 'menu',
8830   'delta' => 'menu-translation-test',
8831   'type' => '0',
8832   'language' => 'zu',
8833 ))
8834 ->execute();
8835
8836 $connection->schema()->createTable('i18n_strings', array(
8837   'fields' => array(
8838     'lid' => array(
8839       'type' => 'int',
8840       'not null' => TRUE,
8841       'size' => 'normal',
8842       'default' => '0',
8843     ),
8844     'objectid' => array(
8845       'type' => 'varchar',
8846       'not null' => TRUE,
8847       'length' => '255',
8848       'default' => '',
8849     ),
8850     'type' => array(
8851       'type' => 'varchar',
8852       'not null' => TRUE,
8853       'length' => '255',
8854       'default' => '',
8855     ),
8856     'property' => array(
8857       'type' => 'varchar',
8858       'not null' => TRUE,
8859       'length' => '255',
8860       'default' => '',
8861     ),
8862     'objectindex' => array(
8863       'type' => 'int',
8864       'not null' => TRUE,
8865       'size' => 'normal',
8866       'default' => '0',
8867     ),
8868     'format' => array(
8869       'type' => 'int',
8870       'not null' => TRUE,
8871       'size' => 'normal',
8872       'default' => '0',
8873     ),
8874   ),
8875   'primary key' => array(
8876     'lid',
8877   ),
8878   'mysql_character_set' => 'utf8',
8879 ));
8880
8881 $connection->insert('i18n_strings')
8882 ->fields(array(
8883   'lid',
8884   'objectid',
8885   'type',
8886   'property',
8887   'objectindex',
8888   'format',
8889 ))
8890 ->values(array(
8891   'lid' => '504',
8892   'objectid' => 'profile_color',
8893   'type' => 'field',
8894   'property' => 'title',
8895   'objectindex' => '0',
8896   'format' => '0',
8897 ))
8898 ->values(array(
8899   'lid' => '505',
8900   'objectid' => 'profile_color',
8901   'type' => 'field',
8902   'property' => 'explanation',
8903   'objectindex' => '0',
8904   'format' => '0',
8905 ))
8906 ->values(array(
8907   'lid' => '506',
8908   'objectid' => '',
8909   'type' => 'category',
8910   'property' => '',
8911   'objectindex' => '0',
8912   'format' => '0',
8913 ))
8914 ->values(array(
8915   'lid' => '507',
8916   'objectid' => 'profile_biography',
8917   'type' => 'field',
8918   'property' => 'title',
8919   'objectindex' => '0',
8920   'format' => '0',
8921 ))
8922 ->values(array(
8923   'lid' => '508',
8924   'objectid' => 'profile_biography',
8925   'type' => 'field',
8926   'property' => 'explanation',
8927   'objectindex' => '0',
8928   'format' => '0',
8929 ))
8930 ->values(array(
8931   'lid' => '509',
8932   'objectid' => 'profile_sell_Address',
8933   'type' => 'field',
8934   'property' => 'title',
8935   'objectindex' => '0',
8936   'format' => '0',
8937 ))
8938 ->values(array(
8939   'lid' => '510',
8940   'objectid' => 'profile_sell_Address',
8941   'type' => 'field',
8942   'property' => 'explanation',
8943   'objectindex' => '0',
8944   'format' => '0',
8945 ))
8946 ->values(array(
8947   'lid' => '511',
8948   'objectid' => '',
8949   'type' => 'category',
8950   'property' => '',
8951   'objectindex' => '0',
8952   'format' => '0',
8953 ))
8954 ->values(array(
8955   'lid' => '512',
8956   'objectid' => 'profile_sold_to',
8957   'type' => 'field',
8958   'property' => 'title',
8959   'objectindex' => '0',
8960   'format' => '0',
8961 ))
8962 ->values(array(
8963   'lid' => '513',
8964   'objectid' => 'profile_sold_to',
8965   'type' => 'field',
8966   'property' => 'explanation',
8967   'objectindex' => '0',
8968   'format' => '0',
8969 ))
8970 ->values(array(
8971   'lid' => '514',
8972   'objectid' => 'profile_sold_to',
8973   'type' => 'field',
8974   'property' => 'options',
8975   'objectindex' => '0',
8976   'format' => '0',
8977 ))
8978 ->values(array(
8979   'lid' => '515',
8980   'objectid' => '',
8981   'type' => 'category',
8982   'property' => '',
8983   'objectindex' => '0',
8984   'format' => '0',
8985 ))
8986 ->values(array(
8987   'lid' => '516',
8988   'objectid' => 'profile_bands',
8989   'type' => 'field',
8990   'property' => 'title',
8991   'objectindex' => '0',
8992   'format' => '0',
8993 ))
8994 ->values(array(
8995   'lid' => '517',
8996   'objectid' => 'profile_bands',
8997   'type' => 'field',
8998   'property' => 'explanation',
8999   'objectindex' => '0',
9000   'format' => '0',
9001 ))
9002 ->values(array(
9003   'lid' => '518',
9004   'objectid' => 'profile_birthdate',
9005   'type' => 'field',
9006   'property' => 'title',
9007   'objectindex' => '0',
9008   'format' => '0',
9009 ))
9010 ->values(array(
9011   'lid' => '519',
9012   'objectid' => 'profile_birthdate',
9013   'type' => 'field',
9014   'property' => 'explanation',
9015   'objectindex' => '0',
9016   'format' => '0',
9017 ))
9018 ->values(array(
9019   'lid' => '520',
9020   'objectid' => 'profile_really_really_love_migrations',
9021   'type' => 'field',
9022   'property' => 'title',
9023   'objectindex' => '0',
9024   'format' => '0',
9025 ))
9026 ->values(array(
9027   'lid' => '521',
9028   'objectid' => 'profile_really_really_love_migrations',
9029   'type' => 'field',
9030   'property' => 'explanation',
9031   'objectindex' => '0',
9032   'format' => '0',
9033 ))
9034 ->values(array(
9035   'lid' => '522',
9036   'objectid' => 'profile_blog',
9037   'type' => 'field',
9038   'property' => 'title',
9039   'objectindex' => '0',
9040   'format' => '0',
9041 ))
9042 ->values(array(
9043   'lid' => '523',
9044   'objectid' => 'profile_blog',
9045   'type' => 'field',
9046   'property' => 'explanation',
9047   'objectindex' => '0',
9048   'format' => '0',
9049 ))
9050 ->values(array(
9051   'lid' => '524',
9052   'objectid' => '1',
9053   'type' => 'block',
9054   'property' => 'title',
9055   'objectindex' => '1',
9056   'format' => '0',
9057 ))
9058 ->values(array(
9059   'lid' => '525',
9060   'objectid' => '1',
9061   'type' => 'block',
9062   'property' => 'body',
9063   'objectindex' => '1',
9064   'format' => '2',
9065 ))
9066 ->values(array(
9067   'lid' => '526',
9068   'objectid' => '2',
9069   'type' => 'block',
9070   'property' => 'title',
9071   'objectindex' => '2',
9072   'format' => '0',
9073 ))
9074 ->values(array(
9075   'lid' => '527',
9076   'objectid' => '2',
9077   'type' => 'block',
9078   'property' => 'body',
9079   'objectindex' => '2',
9080   'format' => '2',
9081 ))
9082 ->values(array(
9083   'lid' => '528',
9084   'objectid' => '4',
9085   'type' => 'vocabulary',
9086   'property' => 'name',
9087   'objectindex' => '4',
9088   'format' => '0',
9089 ))
9090 ->values(array(
9091   'lid' => '529',
9092   'objectid' => '1',
9093   'type' => 'vocabulary',
9094   'property' => 'name',
9095   'objectindex' => '1',
9096   'format' => '0',
9097 ))
9098 ->values(array(
9099   'lid' => '530',
9100   'objectid' => '2',
9101   'type' => 'vocabulary',
9102   'property' => 'name',
9103   'objectindex' => '2',
9104   'format' => '0',
9105 ))
9106 ->values(array(
9107   'lid' => '531',
9108   'objectid' => '3',
9109   'type' => 'vocabulary',
9110   'property' => 'name',
9111   'objectindex' => '3',
9112   'format' => '0',
9113 ))
9114 ->values(array(
9115   'lid' => '532',
9116   'objectid' => '5',
9117   'type' => 'vocabulary',
9118   'property' => 'name',
9119   'objectindex' => '5',
9120   'format' => '0',
9121 ))
9122 ->values(array(
9123   'lid' => '533',
9124   'objectid' => 'article',
9125   'type' => 'type',
9126   'property' => 'name',
9127   'objectindex' => '0',
9128   'format' => '0',
9129 ))
9130 ->values(array(
9131   'lid' => '534',
9132   'objectid' => 'article',
9133   'type' => 'type',
9134   'property' => 'title',
9135   'objectindex' => '0',
9136   'format' => '0',
9137 ))
9138 ->values(array(
9139   'lid' => '535',
9140   'objectid' => 'article',
9141   'type' => 'type',
9142   'property' => 'body',
9143   'objectindex' => '0',
9144   'format' => '0',
9145 ))
9146 ->values(array(
9147   'lid' => '536',
9148   'objectid' => 'article',
9149   'type' => 'type',
9150   'property' => 'description',
9151   'objectindex' => '0',
9152   'format' => '0',
9153 ))
9154 ->values(array(
9155   'lid' => '537',
9156   'objectid' => 'company',
9157   'type' => 'type',
9158   'property' => 'name',
9159   'objectindex' => '0',
9160   'format' => '0',
9161 ))
9162 ->values(array(
9163   'lid' => '538',
9164   'objectid' => 'company',
9165   'type' => 'type',
9166   'property' => 'title',
9167   'objectindex' => '0',
9168   'format' => '0',
9169 ))
9170 ->values(array(
9171   'lid' => '539',
9172   'objectid' => 'company',
9173   'type' => 'type',
9174   'property' => 'body',
9175   'objectindex' => '0',
9176   'format' => '0',
9177 ))
9178 ->values(array(
9179   'lid' => '540',
9180   'objectid' => 'company',
9181   'type' => 'type',
9182   'property' => 'description',
9183   'objectindex' => '0',
9184   'format' => '0',
9185 ))
9186 ->values(array(
9187   'lid' => '541',
9188   'objectid' => 'employee',
9189   'type' => 'type',
9190   'property' => 'name',
9191   'objectindex' => '0',
9192   'format' => '0',
9193 ))
9194 ->values(array(
9195   'lid' => '542',
9196   'objectid' => 'employee',
9197   'type' => 'type',
9198   'property' => 'title',
9199   'objectindex' => '0',
9200   'format' => '0',
9201 ))
9202 ->values(array(
9203   'lid' => '543',
9204   'objectid' => 'employee',
9205   'type' => 'type',
9206   'property' => 'body',
9207   'objectindex' => '0',
9208   'format' => '0',
9209 ))
9210 ->values(array(
9211   'lid' => '544',
9212   'objectid' => 'employee',
9213   'type' => 'type',
9214   'property' => 'description',
9215   'objectindex' => '0',
9216   'format' => '0',
9217 ))
9218 ->values(array(
9219   'lid' => '545',
9220   'objectid' => 'sponsor',
9221   'type' => 'type',
9222   'property' => 'name',
9223   'objectindex' => '0',
9224   'format' => '0',
9225 ))
9226 ->values(array(
9227   'lid' => '546',
9228   'objectid' => 'sponsor',
9229   'type' => 'type',
9230   'property' => 'title',
9231   'objectindex' => '0',
9232   'format' => '0',
9233 ))
9234 ->values(array(
9235   'lid' => '547',
9236   'objectid' => 'sponsor',
9237   'type' => 'type',
9238   'property' => 'body',
9239   'objectindex' => '0',
9240   'format' => '0',
9241 ))
9242 ->values(array(
9243   'lid' => '548',
9244   'objectid' => 'sponsor',
9245   'type' => 'type',
9246   'property' => 'description',
9247   'objectindex' => '0',
9248   'format' => '0',
9249 ))
9250 ->values(array(
9251   'lid' => '549',
9252   'objectid' => 'story',
9253   'type' => 'type',
9254   'property' => 'name',
9255   'objectindex' => '0',
9256   'format' => '0',
9257 ))
9258 ->values(array(
9259   'lid' => '550',
9260   'objectid' => 'story',
9261   'type' => 'type',
9262   'property' => 'title',
9263   'objectindex' => '0',
9264   'format' => '0',
9265 ))
9266 ->values(array(
9267   'lid' => '551',
9268   'objectid' => 'story',
9269   'type' => 'type',
9270   'property' => 'body',
9271   'objectindex' => '0',
9272   'format' => '0',
9273 ))
9274 ->values(array(
9275   'lid' => '552',
9276   'objectid' => 'story',
9277   'type' => 'type',
9278   'property' => 'description',
9279   'objectindex' => '0',
9280   'format' => '0',
9281 ))
9282 ->values(array(
9283   'lid' => '553',
9284   'objectid' => 'test_event',
9285   'type' => 'type',
9286   'property' => 'name',
9287   'objectindex' => '0',
9288   'format' => '0',
9289 ))
9290 ->values(array(
9291   'lid' => '554',
9292   'objectid' => 'test_event',
9293   'type' => 'type',
9294   'property' => 'title',
9295   'objectindex' => '0',
9296   'format' => '0',
9297 ))
9298 ->values(array(
9299   'lid' => '555',
9300   'objectid' => 'test_event',
9301   'type' => 'type',
9302   'property' => 'body',
9303   'objectindex' => '0',
9304   'format' => '0',
9305 ))
9306 ->values(array(
9307   'lid' => '556',
9308   'objectid' => 'test_event',
9309   'type' => 'type',
9310   'property' => 'description',
9311   'objectindex' => '0',
9312   'format' => '0',
9313 ))
9314 ->values(array(
9315   'lid' => '558',
9316   'objectid' => 'test_page',
9317   'type' => 'type',
9318   'property' => 'name',
9319   'objectindex' => '0',
9320   'format' => '0',
9321 ))
9322 ->values(array(
9323   'lid' => '559',
9324   'objectid' => 'test_page',
9325   'type' => 'type',
9326   'property' => 'title',
9327   'objectindex' => '0',
9328   'format' => '0',
9329 ))
9330 ->values(array(
9331   'lid' => '560',
9332   'objectid' => 'test_page',
9333   'type' => 'type',
9334   'property' => 'body',
9335   'objectindex' => '0',
9336   'format' => '0',
9337 ))
9338 ->values(array(
9339   'lid' => '561',
9340   'objectid' => 'test_page',
9341   'type' => 'type',
9342   'property' => 'description',
9343   'objectindex' => '0',
9344   'format' => '0',
9345 ))
9346 ->values(array(
9347   'lid' => '562',
9348   'objectid' => 'test_planet',
9349   'type' => 'type',
9350   'property' => 'name',
9351   'objectindex' => '0',
9352   'format' => '0',
9353 ))
9354 ->values(array(
9355   'lid' => '563',
9356   'objectid' => 'test_planet',
9357   'type' => 'type',
9358   'property' => 'title',
9359   'objectindex' => '0',
9360   'format' => '0',
9361 ))
9362 ->values(array(
9363   'lid' => '564',
9364   'objectid' => 'test_planet',
9365   'type' => 'type',
9366   'property' => 'body',
9367   'objectindex' => '0',
9368   'format' => '0',
9369 ))
9370 ->values(array(
9371   'lid' => '565',
9372   'objectid' => 'test_planet',
9373   'type' => 'type',
9374   'property' => 'description',
9375   'objectindex' => '0',
9376   'format' => '0',
9377 ))
9378 ->values(array(
9379   'lid' => '566',
9380   'objectid' => 'test_story',
9381   'type' => 'type',
9382   'property' => 'name',
9383   'objectindex' => '0',
9384   'format' => '0',
9385 ))
9386 ->values(array(
9387   'lid' => '567',
9388   'objectid' => 'test_story',
9389   'type' => 'type',
9390   'property' => 'title',
9391   'objectindex' => '0',
9392   'format' => '0',
9393 ))
9394 ->values(array(
9395   'lid' => '568',
9396   'objectid' => 'test_story',
9397   'type' => 'type',
9398   'property' => 'body',
9399   'objectindex' => '0',
9400   'format' => '0',
9401 ))
9402 ->values(array(
9403   'lid' => '569',
9404   'objectid' => 'test_story',
9405   'type' => 'type',
9406   'property' => 'description',
9407   'objectindex' => '0',
9408   'format' => '0',
9409 ))
9410 ->values(array(
9411   'lid' => '570',
9412   'objectid' => 'story-field_test_exclude_unset',
9413   'type' => 'field',
9414   'property' => 'widget_label',
9415   'objectindex' => '0',
9416   'format' => '0',
9417 ))
9418 ->values(array(
9419   'lid' => '571',
9420   'objectid' => 'story-field_test_exclude_unset',
9421   'type' => 'field',
9422   'property' => 'widget_description',
9423   'objectindex' => '0',
9424   'format' => '0',
9425 ))
9426 ->values(array(
9427   'lid' => '572',
9428   'objectid' => 'story-field_test_two',
9429   'type' => 'field',
9430   'property' => 'widget_label',
9431   'objectindex' => '0',
9432   'format' => '0',
9433 ))
9434 ->values(array(
9435   'lid' => '573',
9436   'objectid' => 'story-field_test_two',
9437   'type' => 'field',
9438   'property' => 'widget_description',
9439   'objectindex' => '0',
9440   'format' => '0',
9441 ))
9442 ->values(array(
9443   'lid' => '574',
9444   'objectid' => 'story-field_test',
9445   'type' => 'field',
9446   'property' => 'widget_label',
9447   'objectindex' => '0',
9448   'format' => '0',
9449 ))
9450 ->values(array(
9451   'lid' => '575',
9452   'objectid' => 'story-field_test',
9453   'type' => 'field',
9454   'property' => 'widget_description',
9455   'objectindex' => '0',
9456   'format' => '0',
9457 ))
9458 ->values(array(
9459   'lid' => '576',
9460   'objectid' => 'story-field_test_three',
9461   'type' => 'field',
9462   'property' => 'widget_label',
9463   'objectindex' => '0',
9464   'format' => '0',
9465 ))
9466 ->values(array(
9467   'lid' => '577',
9468   'objectid' => 'story-field_test_three',
9469   'type' => 'field',
9470   'property' => 'widget_description',
9471   'objectindex' => '0',
9472   'format' => '0',
9473 ))
9474 ->values(array(
9475   'lid' => '578',
9476   'objectid' => 'story-field_test_four',
9477   'type' => 'field',
9478   'property' => 'widget_label',
9479   'objectindex' => '0',
9480   'format' => '0',
9481 ))
9482 ->values(array(
9483   'lid' => '579',
9484   'objectid' => 'story-field_test_four',
9485   'type' => 'field',
9486   'property' => 'widget_description',
9487   'objectindex' => '0',
9488   'format' => '0',
9489 ))
9490 ->values(array(
9491   'lid' => '580',
9492   'objectid' => 'story-field_test_identical1',
9493   'type' => 'field',
9494   'property' => 'widget_label',
9495   'objectindex' => '0',
9496   'format' => '0',
9497 ))
9498 ->values(array(
9499   'lid' => '581',
9500   'objectid' => 'story-field_test_identical1',
9501   'type' => 'field',
9502   'property' => 'widget_description',
9503   'objectindex' => '0',
9504   'format' => '0',
9505 ))
9506 ->values(array(
9507   'lid' => '582',
9508   'objectid' => 'story-field_test_identical2',
9509   'type' => 'field',
9510   'property' => 'widget_label',
9511   'objectindex' => '0',
9512   'format' => '0',
9513 ))
9514 ->values(array(
9515   'lid' => '583',
9516   'objectid' => 'story-field_test_identical2',
9517   'type' => 'field',
9518   'property' => 'widget_description',
9519   'objectindex' => '0',
9520   'format' => '0',
9521 ))
9522 ->values(array(
9523   'lid' => '584',
9524   'objectid' => 'story-field_test_email',
9525   'type' => 'field',
9526   'property' => 'widget_label',
9527   'objectindex' => '0',
9528   'format' => '0',
9529 ))
9530 ->values(array(
9531   'lid' => '585',
9532   'objectid' => 'story-field_test_email',
9533   'type' => 'field',
9534   'property' => 'widget_description',
9535   'objectindex' => '0',
9536   'format' => '0',
9537 ))
9538 ->values(array(
9539   'lid' => '586',
9540   'objectid' => 'story-field_test_link',
9541   'type' => 'field',
9542   'property' => 'widget_label',
9543   'objectindex' => '0',
9544   'format' => '0',
9545 ))
9546 ->values(array(
9547   'lid' => '587',
9548   'objectid' => 'story-field_test_link',
9549   'type' => 'field',
9550   'property' => 'widget_description',
9551   'objectindex' => '0',
9552   'format' => '0',
9553 ))
9554 ->values(array(
9555   'lid' => '588',
9556   'objectid' => 'story-field_test_filefield',
9557   'type' => 'field',
9558   'property' => 'widget_label',
9559   'objectindex' => '0',
9560   'format' => '0',
9561 ))
9562 ->values(array(
9563   'lid' => '589',
9564   'objectid' => 'story-field_test_filefield',
9565   'type' => 'field',
9566   'property' => 'widget_description',
9567   'objectindex' => '0',
9568   'format' => '0',
9569 ))
9570 ->values(array(
9571   'lid' => '590',
9572   'objectid' => 'story-field_test_imagefield',
9573   'type' => 'field',
9574   'property' => 'widget_label',
9575   'objectindex' => '0',
9576   'format' => '0',
9577 ))
9578 ->values(array(
9579   'lid' => '591',
9580   'objectid' => 'story-field_test_imagefield',
9581   'type' => 'field',
9582   'property' => 'widget_description',
9583   'objectindex' => '0',
9584   'format' => '0',
9585 ))
9586 ->values(array(
9587   'lid' => '592',
9588   'objectid' => 'story-field_test_date',
9589   'type' => 'field',
9590   'property' => 'widget_label',
9591   'objectindex' => '0',
9592   'format' => '0',
9593 ))
9594 ->values(array(
9595   'lid' => '593',
9596   'objectid' => 'story-field_test_date',
9597   'type' => 'field',
9598   'property' => 'widget_description',
9599   'objectindex' => '0',
9600   'format' => '0',
9601 ))
9602 ->values(array(
9603   'lid' => '594',
9604   'objectid' => 'story-field_test_datestamp',
9605   'type' => 'field',
9606   'property' => 'widget_label',
9607   'objectindex' => '0',
9608   'format' => '0',
9609 ))
9610 ->values(array(
9611   'lid' => '595',
9612   'objectid' => 'story-field_test_datestamp',
9613   'type' => 'field',
9614   'property' => 'widget_description',
9615   'objectindex' => '0',
9616   'format' => '0',
9617 ))
9618 ->values(array(
9619   'lid' => '596',
9620   'objectid' => 'story-field_test_datetime',
9621   'type' => 'field',
9622   'property' => 'widget_label',
9623   'objectindex' => '0',
9624   'format' => '0',
9625 ))
9626 ->values(array(
9627   'lid' => '597',
9628   'objectid' => 'story-field_test_datetime',
9629   'type' => 'field',
9630   'property' => 'widget_description',
9631   'objectindex' => '0',
9632   'format' => '0',
9633 ))
9634 ->values(array(
9635   'lid' => '598',
9636   'objectid' => 'story-field_test_phone',
9637   'type' => 'field',
9638   'property' => 'widget_label',
9639   'objectindex' => '0',
9640   'format' => '0',
9641 ))
9642 ->values(array(
9643   'lid' => '599',
9644   'objectid' => 'story-field_test_phone',
9645   'type' => 'field',
9646   'property' => 'widget_description',
9647   'objectindex' => '0',
9648   'format' => '0',
9649 ))
9650 ->values(array(
9651   'lid' => '600',
9652   'objectid' => 'story-field_test_decimal_radio_buttons',
9653   'type' => 'field',
9654   'property' => 'widget_label',
9655   'objectindex' => '0',
9656   'format' => '0',
9657 ))
9658 ->values(array(
9659   'lid' => '601',
9660   'objectid' => 'story-field_test_decimal_radio_buttons',
9661   'type' => 'field',
9662   'property' => 'widget_description',
9663   'objectindex' => '0',
9664   'format' => '0',
9665 ))
9666 ->values(array(
9667   'lid' => '602',
9668   'objectid' => 'field_test_decimal_radio_buttons',
9669   'type' => 'field',
9670   'property' => 'option_1.2',
9671   'objectindex' => '0',
9672   'format' => '0',
9673 ))
9674 ->values(array(
9675   'lid' => '603',
9676   'objectid' => 'field_test_decimal_radio_buttons',
9677   'type' => 'field',
9678   'property' => 'option_2.1',
9679   'objectindex' => '0',
9680   'format' => '0',
9681 ))
9682 ->values(array(
9683   'lid' => '604',
9684   'objectid' => 'story-field_test_float_single_checkbox',
9685   'type' => 'field',
9686   'property' => 'widget_label',
9687   'objectindex' => '0',
9688   'format' => '0',
9689 ))
9690 ->values(array(
9691   'lid' => '605',
9692   'objectid' => 'story-field_test_float_single_checkbox',
9693   'type' => 'field',
9694   'property' => 'widget_description',
9695   'objectindex' => '0',
9696   'format' => '0',
9697 ))
9698 ->values(array(
9699   'lid' => '606',
9700   'objectid' => 'field_test_float_single_checkbox',
9701   'type' => 'field',
9702   'property' => 'option_3.142',
9703   'objectindex' => '0',
9704   'format' => '0',
9705 ))
9706 ->values(array(
9707   'lid' => '607',
9708   'objectid' => 'field_test_float_single_checkbox',
9709   'type' => 'field',
9710   'property' => 'option_1.234',
9711   'objectindex' => '0',
9712   'format' => '0',
9713 ))
9714 ->values(array(
9715   'lid' => '608',
9716   'objectid' => 'story-field_test_integer_selectlist',
9717   'type' => 'field',
9718   'property' => 'widget_label',
9719   'objectindex' => '0',
9720   'format' => '0',
9721 ))
9722 ->values(array(
9723   'lid' => '609',
9724   'objectid' => 'story-field_test_integer_selectlist',
9725   'type' => 'field',
9726   'property' => 'widget_description',
9727   'objectindex' => '0',
9728   'format' => '0',
9729 ))
9730 ->values(array(
9731   'lid' => '610',
9732   'objectid' => 'field_test_integer_selectlist',
9733   'type' => 'field',
9734   'property' => 'option_1234',
9735   'objectindex' => '0',
9736   'format' => '0',
9737 ))
9738 ->values(array(
9739   'lid' => '611',
9740   'objectid' => 'field_test_integer_selectlist',
9741   'type' => 'field',
9742   'property' => 'option_2341',
9743   'objectindex' => '0',
9744   'format' => '0',
9745 ))
9746 ->values(array(
9747   'lid' => '612',
9748   'objectid' => 'field_test_integer_selectlist',
9749   'type' => 'field',
9750   'property' => 'option_3412',
9751   'objectindex' => '0',
9752   'format' => '0',
9753 ))
9754 ->values(array(
9755   'lid' => '613',
9756   'objectid' => 'field_test_integer_selectlist',
9757   'type' => 'field',
9758   'property' => 'option_4123',
9759   'objectindex' => '0',
9760   'format' => '0',
9761 ))
9762 ->values(array(
9763   'lid' => '614',
9764   'objectid' => 'story-field_test_text_single_checkbox',
9765   'type' => 'field',
9766   'property' => 'widget_label',
9767   'objectindex' => '0',
9768   'format' => '0',
9769 ))
9770 ->values(array(
9771   'lid' => '615',
9772   'objectid' => 'story-field_test_text_single_checkbox',
9773   'type' => 'field',
9774   'property' => 'widget_description',
9775   'objectindex' => '0',
9776   'format' => '0',
9777 ))
9778 ->values(array(
9779   'lid' => '616',
9780   'objectid' => 'field_test_text_single_checkbox',
9781   'type' => 'field',
9782   'property' => 'option_0',
9783   'objectindex' => '0',
9784   'format' => '0',
9785 ))
9786 ->values(array(
9787   'lid' => '617',
9788   'objectid' => 'field_test_text_single_checkbox',
9789   'type' => 'field',
9790   'property' => 'option_1',
9791   'objectindex' => '0',
9792   'format' => '0',
9793 ))
9794 ->values(array(
9795   'lid' => '618',
9796   'objectid' => 'story-field_test_text_single_checkbox2',
9797   'type' => 'field',
9798   'property' => 'widget_label',
9799   'objectindex' => '0',
9800   'format' => '0',
9801 ))
9802 ->values(array(
9803   'lid' => '619',
9804   'objectid' => 'story-field_test_text_single_checkbox2',
9805   'type' => 'field',
9806   'property' => 'widget_description',
9807   'objectindex' => '0',
9808   'format' => '0',
9809 ))
9810 ->values(array(
9811   'lid' => '620',
9812   'objectid' => 'field_test_text_single_checkbox2',
9813   'type' => 'field',
9814   'property' => 'option_Off',
9815   'objectindex' => '0',
9816   'format' => '0',
9817 ))
9818 ->values(array(
9819   'lid' => '621',
9820   'objectid' => 'field_test_text_single_checkbox2',
9821   'type' => 'field',
9822   'property' => 'option_Hello',
9823   'objectindex' => '0',
9824   'format' => '0',
9825 ))
9826 ->values(array(
9827   'lid' => '622',
9828   'objectid' => 'test_page-field_test',
9829   'type' => 'field',
9830   'property' => 'widget_label',
9831   'objectindex' => '0',
9832   'format' => '0',
9833 ))
9834 ->values(array(
9835   'lid' => '623',
9836   'objectid' => 'test_page-field_test',
9837   'type' => 'field',
9838   'property' => 'widget_description',
9839   'objectindex' => '0',
9840   'format' => '0',
9841 ))
9842 ->values(array(
9843   'lid' => '624',
9844   'objectid' => 'test_planet-field_multivalue',
9845   'type' => 'field',
9846   'property' => 'widget_label',
9847   'objectindex' => '0',
9848   'format' => '0',
9849 ))
9850 ->values(array(
9851   'lid' => '625',
9852   'objectid' => 'test_planet-field_multivalue',
9853   'type' => 'field',
9854   'property' => 'widget_description',
9855   'objectindex' => '0',
9856   'format' => '0',
9857 ))
9858 ->values(array(
9859   'lid' => '626',
9860   'objectid' => 'test_planet-field_test_text_single_checkbox',
9861   'type' => 'field',
9862   'property' => 'widget_label',
9863   'objectindex' => '0',
9864   'format' => '0',
9865 ))
9866 ->values(array(
9867   'lid' => '627',
9868   'objectid' => 'test_planet-field_test_text_single_checkbox',
9869   'type' => 'field',
9870   'property' => 'widget_description',
9871   'objectindex' => '0',
9872   'format' => '0',
9873 ))
9874 ->values(array(
9875   'lid' => '633',
9876   'objectid' => '140',
9877   'type' => 'item',
9878   'property' => 'title',
9879   'objectindex' => '140',
9880   'format' => '0',
9881 ))
9882 ->values(array(
9883   'lid' => '634',
9884   'objectid' => '139',
9885   'type' => 'item',
9886   'property' => 'title',
9887   'objectindex' => '139',
9888   'format' => '0',
9889 ))
9890 ->values(array(
9891   'lid' => '635',
9892   'objectid' => '139',
9893   'type' => 'item',
9894   'property' => 'description',
9895   'objectindex' => '139',
9896   'format' => '0',
9897 ))
9898 ->values(array(
9899   'lid' => '1664',
9900   'objectid' => 'forum',
9901   'type' => 'type',
9902   'property' => 'name',
9903   'objectindex' => '0',
9904   'format' => '0',
9905 ))
9906 ->values(array(
9907   'lid' => '1665',
9908   'objectid' => 'forum',
9909   'type' => 'type',
9910   'property' => 'title',
9911   'objectindex' => '0',
9912   'format' => '0',
9913 ))
9914 ->values(array(
9915   'lid' => '1666',
9916   'objectid' => 'forum',
9917   'type' => 'type',
9918   'property' => 'body',
9919   'objectindex' => '0',
9920   'format' => '0',
9921 ))
9922 ->values(array(
9923   'lid' => '1667',
9924   'objectid' => 'forum',
9925   'type' => 'type',
9926   'property' => 'description',
9927   'objectindex' => '0',
9928   'format' => '0',
9929 ))
9930 ->values(array(
9931   'lid' => '1672',
9932   'objectid' => '6',
9933   'type' => 'vocabulary',
9934   'property' => 'name',
9935   'objectindex' => '6',
9936   'format' => '0',
9937 ))
9938 ->values(array(
9939   'lid' => '1673',
9940   'objectid' => '7',
9941   'type' => 'vocabulary',
9942   'property' => 'name',
9943   'objectindex' => '7',
9944   'format' => '0',
9945 ))
9946 ->values(array(
9947   'lid' => '1674',
9948   'objectid' => '463',
9949   'type' => 'item',
9950   'property' => 'title',
9951   'objectindex' => '463',
9952   'format' => '0',
9953 ))
9954 ->values(array(
9955   'lid' => '1675',
9956   'objectid' => '463',
9957   'type' => 'item',
9958   'property' => 'description',
9959   'objectindex' => '463',
9960   'format' => '0',
9961 ))
9962 ->values(array(
9963   'lid' => '1676',
9964   'objectid' => '138',
9965   'type' => 'item',
9966   'property' => 'title',
9967   'objectindex' => '138',
9968   'format' => '0',
9969 ))
9970 ->values(array(
9971   'lid' => '1677',
9972   'objectid' => '138',
9973   'type' => 'item',
9974   'property' => 'description',
9975   'objectindex' => '138',
9976   'format' => '0',
9977 ))
9978 ->values(array(
9979   'lid' => '1678',
9980   'objectid' => 'profile_really_really_love_migrating',
9981   'type' => 'field',
9982   'property' => 'title',
9983   'objectindex' => '0',
9984   'format' => '0',
9985 ))
9986 ->values(array(
9987   'lid' => '1679',
9988   'objectid' => 'menu-translation-test',
9989   'type' => 'menu',
9990   'property' => 'title',
9991   'objectindex' => '0',
9992   'format' => '0',
9993 ))
9994 ->values(array(
9995   'lid' => '1680',
9996   'objectid' => 'employee-field_company',
9997   'type' => 'field',
9998   'property' => 'widget_label',
9999   'objectindex' => '0',
10000   'format' => '0',
10001 ))
10002 ->values(array(
10003   'lid' => '1681',
10004   'objectid' => 'employee-field_commander',
10005   'type' => 'field',
10006   'property' => 'widget_label',
10007   'objectindex' => '0',
10008   'format' => '0',
10009 ))
10010 ->values(array(
10011   'lid' => '1682',
10012   'objectid' => 'employee-field_company_2',
10013   'type' => 'field',
10014   'property' => 'widget_label',
10015   'objectindex' => '0',
10016   'format' => '0',
10017 ))
10018 ->values(array(
10019   'lid' => '1683',
10020   'objectid' => 'employee-field_company_3',
10021   'type' => 'field',
10022   'property' => 'widget_label',
10023   'objectindex' => '0',
10024   'format' => '0',
10025 ))
10026 ->values(array(
10027   'lid' => '1684',
10028   'objectid' => 'page-field_reference',
10029   'type' => 'field',
10030   'property' => 'widget_label',
10031   'objectindex' => '0',
10032   'format' => '0',
10033 ))
10034 ->values(array(
10035   'lid' => '1685',
10036   'objectid' => 'page-field_reference_2',
10037   'type' => 'field',
10038   'property' => 'widget_label',
10039   'objectindex' => '0',
10040   'format' => '0',
10041 ))
10042 ->values(array(
10043   'lid' => '1686',
10044   'objectid' => 'story-field_test_string_selectlist',
10045   'type' => 'field',
10046   'property' => 'widget_label',
10047   'objectindex' => '0',
10048   'format' => '0',
10049 ))
10050 ->values(array(
10051   'lid' => '1689',
10052   'objectid' => 'test_planet-field_test_text_single_checkbox',
10053   'type' => 'field',
10054   'property' => 'widget_label',
10055   'objectindex' => '0',
10056   'format' => '0',
10057 ))
10058 ->values(array(
10059   'lid' => '1690',
10060   'objectid' => 'field_test_string_selectlist',
10061   'type' => 'field',
10062   'property' => 'option_A',
10063   'objectindex' => '0',
10064   'format' => '0',
10065 ))
10066 ->values(array(
10067   'lid' => '1691',
10068   'objectid' => 'field_test_string_selectlist',
10069   'type' => 'field',
10070   'property' => 'option_B',
10071   'objectindex' => '0',
10072   'format' => '0',
10073 ))
10074 ->execute();
10075
10076 $connection->schema()->createTable('i18n_variable', array(
10077   'fields' => array(
10078     'name' => array(
10079       'type' => 'varchar',
10080       'not null' => TRUE,
10081       'length' => '128',
10082       'default' => '',
10083     ),
10084     'language' => array(
10085       'type' => 'varchar',
10086       'not null' => TRUE,
10087       'length' => '12',
10088       'default' => '',
10089     ),
10090     'value' => array(
10091       'type' => 'text',
10092       'not null' => TRUE,
10093       'size' => 'big',
10094     ),
10095   ),
10096   'primary key' => array(
10097     'name',
10098     'language',
10099   ),
10100   'mysql_character_set' => 'utf8',
10101 ));
10102
10103 $connection->insert('i18n_variable')
10104 ->fields(array(
10105   'name',
10106   'language',
10107   'value',
10108 ))
10109 ->values(array(
10110   'name' => 'array_filter',
10111   'language' => 'en',
10112   'value' => 'b:1;',
10113 ))
10114 ->values(array(
10115   'name' => 'i18nstrings_allowed_formats',
10116   'language' => 'en',
10117   'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
10118 ))
10119 ->values(array(
10120   'name' => 'statistics_count_content_views',
10121   'language' => 'en',
10122   'value' => 's:1:"1";',
10123 ))
10124 ->values(array(
10125   'name' => 'statistics_enable_access_log',
10126   'language' => 'en',
10127   'value' => 's:1:"0";',
10128 ))
10129 ->values(array(
10130   'name' => 'statistics_flush_accesslog_timer',
10131   'language' => 'en',
10132   'value' => 's:6:"259200";',
10133 ))
10134 ->values(array(
10135   'name' => 'anonymous',
10136   'language' => 'fr',
10137   'value' => 's:8:"fr Guest";',
10138 ))
10139 ->values(array(
10140   'name' => 'error_level',
10141   'language' => 'fr',
10142   'value' => 's:1:"1";',
10143 ))
10144 ->values(array(
10145   'name' => 'site_403',
10146   'language' => 'fr',
10147   'value' => 's:7:"fr-user";',
10148 ))
10149 ->values(array(
10150   'name' => 'site_404',
10151   'language' => 'fr',
10152   'value' => 's:17:"fr-page-not-found";',
10153 ))
10154 ->values(array(
10155   'name' => 'site_footer',
10156   'language' => 'fr',
10157   'value' => 's:0:"";',
10158 ))
10159 ->values(array(
10160   'name' => 'site_frontpage',
10161   'language' => 'fr',
10162   'value' => 's:4:"node";',
10163 ))
10164 ->values(array(
10165   'name' => 'site_mail',
10166   'language' => 'fr',
10167   'value' => 's:24:"fr_site_mail@example.com";',
10168 ))
10169 ->values(array(
10170   'name' => 'site_mission',
10171   'language' => 'fr',
10172   'value' => 's:0:"";',
10173 ))
10174 ->values(array(
10175   'name' => 'site_name',
10176   'language' => 'fr',
10177   'value' => 's:12:"fr site name";',
10178 ))
10179 ->values(array(
10180   'name' => 'site_offline',
10181   'language' => 'fr',
10182   'value' => 's:1:"0";',
10183 ))
10184 ->values(array(
10185   'name' => 'site_offline_message',
10186   'language' => 'fr',
10187   'value' => 's:99:"fr - Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
10188 ))
10189 ->values(array(
10190   'name' => 'site_slogan',
10191   'language' => 'fr',
10192   'value' => 's:16:"fr Migrate rocks";',
10193 ))
10194 ->values(array(
10195   'name' => 'user_email_verification',
10196   'language' => 'fr',
10197   'value' => 'i:0;',
10198 ))
10199 ->values(array(
10200   'name' => 'user_mail_password_reset_body',
10201   'language' => 'fr',
10202   '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.\";",
10203 ))
10204 ->values(array(
10205   'name' => 'user_mail_password_reset_subject',
10206   'language' => 'fr',
10207   'value' => 's:57:"fr - Replacement login information for !username at !site";',
10208 ))
10209 ->values(array(
10210   'name' => 'user_mail_register_admin_created_body',
10211   'language' => 'fr',
10212   '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\";",
10213 ))
10214 ->values(array(
10215   'name' => 'user_mail_register_admin_created_subject',
10216   'language' => 'fr',
10217   'value' => 's:57:"fr - An administrator created an account for you at !site";',
10218 ))
10219 ->values(array(
10220   'name' => 'user_mail_register_no_approval_required_body',
10221   'language' => 'fr',
10222   '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\";",
10223 ))
10224 ->values(array(
10225   'name' => 'user_mail_register_no_approval_required_subject',
10226   'language' => 'fr',
10227   'value' => 's:43:"fr - Account details for !username at !site";',
10228 ))
10229 ->values(array(
10230   'name' => 'user_mail_register_pending_approval_body',
10231   'language' => 'fr',
10232   '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\";",
10233 ))
10234 ->values(array(
10235   'name' => 'user_mail_register_pending_approval_subject',
10236   'language' => 'fr',
10237   'value' => 's:68:"fr - Account details for !username at !site (pending admin approval)";',
10238 ))
10239 ->values(array(
10240   'name' => 'user_mail_status_activated_body',
10241   'language' => 'fr',
10242   '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\";",
10243 ))
10244 ->values(array(
10245   'name' => 'user_mail_status_activated_notify',
10246   'language' => 'fr',
10247   'value' => 'i:0;',
10248 ))
10249 ->values(array(
10250   'name' => 'user_mail_status_activated_subject',
10251   'language' => 'fr',
10252   'value' => 's:54:"fr - Account details for !username at !site (approved)";',
10253 ))
10254 ->values(array(
10255   'name' => 'user_mail_status_blocked_body',
10256   'language' => 'fr',
10257   'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been blocked.\";",
10258 ))
10259 ->values(array(
10260   'name' => 'user_mail_status_blocked_notify',
10261   'language' => 'fr',
10262   'value' => 'i:1;',
10263 ))
10264 ->values(array(
10265   'name' => 'user_mail_status_blocked_subject',
10266   'language' => 'fr',
10267   'value' => 's:53:"fr - Account details for !username at !site (blocked)";',
10268 ))
10269 ->values(array(
10270   'name' => 'user_mail_status_deleted_body',
10271   'language' => 'fr',
10272   'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been deleted.\";",
10273 ))
10274 ->values(array(
10275   'name' => 'user_mail_status_deleted_notify',
10276   'language' => 'fr',
10277   'value' => 'i:0;',
10278 ))
10279 ->values(array(
10280   'name' => 'user_mail_status_deleted_subject',
10281   'language' => 'fr',
10282   'value' => 's:53:"fr - Account details for !username at !site (deleted)";',
10283 ))
10284 ->values(array(
10285   'name' => 'user_pictures',
10286   'language' => 'fr',
10287   'value' => 's:1:"0";',
10288 ))
10289 ->values(array(
10290   'name' => 'user_picture_default',
10291   'language' => 'fr',
10292   'value' => 's:0:"";',
10293 ))
10294 ->values(array(
10295   'name' => 'user_picture_dimensions',
10296   'language' => 'fr',
10297   'value' => 's:5:"85x85";',
10298 ))
10299 ->values(array(
10300   'name' => 'user_picture_file_size',
10301   'language' => 'fr',
10302   'value' => 's:2:"30";',
10303 ))
10304 ->values(array(
10305   'name' => 'user_picture_guidelines',
10306   'language' => 'fr',
10307   'value' => 's:0:"";',
10308 ))
10309 ->values(array(
10310   'name' => 'user_picture_path',
10311   'language' => 'fr',
10312   'value' => 's:8:"pictures";',
10313 ))
10314 ->values(array(
10315   'name' => 'user_register',
10316   'language' => 'fr',
10317   'value' => 's:1:"0";',
10318 ))
10319 ->values(array(
10320   'name' => 'user_registration_help',
10321   'language' => 'fr',
10322   'value' => 's:0:"";',
10323 ))
10324 ->values(array(
10325   'name' => 'user_signatures',
10326   'language' => 'fr',
10327   'value' => 's:1:"1";',
10328 ))
10329 ->values(array(
10330   'name' => 'anonymous',
10331   'language' => 'zu',
10332   'value' => 's:5:"Guest";',
10333 ))
10334 ->values(array(
10335   'name' => 'error_level',
10336   'language' => 'zu',
10337   'value' => 's:1:"1";',
10338 ))
10339 ->values(array(
10340   'name' => 'site_403',
10341   'language' => 'zu',
10342   'value' => 's:7:"zu-user";',
10343 ))
10344 ->values(array(
10345   'name' => 'site_404',
10346   'language' => 'zu',
10347   'value' => 's:17:"zu-page-not-found";',
10348 ))
10349 ->values(array(
10350   'name' => 'site_footer',
10351   'language' => 'zu',
10352   'value' => 's:0:"";',
10353 ))
10354 ->values(array(
10355   'name' => 'site_frontpage',
10356   'language' => 'zu',
10357   'value' => 's:4:"node";',
10358 ))
10359 ->values(array(
10360   'name' => 'site_mail',
10361   'language' => 'zu',
10362   'value' => 's:21:"site_mail@example.com";',
10363 ))
10364 ->values(array(
10365   'name' => 'site_mission',
10366   'language' => 'zu',
10367   'value' => 's:0:"";',
10368 ))
10369 ->values(array(
10370   'name' => 'site_name',
10371   'language' => 'zu',
10372   'value' => 's:14:"zu - site_name";',
10373 ))
10374 ->values(array(
10375   'name' => 'site_slogan',
10376   'language' => 'zu',
10377   'value' => 's:13:"Migrate rocks";',
10378 ))
10379 ->values(array(
10380   'name' => 'user_email_verification',
10381   'language' => 'zu',
10382   'value' => 'i:0;',
10383 ))
10384 ->values(array(
10385   'name' => 'user_mail_password_reset_body',
10386   'language' => 'zu',
10387   '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.\";",
10388 ))
10389 ->values(array(
10390   'name' => 'user_mail_password_reset_subject',
10391   'language' => 'zu',
10392   'value' => 's:52:"Replacement login information for !username at !site";',
10393 ))
10394 ->values(array(
10395   'name' => 'user_mail_register_admin_created_body',
10396   'language' => 'zu',
10397   '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\";",
10398 ))
10399 ->values(array(
10400   'name' => 'user_mail_register_admin_created_subject',
10401   'language' => 'zu',
10402   'value' => 's:57:"zu - An administrator created an account for you at !site";',
10403 ))
10404 ->values(array(
10405   'name' => 'user_mail_register_no_approval_required_body',
10406   'language' => 'zu',
10407   '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\";",
10408 ))
10409 ->values(array(
10410   'name' => 'user_mail_register_no_approval_required_subject',
10411   'language' => 'zu',
10412   'value' => 's:38:"Account details for !username at !site";',
10413 ))
10414 ->values(array(
10415   'name' => 'user_mail_register_pending_approval_body',
10416   'language' => 'zu',
10417   '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\";",
10418 ))
10419 ->values(array(
10420   'name' => 'user_mail_register_pending_approval_subject',
10421   'language' => 'zu',
10422   'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
10423 ))
10424 ->values(array(
10425   'name' => 'user_mail_status_activated_body',
10426   'language' => 'zu',
10427   '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\";",
10428 ))
10429 ->values(array(
10430   'name' => 'user_mail_status_activated_notify',
10431   'language' => 'zu',
10432   'value' => 'i:0;',
10433 ))
10434 ->values(array(
10435   'name' => 'user_mail_status_activated_subject',
10436   'language' => 'zu',
10437   'value' => 's:49:"Account details for !username at !site (approved)";',
10438 ))
10439 ->values(array(
10440   'name' => 'user_mail_status_blocked_body',
10441   'language' => 'zu',
10442   'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been blocked.\";",
10443 ))
10444 ->values(array(
10445   'name' => 'user_mail_status_blocked_notify',
10446   'language' => 'zu',
10447   'value' => 'i:1;',
10448 ))
10449 ->values(array(
10450   'name' => 'user_mail_status_blocked_subject',
10451   'language' => 'zu',
10452   'value' => 's:48:"Account details for !username at !site (blocked)";',
10453 ))
10454 ->values(array(
10455   'name' => 'user_mail_status_deleted_body',
10456   'language' => 'zu',
10457   'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been deleted.\";",
10458 ))
10459 ->values(array(
10460   'name' => 'user_mail_status_deleted_notify',
10461   'language' => 'zu',
10462   'value' => 'i:0;',
10463 ))
10464 ->values(array(
10465   'name' => 'user_mail_status_deleted_subject',
10466   'language' => 'zu',
10467   'value' => 's:48:"Account details for !username at !site (deleted)";',
10468 ))
10469 ->values(array(
10470   'name' => 'user_pictures',
10471   'language' => 'zu',
10472   'value' => 's:1:"0";',
10473 ))
10474 ->values(array(
10475   'name' => 'user_picture_default',
10476   'language' => 'zu',
10477   'value' => 's:0:"";',
10478 ))
10479 ->values(array(
10480   'name' => 'user_picture_dimensions',
10481   'language' => 'zu',
10482   'value' => 's:5:"85x85";',
10483 ))
10484 ->values(array(
10485   'name' => 'user_picture_file_size',
10486   'language' => 'zu',
10487   'value' => 's:2:"30";',
10488 ))
10489 ->values(array(
10490   'name' => 'user_picture_guidelines',
10491   'language' => 'zu',
10492   'value' => 's:0:"";',
10493 ))
10494 ->values(array(
10495   'name' => 'user_picture_path',
10496   'language' => 'zu',
10497   'value' => 's:8:"pictures";',
10498 ))
10499 ->values(array(
10500   'name' => 'user_register',
10501   'language' => 'zu',
10502   'value' => 's:1:"0";',
10503 ))
10504 ->values(array(
10505   'name' => 'user_registration_help',
10506   'language' => 'zu',
10507   'value' => 's:0:"";',
10508 ))
10509 ->values(array(
10510   'name' => 'user_signatures',
10511   'language' => 'zu',
10512   'value' => 's:1:"1";',
10513 ))
10514 ->execute();
10515
10516 $connection->schema()->createTable('imagecache_action', array(
10517   'fields' => array(
10518     'actionid' => array(
10519       'type' => 'serial',
10520       'not null' => TRUE,
10521       'size' => 'normal',
10522       'unsigned' => TRUE,
10523     ),
10524     'presetid' => array(
10525       'type' => 'int',
10526       'not null' => TRUE,
10527       'size' => 'normal',
10528       'default' => '0',
10529       'unsigned' => TRUE,
10530     ),
10531     'weight' => array(
10532       'type' => 'int',
10533       'not null' => TRUE,
10534       'size' => 'normal',
10535       'default' => '0',
10536     ),
10537     'module' => array(
10538       'type' => 'varchar',
10539       'not null' => TRUE,
10540       'length' => '255',
10541     ),
10542     'action' => array(
10543       'type' => 'varchar',
10544       'not null' => TRUE,
10545       'length' => '255',
10546     ),
10547     'data' => array(
10548       'type' => 'text',
10549       'not null' => TRUE,
10550       'size' => 'normal',
10551     ),
10552   ),
10553   'primary key' => array(
10554     'actionid',
10555   ),
10556   'mysql_character_set' => 'utf8',
10557 ));
10558
10559 $connection->insert('imagecache_action')
10560 ->fields(array(
10561   'actionid',
10562   'presetid',
10563   'weight',
10564   'module',
10565   'action',
10566   'data',
10567 ))
10568 ->values(array(
10569   'actionid' => '3',
10570   'presetid' => '1',
10571   'weight' => '0',
10572   'module' => 'imagecache',
10573   'action' => 'imagecache_scale_and_crop',
10574   'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
10575 ))
10576 ->values(array(
10577   'actionid' => '4',
10578   'presetid' => '2',
10579   'weight' => '0',
10580   'module' => 'imagecache',
10581   'action' => 'imagecache_crop',
10582   '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";}',
10583 ))
10584 ->values(array(
10585   'actionid' => '5',
10586   'presetid' => '2',
10587   'weight' => '0',
10588   'module' => 'imagecache',
10589   'action' => 'imagecache_resize',
10590   'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
10591 ))
10592 ->values(array(
10593   'actionid' => '6',
10594   'presetid' => '2',
10595   'weight' => '0',
10596   'module' => 'imagecache',
10597   'action' => 'imagecache_rotate',
10598   'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
10599 ))
10600 ->execute();
10601
10602 $connection->schema()->createTable('imagecache_preset', array(
10603   'fields' => array(
10604     'presetid' => array(
10605       'type' => 'serial',
10606       'not null' => TRUE,
10607       'size' => 'normal',
10608       'unsigned' => TRUE,
10609     ),
10610     'presetname' => array(
10611       'type' => 'varchar',
10612       'not null' => TRUE,
10613       'length' => '255',
10614     ),
10615   ),
10616   'primary key' => array(
10617     'presetid',
10618   ),
10619   'mysql_character_set' => 'utf8',
10620 ));
10621
10622 $connection->insert('imagecache_preset')
10623 ->fields(array(
10624   'presetid',
10625   'presetname',
10626 ))
10627 ->values(array(
10628   'presetid' => '1',
10629   'presetname' => 'slackjaw_boys',
10630 ))
10631 ->values(array(
10632   'presetid' => '2',
10633   'presetname' => 'big_blue_cheese',
10634 ))
10635 ->execute();
10636
10637 $connection->schema()->createTable('languages', array(
10638   'fields' => array(
10639     'language' => array(
10640       'type' => 'varchar',
10641       'not null' => TRUE,
10642       'length' => '12',
10643       'default' => '',
10644     ),
10645     'name' => array(
10646       'type' => 'varchar',
10647       'not null' => TRUE,
10648       'length' => '64',
10649       'default' => '',
10650     ),
10651     'native' => array(
10652       'type' => 'varchar',
10653       'not null' => TRUE,
10654       'length' => '64',
10655       'default' => '',
10656     ),
10657     'direction' => array(
10658       'type' => 'int',
10659       'not null' => TRUE,
10660       'size' => 'normal',
10661       'default' => '0',
10662     ),
10663     'enabled' => array(
10664       'type' => 'int',
10665       'not null' => TRUE,
10666       'size' => 'normal',
10667       'default' => '0',
10668     ),
10669     'plurals' => array(
10670       'type' => 'int',
10671       'not null' => TRUE,
10672       'size' => 'normal',
10673       'default' => '0',
10674     ),
10675     'formula' => array(
10676       'type' => 'varchar',
10677       'not null' => TRUE,
10678       'length' => '128',
10679       'default' => '',
10680     ),
10681     'domain' => array(
10682       'type' => 'varchar',
10683       'not null' => TRUE,
10684       'length' => '128',
10685       'default' => '',
10686     ),
10687     'prefix' => array(
10688       'type' => 'varchar',
10689       'not null' => TRUE,
10690       'length' => '128',
10691       'default' => '',
10692     ),
10693     'weight' => array(
10694       'type' => 'int',
10695       'not null' => TRUE,
10696       'size' => 'normal',
10697       'default' => '0',
10698     ),
10699     'javascript' => array(
10700       'type' => 'varchar',
10701       'not null' => TRUE,
10702       'length' => '32',
10703       'default' => '',
10704     ),
10705   ),
10706   'primary key' => array(
10707     'language',
10708   ),
10709   'indexes' => array(
10710     'list' => array(
10711       'weight',
10712       'name',
10713     ),
10714   ),
10715   'mysql_character_set' => 'utf8',
10716 ));
10717
10718 $connection->insert('languages')
10719 ->fields(array(
10720   'language',
10721   'name',
10722   'native',
10723   'direction',
10724   'enabled',
10725   'plurals',
10726   'formula',
10727   'domain',
10728   'prefix',
10729   'weight',
10730   'javascript',
10731 ))
10732 ->values(array(
10733   'language' => 'en',
10734   'name' => 'English',
10735   'native' => 'English',
10736   'direction' => '0',
10737   'enabled' => '1',
10738   'plurals' => '0',
10739   'formula' => '',
10740   'domain' => '',
10741   'prefix' => '',
10742   'weight' => '0',
10743   'javascript' => '',
10744 ))
10745 ->values(array(
10746   'language' => 'fr',
10747   'name' => 'French',
10748   'native' => 'Français',
10749   'direction' => '0',
10750   'enabled' => '1',
10751   'plurals' => '2',
10752   'formula' => '($n>1)',
10753   'domain' => 'http://fr.drupal.org',
10754   'prefix' => 'fr',
10755   'weight' => '0',
10756   'javascript' => '047746d30d76aa44a54db9923c7c5fb0',
10757 ))
10758 ->values(array(
10759   'language' => 'zu',
10760   'name' => 'Zulu',
10761   'native' => 'isiZulu',
10762   'direction' => '0',
10763   'enabled' => '1',
10764   'plurals' => '0',
10765   'formula' => '',
10766   'domain' => 'http://zu.drupal.org',
10767   'prefix' => 'zu',
10768   'weight' => '0',
10769   'javascript' => '',
10770 ))
10771 ->execute();
10772
10773 $connection->schema()->createTable('locales_source', array(
10774   'fields' => array(
10775     'lid' => array(
10776       'type' => 'serial',
10777       'not null' => TRUE,
10778       'size' => 'normal',
10779     ),
10780     'location' => array(
10781       'type' => 'varchar',
10782       'not null' => TRUE,
10783       'length' => '255',
10784       'default' => '',
10785     ),
10786     'textgroup' => array(
10787       'type' => 'varchar',
10788       'not null' => TRUE,
10789       'length' => '255',
10790       'default' => 'default',
10791     ),
10792     'source' => array(
10793       'type' => 'blob',
10794       'not null' => TRUE,
10795       'size' => 'normal',
10796     ),
10797     'version' => array(
10798       'type' => 'varchar',
10799       'not null' => TRUE,
10800       'length' => '20',
10801       'default' => 'none',
10802     ),
10803   ),
10804   'primary key' => array(
10805     'lid',
10806   ),
10807   'indexes' => array(
10808     'source' => array(
10809       array(
10810         'source',
10811         '30',
10812       ),
10813     ),
10814     'textgroup_location' => array(
10815       array(
10816         'textgroup',
10817         '30',
10818       ),
10819       array(
10820         'location',
10821         '191',
10822       ),
10823     ),
10824   ),
10825   'mysql_character_set' => 'utf8',
10826 ));
10827
10828 $connection->insert('locales_source')
10829 ->fields(array(
10830   'lid',
10831   'location',
10832   'textgroup',
10833   'source',
10834   'version',
10835 ))
10836 ->values(array(
10837   'lid' => '1',
10838   'location' => 'misc/drupal.js',
10839   'textgroup' => 'default',
10840   'source' => 'Unspecified error',
10841   'version' => 'none',
10842 ))
10843 ->values(array(
10844   'lid' => '2',
10845   'location' => 'misc/drupal.js',
10846   'textgroup' => 'default',
10847   'source' => 'An error occurred. \n@uri\n@text',
10848   'version' => 'none',
10849 ))
10850 ->values(array(
10851   'lid' => '3',
10852   'location' => 'misc/drupal.js',
10853   'textgroup' => 'default',
10854   'source' => 'An error occurred. \n@uri\n(no information available).',
10855   'version' => 'none',
10856 ))
10857 ->values(array(
10858   'lid' => '4',
10859   'location' => 'misc/drupal.js',
10860   'textgroup' => 'default',
10861   'source' => 'An HTTP error @status occurred. \n@uri',
10862   'version' => 'none',
10863 ))
10864 ->values(array(
10865   'lid' => '5',
10866   'location' => 'content.module:21',
10867   'textgroup' => 'default',
10868   '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.)',
10869   'version' => 'none',
10870 ))
10871 ->values(array(
10872   'lid' => '6',
10873   'location' => 'content.module:22',
10874   'textgroup' => 'default',
10875   '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.',
10876   'version' => 'none',
10877 ))
10878 ->values(array(
10879   'lid' => '7',
10880   'location' => 'content.module:23',
10881   'textgroup' => 'default',
10882   '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:',
10883   'version' => 'none',
10884 ))
10885 ->values(array(
10886   'lid' => '8',
10887   'location' => 'content.module:25',
10888   'textgroup' => 'default',
10889   '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.',
10890   'version' => 'none',
10891 ))
10892 ->values(array(
10893   'lid' => '9',
10894   'location' => 'content.module:26',
10895   'textgroup' => 'default',
10896   '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.",
10897   'version' => 'none',
10898 ))
10899 ->values(array(
10900   'lid' => '10',
10901   'location' => 'content.module:27',
10902   'textgroup' => 'default',
10903   '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).',
10904   'version' => 'none',
10905 ))
10906 ->values(array(
10907   'lid' => '11',
10908   'location' => 'content.module:28',
10909   'textgroup' => 'default',
10910   '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.",
10911   'version' => 'none',
10912 ))
10913 ->values(array(
10914   'lid' => '12',
10915   'location' => 'content.module:29',
10916   'textgroup' => 'default',
10917   '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.',
10918   'version' => 'none',
10919 ))
10920 ->values(array(
10921   'lid' => '13',
10922   'location' => 'content.module:31',
10923   'textgroup' => 'default',
10924   '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>.',
10925   'version' => 'none',
10926 ))
10927 ->values(array(
10928   'lid' => '14',
10929   'location' => 'theme/theme.inc:111',
10930   'textgroup' => 'default',
10931   'source' => "Configure how this content type's fields and field labels should be displayed when it's viewed in teaser and full-page mode.",
10932   'version' => 'none',
10933 ))
10934 ->values(array(
10935   'lid' => '15',
10936   'location' => 'theme/theme.inc:114',
10937   'textgroup' => 'default',
10938   'source' => "Configure how this content type's fields should be displayed when it's rendered in the following contexts.",
10939   'version' => 'none',
10940 ))
10941 ->values(array(
10942   'lid' => '16',
10943   'location' => 'content.module:48',
10944   'textgroup' => 'default',
10945   'source' => 'Control the order of fields in the input form.',
10946   'version' => 'none',
10947 ))
10948 ->values(array(
10949   'lid' => '17',
10950   'location' => 'content.module:492',
10951   'textgroup' => 'default',
10952   'source' => 'This field is required.',
10953   'version' => '6.38-dev',
10954 ))
10955 ->values(array(
10956   'lid' => '18',
10957   'location' => 'content.module:496',
10958   'textgroup' => 'default',
10959   'source' => '!title: !required',
10960   'version' => '6.38-dev',
10961 ))
10962 ->values(array(
10963   'lid' => '19',
10964   'location' => 'content.module:499,  modules/content_multigroup/content_multigroup.module:903',
10965   'textgroup' => 'default',
10966   'source' => 'Order',
10967   'version' => 'none',
10968 ))
10969 ->values(array(
10970   'lid' => '20',
10971   'location' => 'content.module:1640',
10972   'textgroup' => 'default',
10973   'source' => 'RSS Item',
10974   'version' => 'none',
10975 ))
10976 ->values(array(
10977   'lid' => '21',
10978   'location' => 'content.module:1883',
10979   'textgroup' => 'default',
10980   'source' => 'Search Index',
10981   'version' => 'none',
10982 ))
10983 ->values(array(
10984   'lid' => '22',
10985   'location' => 'content.module:1887',
10986   'textgroup' => 'default',
10987   'source' => 'Search Result',
10988   'version' => 'none',
10989 ))
10990 ->values(array(
10991   'lid' => '23',
10992   'location' => 'content.module:2362',
10993   'textgroup' => 'default',
10994   'source' => 'Language',
10995   'version' => '6.38-dev',
10996 ))
10997 ->values(array(
10998   'lid' => '24',
10999   'location' => 'content.module:2376',
11000   'textgroup' => 'default',
11001   'source' => 'Taxonomy',
11002   'version' => '6.38-dev',
11003 ))
11004 ->values(array(
11005   'lid' => '25',
11006   'location' => 'content.module:2407',
11007   'textgroup' => 'default',
11008   'source' => 'File attachments',
11009   'version' => '6.38-dev',
11010 ))
11011 ->values(array(
11012   'lid' => '26',
11013   'location' => 'content.module:595',
11014   'textgroup' => 'default',
11015   'source' => 'Updating field type %type with module %module.',
11016   'version' => 'none',
11017 ))
11018 ->values(array(
11019   'lid' => '27',
11020   'location' => 'content.module:602',
11021   'textgroup' => 'default',
11022   'source' => 'Updating widget type %type with module %module.',
11023   'version' => 'none',
11024 ))
11025 ->values(array(
11026   'lid' => '28',
11027   'location' => 'content.module:60',
11028   'textgroup' => 'default',
11029   'source' => 'Use PHP input for field settings (dangerous - grant with care)',
11030   'version' => '6.38-dev',
11031 ))
11032 ->values(array(
11033   'lid' => '29',
11034   'location' => 'content.module:101',
11035   'textgroup' => 'default',
11036   'source' => 'Manage fields',
11037   'version' => 'none',
11038 ))
11039 ->values(array(
11040   'lid' => '30',
11041   'location' => 'content.module:110',
11042   'textgroup' => 'default',
11043   'source' => 'Display fields',
11044   'version' => 'none',
11045 ))
11046 ->values(array(
11047   'lid' => '31',
11048   'location' => 'content.module:143',
11049   'textgroup' => 'default',
11050   'source' => 'General',
11051   'version' => 'none',
11052 ))
11053 ->values(array(
11054   'lid' => '32',
11055   'location' => 'content.module:149',
11056   'textgroup' => 'default',
11057   'source' => 'Advanced',
11058   'version' => 'none',
11059 ))
11060 ->values(array(
11061   'lid' => '33',
11062   'location' => 'content.module:141',
11063   'textgroup' => 'default',
11064   'source' => 'Remove field',
11065   'version' => '6.38-dev',
11066 ))
11067 ->values(array(
11068   'lid' => '34',
11069   'location' => 'content.info:0,  includes/content.rules.inc:19;212,  includes/views/content.views.inc:180;261',
11070   'textgroup' => 'default',
11071   'source' => 'Content',
11072   'version' => '6.38-dev',
11073 ))
11074 ->values(array(
11075   'lid' => '35',
11076   'location' => 'content.info:0',
11077   'textgroup' => 'default',
11078   'source' => 'Allows administrators to define new content types.',
11079   'version' => '6.38-dev',
11080 ))
11081 ->values(array(
11082   'lid' => '36',
11083   'location' => 'content.info:0,  modules/content_copy/content_copy.info:0,  modules/content_permissions/content_permissions.info:0,  modules/fieldgroup/fieldgroup.info:0',
11084   'textgroup' => 'default',
11085   'source' => 'CCK',
11086   'version' => '6.38-dev',
11087 ))
11088 ->values(array(
11089   'lid' => '37',
11090   'location' => 'modules/text/text.module:41,  modules/text/text.info:0',
11091   'textgroup' => 'default',
11092   'source' => 'Text',
11093   'version' => '6.38-dev',
11094 ))
11095 ->values(array(
11096   'lid' => '38',
11097   'location' => 'examples/example_field.php:178',
11098   'textgroup' => 'default',
11099   '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.',
11100   'version' => 'none',
11101 ))
11102 ->values(array(
11103   'lid' => '39',
11104   'location' => 'examples/example_field.php:484',
11105   'textgroup' => 'default',
11106   'source' => 'Text area',
11107   'version' => 'none',
11108 ))
11109 ->values(array(
11110   'lid' => '40',
11111   'location' => 'includes/content.admin.inc:171;197;895,  modules/fieldgroup/fieldgroup.module:209',
11112   'textgroup' => 'default',
11113   'source' => 'Remove',
11114   'version' => 'none',
11115 ))
11116 ->values(array(
11117   'lid' => '41',
11118   'location' => 'content.module:1854',
11119   'textgroup' => 'default',
11120   'source' => 'Basic',
11121   'version' => '6.38-dev',
11122 ))
11123 ->values(array(
11124   'lid' => '42',
11125   'location' => 'content.module:1857,  modules/nodereference/nodereference.module:268',
11126   'textgroup' => 'default',
11127   'source' => 'Teaser',
11128   'version' => '6.38-dev',
11129 ))
11130 ->values(array(
11131   'lid' => '43',
11132   'location' => 'content.module:1861,  modules/nodereference/nodereference.module:263',
11133   'textgroup' => 'default',
11134   'source' => 'Full node',
11135   'version' => '6.38-dev',
11136 ))
11137 ->values(array(
11138   'lid' => '44',
11139   'location' => 'content.module:1867;1870',
11140   'textgroup' => 'default',
11141   'source' => 'RSS',
11142   'version' => '6.38-dev',
11143 ))
11144 ->values(array(
11145   'lid' => '45',
11146   'location' => 'content.module:1880',
11147   'textgroup' => 'default',
11148   'source' => 'Search',
11149   'version' => '6.38-dev',
11150 ))
11151 ->values(array(
11152   'lid' => '46',
11153   'location' => 'content.module:2348;2355',
11154   'textgroup' => 'default',
11155   'source' => 'Node module form.',
11156   'version' => '6.38-dev',
11157 ))
11158 ->values(array(
11159   'lid' => '47',
11160   'location' => 'content.module:2363',
11161   'textgroup' => 'default',
11162   'source' => 'Locale module form.',
11163   'version' => '6.38-dev',
11164 ))
11165 ->values(array(
11166   'lid' => '48',
11167   'location' => 'content.module:2369',
11168   'textgroup' => 'default',
11169   'source' => 'Menu settings',
11170   'version' => '6.38-dev',
11171 ))
11172 ->values(array(
11173   'lid' => '49',
11174   'location' => 'content.module:2370',
11175   'textgroup' => 'default',
11176   'source' => 'Menu module form.',
11177   'version' => '6.38-dev',
11178 ))
11179 ->values(array(
11180   'lid' => '50',
11181   'location' => 'content.module:2377',
11182   'textgroup' => 'default',
11183   'source' => 'Taxonomy module form.',
11184   'version' => '6.38-dev',
11185 ))
11186 ->values(array(
11187   'lid' => '51',
11188   'location' => 'content.module:2383',
11189   'textgroup' => 'default',
11190   'source' => 'Book',
11191   'version' => '6.38-dev',
11192 ))
11193 ->values(array(
11194   'lid' => '52',
11195   'location' => 'content.module:2384',
11196   'textgroup' => 'default',
11197   'source' => 'Book module form.',
11198   'version' => '6.38-dev',
11199 ))
11200 ->values(array(
11201   'lid' => '53',
11202   'location' => 'content.module:2390',
11203   'textgroup' => 'default',
11204   'source' => 'Poll title',
11205   'version' => 'none',
11206 ))
11207 ->values(array(
11208   'lid' => '54',
11209   'location' => 'content.module:2391',
11210   'textgroup' => 'default',
11211   'source' => 'Poll module title.',
11212   'version' => 'none',
11213 ))
11214 ->values(array(
11215   'lid' => '55',
11216   'location' => 'content.module:2396',
11217   'textgroup' => 'default',
11218   'source' => 'Poll choices',
11219   'version' => 'none',
11220 ))
11221 ->values(array(
11222   'lid' => '56',
11223   'location' => 'content.module:2397',
11224   'textgroup' => 'default',
11225   'source' => 'Poll module choices.',
11226   'version' => 'none',
11227 ))
11228 ->values(array(
11229   'lid' => '57',
11230   'location' => 'content.module:2400',
11231   'textgroup' => 'default',
11232   'source' => 'Poll settings',
11233   'version' => 'none',
11234 ))
11235 ->values(array(
11236   'lid' => '58',
11237   'location' => 'content.module:2401',
11238   'textgroup' => 'default',
11239   'source' => 'Poll module settings.',
11240   'version' => 'none',
11241 ))
11242 ->values(array(
11243   'lid' => '59',
11244   'location' => 'content.module:2408',
11245   'textgroup' => 'default',
11246   'source' => 'Upload module form.',
11247   'version' => '6.38-dev',
11248 ))
11249 ->values(array(
11250   'lid' => '60',
11251   'location' => 'content.module:595;602;0,  includes/content.crud.inc:589;633',
11252   'textgroup' => 'default',
11253   'source' => 'content',
11254   'version' => 'none',
11255 ))
11256 ->values(array(
11257   'lid' => '61',
11258   'location' => 'content.module:79',
11259   'textgroup' => 'default',
11260   'source' => 'Fields',
11261   'version' => 'none',
11262 ))
11263 ->values(array(
11264   'lid' => '62',
11265   'location' => 'content.install:236',
11266   'textgroup' => 'default',
11267   '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.",
11268   'version' => 'none',
11269 ))
11270 ->values(array(
11271   'lid' => '63',
11272   'location' => 'content.install:239',
11273   'textgroup' => 'default',
11274   '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.',
11275   'version' => 'none',
11276 ))
11277 ->values(array(
11278   'lid' => '64',
11279   'location' => 'content.install:244',
11280   'textgroup' => 'default',
11281   '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.',
11282   'version' => 'none',
11283 ))
11284 ->values(array(
11285   'lid' => '65',
11286   'location' => 'content.install:251',
11287   'textgroup' => 'default',
11288   'source' => 'Some updates are still pending. Please return to <a href="@update-php">update.php</a> and run the remaining updates.',
11289   'version' => 'none',
11290 ))
11291 ->values(array(
11292   'lid' => '66',
11293   'location' => '(duplicate) content.install:10',
11294   'textgroup' => 'default',
11295   'source' => 'CCK - No Views integration',
11296   'version' => 'none',
11297 ))
11298 ->values(array(
11299   'lid' => '67',
11300   'location' => '(duplicate) content.install:11',
11301   'textgroup' => 'default',
11302   'source' => 'CCK integration with Views module requires Views 6.x-2.0-rc2 or greater.',
11303   'version' => 'none',
11304 ))
11305 ->values(array(
11306   'lid' => '68',
11307   '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',
11308   'textgroup' => 'default',
11309   'source' => 'Name',
11310   'version' => '6.38-dev',
11311 ))
11312 ->values(array(
11313   'lid' => '69',
11314   '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',
11315   'textgroup' => 'default',
11316   'source' => 'Type',
11317   'version' => '6.38-dev',
11318 ))
11319 ->values(array(
11320   'lid' => '70',
11321   'location' => 'includes/content.admin.inc:16,  modules/fieldgroup/fieldgroup.module:158',
11322   'textgroup' => 'default',
11323   'source' => 'Description',
11324   'version' => '6.38-dev',
11325 ))
11326 ->values(array(
11327   'lid' => '71',
11328   'location' => 'includes/content.admin.inc:16,  theme/content-admin-field-overview-form.tpl.php:14',
11329   'textgroup' => 'default',
11330   'source' => 'Operations',
11331   'version' => '6.38-dev',
11332 ))
11333 ->values(array(
11334   'lid' => '72',
11335   'location' => 'includes/content.admin.inc:30',
11336   'textgroup' => 'default',
11337   'source' => 'edit',
11338   'version' => '6.38-dev',
11339 ))
11340 ->values(array(
11341   'lid' => '73',
11342   'location' => 'includes/content.admin.inc:33',
11343   'textgroup' => 'default',
11344   'source' => 'manage fields',
11345   'version' => 'none',
11346 ))
11347 ->values(array(
11348   'lid' => '74',
11349   'location' => 'includes/content.admin.inc:36',
11350   'textgroup' => 'default',
11351   'source' => 'delete',
11352   'version' => '6.38-dev',
11353 ))
11354 ->values(array(
11355   'lid' => '75',
11356   'location' => 'includes/content.admin.inc:47',
11357   'textgroup' => 'default',
11358   'source' => 'No content types available.',
11359   'version' => 'none',
11360 ))
11361 ->values(array(
11362   'lid' => '76',
11363   'location' => 'includes/content.admin.inc:54',
11364   'textgroup' => 'default',
11365   'source' => '» Add a new content type',
11366   'version' => 'none',
11367 ))
11368 ->values(array(
11369   'lid' => '77',
11370   'location' => 'includes/content.admin.inc:67;796;991',
11371   'textgroup' => 'default',
11372   'source' => 'Field name',
11373   'version' => 'none',
11374 ))
11375 ->values(array(
11376   'lid' => '78',
11377   'location' => 'includes/content.admin.inc:67;811;997',
11378   'textgroup' => 'default',
11379   'source' => 'Field type',
11380   'version' => 'none',
11381 ))
11382 ->values(array(
11383   'lid' => '79',
11384   'location' => 'includes/content.admin.inc:67',
11385   'textgroup' => 'default',
11386   'source' => 'Used in',
11387   'version' => 'none',
11388 ))
11389 ->values(array(
11390   'lid' => '80',
11391   'location' => 'includes/content.admin.inc:71',
11392   'textgroup' => 'default',
11393   'source' => '@field_name (Locked)',
11394   'version' => 'none',
11395 ))
11396 ->values(array(
11397   'lid' => '81',
11398   'location' => 'includes/content.admin.inc:90',
11399   'textgroup' => 'default',
11400   'source' => 'No fields have been defined for any content type yet.',
11401   'version' => 'none',
11402 ))
11403 ->values(array(
11404   'lid' => '82',
11405   'location' => 'not literally, English needs work,  includes/content.admin.inc:106,  fuzzy',
11406   'textgroup' => 'default',
11407   'source' => 'This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled.',
11408   'version' => 'none',
11409 ))
11410 ->values(array(
11411   'lid' => '83',
11412   'location' => 'includes/content.admin.inc:108',
11413   'textgroup' => 'default',
11414   'source' => '!field (!field_name) is an inactive !field_type field that uses a !widget_type widget.',
11415   'version' => 'none',
11416 ))
11417 ->values(array(
11418   'lid' => '84',
11419   'location' => 'includes/content.admin.inc:170;196',
11420   'textgroup' => 'default',
11421   'source' => 'Configure',
11422   'version' => '6.38-dev',
11423 ))
11424 ->values(array(
11425   'lid' => '85',
11426   'location' => 'Schreibgeschützt,  includes/content.admin.inc:181',
11427   'textgroup' => 'default',
11428   'source' => 'Locked',
11429   'version' => 'none',
11430 ))
11431 ->values(array(
11432   'lid' => '86',
11433   'location' => 'includes/content.admin.inc:237',
11434   'textgroup' => 'default',
11435   'source' => '- Select a field type -',
11436   'version' => 'none',
11437 ))
11438 ->values(array(
11439   'lid' => '87',
11440   'location' => 'includes/content.admin.inc:238',
11441   'textgroup' => 'default',
11442   'source' => '- Select a widget -',
11443   'version' => 'none',
11444 ))
11445 ->values(array(
11446   'lid' => '88',
11447   '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',
11448   'textgroup' => 'default',
11449   'source' => 'Label',
11450   'version' => 'none',
11451 ))
11452 ->values(array(
11453   'lid' => '89',
11454   'location' => 'includes/content.admin.inc:253',
11455   'textgroup' => 'default',
11456   'source' => 'Field name (a-z, 0-9, _)',
11457   'version' => 'none',
11458 ))
11459 ->values(array(
11460   'lid' => '90',
11461   'location' => 'includes/content.admin.inc:258',
11462   'textgroup' => 'default',
11463   'source' => 'Type of data to store.',
11464   'version' => 'none',
11465 ))
11466 ->values(array(
11467   'lid' => '91',
11468   'location' => 'includes/content.admin.inc:263;295',
11469   'textgroup' => 'default',
11470   'source' => 'Form element to edit the data.',
11471   'version' => 'none',
11472 ))
11473 ->values(array(
11474   'lid' => '92',
11475   'location' => 'includes/content.admin.inc:279',
11476   'textgroup' => 'default',
11477   'source' => '- Select an existing field -',
11478   'version' => 'none',
11479 ))
11480 ->values(array(
11481   'lid' => '93',
11482   'location' => 'includes/content.admin.inc:290',
11483   'textgroup' => 'default',
11484   'source' => 'Field to share',
11485   'version' => 'none',
11486 ))
11487 ->values(array(
11488   'lid' => '94',
11489   'location' => 'includes/content.admin.inc:324',
11490   'textgroup' => 'default',
11491   'source' => 'Group name (a-z, 0-9, _)',
11492   'version' => 'none',
11493 ))
11494 ->values(array(
11495   'lid' => '95',
11496   'location' => 'includes/content.admin.inc:352;677,  modules/fieldgroup/fieldgroup.module:177;341',
11497   'textgroup' => 'default',
11498   'source' => 'Save',
11499   'version' => 'none',
11500 ))
11501 ->values(array(
11502   'lid' => '96',
11503   'location' => 'includes/content.admin.inc:373',
11504   'textgroup' => 'default',
11505   'source' => 'Add new field: you need to provide a label.',
11506   'version' => 'none',
11507 ))
11508 ->values(array(
11509   'lid' => '97',
11510   'location' => 'includes/content.admin.inc:378',
11511   'textgroup' => 'default',
11512   'source' => 'Add new field: you need to provide a field name.',
11513   'version' => 'none',
11514 ))
11515 ->values(array(
11516   'lid' => '98',
11517   'location' => 'includes/content.admin.inc:392',
11518   'textgroup' => 'default',
11519   'source' => 'Add new field: the field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
11520   'version' => 'none',
11521 ))
11522 ->values(array(
11523   'lid' => '99',
11524   'location' => 'includes/content.admin.inc:395',
11525   'textgroup' => 'default',
11526   'source' => "Add new field: the field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
11527   'version' => 'none',
11528 ))
11529 ->values(array(
11530   'lid' => '100',
11531   'location' => 'includes/content.admin.inc:399',
11532   'textgroup' => 'default',
11533   'source' => "Add new field: the name 'field_instance' is a reserved name.",
11534   'version' => 'none',
11535 ))
11536 ->values(array(
11537   'lid' => '101',
11538   'location' => 'includes/content.admin.inc:411',
11539   'textgroup' => 'default',
11540   'source' => 'Add new field: the field name %field_name already exists.',
11541   'version' => 'none',
11542 ))
11543 ->values(array(
11544   'lid' => '102',
11545   'location' => 'includes/content.admin.inc:417',
11546   'textgroup' => 'default',
11547   'source' => 'Add new field: you need to select a field type.',
11548   'version' => 'none',
11549 ))
11550 ->values(array(
11551   'lid' => '103',
11552   'location' => 'includes/content.admin.inc:422',
11553   'textgroup' => 'default',
11554   'source' => 'Add new field: you need to select a widget.',
11555   'version' => 'none',
11556 ))
11557 ->values(array(
11558   'lid' => '104',
11559   'location' => 'includes/content.admin.inc:428',
11560   'textgroup' => 'default',
11561   'source' => 'Add new field: invalid widget.',
11562   'version' => 'none',
11563 ))
11564 ->values(array(
11565   'lid' => '105',
11566   'location' => 'includes/content.admin.inc:449',
11567   'textgroup' => 'default',
11568   'source' => 'Add existing field: you need to provide a label.',
11569   'version' => 'none',
11570 ))
11571 ->values(array(
11572   'lid' => '106',
11573   'location' => 'includes/content.admin.inc:454',
11574   'textgroup' => 'default',
11575   'source' => 'Add existing field: you need to select a field.',
11576   'version' => 'none',
11577 ))
11578 ->values(array(
11579   'lid' => '107',
11580   'location' => 'includes/content.admin.inc:459',
11581   'textgroup' => 'default',
11582   'source' => 'Add existing field: you need to select a widget.',
11583   'version' => 'none',
11584 ))
11585 ->values(array(
11586   'lid' => '108',
11587   'location' => 'includes/content.admin.inc:465',
11588   'textgroup' => 'default',
11589   'source' => 'Add existing field: invalid widget.',
11590   'version' => 'none',
11591 ))
11592 ->values(array(
11593   'lid' => '109',
11594   'location' => 'includes/content.admin.inc:514',
11595   'textgroup' => 'default',
11596   'source' => 'There was a problem creating field %label.',
11597   'version' => 'none',
11598 ))
11599 ->values(array(
11600   'lid' => '110',
11601   'location' => 'includes/content.admin.inc:526',
11602   'textgroup' => 'default',
11603   'source' => 'The field %label cannot be added to a content type because it is locked.',
11604   'version' => 'none',
11605 ))
11606 ->values(array(
11607   'lid' => '111',
11608   'location' => 'includes/content.admin.inc:536',
11609   'textgroup' => 'default',
11610   'source' => 'There was a problem adding field %label.',
11611   'version' => 'none',
11612 ))
11613 ->values(array(
11614   'lid' => '112',
11615   'location' => 'includes/content.admin.inc:578',
11616   'textgroup' => 'default',
11617   'source' => 'There are no fields configured for this content type. You can add new fields on the <a href="@link">Manage fields</a> page.',
11618   'version' => 'none',
11619 ))
11620 ->values(array(
11621   'lid' => '113',
11622   'location' => 'includes/content.admin.inc:585;633,  includes/panels/content_types/content_field.inc:101,  modules/content_multigroup/content_multigroup.module:352',
11623   'textgroup' => 'default',
11624   'source' => 'Above',
11625   'version' => 'none',
11626 ))
11627 ->values(array(
11628   'lid' => '114',
11629   'location' => 'includes/content.admin.inc:586,  includes/panels/content_types/content_field.inc:102',
11630   'textgroup' => 'default',
11631   'source' => 'Inline',
11632   'version' => 'none',
11633 ))
11634 ->values(array(
11635   'lid' => '115',
11636   'location' => 'includes/content.admin.inc:625;668',
11637   'textgroup' => 'default',
11638   'source' => 'Include',
11639   'version' => 'none',
11640 ))
11641 ->values(array(
11642   'lid' => '116',
11643   'location' => 'includes/content.admin.inc:625;668,  theme/content-admin-display-overview-form.tpl.php:17',
11644   'textgroup' => 'default',
11645   'source' => 'Exclude',
11646   'version' => 'none',
11647 ))
11648 ->values(array(
11649   'lid' => '117',
11650   'location' => 'includes/content.admin.inc:637',
11651   'textgroup' => 'default',
11652   'source' => 'no styling',
11653   'version' => 'none',
11654 ))
11655 ->values(array(
11656   'lid' => '118',
11657   'location' => 'includes/content.admin.inc:638',
11658   'textgroup' => 'default',
11659   'source' => 'simple',
11660   'version' => 'none',
11661 ))
11662 ->values(array(
11663   'lid' => '119',
11664   'location' => 'includes/content.admin.inc:639',
11665   'textgroup' => 'default',
11666   'source' => 'fieldset',
11667   'version' => 'none',
11668 ))
11669 ->values(array(
11670   'lid' => '120',
11671   'location' => 'includes/content.admin.inc:640',
11672   'textgroup' => 'default',
11673   'source' => 'fieldset - collapsible',
11674   'version' => 'none',
11675 ))
11676 ->values(array(
11677   'lid' => '121',
11678   'location' => 'includes/content.admin.inc:641',
11679   'textgroup' => 'default',
11680   'source' => 'fieldset - collapsed',
11681   'version' => 'none',
11682 ))
11683 ->values(array(
11684   'lid' => '122',
11685   'location' => 'includes/content.admin.inc:697',
11686   'textgroup' => 'default',
11687   'source' => 'Your settings have been saved.',
11688   'version' => 'none',
11689 ))
11690 ->values(array(
11691   'lid' => '123',
11692   'location' => 'includes/content.admin.inc:767',
11693   'textgroup' => 'default',
11694   'source' => '@type: @field (@label)',
11695   'version' => 'none',
11696 ))
11697 ->values(array(
11698   'lid' => '124',
11699   'location' => 'includes/content.admin.inc:793',
11700   'textgroup' => 'default',
11701   'source' => 'Edit basic information',
11702   'version' => 'none',
11703 ))
11704 ->values(array(
11705   'lid' => '125',
11706   'location' => 'includes/content.admin.inc:799',
11707   'textgroup' => 'default',
11708   'source' => 'The machine-readable name of the field. This name cannot be changed.',
11709   'version' => 'none',
11710 ))
11711 ->values(array(
11712   'lid' => '126',
11713   'location' => 'includes/content.admin.inc:807',
11714   'textgroup' => 'default',
11715   'source' => 'A human-readable name to be used as the label for this field in the %type content type.',
11716   'version' => 'none',
11717 ))
11718 ->values(array(
11719   'lid' => '127',
11720   'location' => 'includes/content.admin.inc:814',
11721   'textgroup' => 'default',
11722   'source' => 'The type of data you would like to store in the database with this field. This option cannot be changed.',
11723   'version' => 'none',
11724 ))
11725 ->values(array(
11726   'lid' => '128',
11727   'location' => 'includes/content.admin.inc:819;1003',
11728   'textgroup' => 'default',
11729   'source' => 'Widget type',
11730   'version' => 'none',
11731 ))
11732 ->values(array(
11733   'lid' => '129',
11734   'location' => 'includes/content.admin.inc:823',
11735   'textgroup' => 'default',
11736   'source' => 'The type of form element you would like to present to the user when creating this field in the %type content type.',
11737   'version' => 'none',
11738 ))
11739 ->values(array(
11740   'lid' => '130',
11741   'location' => 'includes/content.admin.inc:833,  includes/content.rules.inc:66',
11742   'textgroup' => 'default',
11743   'source' => 'Continue',
11744   'version' => 'none',
11745 ))
11746 ->values(array(
11747   'lid' => '131',
11748   'location' => 'includes/content.admin.inc:861',
11749   'textgroup' => 'default',
11750   'source' => 'Updated basic settings for field %label.',
11751   'version' => 'none',
11752 ))
11753 ->values(array(
11754   'lid' => '132',
11755   'location' => 'includes/content.admin.inc:865',
11756   'textgroup' => 'default',
11757   'source' => 'There was a problem updating the basic settings for field %label.',
11758   'version' => 'none',
11759 ))
11760 ->values(array(
11761   'lid' => '133',
11762   'location' => 'includes/content.admin.inc:892',
11763   'textgroup' => 'default',
11764   'source' => 'Are you sure you want to remove the field %field?',
11765   'version' => 'none',
11766 ))
11767 ->values(array(
11768   'lid' => '134',
11769   'location' => 'includes/content.admin.inc:894',
11770   'textgroup' => 'default',
11771   'source' => 'If you have any content left in this field, it will be lost. This action cannot be undone.',
11772   'version' => 'none',
11773 ))
11774 ->values(array(
11775   'lid' => '135',
11776   'location' => 'includes/content.admin.inc:895,  modules/fieldgroup/fieldgroup.module:209',
11777   'textgroup' => 'default',
11778   'source' => 'Cancel',
11779   'version' => 'none',
11780 ))
11781 ->values(array(
11782   'lid' => '136',
11783   'location' => 'includes/content.admin.inc:901',
11784   'textgroup' => 'default',
11785   'source' => 'This field is <strong>locked</strong> and cannot be removed.',
11786   'version' => 'none',
11787 ))
11788 ->values(array(
11789   'lid' => '137',
11790   'location' => 'includes/content.admin.inc:922',
11791   'textgroup' => 'default',
11792   'source' => 'Removed field %field from %type.',
11793   'version' => 'none',
11794 ))
11795 ->values(array(
11796   'lid' => '138',
11797   'location' => 'includes/content.admin.inc:927',
11798   'textgroup' => 'default',
11799   'source' => 'There was a problem deleting %field from %type.',
11800   'version' => 'none',
11801 ))
11802 ->values(array(
11803   'lid' => '139',
11804   'location' => 'includes/content.admin.inc:946',
11805   'textgroup' => 'default',
11806   'source' => 'The field %field is locked and cannot be edited.',
11807   'version' => 'none',
11808 ))
11809 ->values(array(
11810   'lid' => '140',
11811   'location' => 'includes/content.admin.inc:980',
11812   'textgroup' => 'default',
11813   'source' => '%type basic information',
11814   'version' => 'none',
11815 ))
11816 ->values(array(
11817   'lid' => '141',
11818   'location' => 'includes/content.admin.inc:1010;1189',
11819   'textgroup' => 'default',
11820   'source' => 'Change basic information',
11821   'version' => 'none',
11822 ))
11823 ->values(array(
11824   'lid' => '142',
11825   'location' => 'includes/content.admin.inc:1016',
11826   'textgroup' => 'default',
11827   'source' => '%type settings',
11828   'version' => 'none',
11829 ))
11830 ->values(array(
11831   'lid' => '143',
11832   'location' => 'includes/content.admin.inc:1017',
11833   'textgroup' => 'default',
11834   'source' => 'These settings apply only to the %field field as it appears in the %type content type.',
11835   'version' => 'none',
11836 ))
11837 ->values(array(
11838   'lid' => '144',
11839   'location' => 'includes/content.admin.inc:1031,  modules/fieldgroup/fieldgroup.module:145',
11840   'textgroup' => 'default',
11841   'source' => 'Help text',
11842   'version' => 'none',
11843 ))
11844 ->values(array(
11845   'lid' => '145',
11846   'location' => 'includes/content.admin.inc:1034',
11847   'textgroup' => 'default',
11848   'source' => 'Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags',
11849   'version' => 'none',
11850 ))
11851 ->values(array(
11852   'lid' => '146',
11853   'location' => 'includes/content.admin.inc:1060',
11854   'textgroup' => 'default',
11855   'source' => 'Default value',
11856   'version' => 'none',
11857 ))
11858 ->values(array(
11859   'lid' => '147',
11860   'location' => 'includes/content.admin.inc:1081,  modules/number/number.module:123,  modules/text/text.module:86',
11861   'textgroup' => 'default',
11862   'source' => 'PHP code',
11863   'version' => 'none',
11864 ))
11865 ->values(array(
11866   'lid' => '148',
11867   'location' => 'includes/content.admin.inc:1090;1245,  includes/content.rules.inc:93',
11868   'textgroup' => 'default',
11869   'source' => "'@column' => value for @column",
11870   'version' => 'none',
11871 ))
11872 ->values(array(
11873   'lid' => '149',
11874   'location' => 'includes/content.admin.inc:1092;1247,  includes/content.rules.inc:95',
11875   'textgroup' => 'default',
11876   '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);",
11877   'version' => 'none',
11878 ))
11879 ->values(array(
11880   'lid' => '150',
11881   'location' => 'includes/content.admin.inc:1096;1109,  includes/content.rules.inc:99,  modules/number/number.module:130;139,  modules/text/text.module:93;102',
11882   'textgroup' => 'default',
11883   'source' => 'Code',
11884   'version' => '6.38-dev',
11885 ))
11886 ->values(array(
11887   'lid' => '151',
11888   'location' => 'includes/content.admin.inc:1100',
11889   'textgroup' => 'default',
11890   '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.',
11891   'version' => 'none',
11892 ))
11893 ->values(array(
11894   'lid' => '152',
11895   'location' => 'includes/content.admin.inc:1110,  modules/number/number.module:140,  modules/text/text.module:103',
11896   'textgroup' => 'default',
11897   'source' => '&lt;none&gt;',
11898   'version' => 'none',
11899 ))
11900 ->values(array(
11901   'lid' => '153',
11902   'location' => 'includes/content.admin.inc:1111,  modules/number/number.module:141,  modules/text/text.module:104',
11903   'textgroup' => 'default',
11904   'source' => "You're not allowed to input PHP code.",
11905   'version' => 'none',
11906 ))
11907 ->values(array(
11908   'lid' => '154',
11909   'location' => 'includes/content.admin.inc:1111',
11910   'textgroup' => 'default',
11911   'source' => 'This PHP code was set by an administrator and will override any value specified above.',
11912   'version' => 'none',
11913 ))
11914 ->values(array(
11915   'lid' => '155',
11916   'location' => 'includes/content.admin.inc:1118',
11917   'textgroup' => 'default',
11918   'source' => 'Global settings',
11919   'version' => 'none',
11920 ))
11921 ->values(array(
11922   'lid' => '156',
11923   'location' => 'includes/content.admin.inc:1119',
11924   'textgroup' => 'default',
11925   'source' => 'These settings apply to the %field field in every content type in which it appears.',
11926   'version' => 'none',
11927 ))
11928 ->values(array(
11929   'lid' => '157',
11930   'location' => 'includes/content.admin.inc:1123',
11931   'textgroup' => 'default',
11932   'source' => 'Required',
11933   'version' => 'none',
11934 ))
11935 ->values(array(
11936   'lid' => '158',
11937   'location' => 'includes/content.admin.inc:1126',
11938   'textgroup' => 'default',
11939   'source' => 'Maximum number of values users can enter for this field.',
11940   'version' => 'none',
11941 ))
11942 ->values(array(
11943   'lid' => '159',
11944   'location' => 'includes/content.admin.inc:1128',
11945   'textgroup' => 'default',
11946   'source' => "'Unlimited' will provide an 'Add more' button so the users can add as many values as they like.",
11947   'version' => 'none',
11948 ))
11949 ->values(array(
11950   'lid' => '160',
11951   'location' => 'includes/content.admin.inc:1130',
11952   'textgroup' => 'default',
11953   'source' => 'Warning! Changing this setting after data has been created could result in the loss of data!',
11954   'version' => 'none',
11955 ))
11956 ->values(array(
11957   'lid' => '161',
11958   'location' => 'includes/content.admin.inc:1133',
11959   'textgroup' => 'default',
11960   'source' => 'Number of values',
11961   'version' => 'none',
11962 ))
11963 ->values(array(
11964   'lid' => '162',
11965   'location' => 'includes/content.admin.inc:1134,  modules/content_multigroup/content_multigroup.module:73',
11966   'textgroup' => 'default',
11967   'source' => 'Unlimited',
11968   'version' => 'none',
11969 ))
11970 ->values(array(
11971   'lid' => '163',
11972   'location' => 'includes/content.admin.inc:1151,  modules/content_copy/content_copy.module:251',
11973   'textgroup' => 'default',
11974   'source' => 'Save field settings',
11975   'version' => 'none',
11976 ))
11977 ->values(array(
11978   'lid' => '164',
11979   'location' => 'includes/content.admin.inc:1288',
11980   'textgroup' => 'default',
11981   'source' => "The PHP code for 'default value' returned @value, which is invalid.",
11982   'version' => 'none',
11983 ))
11984 ->values(array(
11985   'lid' => '165',
11986   'location' => 'includes/content.admin.inc:1292',
11987   'textgroup' => 'default',
11988   'source' => 'The default value is invalid.',
11989   'version' => 'none',
11990 ))
11991 ->values(array(
11992   'lid' => '166',
11993   'location' => 'includes/content.admin.inc:1316',
11994   'textgroup' => 'default',
11995   'source' => 'Added field %label.',
11996   'version' => 'none',
11997 ))
11998 ->values(array(
11999   'lid' => '167',
12000   'location' => 'includes/content.admin.inc:1320',
12001   'textgroup' => 'default',
12002   'source' => 'Saved field %label.',
12003   'version' => 'none',
12004 ))
12005 ->values(array(
12006   'lid' => '168',
12007   'location' => 'includes/content.admin.inc:1678',
12008   'textgroup' => 'default',
12009   'source' => 'Processing',
12010   'version' => 'none',
12011 ))
12012 ->values(array(
12013   'lid' => '169',
12014   'location' => 'includes/content.admin.inc:1679',
12015   'textgroup' => 'default',
12016   'source' => 'The update has encountered an error.',
12017   'version' => 'none',
12018 ))
12019 ->values(array(
12020   'lid' => '170',
12021   'location' => 'includes/content.admin.inc:1693',
12022   'textgroup' => 'default',
12023   'source' => 'The database has been altered and data has been migrated or deleted.',
12024   'version' => 'none',
12025 ))
12026 ->values(array(
12027   'lid' => '171',
12028   'location' => 'includes/content.admin.inc:1696',
12029   'textgroup' => 'default',
12030   'source' => 'An error occurred and database alteration did not complete.',
12031   'version' => 'none',
12032 ))
12033 ->values(array(
12034   'lid' => '172',
12035   'location' => 'includes/content.admin.inc:1799',
12036   'textgroup' => 'default',
12037   'source' => 'Processing %title',
12038   'version' => 'none',
12039 ))
12040 ->values(array(
12041   'lid' => '173',
12042   'location' => 'includes/content.admin.inc:1865',
12043   'textgroup' => 'default',
12044   'source' => '%name must be an integer.',
12045   'version' => 'none',
12046 ))
12047 ->values(array(
12048   'lid' => '174',
12049   'location' => 'includes/content.admin.inc:1875',
12050   'textgroup' => 'default',
12051   'source' => '%name must be a positive integer.',
12052   'version' => 'none',
12053 ))
12054 ->values(array(
12055   'lid' => '175',
12056   'location' => 'includes/content.admin.inc:1885',
12057   'textgroup' => 'default',
12058   'source' => '%name must be a number.',
12059   'version' => 'none',
12060 ))
12061 ->values(array(
12062   'lid' => '176',
12063   'location' => 'includes/content.admin.inc:1697',
12064   'textgroup' => 'default',
12065   'source' => '1 item successfully processed:',
12066   'version' => 'none',
12067 ))
12068 ->values(array(
12069   'lid' => '177',
12070   'location' => 'includes/content.admin.inc:1697',
12071   'textgroup' => 'default',
12072   'source' => '@count items successfully processed:',
12073   'version' => 'none',
12074 ))
12075 ->values(array(
12076   'lid' => '178',
12077   'location' => 'includes/content.crud.inc:589',
12078   'textgroup' => 'default',
12079   'source' => 'Content fields table %old_name has been renamed to %new_name and field instances have been updated.',
12080   'version' => 'none',
12081 ))
12082 ->values(array(
12083   'lid' => '179',
12084   'location' => 'includes/content.crud.inc:633',
12085   'textgroup' => 'default',
12086   'source' => 'The content fields table %name has been deleted.',
12087   'version' => 'none',
12088 ))
12089 ->values(array(
12090   'lid' => '180',
12091   'location' => 'includes/content.node_form.inc:223',
12092   'textgroup' => 'default',
12093   'source' => 'Add another item',
12094   'version' => 'none',
12095 ))
12096 ->values(array(
12097   'lid' => '181',
12098   'location' => 'includes/panels/content_types/content_field.inc:14',
12099   'textgroup' => 'default',
12100   'source' => 'Content field',
12101   'version' => 'none',
12102 ))
12103 ->values(array(
12104   'lid' => '182',
12105   'location' => 'includes/content.panels.inc:38',
12106   'textgroup' => 'default',
12107   'source' => 'A content field from the referenced node.',
12108   'version' => 'none',
12109 ))
12110 ->values(array(
12111   'lid' => '183',
12112   'location' => 'includes/panels/content_types/content_field.inc:45,  modules/fieldgroup/fieldgroup.panels.inc:31,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:43',
12113   'textgroup' => 'default',
12114   'source' => 'Node',
12115   'version' => 'none',
12116 ))
12117 ->values(array(
12118   'lid' => '184',
12119   'location' => 'includes/content.panels.inc:40,  modules/fieldgroup/fieldgroup.panels.inc:32',
12120   'textgroup' => 'default',
12121   'source' => 'Node context',
12122   'version' => 'none',
12123 ))
12124 ->values(array(
12125   'lid' => '185',
12126   'location' => 'includes/panels/content_types/content_field.inc:100',
12127   'textgroup' => 'default',
12128   'source' => 'Block title',
12129   'version' => 'none',
12130 ))
12131 ->values(array(
12132   'lid' => '186',
12133   'location' => 'includes/panels/content_types/content_field.inc:103',
12134   'textgroup' => 'default',
12135   'source' => 'Hidden',
12136   'version' => 'none',
12137 ))
12138 ->values(array(
12139   'lid' => '187',
12140   'location' => 'includes/panels/content_types/content_field.inc:105',
12141   'textgroup' => 'default',
12142   'source' => 'Configure how the label is going to be displayed.',
12143   'version' => 'none',
12144 ))
12145 ->values(array(
12146   'lid' => '188',
12147   'location' => 'includes/content.panels.inc:73',
12148   'textgroup' => 'default',
12149   'source' => 'Field / Formatter',
12150   'version' => 'none',
12151 ))
12152 ->values(array(
12153   'lid' => '189',
12154   'location' => 'includes/content.panels.inc:76',
12155   'textgroup' => 'default',
12156   'source' => 'Select a field and formatter.',
12157   'version' => 'none',
12158 ))
12159 ->values(array(
12160   'lid' => '190',
12161   'location' => 'includes/content.panels.inc:92',
12162   'textgroup' => 'default',
12163   'source' => '"@s" field @name',
12164   'version' => 'none',
12165 ))
12166 ->values(array(
12167   'lid' => '191',
12168   'location' => 'includes/content.rules.inc:15',
12169   'textgroup' => 'default',
12170   'source' => 'Populate a field',
12171   'version' => 'none',
12172 ))
12173 ->values(array(
12174   'lid' => '192',
12175   'location' => 'includes/content.rules.inc:23;224',
12176   'textgroup' => 'default',
12177   'source' => 'You should make sure that the used field exists in the given content type.',
12178   'version' => 'none',
12179 ))
12180 ->values(array(
12181   'lid' => '193',
12182   'location' => 'includes/content.rules.inc:53;276,  modules/nodereference/nodereference.rules.inc:45,  modules/userreference/userreference.rules.inc:47',
12183   'textgroup' => 'default',
12184   'source' => 'Field',
12185   'version' => 'none',
12186 ))
12187 ->values(array(
12188   'lid' => '194',
12189   'location' => 'includes/content.rules.inc:56',
12190   'textgroup' => 'default',
12191   'source' => 'Select the machine-name of the field.',
12192   'version' => 'none',
12193 ))
12194 ->values(array(
12195   'lid' => '195',
12196   'location' => 'includes/content.rules.inc:84',
12197   'textgroup' => 'default',
12198   'source' => 'Advanced: Specify the fields value with PHP code',
12199   'version' => 'none',
12200 ))
12201 ->values(array(
12202   'lid' => '196',
12203   'location' => 'not literally,  includes/content.rules.inc:102',
12204   'textgroup' => 'default',
12205   '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.",
12206   'version' => 'none',
12207 ))
12208 ->values(array(
12209   'lid' => '197',
12210   'location' => 'includes/content.rules.inc:130',
12211   'textgroup' => 'default',
12212   'source' => 'You have to return the default value in the expected format.',
12213   'version' => 'none',
12214 ))
12215 ->values(array(
12216   'lid' => '198',
12217   'location' => 'includes/content.rules.inc:193',
12218   'textgroup' => 'default',
12219   'source' => "Populate @node's field '@field'",
12220   'version' => 'none',
12221 ))
12222 ->values(array(
12223   'lid' => '199',
12224   'location' => 'includes/content.rules.inc:210',
12225   'textgroup' => 'default',
12226   'source' => 'Field has value',
12227   'version' => 'none',
12228 ))
12229 ->values(array(
12230   'lid' => '200',
12231   'location' => 'includes/content.rules.inc:215',
12232   'textgroup' => 'default',
12233   '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.',
12234   'version' => 'none',
12235 ))
12236 ->values(array(
12237   'lid' => '201',
12238   'location' => 'includes/content.rules.inc:219',
12239   'textgroup' => 'default',
12240   'source' => 'Field has changed',
12241   'version' => 'none',
12242 ))
12243 ->values(array(
12244   'lid' => '202',
12245   'location' => 'includes/content.rules.inc:221',
12246   'textgroup' => 'default',
12247   'source' => 'Content containing changes',
12248   'version' => 'none',
12249 ))
12250 ->values(array(
12251   'lid' => '203',
12252   'location' => 'includes/content.rules.inc:222',
12253   'textgroup' => 'default',
12254   'source' => 'Content not containing changes',
12255   'version' => 'none',
12256 ))
12257 ->values(array(
12258   'lid' => '204',
12259   'location' => 'includes/content.rules.inc:259',
12260   'textgroup' => 'default',
12261   'source' => "@node's field '@field' has value",
12262   'version' => 'none',
12263 ))
12264 ->values(array(
12265   'lid' => '205',
12266   'location' => 'not literally,  includes/content.rules.inc:279,  fuzzy',
12267   'textgroup' => 'default',
12268   'source' => 'Select the machine-name of the field to look at.',
12269   'version' => 'none',
12270 ))
12271 ->values(array(
12272   'lid' => '206',
12273   'location' => '@node?,  includes/content.rules.inc:285',
12274   'textgroup' => 'default',
12275   'source' => "@node's field '@field' has been changed",
12276   'version' => 'none',
12277 ))
12278 ->values(array(
12279   'lid' => '207',
12280   'location' => 'includes/content.token.inc:12;15',
12281   'textgroup' => 'default',
12282   'source' => 'Token',
12283   'version' => 'none',
12284 ))
12285 ->values(array(
12286   'lid' => '208',
12287   'location' => 'includes/content.token.inc:81',
12288   'textgroup' => 'default',
12289   'source' => 'Referenced node ID',
12290   'version' => 'none',
12291 ))
12292 ->values(array(
12293   'lid' => '209',
12294   'location' => 'includes/content.token.inc:82',
12295   'textgroup' => 'default',
12296   'source' => 'Referenced node title',
12297   'version' => 'none',
12298 ))
12299 ->values(array(
12300   'lid' => '210',
12301   'location' => 'includes/content.token.inc:83',
12302   'textgroup' => 'default',
12303   'source' => 'Referenced node unfiltered title. WARNING - raw user input.',
12304   'version' => 'none',
12305 ))
12306 ->values(array(
12307   'lid' => '211',
12308   'location' => 'includes/content.token.inc:84',
12309   'textgroup' => 'default',
12310   'source' => 'Formatted html link to the referenced node.',
12311   'version' => 'none',
12312 ))
12313 ->values(array(
12314   'lid' => '212',
12315   'location' => 'includes/content.token.inc:85',
12316   'textgroup' => 'default',
12317   'source' => 'Relative path alias to the referenced node.',
12318   'version' => 'none',
12319 ))
12320 ->values(array(
12321   'lid' => '213',
12322   'location' => 'includes/content.token.inc:86',
12323   'textgroup' => 'default',
12324   'source' => 'Absolute path alias to the referenced node.',
12325   'version' => 'none',
12326 ))
12327 ->values(array(
12328   'lid' => '214',
12329   'location' => 'includes/content.token.inc:114',
12330   'textgroup' => 'default',
12331   'source' => 'Raw number value',
12332   'version' => 'none',
12333 ))
12334 ->values(array(
12335   'lid' => '215',
12336   'location' => 'includes/content.token.inc:115',
12337   'textgroup' => 'default',
12338   'source' => 'Formatted number value',
12339   'version' => 'none',
12340 ))
12341 ->values(array(
12342   'lid' => '216',
12343   'location' => 'includes/content.token.inc:138',
12344   'textgroup' => 'default',
12345   'source' => 'Raw, unfiltered text',
12346   'version' => 'none',
12347 ))
12348 ->values(array(
12349   'lid' => '217',
12350   'location' => 'includes/content.token.inc:139',
12351   'textgroup' => 'default',
12352   'source' => 'Formatted and filtered text',
12353   'version' => 'none',
12354 ))
12355 ->values(array(
12356   'lid' => '218',
12357   'location' => 'includes/content.token.inc:161',
12358   'textgroup' => 'default',
12359   'source' => 'Referenced user ID',
12360   'version' => 'none',
12361 ))
12362 ->values(array(
12363   'lid' => '219',
12364   'location' => 'includes/content.token.inc:162',
12365   'textgroup' => 'default',
12366   'source' => 'Referenced user name',
12367   'version' => 'none',
12368 ))
12369 ->values(array(
12370   'lid' => '220',
12371   'location' => 'includes/content.token.inc:163',
12372   'textgroup' => 'default',
12373   'source' => 'Formatted HTML link to referenced user',
12374   'version' => 'none',
12375 ))
12376 ->values(array(
12377   'lid' => '221',
12378   'location' => 'includes/content.token.inc:164',
12379   'textgroup' => 'default',
12380   'source' => 'Relative path alias to the referenced user.',
12381   'version' => 'none',
12382 ))
12383 ->values(array(
12384   'lid' => '222',
12385   'location' => 'includes/content.token.inc:165',
12386   'textgroup' => 'default',
12387   'source' => 'Absolute path alias to the referenced user.',
12388   'version' => 'none',
12389 ))
12390 ->values(array(
12391   'lid' => '223',
12392   'location' => 'includes/views/content.views.inc:245;261',
12393   'textgroup' => 'default',
12394   'source' => '@label (!name)',
12395   'version' => 'none',
12396 ))
12397 ->values(array(
12398   'lid' => '224',
12399   'location' => 'includes/views/content.views.inc:249',
12400   'textgroup' => 'default',
12401   'source' => '@label (!name) - !column',
12402   'version' => 'none',
12403 ))
12404 ->values(array(
12405   'lid' => '225',
12406   'location' => 'includes/views/content.views.inc:250',
12407   'textgroup' => 'default',
12408   'source' => '@label-truncated - !column',
12409   'version' => 'none',
12410 ))
12411 ->values(array(
12412   'lid' => '226',
12413   'location' => 'includes/views/content.views.inc:257',
12414   'textgroup' => 'default',
12415   'source' => 'Appears in: @types',
12416   'version' => 'none',
12417 ))
12418 ->values(array(
12419   'lid' => '227',
12420   'location' => 'includes/views/handlers/content_handler_field.inc:56',
12421   'textgroup' => 'default',
12422   'source' => 'None',
12423   'version' => 'none',
12424 ))
12425 ->values(array(
12426   'lid' => '228',
12427   'location' => 'includes/views/handlers/content_handler_field.inc:57',
12428   'textgroup' => 'default',
12429   'source' => 'Widget label (@label)',
12430   'version' => 'none',
12431 ))
12432 ->values(array(
12433   'lid' => '229',
12434   'location' => 'includes/views/handlers/content_handler_field.inc:58',
12435   'textgroup' => 'default',
12436   'source' => 'Custom',
12437   'version' => 'none',
12438 ))
12439 ->values(array(
12440   'lid' => '230',
12441   'location' => 'includes/views/handlers/content_handler_field.inc:64',
12442   'textgroup' => 'default',
12443   'source' => 'Custom label',
12444   'version' => 'none',
12445 ))
12446 ->values(array(
12447   'lid' => '231',
12448   'location' => 'includes/views/handlers/content_handler_field.inc:80',
12449   'textgroup' => 'default',
12450   'source' => 'Format',
12451   'version' => 'none',
12452 ))
12453 ->values(array(
12454   'lid' => '232',
12455   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:56',
12456   'textgroup' => 'default',
12457   'source' => 'Group multiple values',
12458   'version' => 'none',
12459 ))
12460 ->values(array(
12461   'lid' => '233',
12462   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:61',
12463   'textgroup' => 'default',
12464   '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.',
12465   'version' => 'none',
12466 ))
12467 ->values(array(
12468   'lid' => '234',
12469   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:63',
12470   'textgroup' => 'default',
12471   'source' => 'Show @count value(s)',
12472   'version' => 'none',
12473 ))
12474 ->values(array(
12475   'lid' => '235',
12476   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:74',
12477   'textgroup' => 'default',
12478   'source' => 'starting from @count',
12479   'version' => 'none',
12480 ))
12481 ->values(array(
12482   'lid' => '236',
12483   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:85',
12484   'textgroup' => 'default',
12485   'source' => 'Reversed (start from last values)',
12486   'version' => 'none',
12487 ))
12488 ->values(array(
12489   'lid' => '237',
12490   'location' => 'includes/views/handlers/content_handler_relationship.inc:40,  includes/views/handlers/content_handler_sort.inc:41',
12491   'textgroup' => 'default',
12492   'source' => 'All',
12493   'version' => 'none',
12494 ))
12495 ->values(array(
12496   'lid' => '238',
12497   'location' => 'includes/views/handlers/content_handler_relationship.inc:48,  includes/views/handlers/content_handler_sort.inc:49',
12498   'textgroup' => 'default',
12499   'source' => 'Delta',
12500   'version' => 'none',
12501 ))
12502 ->values(array(
12503   'lid' => '239',
12504   'location' => 'includes/views/handlers/content_handler_relationship.inc:49',
12505   'textgroup' => 'default',
12506   '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.',
12507   'version' => 'none',
12508 ))
12509 ->values(array(
12510   'lid' => '240',
12511   'location' => 'includes/views/handlers/content_handler_sort.inc:50',
12512   'textgroup' => 'default',
12513   '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.',
12514   'version' => 'none',
12515 ))
12516 ->values(array(
12517   'lid' => '241',
12518   'location' => 'modules/content_copy/content_copy_export_form.tpl.php:9,  modules/content_copy/content_copy.module:191;38',
12519   'textgroup' => 'default',
12520   'source' => 'Export',
12521   'version' => '6.38-dev',
12522 ))
12523 ->values(array(
12524   'lid' => '242',
12525   'location' => 'modules/content_copy/content_copy.module:97',
12526   'textgroup' => 'default',
12527   '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.',
12528   'version' => 'none',
12529 ))
12530 ->values(array(
12531   'lid' => '243',
12532   'location' => 'modules/content_copy/content_copy.module:103',
12533   'textgroup' => 'default',
12534   'source' => 'Types',
12535   'version' => 'none',
12536 ))
12537 ->values(array(
12538   'lid' => '244',
12539   'location' => 'modules/content_copy/content_copy.module:107',
12540   'textgroup' => 'default',
12541   'source' => 'Select the content type to export.',
12542   'version' => 'none',
12543 ))
12544 ->values(array(
12545   'lid' => '245',
12546   'location' => 'modules/content_copy/content_copy.module:175',
12547   'textgroup' => 'default',
12548   'source' => 'Export data',
12549   'version' => 'none',
12550 ))
12551 ->values(array(
12552   'lid' => '246',
12553   'location' => 'modules/content_copy/content_copy.module:180',
12554   'textgroup' => 'default',
12555   'source' => 'Copy the export text and paste it into another content type using the import function.',
12556   'version' => 'none',
12557 ))
12558 ->values(array(
12559   'lid' => '247',
12560   'location' => 'content_admin.inc:42',
12561   'textgroup' => 'default',
12562   'source' => 'Content types',
12563   'version' => '6.38-dev',
12564 ))
12565 ->values(array(
12566   'lid' => '248',
12567   'location' => 'modules/content_copy/content_copy.module:308',
12568   'textgroup' => 'default',
12569   'source' => 'Content type',
12570   'version' => '6.38-dev',
12571 ))
12572 ->values(array(
12573   'lid' => '249',
12574   'location' => 'modules/content_copy/content_copy.module:309',
12575   'textgroup' => 'default',
12576   '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.',
12577   'version' => 'none',
12578 ))
12579 ->values(array(
12580   'lid' => '250',
12581   'location' => 'modules/content_copy/content_copy.module:314',
12582   'textgroup' => 'default',
12583   'source' => 'Import data',
12584   'version' => 'none',
12585 ))
12586 ->values(array(
12587   'lid' => '251',
12588   'location' => 'modules/content_copy/content_copy.module:316',
12589   'textgroup' => 'default',
12590   'source' => 'Paste the text created by a content export into this field.',
12591   'version' => 'none',
12592 ))
12593 ->values(array(
12594   'lid' => '252',
12595   'location' => 'modules/content_copy/content_copy.module:320;46',
12596   'textgroup' => 'default',
12597   'source' => 'Import',
12598   'version' => '6.38-dev',
12599 ))
12600 ->values(array(
12601   'lid' => '253',
12602   'location' => 'modules/content_copy/content_copy.module:328',
12603   'textgroup' => 'default',
12604   'source' => 'A file has been pre-loaded for import.',
12605   'version' => 'none',
12606 ))
12607 ->values(array(
12608   'lid' => '254',
12609   'location' => 'modules/content_copy/content_copy.module:354',
12610   'textgroup' => 'default',
12611   'source' => 'The import data is not valid import text.',
12612   'version' => 'none',
12613 ))
12614 ->values(array(
12615   'lid' => '255',
12616   'location' => 'modules/content_copy/content_copy.module:403',
12617   'textgroup' => 'default',
12618   'source' => 'The following modules must be enabled for this import to work: %modules.',
12619   'version' => 'none',
12620 ))
12621 ->values(array(
12622   'lid' => '256',
12623   'location' => 'modules/content_copy/content_copy.module:411',
12624   'textgroup' => 'default',
12625   'source' => 'The content type %type already exists in this database.',
12626   'version' => 'none',
12627 ))
12628 ->values(array(
12629   'lid' => '257',
12630   'location' => 'modules/content_copy/content_copy.module:418',
12631   'textgroup' => 'default',
12632   'source' => 'Exiting. No import performed.',
12633   'version' => 'none',
12634 ))
12635 ->values(array(
12636   'lid' => '258',
12637   'location' => 'modules/content_copy/content_copy.module:442',
12638   'textgroup' => 'default',
12639   'source' => 'An error has occurred adding the content type %type.<br/>Please check the errors displayed for more details.',
12640   'version' => 'none',
12641 ))
12642 ->values(array(
12643   'lid' => '259',
12644   'location' => 'modules/content_copy/content_copy.module:467',
12645   'textgroup' => 'default',
12646   'source' => 'The imported field %field_label (%field_name) was not added to %type because that field already exists in %type.',
12647   'version' => 'none',
12648 ))
12649 ->values(array(
12650   'lid' => '260',
12651   'location' => 'modules/content_copy/content_copy.module:476',
12652   'textgroup' => 'default',
12653   'source' => 'The field %field_label (%field_name) was added to the content type %type.',
12654   'version' => 'none',
12655 ))
12656 ->values(array(
12657   'lid' => '261',
12658   'location' => 'modules/content_copy/content_copy.module:0',
12659   'textgroup' => 'default',
12660   'source' => 'content_copy',
12661   'version' => 'none',
12662 ))
12663 ->values(array(
12664   'lid' => '262',
12665   'location' => 'modules/content_copy/content_copy.info:0',
12666   'textgroup' => 'default',
12667   'source' => 'Content Copy',
12668   'version' => 'none',
12669 ))
12670 ->values(array(
12671   'lid' => '263',
12672   'location' => 'modules/content_copy/content_copy.info:0',
12673   'textgroup' => 'default',
12674   'source' => 'Enables ability to import/export field definitions.',
12675   'version' => 'none',
12676 ))
12677 ->values(array(
12678   'lid' => '264',
12679   'location' => 'modules/content_multigroup/content_multigroup.module:12',
12680   'textgroup' => 'default',
12681   '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.',
12682   'version' => 'none',
12683 ))
12684 ->values(array(
12685   'lid' => '265',
12686   'location' => 'modules/content_multigroup/content_multigroup.module:65;135',
12687   'textgroup' => 'default',
12688   'source' => 'Multigroup',
12689   'version' => 'none',
12690 ))
12691 ->values(array(
12692   'lid' => '266',
12693   'location' => 'modules/content_multigroup/content_multigroup.module:134',
12694   'textgroup' => 'default',
12695   'source' => 'Standard',
12696   'version' => 'none',
12697 ))
12698 ->values(array(
12699   'lid' => '267',
12700   'location' => 'includes/content.admin.inc:344,  modules/content_multigroup/content_multigroup.module:126',
12701   'textgroup' => 'default',
12702   'source' => 'Type of group.',
12703   'version' => 'none',
12704 ))
12705 ->values(array(
12706   'lid' => '268',
12707   'location' => 'modules/content_multigroup/content_multigroup.module:215',
12708   'textgroup' => 'default',
12709   'source' => 'The field %field has been updated to use %multiple values, to match the multiple value setting of the Multigroup %group.',
12710   'version' => 'none',
12711 ))
12712 ->values(array(
12713   'lid' => '269',
12714   'location' => 'modules/content_multigroup/content_multigroup.module:248',
12715   'textgroup' => 'default',
12716   '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.',
12717   'version' => 'none',
12718 ))
12719 ->values(array(
12720   'lid' => '270',
12721   'location' => 'modules/content_multigroup/content_multigroup.module:272',
12722   'textgroup' => 'default',
12723   '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.',
12724   'version' => 'none',
12725 ))
12726 ->values(array(
12727   'lid' => '271',
12728   'location' => 'modules/content_multigroup/content_multigroup.module:287',
12729   'textgroup' => 'default',
12730   'source' => 'You are moving the field %field into a Multigroup.',
12731   'version' => 'none',
12732 ))
12733 ->values(array(
12734   'lid' => '272',
12735   'location' => 'modules/content_multigroup/content_multigroup.module:320',
12736   'textgroup' => 'default',
12737   '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.',
12738   'version' => 'none',
12739 ))
12740 ->values(array(
12741   'lid' => '273',
12742   'location' => 'modules/content_multigroup/content_multigroup.module:334',
12743   'textgroup' => 'default',
12744   'source' => 'You are moving the field %field out of a Multigroup.',
12745   'version' => 'none',
12746 ))
12747 ->values(array(
12748   'lid' => '274',
12749   'location' => 'modules/content_multigroup/content_multigroup.module:369',
12750   'textgroup' => 'default',
12751   'source' => 'Simple',
12752   'version' => 'none',
12753 ))
12754 ->values(array(
12755   'lid' => '275',
12756   'location' => 'modules/content_multigroup/content_multigroup.module:370',
12757   'textgroup' => 'default',
12758   'source' => 'Fieldset',
12759   'version' => 'none',
12760 ))
12761 ->values(array(
12762   'lid' => '276',
12763   'location' => 'modules/content_multigroup/content_multigroup.module:371',
12764   'textgroup' => 'default',
12765   'source' => 'Horizontal line',
12766   'version' => 'none',
12767 ))
12768 ->values(array(
12769   'lid' => '277',
12770   'location' => 'modules/content_multigroup/content_multigroup.module:372',
12771   'textgroup' => 'default',
12772   'source' => 'Table - Single column',
12773   'version' => 'none',
12774 ))
12775 ->values(array(
12776   'lid' => '278',
12777   'location' => 'modules/content_multigroup/content_multigroup.module:373',
12778   'textgroup' => 'default',
12779   'source' => 'Table - Multiple columns',
12780   'version' => 'none',
12781 ))
12782 ->values(array(
12783   'lid' => '279',
12784   'location' => 'modules/content_multigroup/content_multigroup.module:384',
12785   'textgroup' => 'default',
12786   'source' => '[Subgroup format]',
12787   'version' => 'none',
12788 ))
12789 ->values(array(
12790   'lid' => '280',
12791   'location' => 'modules/content_multigroup/content_multigroup.module:461',
12792   'textgroup' => 'default',
12793   'source' => 'Multigroup settings',
12794   'version' => 'none',
12795 ))
12796 ->values(array(
12797   'lid' => '281',
12798   'location' => 'modules/content_multigroup/content_multigroup.module:476',
12799   'textgroup' => 'default',
12800   'source' => 'Multiple columns',
12801   'version' => 'none',
12802 ))
12803 ->values(array(
12804   'lid' => '282',
12805   'location' => 'modules/content_multigroup/content_multigroup.module:478',
12806   'textgroup' => 'default',
12807   'source' => 'Enable this option to render each field on a separate column on the node edit form.',
12808   'version' => 'none',
12809 ))
12810 ->values(array(
12811   'lid' => '283',
12812   'location' => 'modules/content_multigroup/content_multigroup.module:485',
12813   'textgroup' => 'default',
12814   'source' => 'Enable this option to require a minimum of one collection of fields in this Multigroup.',
12815   'version' => 'none',
12816 ))
12817 ->values(array(
12818   'lid' => '284',
12819   'location' => 'modules/content_multigroup/content_multigroup.module:488',
12820   'textgroup' => 'default',
12821   'source' => 'Number of times to repeat the collection of Multigroup fields.',
12822   'version' => 'none',
12823 ))
12824 ->values(array(
12825   'lid' => '285',
12826   'location' => 'modules/content_multigroup/content_multigroup.module:489',
12827   'textgroup' => 'default',
12828   'source' => "'Unlimited' will provide an 'Add more' button so the users can add items as many times as they like.",
12829   'version' => 'none',
12830 ))
12831 ->values(array(
12832   'lid' => '286',
12833   'location' => 'modules/content_multigroup/content_multigroup.module:490',
12834   'textgroup' => 'default',
12835   'source' => 'All fields in this group will automatically be set to allow this number of values.',
12836   'version' => 'none',
12837 ))
12838 ->values(array(
12839   'lid' => '287',
12840   'location' => 'modules/content_multigroup/content_multigroup.module:495',
12841   'textgroup' => 'default',
12842   'source' => 'Number of repeats',
12843   'version' => 'none',
12844 ))
12845 ->values(array(
12846   'lid' => '288',
12847   'location' => 'modules/content_multigroup/content_multigroup.module:503',
12848   'textgroup' => 'default',
12849   'source' => 'Labels',
12850   'version' => 'none',
12851 ))
12852 ->values(array(
12853   'lid' => '289',
12854   'location' => 'modules/content_multigroup/content_multigroup.module:504',
12855   'textgroup' => 'default',
12856   'source' => "Labels for each subgroup of fields. Labels can be hidden or shown in various contexts using the 'Display fields' screen.",
12857   'version' => 'none',
12858 ))
12859 ->values(array(
12860   'lid' => '290',
12861   'location' => 'modules/content_multigroup/content_multigroup.module:512',
12862   'textgroup' => 'default',
12863   'source' => 'Subgroup %number label',
12864   'version' => 'none',
12865 ))
12866 ->values(array(
12867   'lid' => '291',
12868   'location' => 'modules/content_multigroup/content_multigroup.module:539',
12869   'textgroup' => 'default',
12870   '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.',
12871   'version' => 'none',
12872 ))
12873 ->values(array(
12874   'lid' => '292',
12875   'location' => 'modules/content_multigroup/content_multigroup.module:932',
12876   'textgroup' => 'default',
12877   'source' => '!name field is required in group @group.',
12878   'version' => 'none',
12879 ))
12880 ->values(array(
12881   'lid' => '293',
12882   'location' => 'modules/content_multigroup/content_multigroup.module:946',
12883   'textgroup' => 'default',
12884   'source' => 'Group @name requires one collection of fields minimum.',
12885   'version' => 'none',
12886 ))
12887 ->values(array(
12888   'lid' => '294',
12889   'location' => 'modules/content_multigroup/content_multigroup.module:1145',
12890   'textgroup' => 'default',
12891   'source' => 'Add more values',
12892   'version' => 'none',
12893 ))
12894 ->values(array(
12895   'lid' => '295',
12896   'location' => 'modules/content_multigroup/content_multigroup.module:0',
12897   'textgroup' => 'default',
12898   'source' => 'content_multigroup',
12899   'version' => 'none',
12900 ))
12901 ->values(array(
12902   'lid' => '296',
12903   'location' => 'modules/content_multigroup/content_multigroup.info:0',
12904   'textgroup' => 'default',
12905   'source' => 'Content Multigroup',
12906   'version' => 'none',
12907 ))
12908 ->values(array(
12909   'lid' => '297',
12910   'location' => 'modules/content_multigroup/content_multigroup.info:0',
12911   'textgroup' => 'default',
12912   'source' => 'Combine multiple CCK fields into repeating field collections that work in unison.',
12913   'version' => 'none',
12914 ))
12915 ->values(array(
12916   'lid' => '298',
12917   'location' => 'modules/content_permissions/content_permissions.module:10',
12918   'textgroup' => 'default',
12919   'source' => 'edit',
12920   'version' => 'none',
12921 ))
12922 ->values(array(
12923   'lid' => '299',
12924   'location' => 'modules/content_permissions/content_permissions.module:10;11',
12925   'textgroup' => 'default',
12926   'source' => 'field_name',
12927   'version' => 'none',
12928 ))
12929 ->values(array(
12930   'lid' => '300',
12931   'location' => 'modules/content_permissions/content_permissions.module:11',
12932   'textgroup' => 'default',
12933   'source' => 'view',
12934   'version' => 'none',
12935 ))
12936 ->values(array(
12937   'lid' => '301',
12938   'location' => 'modules/content_permissions/content_permissions.module:0',
12939   'textgroup' => 'default',
12940   'source' => 'content_permissions',
12941   'version' => 'none',
12942 ))
12943 ->values(array(
12944   'lid' => '302',
12945   'location' => 'modules/content_permissions/content_permissions.install:9',
12946   'textgroup' => 'default',
12947   'source' => 'Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.',
12948   'version' => 'none',
12949 ))
12950 ->values(array(
12951   'lid' => '303',
12952   'location' => 'modules/content_permissions/content_permissions.info:0',
12953   'textgroup' => 'default',
12954   'source' => 'Content Permissions',
12955   'version' => 'none',
12956 ))
12957 ->values(array(
12958   'lid' => '304',
12959   'location' => 'modules/content_permissions/content_permissions.info:0',
12960   'textgroup' => 'default',
12961   'source' => 'Set field-level permissions for CCK fields.',
12962   'version' => 'none',
12963 ))
12964 ->values(array(
12965   'lid' => '305',
12966   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:10;27,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:14',
12967   'textgroup' => 'default',
12968   'source' => 'Content fieldgroup',
12969   'version' => 'none',
12970 ))
12971 ->values(array(
12972   'lid' => '306',
12973   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:30',
12974   'textgroup' => 'default',
12975   'source' => 'All fields from a fieldgroup on the referenced node.',
12976   'version' => 'none',
12977 ))
12978 ->values(array(
12979   'lid' => '307',
12980   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:91',
12981   'textgroup' => 'default',
12982   'source' => '@group_label (@group_type_name)',
12983   'version' => 'none',
12984 ))
12985 ->values(array(
12986   'lid' => '308',
12987   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:102,  modules/fieldgroup/fieldgroup.info:0',
12988   'textgroup' => 'default',
12989   'source' => 'Fieldgroup',
12990   'version' => 'none',
12991 ))
12992 ->values(array(
12993   'lid' => '309',
12994   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:112,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:102',
12995   'textgroup' => 'default',
12996   'source' => 'Text to display if group has no data. Note that title will not display unless overridden.',
12997   'version' => 'none',
12998 ))
12999 ->values(array(
13000   'lid' => '310',
13001   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:128',
13002   'textgroup' => 'default',
13003   'source' => '"@s" fieldgroup @name',
13004   'version' => 'none',
13005 ))
13006 ->values(array(
13007   'lid' => '311',
13008   'location' => 'modules/fieldgroup/fieldgroup.module:124',
13009   'textgroup' => 'default',
13010   'source' => 'Form settings',
13011   'version' => 'none',
13012 ))
13013 ->values(array(
13014   'lid' => '312',
13015   'location' => 'modules/fieldgroup/fieldgroup.module:125',
13016   'textgroup' => 'default',
13017   'source' => 'These settings apply to the group in the node editing form.',
13018   'version' => 'none',
13019 ))
13020 ->values(array(
13021   'lid' => '313',
13022   'location' => 'modules/fieldgroup/fieldgroup.module:129',
13023   'textgroup' => 'default',
13024   'source' => 'Style',
13025   'version' => 'none',
13026 ))
13027 ->values(array(
13028   'lid' => '314',
13029   'location' => 'modules/fieldgroup/fieldgroup.module:132',
13030   'textgroup' => 'default',
13031   'source' => 'always open',
13032   'version' => 'none',
13033 ))
13034 ->values(array(
13035   'lid' => '315',
13036   'location' => 'modules/fieldgroup/fieldgroup.module:133',
13037   'textgroup' => 'default',
13038   'source' => 'collapsible',
13039   'version' => 'none',
13040 ))
13041 ->values(array(
13042   'lid' => '316',
13043   'location' => 'modules/fieldgroup/fieldgroup.module:134',
13044   'textgroup' => 'default',
13045   'source' => 'collapsed',
13046   'version' => 'none',
13047 ))
13048 ->values(array(
13049   'lid' => '317',
13050   'location' => 'modules/fieldgroup/fieldgroup.module:142',
13051   'textgroup' => 'default',
13052   'source' => 'Instructions to present to the user on the editing form.',
13053   'version' => 'none',
13054 ))
13055 ->values(array(
13056   'lid' => '318',
13057   'location' => 'modules/fieldgroup/fieldgroup.module:147',
13058   'textgroup' => 'default',
13059   'source' => 'Display settings',
13060   'version' => 'none',
13061 ))
13062 ->values(array(
13063   'lid' => '319',
13064   'location' => 'modules/fieldgroup/fieldgroup.module:148',
13065   'textgroup' => 'default',
13066   'source' => 'These settings apply to the group on node display.',
13067   'version' => 'none',
13068 ))
13069 ->values(array(
13070   'lid' => '320',
13071   'location' => 'modules/fieldgroup/fieldgroup.module:155',
13072   'textgroup' => 'default',
13073   'source' => 'A description of the group.',
13074   'version' => 'none',
13075 ))
13076 ->values(array(
13077   'lid' => '321',
13078   'location' => 'modules/fieldgroup/fieldgroup.module:200',
13079   'textgroup' => 'default',
13080   'source' => 'Are you sure you want to remove the group %label?',
13081   'version' => 'none',
13082 ))
13083 ->values(array(
13084   'lid' => '322',
13085   'location' => 'modules/fieldgroup/fieldgroup.module:202',
13086   'textgroup' => 'default',
13087   'source' => 'This action cannot be undone.',
13088   'version' => 'none',
13089 ))
13090 ->values(array(
13091   'lid' => '323',
13092   'location' => 'modules/fieldgroup/fieldgroup.module:211',
13093   'textgroup' => 'default',
13094   'source' => 'The group %group_name has been removed.',
13095   'version' => 'none',
13096 ))
13097 ->values(array(
13098   'lid' => '324',
13099   'location' => 'modules/content_multigroup/content_multigroup.module:356,  modules/fieldgroup/fieldgroup.module:266',
13100   'textgroup' => 'default',
13101   'source' => 'none',
13102   'version' => '6.38-dev',
13103 ))
13104 ->values(array(
13105   'lid' => '325',
13106   'location' => 'modules/fieldgroup/fieldgroup.module:353',
13107   'textgroup' => 'default',
13108   'source' => 'You need to provide a label.',
13109   'version' => 'none',
13110 ))
13111 ->values(array(
13112   'lid' => '326',
13113   'location' => 'modules/fieldgroup/fieldgroup.module:358',
13114   'textgroup' => 'default',
13115   'source' => 'You need to provide a group name.',
13116   'version' => 'none',
13117 ))
13118 ->values(array(
13119   'lid' => '327',
13120   'location' => 'modules/fieldgroup/fieldgroup.module:372',
13121   'textgroup' => 'default',
13122   'source' => 'The group name %group_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
13123   'version' => 'none',
13124 ))
13125 ->values(array(
13126   'lid' => '328',
13127   'location' => 'modules/fieldgroup/fieldgroup.module:375',
13128   'textgroup' => 'default',
13129   'source' => "The group name %group_name is too long. The name is limited to 32 characters, including the 'group_' prefix.",
13130   'version' => 'none',
13131 ))
13132 ->values(array(
13133   'lid' => '329',
13134   'location' => 'modules/fieldgroup/fieldgroup.module:381',
13135   'textgroup' => 'default',
13136   'source' => 'The group name %group_name already exists.',
13137   'version' => 'none',
13138 ))
13139 ->values(array(
13140   'lid' => '330',
13141   'location' => 'modules/fieldgroup/fieldgroup.module:400;403',
13142   'textgroup' => 'default',
13143   'source' => 'Add new group:',
13144   'version' => 'none',
13145 ))
13146 ->values(array(
13147   'lid' => '331',
13148   'location' => 'modules/fieldgroup/fieldgroup.module:418',
13149   'textgroup' => 'default',
13150   'source' => 'Add new group: you need to provide a label.',
13151   'version' => 'none',
13152 ))
13153 ->values(array(
13154   'lid' => '332',
13155   'location' => 'modules/fieldgroup/fieldgroup.module:419',
13156   'textgroup' => 'default',
13157   'source' => 'Add new group: you need to provide a group name.',
13158   'version' => 'none',
13159 ))
13160 ->values(array(
13161   'lid' => '333',
13162   'location' => 'modules/fieldgroup/fieldgroup.module:648',
13163   'textgroup' => 'default',
13164   'source' => 'Standard group',
13165   'version' => 'none',
13166 ))
13167 ->values(array(
13168   'lid' => '334',
13169   'location' => 'modules/fieldgroup/fieldgroup.module:39;46',
13170   'textgroup' => 'default',
13171   'source' => 'Edit group',
13172   'version' => 'none',
13173 ))
13174 ->values(array(
13175   'lid' => '335',
13176   'location' => 'modules/fieldgroup/fieldgroup.module:0',
13177   'textgroup' => 'default',
13178   'source' => 'fieldgroup',
13179   'version' => 'none',
13180 ))
13181 ->values(array(
13182   'lid' => '336',
13183   'location' => 'modules/fieldgroup/fieldgroup.info:0',
13184   'textgroup' => 'default',
13185   'source' => 'Create display groups for CCK fields.',
13186   'version' => 'none',
13187 ))
13188 ->values(array(
13189   'lid' => '337',
13190   'location' => 'modules/nodereference/nodereference.rules.inc:15',
13191   'textgroup' => 'default',
13192   'source' => 'Load a referenced node',
13193   'version' => 'none',
13194 ))
13195 ->values(array(
13196   'lid' => '338',
13197   'location' => 'modules/nodereference/nodereference.rules.inc:19',
13198   'textgroup' => 'default',
13199   'source' => 'Content containing the node reference field',
13200   'version' => 'none',
13201 ))
13202 ->values(array(
13203   'lid' => '339',
13204   'location' => 'modules/nodereference/nodereference.rules.inc:25',
13205   'textgroup' => 'default',
13206   'source' => 'Referenced content',
13207   'version' => 'none',
13208 ))
13209 ->values(array(
13210   'lid' => '340',
13211   'location' => 'modules/nodereference/nodereference.rules.inc:29',
13212   'textgroup' => 'default',
13213   'source' => 'Note that if the field has multiple values, only the first content node will be loaded.',
13214   'version' => 'none',
13215 ))
13216 ->values(array(
13217   'lid' => '341',
13218   'location' => 'modules/nodereference/nodereference.rules.inc:50',
13219   'textgroup' => 'default',
13220   'source' => 'There are no nodereference fields defined.',
13221   'version' => 'none',
13222 ))
13223 ->values(array(
13224   'lid' => '342',
13225   'location' => 'modules/nodereference/nodereference.module:71',
13226   'textgroup' => 'default',
13227   'source' => 'Node reference',
13228   'version' => 'none',
13229 ))
13230 ->values(array(
13231   'lid' => '343',
13232   'location' => 'modules/nodereference/nodereference.module:72',
13233   'textgroup' => 'default',
13234   'source' => 'Store the ID of a related node as an integer value.',
13235   'version' => 'none',
13236 ))
13237 ->values(array(
13238   'lid' => '344',
13239   'location' => 'modules/nodereference/nodereference.module:90',
13240   'textgroup' => 'default',
13241   'source' => 'Content types that can be referenced',
13242   'version' => 'none',
13243 ))
13244 ->values(array(
13245   'lid' => '345',
13246   'location' => 'modules/nodereference/nodereference.module:97,  modules/userreference/userreference.module:94',
13247   'textgroup' => 'default',
13248   'source' => 'Default Views',
13249   'version' => 'none',
13250 ))
13251 ->values(array(
13252   'lid' => '346',
13253   'location' => 'modules/nodereference/nodereference.module:101',
13254   'textgroup' => 'default',
13255   'source' => 'Existing Views',
13256   'version' => 'none',
13257 ))
13258 ->values(array(
13259   'lid' => '347',
13260   'location' => 'modules/nodereference/nodereference.module:108',
13261   'textgroup' => 'default',
13262   'source' => 'Advanced - Nodes that can be referenced (View)',
13263   'version' => 'none',
13264 ))
13265 ->values(array(
13266   'lid' => '348',
13267   'location' => 'modules/nodereference/nodereference.module:114',
13268   'textgroup' => 'default',
13269   'source' => 'View used to select the nodes',
13270   'version' => 'none',
13271 ))
13272 ->values(array(
13273   'lid' => '349',
13274   'location' => 'modules/nodereference/nodereference.module:107',
13275   'textgroup' => 'default',
13276   'source' => '<p>Choose the "Views module" view that selects the nodes that can be referenced.<br />Note:</p>',
13277   'version' => 'none',
13278 ))
13279 ->values(array(
13280   'lid' => '350',
13281   'location' => 'modules/nodereference/nodereference.module:108;121',
13282   'textgroup' => 'default',
13283   '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>",
13284   'version' => 'none',
13285 ))
13286 ->values(array(
13287   'lid' => '351',
13288   'location' => 'modules/nodereference/nodereference.module:121',
13289   'textgroup' => 'default',
13290   'source' => 'View arguments',
13291   'version' => 'none',
13292 ))
13293 ->values(array(
13294   'lid' => '352',
13295   'location' => 'modules/nodereference/nodereference.module:124',
13296   'textgroup' => 'default',
13297   'source' => 'Provide a comma separated list of arguments to pass to the view.',
13298   'version' => 'none',
13299 ))
13300 ->values(array(
13301   'lid' => '353',
13302   'location' => 'modules/nodereference/nodereference.module:120',
13303   'textgroup' => 'default',
13304   '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>',
13305   'version' => 'none',
13306 ))
13307 ->values(array(
13308   'lid' => '354',
13309   'location' => 'modules/nodereference/nodereference.module:216,  modules/userreference/userreference.module:195',
13310   'textgroup' => 'default',
13311   'source' => '%name: invalid input.',
13312   'version' => 'none',
13313 ))
13314 ->values(array(
13315   'lid' => '355',
13316   'location' => 'modules/nodereference/nodereference.module:217',
13317   'textgroup' => 'default',
13318   'source' => "%name: this post can't be referenced.",
13319   'version' => 'none',
13320 ))
13321 ->values(array(
13322   'lid' => '356',
13323   'location' => 'modules/nodereference/nodereference.module:200',
13324   'textgroup' => 'default',
13325   'source' => 'Title (link)',
13326   'version' => 'none',
13327 ))
13328 ->values(array(
13329   'lid' => '357',
13330   'location' => 'modules/nodereference/nodereference.module:205',
13331   'textgroup' => 'default',
13332   'source' => 'Title (no link)',
13333   'version' => 'none',
13334 ))
13335 ->values(array(
13336   'lid' => '358',
13337   'location' => 'modules/nodereference/nodereference.module:358,  modules/optionwidgets/optionwidgets.module:80,  modules/userreference/userreference.module:284',
13338   'textgroup' => 'default',
13339   'source' => 'Select list',
13340   'version' => '6.38-dev',
13341 ))
13342 ->values(array(
13343   'lid' => '359',
13344   'location' => 'modules/nodereference/nodereference.module:366,  modules/optionwidgets/optionwidgets.module:88,  modules/userreference/userreference.module:292',
13345   'textgroup' => 'default',
13346   'source' => 'Check boxes/radio buttons',
13347   'version' => '6.38-dev',
13348 ))
13349 ->values(array(
13350   'lid' => '360',
13351   'location' => 'modules/nodereference/nodereference.module:374,  modules/userreference/userreference.module:300',
13352   'textgroup' => 'default',
13353   'source' => 'Autocomplete text field',
13354   'version' => 'none',
13355 ))
13356 ->values(array(
13357   'lid' => '361',
13358   'location' => 'modules/nodereference/nodereference.module:429,  modules/userreference/userreference.module:355',
13359   'textgroup' => 'default',
13360   'source' => 'Autocomplete matching',
13361   'version' => 'none',
13362 ))
13363 ->values(array(
13364   'lid' => '362',
13365   'location' => 'modules/nodereference/nodereference.module:432,  modules/userreference/userreference.module:358',
13366   'textgroup' => 'default',
13367   'source' => 'Starts with',
13368   'version' => 'none',
13369 ))
13370 ->values(array(
13371   'lid' => '363',
13372   'location' => 'modules/nodereference/nodereference.module:433,  modules/userreference/userreference.module:359',
13373   'textgroup' => 'default',
13374   'source' => 'Contains',
13375   'version' => 'none',
13376 ))
13377 ->values(array(
13378   'lid' => '364',
13379   'location' => 'modules/nodereference/nodereference.module:423',
13380   'textgroup' => 'default',
13381   'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of nodes.',
13382   'version' => 'none',
13383 ))
13384 ->values(array(
13385   'lid' => '365',
13386   'location' => 'modules/nodereference/nodereference.module:671',
13387   'textgroup' => 'default',
13388   'source' => '%name: title mismatch. Please check your selection.',
13389   'version' => 'none',
13390 ))
13391 ->values(array(
13392   'lid' => '366',
13393   'location' => 'modules/nodereference/nodereference.module:678',
13394   'textgroup' => 'default',
13395   'source' => '%name: found no valid post with that title.',
13396   'version' => 'none',
13397 ))
13398 ->values(array(
13399   'lid' => '367',
13400   'location' => 'modules/nodereference/nodereference.module:15',
13401   'textgroup' => 'default',
13402   'source' => 'Nodereference autocomplete',
13403   'version' => 'none',
13404 ))
13405 ->values(array(
13406   'lid' => '368',
13407   'location' => 'modules/nodereference/nodereference.module:0',
13408   'textgroup' => 'default',
13409   'source' => 'nodereference',
13410   'version' => 'none',
13411 ))
13412 ->values(array(
13413   'lid' => '369',
13414   'location' => 'modules/nodereference/nodereference.info:0',
13415   'textgroup' => 'default',
13416   'source' => 'Node Reference',
13417   'version' => 'none',
13418 ))
13419 ->values(array(
13420   'lid' => '370',
13421   'location' => 'modules/nodereference/nodereference.info:0',
13422   'textgroup' => 'default',
13423   'source' => 'Defines a field type for referencing one node from another.',
13424   'version' => 'none',
13425 ))
13426 ->values(array(
13427   'lid' => '371',
13428   'location' => 'modules/number/number.module:34',
13429   'textgroup' => 'default',
13430   'source' => 'Integer',
13431   'version' => '6.38-dev',
13432 ))
13433 ->values(array(
13434   'lid' => '372',
13435   'location' => 'modules/number/number.module:35',
13436   'textgroup' => 'default',
13437   'source' => 'Store a number in the database as an integer.',
13438   'version' => '6.38-dev',
13439 ))
13440 ->values(array(
13441   'lid' => '373',
13442   'location' => 'modules/number/number.module:38',
13443   'textgroup' => 'default',
13444   'source' => 'Decimal',
13445   'version' => '6.38-dev',
13446 ))
13447 ->values(array(
13448   'lid' => '374',
13449   'location' => 'modules/number/number.module:39',
13450   'textgroup' => 'default',
13451   'source' => 'Store a number in the database in a fixed decimal format.',
13452   'version' => '6.38-dev',
13453 ))
13454 ->values(array(
13455   'lid' => '375',
13456   'location' => 'modules/number/number.module:42',
13457   'textgroup' => 'default',
13458   'source' => 'Float',
13459   'version' => '6.38-dev',
13460 ))
13461 ->values(array(
13462   'lid' => '376',
13463   'location' => 'modules/number/number.module:43',
13464   'textgroup' => 'default',
13465   'source' => 'Store a number in the database in a floating point format.',
13466   'version' => '6.38-dev',
13467 ))
13468 ->values(array(
13469   'lid' => '377',
13470   'location' => 'modules/number/number.module:57',
13471   'textgroup' => 'default',
13472   'source' => 'Minimum',
13473   'version' => 'none',
13474 ))
13475 ->values(array(
13476   'lid' => '378',
13477   'location' => 'modules/number/number.module:63',
13478   'textgroup' => 'default',
13479   'source' => 'Maximum',
13480   'version' => 'none',
13481 ))
13482 ->values(array(
13483   'lid' => '379',
13484   'location' => 'modules/number/number.module:71',
13485   'textgroup' => 'default',
13486   'source' => 'Precision',
13487   'version' => 'none',
13488 ))
13489 ->values(array(
13490   'lid' => '380',
13491   'location' => 'modules/number/number.module:72',
13492   'textgroup' => 'default',
13493   'source' => 'The total number of digits to store in the database, including those to the right of the decimal.',
13494   'version' => 'none',
13495 ))
13496 ->values(array(
13497   'lid' => '381',
13498   'location' => 'modules/number/number.module:78',
13499   'textgroup' => 'default',
13500   'source' => 'Scale',
13501   'version' => 'none',
13502 ))
13503 ->values(array(
13504   'lid' => '382',
13505   'location' => 'modules/number/number.module:79',
13506   'textgroup' => 'default',
13507   'source' => 'The number of digits to the right of the decimal.',
13508   'version' => 'none',
13509 ))
13510 ->values(array(
13511   'lid' => '383',
13512   'location' => 'modules/number/number.module:85',
13513   'textgroup' => 'default',
13514   'source' => 'Decimal marker',
13515   'version' => 'none',
13516 ))
13517 ->values(array(
13518   'lid' => '384',
13519   'location' => 'modules/number/number.module:86',
13520   'textgroup' => 'default',
13521   'source' => 'The character users will input to mark the decimal point in forms.',
13522   'version' => 'none',
13523 ))
13524 ->values(array(
13525   'lid' => '385',
13526   'location' => 'modules/number/number.module:92',
13527   'textgroup' => 'default',
13528   'source' => 'Prefix',
13529   'version' => 'none',
13530 ))
13531 ->values(array(
13532   'lid' => '386',
13533   'location' => 'modules/number/number.module:95',
13534   'textgroup' => 'default',
13535   '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).',
13536   'version' => 'none',
13537 ))
13538 ->values(array(
13539   'lid' => '387',
13540   'location' => 'modules/number/number.module:99',
13541   'textgroup' => 'default',
13542   'source' => 'Suffix',
13543   'version' => 'none',
13544 ))
13545 ->values(array(
13546   'lid' => '388',
13547   'location' => 'modules/number/number.module:102',
13548   'textgroup' => 'default',
13549   '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).',
13550   'version' => 'none',
13551 ))
13552 ->values(array(
13553   'lid' => '389',
13554   'location' => 'modules/number/number.module:109,  modules/text/text.module:72',
13555   'textgroup' => 'default',
13556   'source' => 'Allowed values',
13557   'version' => 'none',
13558 ))
13559 ->values(array(
13560   'lid' => '390',
13561   'location' => 'modules/number/number.module:115,  modules/text/text.module:78',
13562   'textgroup' => 'default',
13563   'source' => 'Allowed values list',
13564   'version' => 'none',
13565 ))
13566 ->values(array(
13567   'lid' => '391',
13568   'location' => 'modules/number/number.module:119,  modules/text/text.module:82',
13569   'textgroup' => 'default',
13570   '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',
13571   'version' => 'none',
13572 ))
13573 ->values(array(
13574   'lid' => '392',
13575   'location' => 'modules/number/number.module:133,  modules/text/text.module:96',
13576   'textgroup' => 'default',
13577   '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.',
13578   'version' => 'none',
13579 ))
13580 ->values(array(
13581   'lid' => '393',
13582   'location' => 'modules/number/number.module:141,  modules/text/text.module:104',
13583   'textgroup' => 'default',
13584   'source' => 'This PHP code was set by an administrator and will override the allowed values list above.',
13585   'version' => 'none',
13586 ))
13587 ->values(array(
13588   'lid' => '394',
13589   'location' => 'modules/number/number.module:181,  modules/text/text.module:133',
13590   'textgroup' => 'default',
13591   'source' => '@label (!name) - Allowed values',
13592   'version' => 'none',
13593 ))
13594 ->values(array(
13595   'lid' => '395',
13596   'location' => 'modules/number/number.module:195',
13597   'textgroup' => 'default',
13598   'source' => '"Minimum" must be a number.',
13599   'version' => 'none',
13600 ))
13601 ->values(array(
13602   'lid' => '396',
13603   'location' => 'modules/number/number.module:202',
13604   'textgroup' => 'default',
13605   'source' => '"Maximum" must be a number.',
13606   'version' => 'none',
13607 ))
13608 ->values(array(
13609   'lid' => '397',
13610   'location' => 'modules/number/number.module:219',
13611   'textgroup' => 'default',
13612   'source' => '%name: the value may be no smaller than %min.',
13613   'version' => 'none',
13614 ))
13615 ->values(array(
13616   'lid' => '398',
13617   'location' => 'modules/number/number.module:222',
13618   'textgroup' => 'default',
13619   'source' => '%name: the value may be no larger than %max.',
13620   'version' => 'none',
13621 ))
13622 ->values(array(
13623   'lid' => '399',
13624   'location' => 'modules/number/number.module:238,  modules/text/text.module:157',
13625   'textgroup' => 'default',
13626   'source' => '%name: illegal value.',
13627   'version' => 'none',
13628 ))
13629 ->values(array(
13630   'lid' => '400',
13631   'location' => 'modules/number/number.module:270',
13632   'textgroup' => 'default',
13633   'source' => 'unformatted',
13634   'version' => '6.38-dev',
13635 ))
13636 ->values(array(
13637   'lid' => '401',
13638   'location' => 'modules/number/number.module:356,  modules/text/text.module:257',
13639   'textgroup' => 'default',
13640   'source' => 'Text field',
13641   'version' => '6.38-dev',
13642 ))
13643 ->values(array(
13644   'lid' => '402',
13645   'location' => 'Float validation: English needs work,  modules/number/number.module:509,  fuzzy',
13646   'textgroup' => 'default',
13647   'source' => 'Only numbers and decimals are allowed in %field.',
13648   'version' => 'none',
13649 ))
13650 ->values(array(
13651   'lid' => '403',
13652   'location' => 'Integer validation: English needs work,  modules/number/number.module:532,  fuzzy',
13653   'textgroup' => 'default',
13654   'source' => 'Only numbers are allowed in %field.',
13655   'version' => 'none',
13656 ))
13657 ->values(array(
13658   'lid' => '404',
13659   'location' => 'Decimal validation with decimal character: English needs work,  modules/number/number.module:556,  fuzzy',
13660   'textgroup' => 'default',
13661   'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field.',
13662   'version' => 'none',
13663 ))
13664 ->values(array(
13665   'lid' => '405',
13666   'location' => 'modules/number/number.module:0',
13667   'textgroup' => 'default',
13668   'source' => 'number',
13669   'version' => 'none',
13670 ))
13671 ->values(array(
13672   'lid' => '406',
13673   'location' => 'modules/number/number.info:0',
13674   'textgroup' => 'default',
13675   'source' => 'Number',
13676   'version' => 'none',
13677 ))
13678 ->values(array(
13679   'lid' => '407',
13680   'location' => 'modules/number/number.info:0',
13681   'textgroup' => 'default',
13682   'source' => 'Defines numeric field types.',
13683   'version' => 'none',
13684 ))
13685 ->values(array(
13686   'lid' => '408',
13687   'location' => 'modules/optionwidgets/optionwidgets.module:19',
13688   'textgroup' => 'default',
13689   '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.',
13690   'version' => 'none',
13691 ))
13692 ->values(array(
13693   'lid' => '409',
13694   'location' => 'modules/optionwidgets/optionwidgets.module:22',
13695   'textgroup' => 'default',
13696   '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.",
13697   'version' => 'none',
13698 ))
13699 ->values(array(
13700   'lid' => '410',
13701   'location' => 'modules/optionwidgets/optionwidgets.module:25',
13702   'textgroup' => 'default',
13703   'source' => "The 'checkboxes/radio buttons' widget will display checkboxes if the multiple values option is selected for this field, otherwise radios will be displayed.",
13704   'version' => 'none',
13705 ))
13706 ->values(array(
13707   'lid' => '411',
13708   'location' => 'modules/optionwidgets/optionwidgets.module:37',
13709   'textgroup' => 'default',
13710   'source' => "You need to specify the 'allowed values' for this field.",
13711   'version' => 'none',
13712 ))
13713 ->values(array(
13714   'lid' => '412',
13715   'location' => 'modules/optionwidgets/optionwidgets.module:96',
13716   'textgroup' => 'default',
13717   'source' => 'Single on/off checkbox',
13718   'version' => '6.38-dev',
13719 ))
13720 ->values(array(
13721   'lid' => '413',
13722   'location' => 'modules/optionwidgets/optionwidgets.module:331',
13723   'textgroup' => 'default',
13724   'source' => '%name: this field cannot hold more that @count values.',
13725   'version' => 'none',
13726 ))
13727 ->values(array(
13728   'lid' => '414',
13729   'location' => 'modules/optionwidgets/optionwidgets.module:411',
13730   'textgroup' => 'default',
13731   'source' => 'N/A',
13732   'version' => 'none',
13733 ))
13734 ->values(array(
13735   'lid' => '415',
13736   'location' => 'modules/optionwidgets/optionwidgets.module:415',
13737   'textgroup' => 'default',
13738   'source' => '- None -',
13739   'version' => 'none',
13740 ))
13741 ->values(array(
13742   'lid' => '416',
13743   'location' => 'modules/optionwidgets/optionwidgets.module:0',
13744   'textgroup' => 'default',
13745   'source' => 'optionwidgets',
13746   'version' => 'none',
13747 ))
13748 ->values(array(
13749   'lid' => '417',
13750   'location' => 'modules/optionwidgets/optionwidgets.info:0',
13751   'textgroup' => 'default',
13752   'source' => 'Option Widgets',
13753   'version' => 'none',
13754 ))
13755 ->values(array(
13756   'lid' => '418',
13757   'location' => 'modules/optionwidgets/optionwidgets.info:0',
13758   'textgroup' => 'default',
13759   'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.',
13760   'version' => 'none',
13761 ))
13762 ->values(array(
13763   'lid' => '419',
13764   'location' => 'modules/text/text.module:42',
13765   'textgroup' => 'default',
13766   'source' => 'Store text in the database.',
13767   'version' => '6.38-dev',
13768 ))
13769 ->values(array(
13770   'lid' => '420',
13771   'location' => 'modules/text/text.module:55;202,  modules/userreference/userreference.module:237',
13772   'textgroup' => 'default',
13773   'source' => 'Plain text',
13774   'version' => '6.38-dev',
13775 ))
13776 ->values(array(
13777   'lid' => '421',
13778   'location' => 'modules/text/text.module:55',
13779   'textgroup' => 'default',
13780   'source' => 'Filtered text (user selects input format)',
13781   'version' => 'none',
13782 ))
13783 ->values(array(
13784   'lid' => '422',
13785   'location' => 'modules/text/text.module:58',
13786   'textgroup' => 'default',
13787   'source' => 'Text processing',
13788   'version' => 'none',
13789 ))
13790 ->values(array(
13791   'lid' => '423',
13792   'location' => 'modules/text/text.module:64',
13793   'textgroup' => 'default',
13794   'source' => 'Maximum length',
13795   'version' => 'none',
13796 ))
13797 ->values(array(
13798   'lid' => '424',
13799   'location' => 'modules/text/text.module:68',
13800   'textgroup' => 'default',
13801   'source' => 'The maximum length of the field in characters. Leave blank for an unlimited size.',
13802   'version' => 'none',
13803 ))
13804 ->values(array(
13805   'lid' => '425',
13806   'location' => 'modules/text/text.module:160',
13807   'textgroup' => 'default',
13808   'source' => '%name: the value may not be longer than %max characters.',
13809   'version' => 'none',
13810 ))
13811 ->values(array(
13812   'lid' => '426',
13813   'location' => 'modules/text/text.module:197,  modules/userreference/userreference.module:232',
13814   'textgroup' => 'default',
13815   'source' => 'Default',
13816   'version' => '6.38-dev',
13817 ))
13818 ->values(array(
13819   'lid' => '427',
13820   'location' => 'modules/text/text.module:207',
13821   'textgroup' => 'default',
13822   'source' => 'Trimmed',
13823   'version' => '6.38-dev',
13824 ))
13825 ->values(array(
13826   'lid' => '428',
13827   'location' => 'modules/text/text.module:265',
13828   'textgroup' => 'default',
13829   'source' => 'Text area (multiple rows)',
13830   'version' => '6.38-dev',
13831 ))
13832 ->values(array(
13833   'lid' => '429',
13834   'location' => 'modules/nodereference/nodereference.module:439,  modules/text/text.module:317,  modules/userreference/userreference.module:365',
13835   'textgroup' => 'default',
13836   'source' => 'Size of textfield',
13837   'version' => 'none',
13838 ))
13839 ->values(array(
13840   'lid' => '430',
13841   'location' => 'modules/text/text.module:326',
13842   'textgroup' => 'default',
13843   'source' => 'Rows',
13844   'version' => 'none',
13845 ))
13846 ->values(array(
13847   'lid' => '431',
13848   'location' => 'modules/text/text.module:0',
13849   'textgroup' => 'default',
13850   'source' => 'text',
13851   'version' => 'none',
13852 ))
13853 ->values(array(
13854   'lid' => '432',
13855   'location' => 'modules/text/text.info:0',
13856   'textgroup' => 'default',
13857   'source' => 'Defines simple text field types.',
13858   'version' => 'none',
13859 ))
13860 ->values(array(
13861   'lid' => '433',
13862   'location' => 'modules/userreference/userreference.rules.inc:15',
13863   'textgroup' => 'default',
13864   'source' => 'Load a referenced user',
13865   'version' => 'none',
13866 ))
13867 ->values(array(
13868   'lid' => '434',
13869   'location' => 'modules/userreference/userreference.rules.inc:19',
13870   'textgroup' => 'default',
13871   'source' => 'Content containing the user reference field',
13872   'version' => 'none',
13873 ))
13874 ->values(array(
13875   'lid' => '435',
13876   'location' => 'modules/userreference/userreference.rules.inc:25',
13877   'textgroup' => 'default',
13878   'source' => 'Referenced user',
13879   'version' => 'none',
13880 ))
13881 ->values(array(
13882   'lid' => '436',
13883   'location' => 'modules/userreference/userreference.rules.inc:29',
13884   'textgroup' => 'default',
13885   'source' => 'Note that if the field has multiple values, only the first user will be loaded.',
13886   'version' => 'none',
13887 ))
13888 ->values(array(
13889   'lid' => '437',
13890   'location' => 'modules/userreference/userreference.rules.inc:52',
13891   'textgroup' => 'default',
13892   'source' => 'There are no userreference fields defined.',
13893   'version' => 'none',
13894 ))
13895 ->values(array(
13896   'lid' => '438',
13897   'location' => 'modules/userreference/userreference.module:52',
13898   'textgroup' => 'default',
13899   'source' => 'User reference',
13900   'version' => 'none',
13901 ))
13902 ->values(array(
13903   'lid' => '439',
13904   'location' => 'modules/userreference/userreference.module:53',
13905   'textgroup' => 'default',
13906   'source' => 'Store the ID of a related user as an integer value.',
13907   'version' => 'none',
13908 ))
13909 ->values(array(
13910   'lid' => '440',
13911   'location' => 'modules/userreference/userreference.module:67',
13912   'textgroup' => 'default',
13913   'source' => 'User roles that can be referenced',
13914   'version' => 'none',
13915 ))
13916 ->values(array(
13917   'lid' => '441',
13918   'location' => 'modules/userreference/userreference.module:73',
13919   'textgroup' => 'default',
13920   'source' => 'User status that can be referenced',
13921   'version' => 'none',
13922 ))
13923 ->values(array(
13924   'lid' => '442',
13925   'location' => 'modules/userreference/userreference.module:75',
13926   'textgroup' => 'default',
13927   'source' => 'Active',
13928   'version' => 'none',
13929 ))
13930 ->values(array(
13931   'lid' => '443',
13932   'location' => 'modules/userreference/userreference.module:75',
13933   'textgroup' => 'default',
13934   'source' => 'Blocked',
13935   'version' => 'none',
13936 ))
13937 ->values(array(
13938   'lid' => '444',
13939   'location' => 'modules/userreference/userreference.module:94',
13940   'textgroup' => 'default',
13941   'source' => 'Advanced - Users that can be referenced (View)',
13942   'version' => 'none',
13943 ))
13944 ->values(array(
13945   'lid' => '445',
13946   'location' => 'modules/userreference/userreference.module:101',
13947   'textgroup' => 'default',
13948   'source' => 'View used to select the users',
13949   'version' => 'none',
13950 ))
13951 ->values(array(
13952   'lid' => '446',
13953   'location' => 'modules/userreference/userreference.module:104',
13954   'textgroup' => 'default',
13955   'source' => '<p>Choose the "Views module" view that selects the users that can be referenced.<br />Note:</p>',
13956   'version' => 'none',
13957 ))
13958 ->values(array(
13959   'lid' => '447',
13960   'location' => 'modules/userreference/userreference.module:105;118',
13961   'textgroup' => 'default',
13962   '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>",
13963   'version' => 'none',
13964 ))
13965 ->values(array(
13966   'lid' => '448',
13967   'location' => 'modules/userreference/userreference.module:117',
13968   'textgroup' => 'default',
13969   '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>',
13970   'version' => 'none',
13971 ))
13972 ->values(array(
13973   'lid' => '449',
13974   'location' => 'modules/userreference/userreference.module:196',
13975   'textgroup' => 'default',
13976   'source' => '%name: invalid user.',
13977   'version' => 'none',
13978 ))
13979 ->values(array(
13980   'lid' => '450',
13981   'location' => 'modules/userreference/userreference.module:349',
13982   'textgroup' => 'default',
13983   'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of users.',
13984   'version' => 'none',
13985 ))
13986 ->values(array(
13987   'lid' => '451',
13988   'location' => 'modules/userreference/userreference.module:357',
13989   'textgroup' => 'default',
13990   'source' => 'Reverse link',
13991   'version' => 'none',
13992 ))
13993 ->values(array(
13994   'lid' => '452',
13995   'location' => 'modules/userreference/userreference.module:359',
13996   'textgroup' => 'default',
13997   'source' => 'If selected, a reverse link back to the referencing node will displayed on the referenced user record.',
13998   'version' => 'none',
13999 ))
14000 ->values(array(
14001   'lid' => '453',
14002   'location' => 'modules/userreference/userreference.module:594',
14003   'textgroup' => 'default',
14004   'source' => '%name: found no valid user with that name.',
14005   'version' => 'none',
14006 ))
14007 ->values(array(
14008   'lid' => '454',
14009   'location' => 'modules/userreference/userreference.module:887',
14010   'textgroup' => 'default',
14011   'source' => 'Related content',
14012   'version' => 'none',
14013 ))
14014 ->values(array(
14015   'lid' => '455',
14016   'location' => 'modules/userreference/userreference.module:15',
14017   'textgroup' => 'default',
14018   'source' => 'Userreference autocomplete',
14019   'version' => 'none',
14020 ))
14021 ->values(array(
14022   'lid' => '456',
14023   'location' => 'userreference.module:0',
14024   'textgroup' => 'default',
14025   'source' => 'userreference',
14026   'version' => 'none',
14027 ))
14028 ->values(array(
14029   'lid' => '457',
14030   'location' => 'modules/userreference/userreference.info:0',
14031   'textgroup' => 'default',
14032   'source' => 'User Reference',
14033   'version' => 'none',
14034 ))
14035 ->values(array(
14036   'lid' => '458',
14037   'location' => 'modules/userreference/userreference.info:0',
14038   'textgroup' => 'default',
14039   'source' => 'Defines a field type for referencing a user from a node.',
14040   'version' => 'none',
14041 ))
14042 ->values(array(
14043   'lid' => '459',
14044   'location' => 'theme/content-admin-field-overview-form.tpl.php:11',
14045   'textgroup' => 'default',
14046   'source' => 'Weight',
14047   'version' => '6.38-dev',
14048 ))
14049 ->values(array(
14050   'lid' => '460',
14051   'location' => 'theme/content-admin-field-overview-form.tpl.php:53',
14052   'textgroup' => 'default',
14053   'source' => 'Add',
14054   'version' => 'none',
14055 ))
14056 ->values(array(
14057   'lid' => '461',
14058   'location' => 'theme/content-admin-field-overview-form.tpl.php:59',
14059   'textgroup' => 'default',
14060   'source' => 'New field',
14061   'version' => 'none',
14062 ))
14063 ->values(array(
14064   'lid' => '462',
14065   'location' => 'theme/content-admin-field-overview-form.tpl.php:72',
14066   'textgroup' => 'default',
14067   'source' => 'Existing field',
14068   'version' => 'none',
14069 ))
14070 ->values(array(
14071   'lid' => '463',
14072   'location' => 'theme/content-admin-field-overview-form.tpl.php:84',
14073   'textgroup' => 'default',
14074   'source' => 'New group',
14075   'version' => 'none',
14076 ))
14077 ->values(array(
14078   'lid' => '464',
14079   'location' => 'theme/theme.inc:11',
14080   'textgroup' => 'default',
14081   'source' => 'Add fields and groups to the content type, and arrange them on content display and input forms.',
14082   'version' => 'none',
14083 ))
14084 ->values(array(
14085   'lid' => '465',
14086   'location' => 'theme/theme.inc:13',
14087   'textgroup' => 'default',
14088   'source' => 'You can add a field to a group by dragging it below and to the right of the group.',
14089   'version' => 'none',
14090 ))
14091 ->values(array(
14092   'lid' => '466',
14093   'location' => 'theme/theme.inc:16',
14094   'textgroup' => 'default',
14095   'source' => 'Note: Installing the <a href="!adv_help">Advanced help</a> module will let you access more and better help.',
14096   'version' => 'none',
14097 ))
14098 ->values(array(
14099   'lid' => '467',
14100   'location' => 'theme/theme.inc:116',
14101   'textgroup' => 'default',
14102   'source' => "Use the 'Exclude' checkbox to exclude an item from the !content value passed to the node template.",
14103   'version' => 'none',
14104 ))
14105 ->values(array(
14106   'lid' => '468',
14107   'location' => 'theme/content-edit.js:0',
14108   'textgroup' => 'default',
14109   'source' => 'Remove this item',
14110   'version' => 'none',
14111 ))
14112 ->values(array(
14113   'lid' => '469',
14114   'location' => 'content_admin.inc:290',
14115   'textgroup' => 'default',
14116   'source' => 'Add field',
14117   'version' => '6.38-dev',
14118 ))
14119 ->values(array(
14120   'lid' => '470',
14121   'location' => 'field.php:180;190,  number.module:119,  text.module:107',
14122   'textgroup' => 'default',
14123   'source' => 'Illegal value for %name.',
14124   'version' => 'none',
14125 ))
14126 ->values(array(
14127   'lid' => '471',
14128   'location' => 'examples/example_field.php:287 examples/simple_field.php:231,  modules/text/text.module:169',
14129   'textgroup' => 'default',
14130   'source' => '%label is longer than %max characters.',
14131   'version' => 'none',
14132 ))
14133 ->values(array(
14134   'lid' => '472',
14135   'location' => 'field.php:273 text.module:167',
14136   'textgroup' => 'default',
14137   'source' => '"Rows" must be a positive integer.',
14138   'version' => 'none',
14139 ))
14140 ->values(array(
14141   'lid' => '473',
14142   'location' => 'modules/number/number.module:133 modules/text/text.module:92',
14143   'textgroup' => 'default',
14144   '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',
14145   'version' => 'none',
14146 ))
14147 ->values(array(
14148   'lid' => '474',
14149   'location' => 'content.module:144',
14150   'textgroup' => 'default',
14151   'source' => 'add field',
14152   'version' => 'none',
14153 ))
14154 ->values(array(
14155   'lid' => '475',
14156   'location' => 'includes/content.admin.inc:112;291',
14157   'textgroup' => 'default',
14158   'source' => 'There are no fields configured for this content type. You can !link.',
14159   'version' => 'none',
14160 ))
14161 ->values(array(
14162   'lid' => '476',
14163   'location' => 'includes/content.admin.inc:113;292',
14164   'textgroup' => 'default',
14165   'source' => 'Add a new field',
14166   'version' => 'none',
14167 ))
14168 ->values(array(
14169   'lid' => '477',
14170   'location' => 'includes/content.admin.inc:137',
14171   'textgroup' => 'default',
14172   '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.',
14173   'version' => 'none',
14174 ))
14175 ->values(array(
14176   'lid' => '478',
14177   'location' => 'includes/content.admin.inc:477',
14178   'textgroup' => 'default',
14179   '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.',
14180   'version' => 'none',
14181 ))
14182 ->values(array(
14183   'lid' => '479',
14184   'location' => 'content_admin.inc:277',
14185   'textgroup' => 'default',
14186   'source' => 'Add existing field',
14187   'version' => 'none',
14188 ))
14189 ->values(array(
14190   'lid' => '480',
14191   'location' => 'content_admin.inc:311',
14192   'textgroup' => 'default',
14193   'source' => 'Create new field',
14194   'version' => 'none',
14195 ))
14196 ->values(array(
14197   'lid' => '481',
14198   'location' => 'includes/content.admin.inc:606',
14199   'textgroup' => 'default',
14200   'source' => 'The machine-readable name of the field.',
14201   'version' => 'none',
14202 ))
14203 ->values(array(
14204   'lid' => '482',
14205   'location' => 'includes/content.admin.inc:610',
14206   'textgroup' => 'default',
14207   'source' => 'This name cannot be changed.',
14208   'version' => 'none',
14209 ))
14210 ->values(array(
14211   'lid' => '483',
14212   'location' => 'includes/content.admin.inc:618',
14213   'textgroup' => 'default',
14214   '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.",
14215   'version' => 'none',
14216 ))
14217 ->values(array(
14218   'lid' => '484',
14219   'location' => 'includes/content.admin.inc:636',
14220   'textgroup' => 'default',
14221   'source' => 'The type of data you would like to store in the database with this field.',
14222   'version' => 'none',
14223 ))
14224 ->values(array(
14225   'lid' => '485',
14226   'location' => 'includes/content.admin.inc:692',
14227   'textgroup' => 'default',
14228   'source' => 'The field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
14229   'version' => 'none',
14230 ))
14231 ->values(array(
14232   'lid' => '486',
14233   'location' => 'includes/content.admin.inc:695',
14234   'textgroup' => 'default',
14235   'source' => "The field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
14236   'version' => 'none',
14237 ))
14238 ->values(array(
14239   'lid' => '487',
14240   'location' => 'includes/content.admin.inc:706',
14241   'textgroup' => 'default',
14242   'source' => 'The field name %field_name already exists.',
14243   'version' => 'none',
14244 ))
14245 ->values(array(
14246   'lid' => '488',
14247   'location' => 'includes/content.admin.inc:709',
14248   'textgroup' => 'default',
14249   'source' => "The name 'field_instance' is a reserved name.",
14250   'version' => 'none',
14251 ))
14252 ->values(array(
14253   'lid' => '489',
14254   'location' => 'content_admin.inc:432',
14255   'textgroup' => 'default',
14256   'source' => 'Created field %label.',
14257   'version' => 'none',
14258 ))
14259 ->values(array(
14260   'lid' => '490',
14261   'location' => 'includes/content.admin.inc:754',
14262   'textgroup' => 'default',
14263   'source' => 'Update field %label.',
14264   'version' => 'none',
14265 ))
14266 ->values(array(
14267   'lid' => '491',
14268   'location' => 'includes/content.admin.inc:758',
14269   'textgroup' => 'default',
14270   'source' => 'There was a problem updating field %label.',
14271   'version' => 'none',
14272 ))
14273 ->values(array(
14274   'lid' => '492',
14275   'location' => 'includes/content.admin.inc:955',
14276   'textgroup' => 'default',
14277   '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.",
14278   'version' => 'none',
14279 ))
14280 ->values(array(
14281   'lid' => '493',
14282   'location' => 'includes/content.admin.inc:986',
14283   'textgroup' => 'default',
14284   '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.",
14285   'version' => 'none',
14286 ))
14287 ->values(array(
14288   'lid' => '494',
14289   'location' => 'includes/content.admin.inc:1131',
14290   'textgroup' => 'default',
14291   'source' => 'The default value PHP code created @value which is invalid.',
14292   'version' => 'none',
14293 ))
14294 ->values(array(
14295   'lid' => '495',
14296   'location' => 'includes/content.token.inc:62',
14297   'textgroup' => 'default',
14298   'source' => 'Formatted HTML link to the node',
14299   'version' => 'none',
14300 ))
14301 ->values(array(
14302   'lid' => '496',
14303   'location' => 'number.module:113',
14304   'textgroup' => 'default',
14305   'source' => 'The value of %name may be no smaller than %min.',
14306   'version' => 'none',
14307 ))
14308 ->values(array(
14309   'lid' => '497',
14310   'location' => 'number.module:116',
14311   'textgroup' => 'default',
14312   'source' => 'The value of %name may be no larger than %max.',
14313   'version' => 'none',
14314 ))
14315 ->values(array(
14316   'lid' => '498',
14317   'location' => 'modules/number/number.module:476',
14318   'textgroup' => 'default',
14319   'source' => 'Only numbers and decimals are allowed in %field. %start was changed to %value.',
14320   'version' => 'none',
14321 ))
14322 ->values(array(
14323   'lid' => '499',
14324   'location' => 'modules/number/number.module:494',
14325   'textgroup' => 'default',
14326   'source' => 'Only numbers are allowed in %field. %start was changed to %value.',
14327   'version' => 'none',
14328 ))
14329 ->values(array(
14330   'lid' => '500',
14331   'location' => 'modules/number/number.module:513',
14332   'textgroup' => 'default',
14333   'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field. %start was changed to %value.',
14334   'version' => 'none',
14335 ))
14336 ->values(array(
14337   'lid' => '501',
14338   'location' => 'modules/optionwidgets/optionwidgets.module:10',
14339   'textgroup' => 'default',
14340   '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.',
14341   'version' => 'none',
14342 ))
14343 ->values(array(
14344   'lid' => '502',
14345   'location' => 'misc/tabledrag.js',
14346   'textgroup' => 'default',
14347   'source' => 'Drag to re-order',
14348   'version' => 'none',
14349 ))
14350 ->values(array(
14351   'lid' => '503',
14352   'location' => 'misc/tabledrag.js',
14353   'textgroup' => 'default',
14354   'source' => 'Changes made in this table will not be saved until the form is submitted.',
14355   'version' => 'none',
14356 ))
14357 ->values(array(
14358   'lid' => '504',
14359   'location' => 'field:profile_color:title',
14360   'textgroup' => 'profile',
14361   'source' => 'Favorite color',
14362   'version' => '1',
14363 ))
14364 ->values(array(
14365   'lid' => '505',
14366   'location' => 'field:profile_color:explanation',
14367   'textgroup' => 'profile',
14368   'source' => 'List your favorite color',
14369   'version' => '1',
14370 ))
14371 ->values(array(
14372   'lid' => '506',
14373   'location' => 'category',
14374   'textgroup' => 'profile',
14375   'source' => 'Personal information',
14376   'version' => '1',
14377 ))
14378 ->values(array(
14379   'lid' => '507',
14380   'location' => 'field:profile_biography:title',
14381   'textgroup' => 'profile',
14382   'source' => 'Biography',
14383   'version' => '1',
14384 ))
14385 ->values(array(
14386   'lid' => '508',
14387   'location' => 'field:profile_biography:explanation',
14388   'textgroup' => 'profile',
14389   'source' => 'Tell people a little bit about yourself',
14390   'version' => '1',
14391 ))
14392 ->values(array(
14393   'lid' => '509',
14394   'location' => 'field:profile_sell_Address:title',
14395   'textgroup' => 'profile',
14396   'source' => 'Sell your email address?',
14397   'version' => '1',
14398 ))
14399 ->values(array(
14400   'lid' => '510',
14401   'location' => 'field:profile_sell_Address:explanation',
14402   'textgroup' => 'profile',
14403   'source' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
14404   'version' => '1',
14405 ))
14406 ->values(array(
14407   'lid' => '511',
14408   'location' => 'category',
14409   'textgroup' => 'profile',
14410   'source' => 'Communication preferences',
14411   'version' => '1',
14412 ))
14413 ->values(array(
14414   'lid' => '512',
14415   'location' => 'field:profile_sold_to:title',
14416   'textgroup' => 'profile',
14417   'source' => 'Sales Category',
14418   'version' => '1',
14419 ))
14420 ->values(array(
14421   'lid' => '513',
14422   'location' => 'field:profile_sold_to:explanation',
14423   'textgroup' => 'profile',
14424   'source' => "Select the sales categories to which this user's address was sold.",
14425   'version' => '1',
14426 ))
14427 ->values(array(
14428   'lid' => '514',
14429   'location' => 'field:profile_sold_to:options',
14430   'textgroup' => 'profile',
14431   'source' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
14432   'version' => '1',
14433 ))
14434 ->values(array(
14435   'lid' => '515',
14436   'location' => 'category',
14437   'textgroup' => 'profile',
14438   'source' => 'Administrative data',
14439   'version' => '1',
14440 ))
14441 ->values(array(
14442   'lid' => '516',
14443   'location' => 'field:profile_bands:title',
14444   'textgroup' => 'profile',
14445   'source' => 'Favorite bands',
14446   'version' => '1',
14447 ))
14448 ->values(array(
14449   'lid' => '517',
14450   'location' => 'field:profile_bands:explanation',
14451   'textgroup' => 'profile',
14452   'source' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
14453   'version' => '1',
14454 ))
14455 ->values(array(
14456   'lid' => '518',
14457   'location' => 'field:profile_birthdate:title',
14458   'textgroup' => 'profile',
14459   'source' => 'Birthdate',
14460   'version' => '1',
14461 ))
14462 ->values(array(
14463   'lid' => '519',
14464   'location' => 'field:profile_birthdate:explanation',
14465   'textgroup' => 'profile',
14466   'source' => "Enter your birth date and we'll send you a coupon.",
14467   'version' => '1',
14468 ))
14469 ->values(array(
14470   'lid' => '520',
14471   'location' => 'field:profile_really_really_love_migrations:title',
14472   'textgroup' => 'profile',
14473   'source' => 'I really, really, really love migrations',
14474   'version' => '1',
14475 ))
14476 ->values(array(
14477   'lid' => '521',
14478   'location' => 'field:profile_really_really_love_migrations:explanation',
14479   'textgroup' => 'profile',
14480   'source' => 'If you check this box, you love migrations.',
14481   'version' => '1',
14482 ))
14483 ->values(array(
14484   'lid' => '522',
14485   'location' => 'field:profile_blog:title',
14486   'textgroup' => 'profile',
14487   'source' => 'Blog',
14488   'version' => '1',
14489 ))
14490 ->values(array(
14491   'lid' => '523',
14492   'location' => 'field:profile_blog:explanation',
14493   'textgroup' => 'profile',
14494   'source' => 'Paste the full URL, including http://, of your personal blog.',
14495   'version' => '1',
14496 ))
14497 ->values(array(
14498   'lid' => '524',
14499   'location' => 'block:1:title',
14500   'textgroup' => 'blocks',
14501   'source' => 'Static Block',
14502   'version' => '1',
14503 ))
14504 ->values(array(
14505   'lid' => '525',
14506   'location' => 'block:1:body',
14507   'textgroup' => 'blocks',
14508   'source' => '<h3>My first custom block body</h3>',
14509   'version' => '1',
14510 ))
14511 ->values(array(
14512   'lid' => '526',
14513   'location' => 'block:2:title',
14514   'textgroup' => 'blocks',
14515   'source' => 'Another Static Block',
14516   'version' => '1',
14517 ))
14518 ->values(array(
14519   'lid' => '527',
14520   'location' => 'block:2:body',
14521   'textgroup' => 'blocks',
14522   'source' => '<h3>My second custom block body</h3>',
14523   'version' => '1',
14524 ))
14525 ->values(array(
14526   'lid' => '528',
14527   'location' => 'vocabulary:4:name',
14528   'textgroup' => 'taxonomy',
14529   'source' => 'Tags',
14530   'version' => '1',
14531 ))
14532 ->values(array(
14533   'lid' => '529',
14534   'location' => 'vocabulary:1:name',
14535   'textgroup' => 'taxonomy',
14536   'source' => 'vocabulary 1 (i=0)',
14537   'version' => '1',
14538 ))
14539 ->values(array(
14540   'lid' => '530',
14541   'location' => 'vocabulary:2:name',
14542   'textgroup' => 'taxonomy',
14543   'source' => 'vocabulary 2 (i=1)',
14544   'version' => '1',
14545 ))
14546 ->values(array(
14547   'lid' => '531',
14548   'location' => 'vocabulary:3:name',
14549   'textgroup' => 'taxonomy',
14550   'source' => 'vocabulary 3 (i=2)',
14551   'version' => '1',
14552 ))
14553 ->values(array(
14554   'lid' => '532',
14555   'location' => 'vocabulary:5:name',
14556   'textgroup' => 'taxonomy',
14557   'source' => 'vocabulary name much longer than thirty two characters',
14558   'version' => '1',
14559 ))
14560 ->values(array(
14561   'lid' => '533',
14562   'location' => 'type:article:name',
14563   'textgroup' => 'nodetype',
14564   'source' => 'Article',
14565   'version' => '1',
14566 ))
14567 ->values(array(
14568   'lid' => '534',
14569   'location' => 'type:article:title',
14570   'textgroup' => 'nodetype',
14571   'source' => 'Title',
14572   'version' => '1',
14573 ))
14574 ->values(array(
14575   'lid' => '535',
14576   'location' => 'type:article:body',
14577   'textgroup' => 'nodetype',
14578   'source' => 'Body',
14579   'version' => '1',
14580 ))
14581 ->values(array(
14582   'lid' => '536',
14583   'location' => 'type:article:description',
14584   'textgroup' => 'nodetype',
14585   'source' => 'An <em>article</em>, content type.',
14586   'version' => '1',
14587 ))
14588 ->values(array(
14589   'lid' => '537',
14590   'location' => 'type:company:name',
14591   'textgroup' => 'nodetype',
14592   'source' => 'Company',
14593   'version' => '1',
14594 ))
14595 ->values(array(
14596   'lid' => '538',
14597   'location' => 'type:company:title',
14598   'textgroup' => 'nodetype',
14599   'source' => 'Name',
14600   'version' => '1',
14601 ))
14602 ->values(array(
14603   'lid' => '539',
14604   'location' => 'type:company:body',
14605   'textgroup' => 'nodetype',
14606   'source' => 'Description',
14607   'version' => '1',
14608 ))
14609 ->values(array(
14610   'lid' => '540',
14611   'location' => 'type:company:description',
14612   'textgroup' => 'nodetype',
14613   'source' => 'Company node type',
14614   'version' => '1',
14615 ))
14616 ->values(array(
14617   'lid' => '541',
14618   'location' => 'type:employee:name',
14619   'textgroup' => 'nodetype',
14620   'source' => 'Employee',
14621   'version' => '1',
14622 ))
14623 ->values(array(
14624   'lid' => '542',
14625   'location' => 'type:employee:title',
14626   'textgroup' => 'nodetype',
14627   'source' => 'Name',
14628   'version' => '1',
14629 ))
14630 ->values(array(
14631   'lid' => '543',
14632   'location' => 'type:employee:body',
14633   'textgroup' => 'nodetype',
14634   'source' => 'Bio',
14635   'version' => '1',
14636 ))
14637 ->values(array(
14638   'lid' => '544',
14639   'location' => 'type:employee:description',
14640   'textgroup' => 'nodetype',
14641   'source' => 'Employee node type',
14642   'version' => '1',
14643 ))
14644 ->values(array(
14645   'lid' => '545',
14646   'location' => 'type:sponsor:name',
14647   'textgroup' => 'nodetype',
14648   'source' => 'Sponsor',
14649   'version' => '1',
14650 ))
14651 ->values(array(
14652   'lid' => '546',
14653   'location' => 'type:sponsor:title',
14654   'textgroup' => 'nodetype',
14655   'source' => 'Name',
14656   'version' => '1',
14657 ))
14658 ->values(array(
14659   'lid' => '547',
14660   'location' => 'type:sponsor:body',
14661   'textgroup' => 'nodetype',
14662   'source' => 'Body',
14663   'version' => '1',
14664 ))
14665 ->values(array(
14666   'lid' => '548',
14667   'location' => 'type:sponsor:description',
14668   'textgroup' => 'nodetype',
14669   'source' => 'Sponsor node type',
14670   'version' => '1',
14671 ))
14672 ->values(array(
14673   'lid' => '549',
14674   'location' => 'type:story:name',
14675   'textgroup' => 'nodetype',
14676   'source' => 'Story',
14677   'version' => '1',
14678 ))
14679 ->values(array(
14680   'lid' => '550',
14681   'location' => 'type:story:title',
14682   'textgroup' => 'nodetype',
14683   'source' => 'Title',
14684   'version' => '1',
14685 ))
14686 ->values(array(
14687   'lid' => '551',
14688   'location' => 'type:story:body',
14689   'textgroup' => 'nodetype',
14690   'source' => 'Body',
14691   'version' => '1',
14692 ))
14693 ->values(array(
14694   'lid' => '552',
14695   'location' => 'type:story:description',
14696   'textgroup' => 'nodetype',
14697   '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.",
14698   'version' => '1',
14699 ))
14700 ->values(array(
14701   'lid' => '553',
14702   'location' => 'type:test_event:name',
14703   'textgroup' => 'nodetype',
14704   'source' => 'Migrate test event',
14705   'version' => '1',
14706 ))
14707 ->values(array(
14708   'lid' => '554',
14709   'location' => 'type:test_event:title',
14710   'textgroup' => 'nodetype',
14711   'source' => 'Event Name',
14712   'version' => '1',
14713 ))
14714 ->values(array(
14715   'lid' => '555',
14716   'location' => 'type:test_event:body',
14717   'textgroup' => 'nodetype',
14718   'source' => 'Body',
14719   'version' => '1',
14720 ))
14721 ->values(array(
14722   'lid' => '556',
14723   'location' => 'type:test_event:description',
14724   'textgroup' => 'nodetype',
14725   'source' => 'test event description here',
14726   'version' => '1',
14727 ))
14728 ->values(array(
14729   'lid' => '558',
14730   'location' => 'type:test_page:name',
14731   'textgroup' => 'nodetype',
14732   'source' => 'Migrate test page',
14733   'version' => '1',
14734 ))
14735 ->values(array(
14736   'lid' => '559',
14737   'location' => 'type:test_page:title',
14738   'textgroup' => 'nodetype',
14739   'source' => 'Title',
14740   'version' => '1',
14741 ))
14742 ->values(array(
14743   'lid' => '560',
14744   'location' => 'type:test_page:body',
14745   'textgroup' => 'nodetype',
14746   'source' => 'This is the body field label',
14747   'version' => '1',
14748 ))
14749 ->values(array(
14750   'lid' => '561',
14751   'location' => 'type:test_page:description',
14752   'textgroup' => 'nodetype',
14753   '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.",
14754   'version' => '1',
14755 ))
14756 ->values(array(
14757   'lid' => '562',
14758   'location' => 'type:test_planet:name',
14759   'textgroup' => 'nodetype',
14760   'source' => 'Migrate test planet',
14761   'version' => '1',
14762 ))
14763 ->values(array(
14764   'lid' => '563',
14765   'location' => 'type:test_planet:title',
14766   'textgroup' => 'nodetype',
14767   'source' => 'Title',
14768   'version' => '1',
14769 ))
14770 ->values(array(
14771   'lid' => '564',
14772   'location' => 'type:test_planet:body',
14773   'textgroup' => 'nodetype',
14774   'source' => 'Body',
14775   'version' => '1',
14776 ))
14777 ->values(array(
14778   'lid' => '565',
14779   'location' => 'type:test_planet:description',
14780   'textgroup' => 'nodetype',
14781   '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.",
14782   'version' => '1',
14783 ))
14784 ->values(array(
14785   'lid' => '566',
14786   'location' => 'type:test_story:name',
14787   'textgroup' => 'nodetype',
14788   'source' => 'Migrate test story',
14789   'version' => '1',
14790 ))
14791 ->values(array(
14792   'lid' => '567',
14793   'location' => 'type:test_story:title',
14794   'textgroup' => 'nodetype',
14795   'source' => 'Title',
14796   'version' => '1',
14797 ))
14798 ->values(array(
14799   'lid' => '568',
14800   'location' => 'type:test_story:body',
14801   'textgroup' => 'nodetype',
14802   'source' => 'Body',
14803   'version' => '1',
14804 ))
14805 ->values(array(
14806   'lid' => '569',
14807   'location' => 'type:test_story:description',
14808   'textgroup' => 'nodetype',
14809   '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.",
14810   'version' => '1',
14811 ))
14812 ->values(array(
14813   'lid' => '570',
14814   'location' => 'field:story-field_test_exclude_unset:widget_label',
14815   'textgroup' => 'cck',
14816   'source' => 'Text Field',
14817   'version' => '1',
14818 ))
14819 ->values(array(
14820   'lid' => '571',
14821   'location' => 'field:story-field_test_exclude_unset:widget_description',
14822   'textgroup' => 'cck',
14823   'source' => 'An example text field without exclude.',
14824   'version' => '1',
14825 ))
14826 ->values(array(
14827   'lid' => '572',
14828   'location' => 'field:story-field_test_two:widget_label',
14829   'textgroup' => 'cck',
14830   'source' => 'Integer Field',
14831   'version' => '1',
14832 ))
14833 ->values(array(
14834   'lid' => '573',
14835   'location' => 'field:story-field_test_two:widget_description',
14836   'textgroup' => 'cck',
14837   'source' => 'An example integer field.',
14838   'version' => '1',
14839 ))
14840 ->values(array(
14841   'lid' => '574',
14842   'location' => 'field:story-field_test:widget_label',
14843   'textgroup' => 'cck',
14844   'source' => 'Text Field',
14845   'version' => '1',
14846 ))
14847 ->values(array(
14848   'lid' => '575',
14849   'location' => 'field:story-field_test:widget_description',
14850   'textgroup' => 'cck',
14851   'source' => 'An example text field.',
14852   'version' => '1',
14853 ))
14854 ->values(array(
14855   'lid' => '576',
14856   'location' => 'field:story-field_test_three:widget_label',
14857   'textgroup' => 'cck',
14858   'source' => 'Decimal Field',
14859   'version' => '1',
14860 ))
14861 ->values(array(
14862   'lid' => '577',
14863   'location' => 'field:story-field_test_three:widget_description',
14864   'textgroup' => 'cck',
14865   'source' => 'An example decimal field.',
14866   'version' => '1',
14867 ))
14868 ->values(array(
14869   'lid' => '578',
14870   'location' => 'field:story-field_test_four:widget_label',
14871   'textgroup' => 'cck',
14872   'source' => 'Float Field',
14873   'version' => '1',
14874 ))
14875 ->values(array(
14876   'lid' => '579',
14877   'location' => 'field:story-field_test_four:widget_description',
14878   'textgroup' => 'cck',
14879   'source' => 'An example float field.',
14880   'version' => '1',
14881 ))
14882 ->values(array(
14883   'lid' => '580',
14884   'location' => 'field:story-field_test_identical1:widget_label',
14885   'textgroup' => 'cck',
14886   'source' => 'Integer Field',
14887   'version' => '1',
14888 ))
14889 ->values(array(
14890   'lid' => '581',
14891   'location' => 'field:story-field_test_identical1:widget_description',
14892   'textgroup' => 'cck',
14893   'source' => 'An example integer field.',
14894   'version' => '1',
14895 ))
14896 ->values(array(
14897   'lid' => '582',
14898   'location' => 'field:story-field_test_identical2:widget_label',
14899   'textgroup' => 'cck',
14900   'source' => 'Integer Field',
14901   'version' => '1',
14902 ))
14903 ->values(array(
14904   'lid' => '583',
14905   'location' => 'field:story-field_test_identical2:widget_description',
14906   'textgroup' => 'cck',
14907   'source' => 'An example integer field.',
14908   'version' => '1',
14909 ))
14910 ->values(array(
14911   'lid' => '584',
14912   'location' => 'field:story-field_test_email:widget_label',
14913   'textgroup' => 'cck',
14914   'source' => 'Email Field',
14915   'version' => '1',
14916 ))
14917 ->values(array(
14918   'lid' => '585',
14919   'location' => 'field:story-field_test_email:widget_description',
14920   'textgroup' => 'cck',
14921   'source' => 'An example email field.',
14922   'version' => '1',
14923 ))
14924 ->values(array(
14925   'lid' => '586',
14926   'location' => 'field:story-field_test_link:widget_label',
14927   'textgroup' => 'cck',
14928   'source' => 'Link Field',
14929   'version' => '1',
14930 ))
14931 ->values(array(
14932   'lid' => '587',
14933   'location' => 'field:story-field_test_link:widget_description',
14934   'textgroup' => 'cck',
14935   'source' => 'An example link field.',
14936   'version' => '1',
14937 ))
14938 ->values(array(
14939   'lid' => '588',
14940   'location' => 'field:story-field_test_filefield:widget_label',
14941   'textgroup' => 'cck',
14942   'source' => 'File Field',
14943   'version' => '1',
14944 ))
14945 ->values(array(
14946   'lid' => '589',
14947   'location' => 'field:story-field_test_filefield:widget_description',
14948   'textgroup' => 'cck',
14949   'source' => 'An example image field.',
14950   'version' => '1',
14951 ))
14952 ->values(array(
14953   'lid' => '590',
14954   'location' => 'field:story-field_test_imagefield:widget_label',
14955   'textgroup' => 'cck',
14956   'source' => 'Image Field',
14957   'version' => '1',
14958 ))
14959 ->values(array(
14960   'lid' => '591',
14961   'location' => 'field:story-field_test_imagefield:widget_description',
14962   'textgroup' => 'cck',
14963   'source' => 'An example image field.',
14964   'version' => '1',
14965 ))
14966 ->values(array(
14967   'lid' => '592',
14968   'location' => 'field:story-field_test_date:widget_label',
14969   'textgroup' => 'cck',
14970   'source' => 'Date Field',
14971   'version' => '1',
14972 ))
14973 ->values(array(
14974   'lid' => '593',
14975   'location' => 'field:story-field_test_date:widget_description',
14976   'textgroup' => 'cck',
14977   'source' => 'An example date field.',
14978   'version' => '1',
14979 ))
14980 ->values(array(
14981   'lid' => '594',
14982   'location' => 'field:story-field_test_datestamp:widget_label',
14983   'textgroup' => 'cck',
14984   'source' => 'Date Stamp Field',
14985   'version' => '1',
14986 ))
14987 ->values(array(
14988   'lid' => '595',
14989   'location' => 'field:story-field_test_datestamp:widget_description',
14990   'textgroup' => 'cck',
14991   'source' => 'An example date stamp field.',
14992   'version' => '1',
14993 ))
14994 ->values(array(
14995   'lid' => '596',
14996   'location' => 'field:story-field_test_datetime:widget_label',
14997   'textgroup' => 'cck',
14998   'source' => 'Datetime Field',
14999   'version' => '1',
15000 ))
15001 ->values(array(
15002   'lid' => '597',
15003   'location' => 'field:story-field_test_datetime:widget_description',
15004   'textgroup' => 'cck',
15005   'source' => 'An example datetime field.',
15006   'version' => '1',
15007 ))
15008 ->values(array(
15009   'lid' => '598',
15010   'location' => 'field:story-field_test_phone:widget_label',
15011   'textgroup' => 'cck',
15012   'source' => 'Phone Field',
15013   'version' => '1',
15014 ))
15015 ->values(array(
15016   'lid' => '599',
15017   'location' => 'field:story-field_test_phone:widget_description',
15018   'textgroup' => 'cck',
15019   'source' => 'An example phone field.',
15020   'version' => '1',
15021 ))
15022 ->values(array(
15023   'lid' => '600',
15024   'location' => 'field:story-field_test_decimal_radio_buttons:widget_label',
15025   'textgroup' => 'cck',
15026   'source' => 'Decimal Radio Buttons Field',
15027   'version' => '1',
15028 ))
15029 ->values(array(
15030   'lid' => '601',
15031   'location' => 'field:story-field_test_decimal_radio_buttons:widget_description',
15032   'textgroup' => 'cck',
15033   'source' => 'An example decimal field using radio buttons.',
15034   'version' => '1',
15035 ))
15036 ->values(array(
15037   'lid' => '602',
15038   'location' => 'field:field_test_decimal_radio_buttons:option_1.2',
15039   'textgroup' => 'cck',
15040   'source' => '1.2',
15041   'version' => '1',
15042 ))
15043 ->values(array(
15044   'lid' => '603',
15045   'location' => 'field:field_test_decimal_radio_buttons:option_2.1',
15046   'textgroup' => 'cck',
15047   'source' => '2.1',
15048   'version' => '1',
15049 ))
15050 ->values(array(
15051   'lid' => '604',
15052   'location' => 'field:story-field_test_float_single_checkbox:widget_label',
15053   'textgroup' => 'cck',
15054   'source' => 'Float Single Checkbox Field',
15055   'version' => '1',
15056 ))
15057 ->values(array(
15058   'lid' => '605',
15059   'location' => 'field:story-field_test_float_single_checkbox:widget_description',
15060   'textgroup' => 'cck',
15061   'source' => 'An example float field using a single on/off checkbox.',
15062   'version' => '1',
15063 ))
15064 ->values(array(
15065   'lid' => '606',
15066   'location' => 'field:field_test_float_single_checkbox:option_3.142',
15067   'textgroup' => 'cck',
15068   'source' => '3.142',
15069   'version' => '1',
15070 ))
15071 ->values(array(
15072   'lid' => '607',
15073   'location' => 'field:field_test_float_single_checkbox:option_1.234',
15074   'textgroup' => 'cck',
15075   'source' => '1.234',
15076   'version' => '1',
15077 ))
15078 ->values(array(
15079   'lid' => '608',
15080   'location' => 'field:story-field_test_integer_selectlist:widget_label',
15081   'textgroup' => 'cck',
15082   'source' => 'Integer Select List Field',
15083   'version' => '1',
15084 ))
15085 ->values(array(
15086   'lid' => '609',
15087   'location' => 'field:story-field_test_integer_selectlist:widget_description',
15088   'textgroup' => 'cck',
15089   'source' => 'An example integer field using a select list.',
15090   'version' => '1',
15091 ))
15092 ->values(array(
15093   'lid' => '610',
15094   'location' => 'field:field_test_integer_selectlist:option_1234',
15095   'textgroup' => 'cck',
15096   'source' => '1234',
15097   'version' => '1',
15098 ))
15099 ->values(array(
15100   'lid' => '611',
15101   'location' => 'field:field_test_integer_selectlist:option_2341',
15102   'textgroup' => 'cck',
15103   'source' => '2341',
15104   'version' => '1',
15105 ))
15106 ->values(array(
15107   'lid' => '612',
15108   'location' => 'field:field_test_integer_selectlist:option_3412',
15109   'textgroup' => 'cck',
15110   'source' => '3412',
15111   'version' => '1',
15112 ))
15113 ->values(array(
15114   'lid' => '613',
15115   'location' => 'field:field_test_integer_selectlist:option_4123',
15116   'textgroup' => 'cck',
15117   'source' => '4123',
15118   'version' => '1',
15119 ))
15120 ->values(array(
15121   'lid' => '614',
15122   'location' => 'field:story-field_test_text_single_checkbox:widget_label',
15123   'textgroup' => 'cck',
15124   'source' => 'Text Single Checkbox Field',
15125   'version' => '1',
15126 ))
15127 ->values(array(
15128   'lid' => '615',
15129   'location' => 'field:story-field_test_text_single_checkbox:widget_description',
15130   'textgroup' => 'cck',
15131   'source' => 'An example text field using a single on/off checkbox.',
15132   'version' => '1',
15133 ))
15134 ->values(array(
15135   'lid' => '616',
15136   'location' => 'field:field_test_text_single_checkbox:option_0',
15137   'textgroup' => 'cck',
15138   'source' => 'Hello',
15139   'version' => '1',
15140 ))
15141 ->values(array(
15142   'lid' => '617',
15143   'location' => 'field:field_test_text_single_checkbox:option_1',
15144   'textgroup' => 'cck',
15145   'source' => 'Goodbye',
15146   'version' => '1',
15147 ))
15148 ->values(array(
15149   'lid' => '618',
15150   'location' => 'field:story-field_test_text_single_checkbox2:widget_label',
15151   'textgroup' => 'cck',
15152   'source' => 'Text Single Checkbox Field 2',
15153   'version' => '1',
15154 ))
15155 ->values(array(
15156   'lid' => '619',
15157   'location' => 'field:story-field_test_text_single_checkbox2:widget_description',
15158   'textgroup' => 'cck',
15159   'source' => 'Checkbox that uses keys only and no label.',
15160   'version' => '1',
15161 ))
15162 ->values(array(
15163   'lid' => '620',
15164   'location' => 'field:field_test_text_single_checkbox2:option_Off',
15165   'textgroup' => 'cck',
15166   'source' => 'Off',
15167   'version' => '1',
15168 ))
15169 ->values(array(
15170   'lid' => '621',
15171   'location' => 'field:field_test_text_single_checkbox2:option_Hello',
15172   'textgroup' => 'cck',
15173   'source' => 'Hello',
15174   'version' => '1',
15175 ))
15176 ->values(array(
15177   'lid' => '622',
15178   'location' => 'field:test_page-field_test:widget_label',
15179   'textgroup' => 'cck',
15180   'source' => 'Text Field',
15181   'version' => '1',
15182 ))
15183 ->values(array(
15184   'lid' => '623',
15185   'location' => 'field:test_page-field_test:widget_description',
15186   'textgroup' => 'cck',
15187   'source' => 'An example text field.',
15188   'version' => '1',
15189 ))
15190 ->values(array(
15191   'lid' => '624',
15192   'location' => 'field:test_planet-field_multivalue:widget_label',
15193   'textgroup' => 'cck',
15194   'source' => 'Decimal Field',
15195   'version' => '1',
15196 ))
15197 ->values(array(
15198   'lid' => '625',
15199   'location' => 'field:test_planet-field_multivalue:widget_description',
15200   'textgroup' => 'cck',
15201   'source' => 'An example multi-valued decimal field.',
15202   'version' => '1',
15203 ))
15204 ->values(array(
15205   'lid' => '627',
15206   'location' => 'field:test_planet-field_test_text_single_checkbox:widget_description',
15207   'textgroup' => 'cck',
15208   'source' => 'An example text field using a single on/off checkbox.',
15209   'version' => '1',
15210 ))
15211 ->values(array(
15212   'lid' => '628',
15213   'location' => 'misc/tableselect.js',
15214   'textgroup' => 'default',
15215   'source' => 'Select all rows in this table',
15216   'version' => 'none',
15217 ))
15218 ->values(array(
15219   'lid' => '629',
15220   'location' => 'misc/tableselect.js',
15221   'textgroup' => 'default',
15222   'source' => 'Deselect all rows in this table',
15223   'version' => 'none',
15224 ))
15225 ->values(array(
15226   'lid' => '630',
15227   'location' => 'sites/all/modules/filefield/filefield.js',
15228   'textgroup' => 'default',
15229   'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
15230   'version' => 'none',
15231 ))
15232 ->values(array(
15233   'lid' => '631',
15234   'location' => 'misc/teaser.js',
15235   'textgroup' => 'default',
15236   'source' => 'Split summary at cursor',
15237   'version' => 'none',
15238 ))
15239 ->values(array(
15240   'lid' => '632',
15241   'location' => 'misc/teaser.js',
15242   'textgroup' => 'default',
15243   'source' => 'Join summary',
15244   'version' => 'none',
15245 ))
15246 ->values(array(
15247   'lid' => '633',
15248   'location' => 'item:140:title',
15249   'textgroup' => 'menu',
15250   'source' => 'Drupal.org',
15251   'version' => '1',
15252 ))
15253 ->values(array(
15254   'lid' => '634',
15255   'location' => 'item:139:title',
15256   'textgroup' => 'menu',
15257   'source' => 'Test 2',
15258   'version' => '1',
15259 ))
15260 ->values(array(
15261   'lid' => '635',
15262   'location' => 'item:139:description',
15263   'textgroup' => 'menu',
15264   'source' => 'Test menu link 2',
15265   'version' => '1',
15266 ))
15267 ->values(array(
15268   'lid' => '636',
15269   'location' => '/?q=fr/admin/settings/site-information',
15270   'textgroup' => 'default',
15271   'source' => 'Site information',
15272   'version' => '6.38-dev',
15273 ))
15274 ->values(array(
15275   'lid' => '637',
15276   'location' => '/?q=fr/admin/settings/site-information',
15277   'textgroup' => 'default',
15278   'source' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
15279   'version' => '6.38-dev',
15280 ))
15281 ->values(array(
15282   'lid' => '638',
15283   'location' => '/?q=fr/admin/settings/site-information',
15284   'textgroup' => 'default',
15285   'source' => 'The name of this website.',
15286   'version' => '6.38-dev',
15287 ))
15288 ->values(array(
15289   'lid' => '639',
15290   'location' => '/?q=fr/admin/settings/site-information',
15291   'textgroup' => 'default',
15292   'source' => 'E-mail address',
15293   'version' => '6.38-dev',
15294 ))
15295 ->values(array(
15296   'lid' => '640',
15297   'location' => '/?q=fr/admin/settings/site-information',
15298   'textgroup' => 'default',
15299   '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.)",
15300   'version' => '6.38-dev',
15301 ))
15302 ->values(array(
15303   'lid' => '641',
15304   'location' => '/?q=fr/admin/settings/site-information',
15305   'textgroup' => 'default',
15306   'source' => 'Slogan',
15307   'version' => '6.38-dev',
15308 ))
15309 ->values(array(
15310   'lid' => '642',
15311   'location' => '/?q=fr/admin/settings/site-information',
15312   'textgroup' => 'default',
15313   'source' => "Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).",
15314   'version' => '6.38-dev',
15315 ))
15316 ->values(array(
15317   'lid' => '643',
15318   'location' => '/?q=fr/admin/settings/site-information',
15319   'textgroup' => 'default',
15320   'source' => 'Mission',
15321   'version' => '6.38-dev',
15322 ))
15323 ->values(array(
15324   'lid' => '644',
15325   'location' => '/?q=fr/admin/settings/site-information',
15326   'textgroup' => 'default',
15327   'source' => "Your site's mission or focus statement (often prominently displayed on the front page).",
15328   'version' => '6.38-dev',
15329 ))
15330 ->values(array(
15331   'lid' => '645',
15332   'location' => '/?q=fr/admin/settings/site-information',
15333   'textgroup' => 'default',
15334   'source' => 'Footer message',
15335   'version' => '6.38-dev',
15336 ))
15337 ->values(array(
15338   'lid' => '646',
15339   'location' => '/?q=fr/admin/settings/site-information',
15340   'textgroup' => 'default',
15341   'source' => 'This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.',
15342   'version' => '6.38-dev',
15343 ))
15344 ->values(array(
15345   'lid' => '647',
15346   'location' => '/?q=fr/admin/settings/site-information',
15347   'textgroup' => 'default',
15348   'source' => 'Anonymous user',
15349   'version' => '6.38-dev',
15350 ))
15351 ->values(array(
15352   'lid' => '648',
15353   'location' => '/?q=fr/admin/settings/site-information',
15354   'textgroup' => 'default',
15355   'source' => 'Anonymous',
15356   'version' => '6.38-dev',
15357 ))
15358 ->values(array(
15359   'lid' => '649',
15360   'location' => '/?q=fr/admin/settings/site-information',
15361   'textgroup' => 'default',
15362   'source' => 'The name used to indicate anonymous users.',
15363   'version' => '6.38-dev',
15364 ))
15365 ->values(array(
15366   'lid' => '650',
15367   'location' => '/?q=fr/admin/settings/site-information',
15368   'textgroup' => 'default',
15369   'source' => 'Default front page',
15370   'version' => '6.38-dev',
15371 ))
15372 ->values(array(
15373   'lid' => '651',
15374   'location' => '/?q=fr/admin/settings/site-information',
15375   'textgroup' => 'default',
15376   'source' => 'The home page displays content from this relative URL. If unsure, specify "node".',
15377   'version' => '6.38-dev',
15378 ))
15379 ->values(array(
15380   'lid' => '652',
15381   'location' => '/?q=fr/admin/settings/site-information',
15382   'textgroup' => 'default',
15383   'source' => 'Save configuration',
15384   'version' => '6.38-dev',
15385 ))
15386 ->values(array(
15387   'lid' => '653',
15388   'location' => '/?q=fr/admin/settings/site-information',
15389   'textgroup' => 'default',
15390   'source' => 'Reset to defaults',
15391   'version' => '6.38-dev',
15392 ))
15393 ->values(array(
15394   'lid' => '654',
15395   'location' => '/?q=fr/admin/settings/site-information',
15396   'textgroup' => 'default',
15397   'source' => 'This is a multilingual variable.',
15398   'version' => '6.38-dev',
15399 ))
15400 ->values(array(
15401   'lid' => '655',
15402   'location' => '/?q=fr/admin/settings/site-information',
15403   'textgroup' => 'default',
15404   'source' => 'Left sidebar',
15405   'version' => '6.38-dev',
15406 ))
15407 ->values(array(
15408   'lid' => '656',
15409   'location' => '/?q=fr/admin/settings/site-information',
15410   'textgroup' => 'default',
15411   'source' => 'Right sidebar',
15412   'version' => '6.38-dev',
15413 ))
15414 ->values(array(
15415   'lid' => '657',
15416   'location' => '/?q=fr/admin/settings/site-information',
15417   'textgroup' => 'default',
15418   'source' => 'Header',
15419   'version' => '6.38-dev',
15420 ))
15421 ->values(array(
15422   'lid' => '658',
15423   'location' => '/?q=fr/admin/settings/site-information',
15424   'textgroup' => 'default',
15425   'source' => 'Footer',
15426   'version' => '6.38-dev',
15427 ))
15428 ->values(array(
15429   'lid' => '659',
15430   'location' => '/?q=fr/admin/settings/site-information',
15431   'textgroup' => 'default',
15432   'source' => 'RSS feed',
15433   'version' => '6.38-dev',
15434 ))
15435 ->values(array(
15436   'lid' => '660',
15437   'location' => '/?q=fr/admin/settings/site-information',
15438   'textgroup' => 'default',
15439   'source' => '',
15440   'version' => '6.38-dev',
15441 ))
15442 ->values(array(
15443   'lid' => '661',
15444   'location' => '/?q=fr/admin/settings/site-information',
15445   'textgroup' => 'default',
15446   'source' => 'Administer',
15447   'version' => '6.38-dev',
15448 ))
15449 ->values(array(
15450   'lid' => '662',
15451   'location' => '/?q=fr/admin/settings/site-information',
15452   'textgroup' => 'default',
15453   'source' => 'Compact mode',
15454   'version' => '6.38-dev',
15455 ))
15456 ->values(array(
15457   'lid' => '663',
15458   'location' => '/?q=fr/admin/settings/site-information',
15459   'textgroup' => 'default',
15460   'source' => 'Content management',
15461   'version' => '6.38-dev',
15462 ))
15463 ->values(array(
15464   'lid' => '664',
15465   'location' => '/?q=fr/admin/settings/site-information',
15466   'textgroup' => 'default',
15467   'source' => "Manage your site's content.",
15468   'version' => '6.38-dev',
15469 ))
15470 ->values(array(
15471   'lid' => '665',
15472   'location' => '/?q=fr/admin/settings/site-information',
15473   'textgroup' => 'default',
15474   'source' => 'Reports',
15475   'version' => '6.38-dev',
15476 ))
15477 ->values(array(
15478   'lid' => '666',
15479   'location' => '/?q=fr/admin/settings/site-information',
15480   'textgroup' => 'default',
15481   'source' => 'View reports from system logs and other status information.',
15482   'version' => '6.38-dev',
15483 ))
15484 ->values(array(
15485   'lid' => '667',
15486   'location' => '/?q=fr/admin/settings/site-information',
15487   'textgroup' => 'default',
15488   'source' => 'Site building',
15489   'version' => '6.38-dev',
15490 ))
15491 ->values(array(
15492   'lid' => '668',
15493   'location' => '/?q=fr/admin/settings/site-information',
15494   'textgroup' => 'default',
15495   'source' => 'Control how your site looks and feels.',
15496   'version' => '6.38-dev',
15497 ))
15498 ->values(array(
15499   'lid' => '669',
15500   'location' => '/?q=fr/admin/settings/site-information',
15501   'textgroup' => 'default',
15502   'source' => 'Site configuration',
15503   'version' => '6.38-dev',
15504 ))
15505 ->values(array(
15506   'lid' => '670',
15507   'location' => '/?q=fr/admin/settings/site-information',
15508   'textgroup' => 'default',
15509   'source' => 'Adjust basic site configuration options.',
15510   'version' => '6.38-dev',
15511 ))
15512 ->values(array(
15513   'lid' => '671',
15514   'location' => '/?q=fr/admin/settings/site-information',
15515   'textgroup' => 'default',
15516   'source' => 'Actions',
15517   'version' => '6.38-dev',
15518 ))
15519 ->values(array(
15520   'lid' => '672',
15521   'location' => '/?q=fr/admin/settings/site-information',
15522   'textgroup' => 'default',
15523   'source' => 'Manage the actions defined for your site.',
15524   'version' => '6.38-dev',
15525 ))
15526 ->values(array(
15527   'lid' => '673',
15528   'location' => '/?q=fr/admin/settings/site-information',
15529   'textgroup' => 'default',
15530   'source' => 'Administration theme',
15531   'version' => '6.38-dev',
15532 ))
15533 ->values(array(
15534   'lid' => '674',
15535   'location' => '/?q=fr/admin/settings/site-information',
15536   'textgroup' => 'default',
15537   'source' => 'Settings for how your administrative pages should look.',
15538   'version' => '6.38-dev',
15539 ))
15540 ->values(array(
15541   'lid' => '675',
15542   'location' => '/?q=fr/admin/settings/site-information',
15543   'textgroup' => 'default',
15544   'source' => 'Clean URLs',
15545   'version' => '6.38-dev',
15546 ))
15547 ->values(array(
15548   'lid' => '676',
15549   'location' => '/?q=fr/admin/settings/site-information',
15550   'textgroup' => 'default',
15551   'source' => 'Enable or disable clean URLs for your site.',
15552   'version' => '6.38-dev',
15553 ))
15554 ->values(array(
15555   'lid' => '677',
15556   'location' => 'date.module:39',
15557   'textgroup' => 'default',
15558   'source' => 'Date and time',
15559   'version' => '6.38-dev',
15560 ))
15561 ->values(array(
15562   'lid' => '678',
15563   'location' => '/?q=fr/admin/settings/site-information',
15564   'textgroup' => 'default',
15565   'source' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
15566   'version' => '6.38-dev',
15567 ))
15568 ->values(array(
15569   'lid' => '679',
15570   'location' => '/?q=fr/admin/settings/site-information',
15571   'textgroup' => 'default',
15572   'source' => 'Error reporting',
15573   'version' => '6.38-dev',
15574 ))
15575 ->values(array(
15576   'lid' => '680',
15577   'location' => '/?q=fr/admin/settings/site-information',
15578   'textgroup' => 'default',
15579   'source' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
15580   'version' => '6.38-dev',
15581 ))
15582 ->values(array(
15583   'lid' => '681',
15584   'location' => '/?q=fr/admin/settings/site-information',
15585   'textgroup' => 'default',
15586   'source' => 'File system',
15587   'version' => '6.38-dev',
15588 ))
15589 ->values(array(
15590   'lid' => '682',
15591   'location' => '/?q=fr/admin/settings/site-information',
15592   'textgroup' => 'default',
15593   'source' => 'Tell Drupal where to store uploaded files and how they are accessed.',
15594   'version' => '6.38-dev',
15595 ))
15596 ->values(array(
15597   'lid' => '683',
15598   'location' => '/?q=fr/admin/settings/site-information',
15599   'textgroup' => 'default',
15600   'source' => 'File uploads',
15601   'version' => '6.38-dev',
15602 ))
15603 ->values(array(
15604   'lid' => '684',
15605   'location' => '/?q=fr/admin/settings/site-information',
15606   'textgroup' => 'default',
15607   'source' => 'Control how files may be attached to content.',
15608   'version' => '6.38-dev',
15609 ))
15610 ->values(array(
15611   'lid' => '685',
15612   'location' => '/?q=fr/admin/settings/site-information',
15613   'textgroup' => 'default',
15614   'source' => 'Image toolkit',
15615   'version' => '6.38-dev',
15616 ))
15617 ->values(array(
15618   'lid' => '686',
15619   'location' => '/?q=fr/admin/settings/site-information',
15620   'textgroup' => 'default',
15621   'source' => 'Choose which image toolkit to use if you have installed optional toolkits.',
15622   'version' => '6.38-dev',
15623 ))
15624 ->values(array(
15625   'lid' => '687',
15626   'location' => '/?q=fr/admin/settings/site-information',
15627   'textgroup' => 'default',
15628   'source' => 'Input formats',
15629   'version' => '6.38-dev',
15630 ))
15631 ->values(array(
15632   'lid' => '688',
15633   'location' => '/?q=fr/admin/settings/site-information',
15634   'textgroup' => 'default',
15635   'source' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
15636   'version' => '6.38-dev',
15637 ))
15638 ->values(array(
15639   'lid' => '689',
15640   'location' => '/?q=fr/admin/settings/site-information',
15641   'textgroup' => 'default',
15642   'source' => 'Logging and alerts',
15643   'version' => '6.38-dev',
15644 ))
15645 ->values(array(
15646   'lid' => '690',
15647   'location' => '/?q=fr/admin/settings/site-information',
15648   'textgroup' => 'default',
15649   'source' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
15650   'version' => '6.38-dev',
15651 ))
15652 ->values(array(
15653   'lid' => '691',
15654   'location' => '/?q=fr/admin/settings/site-information',
15655   'textgroup' => 'default',
15656   'source' => 'Performance',
15657   'version' => '6.38-dev',
15658 ))
15659 ->values(array(
15660   'lid' => '692',
15661   'location' => '/?q=fr/admin/settings/site-information',
15662   'textgroup' => 'default',
15663   'source' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
15664   'version' => '6.38-dev',
15665 ))
15666 ->values(array(
15667   'lid' => '693',
15668   'location' => '/?q=fr/admin/settings/site-information',
15669   'textgroup' => 'default',
15670   'source' => 'Site maintenance',
15671   'version' => '6.38-dev',
15672 ))
15673 ->values(array(
15674   'lid' => '694',
15675   'location' => '/?q=fr/admin/settings/site-information',
15676   'textgroup' => 'default',
15677   'source' => 'Take the site off-line for maintenance or bring it back online.',
15678   'version' => '6.38-dev',
15679 ))
15680 ->values(array(
15681   'lid' => '695',
15682   'location' => '/?q=fr/admin/settings/site-information',
15683   'textgroup' => 'default',
15684   'source' => 'Events',
15685   'version' => '6.38-dev',
15686 ))
15687 ->values(array(
15688   'lid' => '696',
15689   'location' => '/?q=fr/admin/settings/site-information',
15690   'textgroup' => 'default',
15691   'source' => 'Set up how your site handles events.',
15692   'version' => '6.38-dev',
15693 ))
15694 ->values(array(
15695   'lid' => '697',
15696   'location' => '/?q=fr/admin/settings/site-information',
15697   'textgroup' => 'default',
15698   'source' => 'CCK Email Contact Form Settings',
15699   'version' => '6.38-dev',
15700 ))
15701 ->values(array(
15702   'lid' => '698',
15703   'location' => '/?q=fr/admin/settings/site-information',
15704   'textgroup' => 'default',
15705   'source' => 'Administer flood control settings for email contact forms',
15706   'version' => '6.38-dev',
15707 ))
15708 ->values(array(
15709   'lid' => '699',
15710   'location' => '/?q=fr/admin/settings/site-information',
15711   'textgroup' => 'default',
15712   'source' => 'ImageAPI',
15713   'version' => '6.38-dev',
15714 ))
15715 ->values(array(
15716   'lid' => '700',
15717   'location' => '/?q=fr/admin/settings/site-information',
15718   'textgroup' => 'default',
15719   'source' => 'Configure ImageAPI.',
15720   'version' => '6.38-dev',
15721 ))
15722 ->values(array(
15723   'lid' => '701',
15724   'location' => '/?q=fr/admin/settings/site-information',
15725   'textgroup' => 'default',
15726   'source' => 'Languages',
15727   'version' => '6.38-dev',
15728 ))
15729 ->values(array(
15730   'lid' => '702',
15731   'location' => '/?q=fr/admin/settings/site-information',
15732   'textgroup' => 'default',
15733   'source' => 'Configure languages for content and the user interface.',
15734   'version' => '6.38-dev',
15735 ))
15736 ->values(array(
15737   'lid' => '703',
15738   'location' => '/?q=fr/admin/settings/site-information',
15739   'textgroup' => 'default',
15740   'source' => 'Variables',
15741   'version' => '6.38-dev',
15742 ))
15743 ->values(array(
15744   'lid' => '704',
15745   'location' => '/?q=fr/admin/settings/site-information',
15746   'textgroup' => 'default',
15747   'source' => 'Edit and delete site variables.',
15748   'version' => '6.38-dev',
15749 ))
15750 ->values(array(
15751   'lid' => '705',
15752   'location' => '/?q=fr/admin/settings/site-information',
15753   'textgroup' => 'default',
15754   'source' => 'User management',
15755   'version' => '6.38-dev',
15756 ))
15757 ->values(array(
15758   'lid' => '706',
15759   'location' => '/?q=fr/admin/settings/site-information',
15760   'textgroup' => 'default',
15761   'source' => "Manage your site's users, groups and access to site features.",
15762   'version' => '6.38-dev',
15763 ))
15764 ->values(array(
15765   'lid' => '707',
15766   'location' => '/?q=fr/admin/settings/site-information',
15767   'textgroup' => 'default',
15768   'source' => 'Contact',
15769   'version' => '6.38-dev',
15770 ))
15771 ->values(array(
15772   'lid' => '708',
15773   'location' => '/?q=fr/admin/settings/site-information',
15774   'textgroup' => 'default',
15775   'source' => 'Log out',
15776   'version' => '6.38-dev',
15777 ))
15778 ->values(array(
15779   'lid' => '709',
15780   'location' => '/?q=fr/admin/settings/site-information',
15781   'textgroup' => 'default',
15782   'source' => 'User account',
15783   'version' => '6.38-dev',
15784 ))
15785 ->values(array(
15786   'lid' => '710',
15787   'location' => '/?q=fr/admin/settings/site-information',
15788   'textgroup' => 'default',
15789   'source' => 'User list',
15790   'version' => '6.38-dev',
15791 ))
15792 ->values(array(
15793   'lid' => '711',
15794   'location' => '/?q=fr/admin/settings/site-information',
15795   'textgroup' => 'default',
15796   'source' => 'Autocomplete taxonomy',
15797   'version' => '6.38-dev',
15798 ))
15799 ->values(array(
15800   'lid' => '712',
15801   'location' => '/?q=fr/admin/settings/site-information',
15802   'textgroup' => 'default',
15803   'source' => 'Compose tips',
15804   'version' => '6.38-dev',
15805 ))
15806 ->values(array(
15807   'lid' => '713',
15808   'location' => '/?q=fr/admin/settings/site-information',
15809   'textgroup' => 'default',
15810   'source' => 'Create content',
15811   'version' => '6.38-dev',
15812 ))
15813 ->values(array(
15814   'lid' => '714',
15815   'location' => '/?q=fr/admin/settings/site-information',
15816   'textgroup' => 'default',
15817   'source' => 'Delete comment',
15818   'version' => '6.38-dev',
15819 ))
15820 ->values(array(
15821   'lid' => '715',
15822   'location' => '/?q=fr/admin/settings/site-information',
15823   'textgroup' => 'default',
15824   'source' => 'Edit comment',
15825   'version' => '6.38-dev',
15826 ))
15827 ->values(array(
15828   'lid' => '716',
15829   'location' => '/?q=fr/admin/settings/site-information',
15830   'textgroup' => 'default',
15831   'source' => 'File download',
15832   'version' => '6.38-dev',
15833 ))
15834 ->values(array(
15835   'lid' => '717',
15836   'location' => '/?q=fr/admin/settings/site-information',
15837   'textgroup' => 'default',
15838   'source' => 'User autocomplete',
15839   'version' => '6.38-dev',
15840 ))
15841 ->values(array(
15842   'lid' => '718',
15843   'location' => '/?q=fr/admin/settings/site-information',
15844   'textgroup' => 'default',
15845   'source' => 'User timezone',
15846   'version' => '6.38-dev',
15847 ))
15848 ->values(array(
15849   'lid' => '719',
15850   'location' => '/?q=fr/admin/settings/site-information',
15851   'textgroup' => 'default',
15852   'source' => 'My account',
15853   'version' => '6.38-dev',
15854 ))
15855 ->values(array(
15856   'lid' => '720',
15857   'location' => 'content_admin.inc:199',
15858   'textgroup' => 'default',
15859   'source' => 'Delete',
15860   'version' => '6.38-dev',
15861 ))
15862 ->values(array(
15863   'lid' => '721',
15864   'location' => '/?q=fr/admin/settings/site-information',
15865   'textgroup' => 'default',
15866   'source' => 'Feed aggregator',
15867   'version' => '6.38-dev',
15868 ))
15869 ->values(array(
15870   'lid' => '722',
15871   'location' => '/?q=fr/admin/settings/site-information',
15872   'textgroup' => 'default',
15873   'source' => 'Books',
15874   'version' => '6.38-dev',
15875 ))
15876 ->values(array(
15877   'lid' => '723',
15878   'location' => '/?q=fr/admin/settings/site-information',
15879   'textgroup' => 'default',
15880   'source' => 'Save string',
15881   'version' => '6.38-dev',
15882 ))
15883 ->values(array(
15884   'lid' => '724',
15885   'location' => '/?q=fr/admin/settings/site-information',
15886   'textgroup' => 'default',
15887   'source' => 'Node title autocomplete',
15888   'version' => '6.38-dev',
15889 ))
15890 ->values(array(
15891   'lid' => '725',
15892   'location' => '/?q=fr/admin/settings/site-information',
15893   'textgroup' => 'default',
15894   'source' => 'View user profile.',
15895   'version' => '6.38-dev',
15896 ))
15897 ->values(array(
15898   'lid' => '726',
15899   'location' => '/?q=fr/admin/settings/site-information',
15900   'textgroup' => 'default',
15901   'source' => "Who's new",
15902   'version' => '6.38-dev',
15903 ))
15904 ->values(array(
15905   'lid' => '727',
15906   'location' => '/?q=fr/admin/settings/site-information',
15907   'textgroup' => 'default',
15908   'source' => 'Powered by Drupal, an open source content management system',
15909   'version' => '6.38-dev',
15910 ))
15911 ->values(array(
15912   'lid' => '728',
15913   'location' => '/?q=fr/admin/settings/site-information',
15914   'textgroup' => 'default',
15915   'source' => 'Home',
15916   'version' => '6.38-dev',
15917 ))
15918 ->values(array(
15919   'lid' => '729',
15920   'location' => '/?q=fr/admin/settings/site-information',
15921   'textgroup' => 'default',
15922   'source' => 'The selected file %file could not be uploaded, because the destination %directory is not properly configured.',
15923   'version' => '6.38-dev',
15924 ))
15925 ->values(array(
15926   'lid' => '730',
15927   'location' => '/?q=fr/admin/settings/site-information',
15928   'textgroup' => 'default',
15929   'source' => 'French',
15930   'version' => '6.38-dev',
15931 ))
15932 ->values(array(
15933   'lid' => '731',
15934   'location' => '/?q=fr/admin/settings/site-information',
15935   'textgroup' => 'default',
15936   'source' => 'The configuration options have been saved.',
15937   'version' => '6.38-dev',
15938 ))
15939 ->values(array(
15940   'lid' => '732',
15941   'location' => '/?q=fr/admin/settings/site-information',
15942   'textgroup' => 'default',
15943   'source' => 'Long',
15944   'version' => '6.38-dev',
15945 ))
15946 ->values(array(
15947   'lid' => '733',
15948   'location' => '/?q=fr/admin/settings/site-information',
15949   'textgroup' => 'default',
15950   'source' => 'Medium',
15951   'version' => '6.38-dev',
15952 ))
15953 ->values(array(
15954   'lid' => '734',
15955   'location' => '/?q=fr/admin/settings/site-information',
15956   'textgroup' => 'default',
15957   'source' => 'Short',
15958   'version' => '6.38-dev',
15959 ))
15960 ->values(array(
15961   'lid' => '735',
15962   'location' => '/?q=fr/admin/settings/site-information',
15963   'textgroup' => 'default',
15964   'source' => 'The e-mail address %mail is not valid.',
15965   'version' => '6.38-dev',
15966 ))
15967 ->values(array(
15968   'lid' => '736',
15969   'location' => '/?q=fr/admin/settings/error-reporting',
15970   'textgroup' => 'default',
15971   'source' => 'Default 403 (access denied) page',
15972   'version' => '6.38-dev',
15973 ))
15974 ->values(array(
15975   'lid' => '737',
15976   'location' => '/?q=fr/admin/settings/error-reporting',
15977   'textgroup' => 'default',
15978   'source' => 'This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.',
15979   'version' => '6.38-dev',
15980 ))
15981 ->values(array(
15982   'lid' => '738',
15983   'location' => '/?q=fr/admin/settings/error-reporting',
15984   'textgroup' => 'default',
15985   'source' => 'Default 404 (not found) page',
15986   'version' => '6.38-dev',
15987 ))
15988 ->values(array(
15989   'lid' => '739',
15990   'location' => '/?q=fr/admin/settings/error-reporting',
15991   'textgroup' => 'default',
15992   'source' => 'This page is displayed when no other content matches the requested document. If unsure, specify nothing.',
15993   'version' => '6.38-dev',
15994 ))
15995 ->values(array(
15996   'lid' => '740',
15997   'location' => '/?q=fr/admin/settings/error-reporting',
15998   'textgroup' => 'default',
15999   'source' => 'Write errors to the log',
16000   'version' => '6.38-dev',
16001 ))
16002 ->values(array(
16003   'lid' => '741',
16004   'location' => '/?q=fr/admin/settings/error-reporting',
16005   'textgroup' => 'default',
16006   'source' => 'Write errors to the log and to the screen',
16007   'version' => '6.38-dev',
16008 ))
16009 ->values(array(
16010   'lid' => '742',
16011   'location' => '/?q=fr/admin/settings/error-reporting',
16012   'textgroup' => 'default',
16013   '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.',
16014   'version' => '6.38-dev',
16015 ))
16016 ->values(array(
16017   'lid' => '743',
16018   'location' => '/?q=fr/admin/user',
16019   'textgroup' => 'default',
16020   'source' => 'Access rules',
16021   'version' => '6.38-dev',
16022 ))
16023 ->values(array(
16024   'lid' => '744',
16025   'location' => '/?q=fr/admin/user',
16026   'textgroup' => 'default',
16027   'source' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
16028   'version' => '6.38-dev',
16029 ))
16030 ->values(array(
16031   'lid' => '745',
16032   'location' => '/?q=fr/admin/user',
16033   'textgroup' => 'default',
16034   'source' => 'Permissions',
16035   'version' => '6.38-dev',
16036 ))
16037 ->values(array(
16038   'lid' => '746',
16039   'location' => '/?q=fr/admin/user',
16040   'textgroup' => 'default',
16041   'source' => 'Determine access to features by selecting permissions for roles.',
16042   'version' => '6.38-dev',
16043 ))
16044 ->values(array(
16045   'lid' => '747',
16046   'location' => '/?q=fr/admin/user',
16047   'textgroup' => 'default',
16048   'source' => 'Profiles',
16049   'version' => '6.38-dev',
16050 ))
16051 ->values(array(
16052   'lid' => '748',
16053   'location' => '/?q=fr/admin/user',
16054   'textgroup' => 'default',
16055   'source' => 'Create customizable fields for your users.',
16056   'version' => '6.38-dev',
16057 ))
16058 ->values(array(
16059   'lid' => '749',
16060   'location' => '/?q=fr/admin/user',
16061   'textgroup' => 'default',
16062   'source' => 'Roles',
16063   'version' => '6.38-dev',
16064 ))
16065 ->values(array(
16066   'lid' => '750',
16067   'location' => '/?q=fr/admin/user',
16068   'textgroup' => 'default',
16069   'source' => 'List, edit, or add user roles.',
16070   'version' => '6.38-dev',
16071 ))
16072 ->values(array(
16073   'lid' => '751',
16074   'location' => '/?q=fr/admin/user',
16075   'textgroup' => 'default',
16076   'source' => 'User settings',
16077   'version' => '6.38-dev',
16078 ))
16079 ->values(array(
16080   'lid' => '752',
16081   'location' => '/?q=fr/admin/user',
16082   'textgroup' => 'default',
16083   'source' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
16084   'version' => '6.38-dev',
16085 ))
16086 ->values(array(
16087   'lid' => '753',
16088   'location' => '/?q=fr/admin/user',
16089   'textgroup' => 'default',
16090   'source' => 'Users',
16091   'version' => '6.38-dev',
16092 ))
16093 ->values(array(
16094   'lid' => '754',
16095   'location' => '/?q=fr/admin/user',
16096   'textgroup' => 'default',
16097   'source' => 'List, add, and edit users.',
16098   'version' => '6.38-dev',
16099 ))
16100 ->values(array(
16101   'lid' => '755',
16102   'location' => '/?q=fr/admin/user/settings',
16103   'textgroup' => 'default',
16104   'source' => 'User registration settings',
16105   'version' => '6.38-dev',
16106 ))
16107 ->values(array(
16108   'lid' => '756',
16109   'location' => '/?q=fr/admin/user/settings',
16110   'textgroup' => 'default',
16111   'source' => 'Public registrations',
16112   'version' => '6.38-dev',
16113 ))
16114 ->values(array(
16115   'lid' => '757',
16116   'location' => '/?q=fr/admin/user/settings',
16117   'textgroup' => 'default',
16118   'source' => 'Only site administrators can create new user accounts.',
16119   'version' => '6.38-dev',
16120 ))
16121 ->values(array(
16122   'lid' => '758',
16123   'location' => '/?q=fr/admin/user/settings',
16124   'textgroup' => 'default',
16125   'source' => 'Visitors can create accounts and no administrator approval is required.',
16126   'version' => '6.38-dev',
16127 ))
16128 ->values(array(
16129   'lid' => '759',
16130   'location' => '/?q=fr/admin/user/settings',
16131   'textgroup' => 'default',
16132   'source' => 'Visitors can create accounts but administrator approval is required.',
16133   'version' => '6.38-dev',
16134 ))
16135 ->values(array(
16136   'lid' => '760',
16137   'location' => '/?q=fr/admin/user/settings',
16138   'textgroup' => 'default',
16139   'source' => 'Require e-mail verification when a visitor creates an account',
16140   'version' => '6.38-dev',
16141 ))
16142 ->values(array(
16143   'lid' => '761',
16144   'location' => '/?q=fr/admin/user/settings',
16145   'textgroup' => 'default',
16146   '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.',
16147   'version' => '6.38-dev',
16148 ))
16149 ->values(array(
16150   'lid' => '762',
16151   'location' => '/?q=fr/admin/user/settings',
16152   'textgroup' => 'default',
16153   'source' => 'User registration guidelines',
16154   'version' => '6.38-dev',
16155 ))
16156 ->values(array(
16157   'lid' => '763',
16158   'location' => '/?q=fr/admin/user/settings',
16159   'textgroup' => 'default',
16160   'source' => 'This text is displayed at the top of the user registration form and is useful for helping or instructing your users.',
16161   'version' => '6.38-dev',
16162 ))
16163 ->values(array(
16164   'lid' => '764',
16165   'location' => '/?q=fr/admin/user/settings',
16166   'textgroup' => 'default',
16167   'source' => 'User e-mail settings',
16168   'version' => '6.38-dev',
16169 ))
16170 ->values(array(
16171   'lid' => '765',
16172   'location' => '/?q=fr/admin/user/settings',
16173   'textgroup' => 'default',
16174   '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.',
16175   'version' => '6.38-dev',
16176 ))
16177 ->values(array(
16178   'lid' => '766',
16179   'location' => '/?q=fr/admin/user/settings',
16180   'textgroup' => 'default',
16181   'source' => 'Available variables are:',
16182   'version' => '6.38-dev',
16183 ))
16184 ->values(array(
16185   'lid' => '767',
16186   'location' => '/?q=fr/admin/user/settings',
16187   'textgroup' => 'default',
16188   'source' => 'Welcome, new user created by administrator',
16189   'version' => '6.38-dev',
16190 ))
16191 ->values(array(
16192   'lid' => '768',
16193   'location' => '/?q=fr/admin/user/settings',
16194   'textgroup' => 'default',
16195   'source' => 'Customize welcome e-mail messages sent to new member accounts created by an administrator.',
16196   'version' => '6.38-dev',
16197 ))
16198 ->values(array(
16199   'lid' => '769',
16200   'location' => '/?q=fr/admin/user/settings',
16201   'textgroup' => 'default',
16202   'source' => 'Subject',
16203   'version' => '6.38-dev',
16204 ))
16205 ->values(array(
16206   'lid' => '770',
16207   'location' => '/?q=fr/admin/user/settings',
16208   'textgroup' => 'default',
16209   'source' => 'Body',
16210   'version' => '6.38-dev',
16211 ))
16212 ->values(array(
16213   'lid' => '771',
16214   'location' => '/?q=fr/admin/user/settings',
16215   'textgroup' => 'default',
16216   'source' => 'Welcome, no approval required',
16217   'version' => '6.38-dev',
16218 ))
16219 ->values(array(
16220   'lid' => '772',
16221   'location' => '/?q=fr/admin/user/settings',
16222   'textgroup' => 'default',
16223   'source' => 'Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required.',
16224   'version' => '6.38-dev',
16225 ))
16226 ->values(array(
16227   'lid' => '773',
16228   'location' => '/?q=fr/admin/user/settings',
16229   'textgroup' => 'default',
16230   'source' => 'Welcome, awaiting administrator approval',
16231   'version' => '6.38-dev',
16232 ))
16233 ->values(array(
16234   'lid' => '774',
16235   'location' => '/?q=fr/admin/user/settings',
16236   'textgroup' => 'default',
16237   'source' => 'Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required.',
16238   'version' => '6.38-dev',
16239 ))
16240 ->values(array(
16241   'lid' => '775',
16242   'location' => '/?q=fr/admin/user/settings',
16243   'textgroup' => 'default',
16244   'source' => 'Password recovery email',
16245   'version' => '6.38-dev',
16246 ))
16247 ->values(array(
16248   'lid' => '776',
16249   'location' => '/?q=fr/admin/user/settings',
16250   'textgroup' => 'default',
16251   'source' => 'Customize e-mail messages sent to users who request a new password.',
16252   'version' => '6.38-dev',
16253 ))
16254 ->values(array(
16255   'lid' => '777',
16256   'location' => '/?q=fr/admin/user/settings',
16257   'textgroup' => 'default',
16258   'source' => 'Account activation email',
16259   'version' => '6.38-dev',
16260 ))
16261 ->values(array(
16262   'lid' => '778',
16263   'location' => '/?q=fr/admin/user/settings',
16264   'textgroup' => 'default',
16265   '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).',
16266   'version' => '6.38-dev',
16267 ))
16268 ->values(array(
16269   'lid' => '779',
16270   'location' => '/?q=fr/admin/user/settings',
16271   'textgroup' => 'default',
16272   'source' => 'Notify user when account is activated.',
16273   'version' => '6.38-dev',
16274 ))
16275 ->values(array(
16276   'lid' => '780',
16277   'location' => '/?q=fr/admin/user/settings',
16278   'textgroup' => 'default',
16279   'source' => 'Account blocked email',
16280   'version' => '6.38-dev',
16281 ))
16282 ->values(array(
16283   'lid' => '781',
16284   'location' => '/?q=fr/admin/user/settings',
16285   'textgroup' => 'default',
16286   'source' => 'Enable and customize e-mail messages sent to users when their accounts are blocked.',
16287   'version' => '6.38-dev',
16288 ))
16289 ->values(array(
16290   'lid' => '782',
16291   'location' => '/?q=fr/admin/user/settings',
16292   'textgroup' => 'default',
16293   'source' => 'Notify user when account is blocked.',
16294   'version' => '6.38-dev',
16295 ))
16296 ->values(array(
16297   'lid' => '783',
16298   'location' => '/?q=fr/admin/user/settings',
16299   'textgroup' => 'default',
16300   'source' => 'Account deleted email',
16301   'version' => '6.38-dev',
16302 ))
16303 ->values(array(
16304   'lid' => '784',
16305   'location' => '/?q=fr/admin/user/settings',
16306   'textgroup' => 'default',
16307   'source' => 'Enable and customize e-mail messages sent to users when their accounts are deleted.',
16308   'version' => '6.38-dev',
16309 ))
16310 ->values(array(
16311   'lid' => '785',
16312   'location' => '/?q=fr/admin/user/settings',
16313   'textgroup' => 'default',
16314   'source' => 'Notify user when account is deleted.',
16315   'version' => '6.38-dev',
16316 ))
16317 ->values(array(
16318   'lid' => '786',
16319   'location' => '/?q=fr/admin/user/settings',
16320   'textgroup' => 'default',
16321   'source' => 'Signatures',
16322   'version' => '6.38-dev',
16323 ))
16324 ->values(array(
16325   'lid' => '787',
16326   'location' => '/?q=fr/admin/user/settings',
16327   'textgroup' => 'default',
16328   'source' => 'Signature support',
16329   'version' => '6.38-dev',
16330 ))
16331 ->values(array(
16332   'lid' => '788',
16333   'location' => '/?q=fr/admin/user/settings',
16334   'textgroup' => 'default',
16335   'source' => 'Disabled',
16336   'version' => '6.38-dev',
16337 ))
16338 ->values(array(
16339   'lid' => '789',
16340   'location' => '/?q=fr/admin/user/settings',
16341   'textgroup' => 'default',
16342   'source' => 'Enabled',
16343   'version' => '6.38-dev',
16344 ))
16345 ->values(array(
16346   'lid' => '790',
16347   'location' => '/?q=fr/admin/user/settings',
16348   'textgroup' => 'default',
16349   'source' => 'Pictures',
16350   'version' => '6.38-dev',
16351 ))
16352 ->values(array(
16353   'lid' => '791',
16354   'location' => '/?q=fr/admin/user/settings',
16355   'textgroup' => 'default',
16356   'source' => 'Picture support',
16357   'version' => '6.38-dev',
16358 ))
16359 ->values(array(
16360   'lid' => '792',
16361   'location' => '/?q=fr/admin/user/settings',
16362   'textgroup' => 'default',
16363   'source' => 'Picture image path',
16364   'version' => '6.38-dev',
16365 ))
16366 ->values(array(
16367   'lid' => '793',
16368   'location' => '/?q=fr/admin/user/settings',
16369   'textgroup' => 'default',
16370   'source' => 'Subdirectory in the directory %dir where pictures will be stored.',
16371   'version' => '6.38-dev',
16372 ))
16373 ->values(array(
16374   'lid' => '794',
16375   'location' => '/?q=fr/admin/user/settings',
16376   'textgroup' => 'default',
16377   'source' => 'Default picture',
16378   'version' => '6.38-dev',
16379 ))
16380 ->values(array(
16381   'lid' => '795',
16382   'location' => '/?q=fr/admin/user/settings',
16383   'textgroup' => 'default',
16384   'source' => 'URL of picture to display for users with no custom picture selected. Leave blank for none.',
16385   'version' => '6.38-dev',
16386 ))
16387 ->values(array(
16388   'lid' => '796',
16389   'location' => '/?q=fr/admin/user/settings',
16390   'textgroup' => 'default',
16391   'source' => 'Picture maximum dimensions',
16392   'version' => '6.38-dev',
16393 ))
16394 ->values(array(
16395   'lid' => '797',
16396   'location' => '/?q=fr/admin/user/settings',
16397   'textgroup' => 'default',
16398   'source' => 'Maximum dimensions for pictures, in pixels.',
16399   'version' => '6.38-dev',
16400 ))
16401 ->values(array(
16402   'lid' => '798',
16403   'location' => '/?q=fr/admin/user/settings',
16404   'textgroup' => 'default',
16405   'source' => 'Picture maximum file size',
16406   'version' => '6.38-dev',
16407 ))
16408 ->values(array(
16409   'lid' => '799',
16410   'location' => '/?q=fr/admin/user/settings',
16411   'textgroup' => 'default',
16412   'source' => 'Maximum file size for pictures, in kB.',
16413   'version' => '6.38-dev',
16414 ))
16415 ->values(array(
16416   'lid' => '800',
16417   'location' => '/?q=fr/admin/user/settings',
16418   'textgroup' => 'default',
16419   'source' => 'Picture guidelines',
16420   'version' => '6.38-dev',
16421 ))
16422 ->values(array(
16423   'lid' => '801',
16424   'location' => '/?q=fr/admin/user/settings',
16425   'textgroup' => 'default',
16426   '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.",
16427   'version' => '6.38-dev',
16428 ))
16429 ->values(array(
16430   'lid' => '802',
16431   'location' => '/?q=fr/admin/settings/performance',
16432   'textgroup' => 'default',
16433   '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.',
16434   'version' => '6.38-dev',
16435 ))
16436 ->values(array(
16437   'lid' => '803',
16438   'location' => '/?q=fr/admin/settings/performance',
16439   'textgroup' => 'default',
16440   'source' => '<strong class="error">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>',
16441   'version' => '6.38-dev',
16442 ))
16443 ->values(array(
16444   'lid' => '804',
16445   'location' => '/?q=fr/admin/settings/performance',
16446   'textgroup' => 'default',
16447   'source' => 'Page cache',
16448   'version' => '6.38-dev',
16449 ))
16450 ->values(array(
16451   'lid' => '805',
16452   'location' => '/?q=fr/admin/settings/performance',
16453   'textgroup' => 'default',
16454   '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.',
16455   'version' => '6.38-dev',
16456 ))
16457 ->values(array(
16458   'lid' => '806',
16459   'location' => '/?q=fr/admin/settings/performance',
16460   'textgroup' => 'default',
16461   'source' => 'Caching mode',
16462   'version' => '6.38-dev',
16463 ))
16464 ->values(array(
16465   'lid' => '807',
16466   'location' => '/?q=fr/admin/settings/performance',
16467   'textgroup' => 'default',
16468   'source' => 'Normal (recommended for production sites, no side effects)',
16469   'version' => '6.38-dev',
16470 ))
16471 ->values(array(
16472   'lid' => '808',
16473   'location' => '/?q=fr/admin/settings/performance',
16474   'textgroup' => 'default',
16475   'source' => 'Aggressive (experts only, possible side effects)',
16476   'version' => '6.38-dev',
16477 ))
16478 ->values(array(
16479   'lid' => '809',
16480   'location' => '/?q=fr/admin/settings/performance',
16481   'textgroup' => 'default',
16482   'source' => '0 sec',
16483   'version' => '6.38-dev',
16484 ))
16485 ->values(array(
16486   'lid' => '810',
16487   'location' => '/?q=fr/admin/settings/performance',
16488   'textgroup' => 'default',
16489   'source' => '1 min',
16490   'version' => '6.38-dev',
16491 ))
16492 ->values(array(
16493   'lid' => '811',
16494   'location' => '/?q=fr/admin/settings/performance',
16495   'textgroup' => 'default',
16496   'source' => '@count min',
16497   'version' => '6.38-dev',
16498 ))
16499 ->values(array(
16500   'lid' => '812',
16501   'location' => '/?q=fr/admin/settings/performance',
16502   'textgroup' => 'default',
16503   'source' => '1 hour',
16504   'version' => '6.38-dev',
16505 ))
16506 ->values(array(
16507   'lid' => '813',
16508   'location' => '/?q=fr/admin/settings/performance',
16509   'textgroup' => 'default',
16510   'source' => '@count hours',
16511   'version' => '6.38-dev',
16512 ))
16513 ->values(array(
16514   'lid' => '814',
16515   'location' => '/?q=fr/admin/settings/performance',
16516   'textgroup' => 'default',
16517   'source' => '1 day',
16518   'version' => '6.38-dev',
16519 ))
16520 ->values(array(
16521   'lid' => '815',
16522   'location' => '/?q=fr/admin/settings/performance',
16523   'textgroup' => 'default',
16524   'source' => 'Minimum cache lifetime',
16525   'version' => '6.38-dev',
16526 ))
16527 ->values(array(
16528   'lid' => '816',
16529   'location' => '/?q=fr/admin/settings/performance',
16530   'textgroup' => 'default',
16531   '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.',
16532   'version' => '6.38-dev',
16533 ))
16534 ->values(array(
16535   'lid' => '817',
16536   'location' => '/?q=fr/admin/settings/performance',
16537   'textgroup' => 'default',
16538   'source' => 'Page compression',
16539   'version' => '6.38-dev',
16540 ))
16541 ->values(array(
16542   'lid' => '818',
16543   'location' => '/?q=fr/admin/settings/performance',
16544   'textgroup' => 'default',
16545   '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.',
16546   'version' => '6.38-dev',
16547 ))
16548 ->values(array(
16549   'lid' => '819',
16550   'location' => '/?q=fr/admin/settings/performance',
16551   'textgroup' => 'default',
16552   'source' => 'Block cache',
16553   'version' => '6.38-dev',
16554 ))
16555 ->values(array(
16556   'lid' => '820',
16557   'location' => '/?q=fr/admin/settings/performance',
16558   'textgroup' => 'default',
16559   '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.',
16560   'version' => '6.38-dev',
16561 ))
16562 ->values(array(
16563   'lid' => '821',
16564   'location' => '/?q=fr/admin/settings/performance',
16565   'textgroup' => 'default',
16566   'source' => 'Enabled (recommended)',
16567   'version' => '6.38-dev',
16568 ))
16569 ->values(array(
16570   'lid' => '822',
16571   'location' => '/?q=fr/admin/settings/performance',
16572   'textgroup' => 'default',
16573   'source' => 'Note that block caching is inactive when modules defining content access restrictions are enabled.',
16574   'version' => '6.38-dev',
16575 ))
16576 ->values(array(
16577   'lid' => '823',
16578   'location' => '/?q=fr/admin/settings/performance',
16579   'textgroup' => 'default',
16580   'source' => 'Bandwidth optimizations',
16581   'version' => '6.38-dev',
16582 ))
16583 ->values(array(
16584   'lid' => '824',
16585   'location' => '/?q=fr/admin/settings/performance',
16586   'textgroup' => 'default',
16587   '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>',
16588   'version' => '6.38-dev',
16589 ))
16590 ->values(array(
16591   'lid' => '825',
16592   'location' => '/?q=fr/admin/settings/performance',
16593   'textgroup' => 'default',
16594   'source' => 'Optimize CSS files',
16595   'version' => '6.38-dev',
16596 ))
16597 ->values(array(
16598   'lid' => '826',
16599   'location' => '/?q=fr/admin/settings/performance',
16600   'textgroup' => 'default',
16601   'source' => 'This option can interfere with theme development and should only be enabled in a production environment.',
16602   'version' => '6.38-dev',
16603 ))
16604 ->values(array(
16605   'lid' => '827',
16606   'location' => '/?q=fr/admin/settings/performance',
16607   'textgroup' => 'default',
16608   'source' => 'Optimize JavaScript files',
16609   'version' => '6.38-dev',
16610 ))
16611 ->values(array(
16612   'lid' => '828',
16613   'location' => '/?q=fr/admin/settings/performance',
16614   'textgroup' => 'default',
16615   'source' => 'This option can interfere with module development and should only be enabled in a production environment.',
16616   'version' => '6.38-dev',
16617 ))
16618 ->values(array(
16619   'lid' => '829',
16620   'location' => '/?q=fr/admin/settings/performance',
16621   'textgroup' => 'default',
16622   'source' => 'Clear cached data',
16623   'version' => '6.38-dev',
16624 ))
16625 ->values(array(
16626   'lid' => '830',
16627   'location' => '/?q=fr/admin/settings/performance',
16628   'textgroup' => 'default',
16629   '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>',
16630   'version' => '6.38-dev',
16631 ))
16632 ->values(array(
16633   'lid' => '831',
16634   'location' => '/?q=fr/admin/settings/site-maintenance',
16635   'textgroup' => 'default',
16636   'source' => 'Site status',
16637   'version' => '6.38-dev',
16638 ))
16639 ->values(array(
16640   'lid' => '832',
16641   'location' => '/?q=fr/admin/settings/site-maintenance',
16642   'textgroup' => 'default',
16643   'source' => 'Online',
16644   'version' => '6.38-dev',
16645 ))
16646 ->values(array(
16647   'lid' => '833',
16648   'location' => '/?q=fr/admin/settings/site-maintenance',
16649   'textgroup' => 'default',
16650   'source' => 'Off-line',
16651   'version' => '6.38-dev',
16652 ))
16653 ->values(array(
16654   'lid' => '834',
16655   'location' => '/?q=fr/admin/settings/site-maintenance',
16656   'textgroup' => 'default',
16657   '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.',
16658   'version' => '6.38-dev',
16659 ))
16660 ->values(array(
16661   'lid' => '835',
16662   'location' => '/?q=fr/admin/settings/site-maintenance',
16663   'textgroup' => 'default',
16664   'source' => 'Site off-line message',
16665   'version' => '6.38-dev',
16666 ))
16667 ->values(array(
16668   'lid' => '836',
16669   'location' => '/?q=fr/admin/settings/site-maintenance',
16670   'textgroup' => 'default',
16671   'source' => '@site is currently under maintenance. We should be back shortly. Thank you for your patience.',
16672   'version' => '6.38-dev',
16673 ))
16674 ->values(array(
16675   'lid' => '837',
16676   'location' => '/?q=fr/admin/settings/site-maintenance',
16677   'textgroup' => 'default',
16678   'source' => 'Message to show visitors when the site is in off-line mode.',
16679   'version' => '6.38-dev',
16680 ))
16681 ->values(array(
16682   'lid' => '838',
16683   'location' => '/?q=fr/admin/settings/language',
16684   'textgroup' => 'default',
16685   'source' => 'Left to right',
16686   'version' => '6.38-dev',
16687 ))
16688 ->values(array(
16689   'lid' => '839',
16690   'location' => '/?q=fr/admin/settings/language',
16691   'textgroup' => 'default',
16692   'source' => 'English name',
16693   'version' => '6.38-dev',
16694 ))
16695 ->values(array(
16696   'lid' => '840',
16697   'location' => '/?q=fr/admin/settings/language',
16698   'textgroup' => 'default',
16699   'source' => 'Native name',
16700   'version' => '6.38-dev',
16701 ))
16702 ->values(array(
16703   'lid' => '841',
16704   'location' => '/?q=fr/admin/settings/language',
16705   'textgroup' => 'default',
16706   'source' => 'Direction',
16707   'version' => '6.38-dev',
16708 ))
16709 ->values(array(
16710   'lid' => '842',
16711   'location' => '/?q=fr/admin/settings/language',
16712   'textgroup' => 'default',
16713   'source' => 'Language negotiation',
16714   'version' => '6.38-dev',
16715 ))
16716 ->values(array(
16717   'lid' => '843',
16718   'location' => '/?q=fr/admin/settings/language',
16719   'textgroup' => 'default',
16720   'source' => 'List',
16721   'version' => '6.38-dev',
16722 ))
16723 ->values(array(
16724   'lid' => '844',
16725   'location' => '/?q=fr/admin/settings/language',
16726   'textgroup' => 'default',
16727   'source' => 'Options',
16728   'version' => '6.38-dev',
16729 ))
16730 ->values(array(
16731   'lid' => '845',
16732   'location' => '/?q=fr/admin/settings/language',
16733   'textgroup' => 'default',
16734   'source' => 'Configure extended options for multilingual content and translations.',
16735   'version' => '6.38-dev',
16736 ))
16737 ->values(array(
16738   'lid' => '846',
16739   'location' => '/?q=fr/admin/settings/language',
16740   'textgroup' => 'default',
16741   'source' => 'Multilingual variables.',
16742   'version' => '6.38-dev',
16743 ))
16744 ->values(array(
16745   'lid' => '847',
16746   'location' => '/?q=fr/admin/settings/language',
16747   'textgroup' => 'default',
16748   'source' => 'Add language',
16749   'version' => '6.38-dev',
16750 ))
16751 ->values(array(
16752   'lid' => '848',
16753   'location' => '/?q=fr/admin/settings/language',
16754   'textgroup' => 'default',
16755   'source' => 'Multilingual system',
16756   'version' => '6.38-dev',
16757 ))
16758 ->values(array(
16759   'lid' => '849',
16760   'location' => '/?q=fr/admin/settings/language',
16761   'textgroup' => 'default',
16762   'source' => 'String translation',
16763   'version' => '6.38-dev',
16764 ))
16765 ->values(array(
16766   'lid' => '850',
16767   'location' => '/?q=fr/admin/settings/language',
16768   'textgroup' => 'default',
16769   '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.",
16770   'version' => '6.38-dev',
16771 ))
16772 ->values(array(
16773   'lid' => '851',
16774   'location' => '/?q=fr/admin/settings/language',
16775   'textgroup' => 'default',
16776   '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.',
16777   'version' => '6.38-dev',
16778 ))
16779 ->values(array(
16780   'lid' => '852',
16781   'location' => '/?q=fr/admin/settings/language',
16782   'textgroup' => 'default',
16783   '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>.',
16784   'version' => '6.38-dev',
16785 ))
16786 ->values(array(
16787   'lid' => '853',
16788   'location' => '/?q=fr/admin/settings/language',
16789   'textgroup' => 'default',
16790   '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>',
16791   'version' => '6.38-dev',
16792 ))
16793 ->values(array(
16794   'lid' => '854',
16795   'location' => '/?q=fr/admin/settings/filters',
16796   'textgroup' => 'default',
16797   'source' => 'anonymous user',
16798   'version' => '6.38-dev',
16799 ))
16800 ->values(array(
16801   'lid' => '855',
16802   'location' => '/?q=fr/admin/settings/filters',
16803   'textgroup' => 'default',
16804   'source' => 'authenticated user',
16805   'version' => '6.38-dev',
16806 ))
16807 ->values(array(
16808   'lid' => '856',
16809   'location' => '/?q=fr/admin/settings/filters',
16810   'textgroup' => 'default',
16811   'source' => 'All roles may use default format',
16812   'version' => '6.38-dev',
16813 ))
16814 ->values(array(
16815   'lid' => '857',
16816   'location' => 'content_admin.inc:250',
16817   'textgroup' => 'default',
16818   'source' => 'configure',
16819   'version' => '6.38-dev',
16820 ))
16821 ->values(array(
16822   'lid' => '858',
16823   'location' => '/?q=fr/admin/settings/filters',
16824   'textgroup' => 'default',
16825   'source' => 'No roles may use this format',
16826   'version' => '6.38-dev',
16827 ))
16828 ->values(array(
16829   'lid' => '859',
16830   'location' => '/?q=fr/admin/settings/filters',
16831   'textgroup' => 'default',
16832   'source' => 'Set default format',
16833   'version' => '6.38-dev',
16834 ))
16835 ->values(array(
16836   'lid' => '860',
16837   'location' => '/?q=fr/admin/settings/filters',
16838   'textgroup' => 'default',
16839   'source' => 'Delete input format',
16840   'version' => '6.38-dev',
16841 ))
16842 ->values(array(
16843   'lid' => '861',
16844   'location' => '/?q=fr/admin/settings/filters',
16845   'textgroup' => 'default',
16846   'source' => 'Add input format',
16847   'version' => '6.38-dev',
16848 ))
16849 ->values(array(
16850   'lid' => '862',
16851   'location' => '/?q=fr/admin/settings/filters',
16852   'textgroup' => 'default',
16853   '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.',
16854   'version' => '6.38-dev',
16855 ))
16856 ->values(array(
16857   'lid' => '863',
16858   'location' => '/?q=fr/admin/settings/filters',
16859   'textgroup' => 'default',
16860   '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.',
16861   'version' => '6.38-dev',
16862 ))
16863 ->values(array(
16864   'lid' => '864',
16865   'location' => '/?q=fr/admin/settings/filters',
16866   'textgroup' => 'default',
16867   '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.',
16868   'version' => '6.38-dev',
16869 ))
16870 ->values(array(
16871   'lid' => '865',
16872   'location' => '/?q=fr/admin/settings/imageapi',
16873   'textgroup' => 'default',
16874   'source' => 'There are no image toolkit modules enabled. Toolkit modules can be enabled from the <a href="!admin-build-modules">module configuration page</a>.',
16875   'version' => '6.38-dev',
16876 ))
16877 ->values(array(
16878   'lid' => '866',
16879   'location' => '/?q=fr/admin/settings/image-toolkit',
16880   'textgroup' => 'default',
16881   'source' => 'GD2 image manipulation toolkit',
16882   'version' => '6.38-dev',
16883 ))
16884 ->values(array(
16885   'lid' => '867',
16886   'location' => '/?q=fr/admin/settings/image-toolkit',
16887   'textgroup' => 'default',
16888   'source' => 'The GD toolkit is installed and working properly.',
16889   'version' => '6.38-dev',
16890 ))
16891 ->values(array(
16892   'lid' => '868',
16893   'location' => '/?q=fr/admin/settings/image-toolkit',
16894   'textgroup' => 'default',
16895   'source' => 'JPEG quality',
16896   'version' => '6.38-dev',
16897 ))
16898 ->values(array(
16899   'lid' => '869',
16900   'location' => '/?q=fr/admin/settings/image-toolkit',
16901   'textgroup' => 'default',
16902   'source' => 'Define the image quality for JPEG manipulations. Ranges from 0 to 100. Higher values mean better image quality but bigger files.',
16903   'version' => '6.38-dev',
16904 ))
16905 ->values(array(
16906   'lid' => '870',
16907   'location' => '/?q=fr/admin/settings/image-toolkit',
16908   'textgroup' => 'default',
16909   'source' => '%',
16910   'version' => '6.38-dev',
16911 ))
16912 ->values(array(
16913   'lid' => '871',
16914   'location' => '/?q=fr/admin/settings/uploads',
16915   'textgroup' => 'default',
16916   'source' => 'General settings',
16917   'version' => '6.38-dev',
16918 ))
16919 ->values(array(
16920   'lid' => '872',
16921   'location' => '/?q=fr/admin/settings/uploads',
16922   'textgroup' => 'default',
16923   'source' => 'Maximum resolution for uploaded images',
16924   'version' => '6.38-dev',
16925 ))
16926 ->values(array(
16927   'lid' => '873',
16928   'location' => '/?q=fr/admin/settings/uploads',
16929   'textgroup' => 'default',
16930   '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.',
16931   'version' => '6.38-dev',
16932 ))
16933 ->values(array(
16934   'lid' => '874',
16935   'location' => '/?q=fr/admin/settings/uploads',
16936   'textgroup' => 'default',
16937   'source' => 'WIDTHxHEIGHT',
16938   'version' => '6.38-dev',
16939 ))
16940 ->values(array(
16941   'lid' => '875',
16942   'location' => '/?q=fr/admin/settings/uploads',
16943   'textgroup' => 'default',
16944   'source' => 'List files by default',
16945   'version' => '6.38-dev',
16946 ))
16947 ->values(array(
16948   'lid' => '876',
16949   'location' => '/?q=fr/admin/settings/uploads',
16950   'textgroup' => 'default',
16951   'source' => 'No',
16952   'version' => '6.38-dev',
16953 ))
16954 ->values(array(
16955   'lid' => '877',
16956   'location' => '/?q=fr/admin/settings/uploads',
16957   'textgroup' => 'default',
16958   'source' => 'Yes',
16959   'version' => '6.38-dev',
16960 ))
16961 ->values(array(
16962   'lid' => '878',
16963   'location' => '/?q=fr/admin/settings/uploads',
16964   'textgroup' => 'default',
16965   'source' => 'Display attached files when viewing a post.',
16966   'version' => '6.38-dev',
16967 ))
16968 ->values(array(
16969   'lid' => '879',
16970   'location' => '/?q=fr/admin/settings/uploads',
16971   'textgroup' => 'default',
16972   'source' => 'Default permitted file extensions',
16973   'version' => '6.38-dev',
16974 ))
16975 ->values(array(
16976   'lid' => '880',
16977   'location' => '/?q=fr/admin/settings/uploads',
16978   'textgroup' => 'default',
16979   'source' => 'Default extensions that users can upload. Separate extensions with a space and do not include the leading dot.',
16980   'version' => '6.38-dev',
16981 ))
16982 ->values(array(
16983   'lid' => '881',
16984   'location' => '/?q=fr/admin/settings/uploads',
16985   'textgroup' => 'default',
16986   'source' => 'Default maximum file size per upload',
16987   'version' => '6.38-dev',
16988 ))
16989 ->values(array(
16990   'lid' => '882',
16991   'location' => '/?q=fr/admin/settings/uploads',
16992   'textgroup' => 'default',
16993   '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.',
16994   'version' => '6.38-dev',
16995 ))
16996 ->values(array(
16997   'lid' => '883',
16998   'location' => '/?q=fr/admin/settings/uploads',
16999   'textgroup' => 'default',
17000   'source' => 'MB',
17001   'version' => '6.38-dev',
17002 ))
17003 ->values(array(
17004   'lid' => '884',
17005   'location' => '/?q=fr/admin/settings/uploads',
17006   'textgroup' => 'default',
17007   'source' => 'Default total file size per user',
17008   'version' => '6.38-dev',
17009 ))
17010 ->values(array(
17011   'lid' => '885',
17012   'location' => '/?q=fr/admin/settings/uploads',
17013   'textgroup' => 'default',
17014   'source' => 'The default maximum size of all files a user can have on the site.',
17015   'version' => '6.38-dev',
17016 ))
17017 ->values(array(
17018   'lid' => '886',
17019   'location' => '/?q=fr/admin/settings/uploads',
17020   'textgroup' => 'default',
17021   'source' => 'KB',
17022   'version' => '6.38-dev',
17023 ))
17024 ->values(array(
17025   'lid' => '887',
17026   'location' => '/?q=fr/admin/settings/uploads',
17027   'textgroup' => 'default',
17028   'source' => '@size @suffix',
17029   'version' => '6.38-dev',
17030 ))
17031 ->values(array(
17032   'lid' => '888',
17033   'location' => '/?q=fr/admin/settings/uploads',
17034   'textgroup' => 'default',
17035   'source' => 'Your PHP settings limit the maximum file size per upload to %size.',
17036   'version' => '6.38-dev',
17037 ))
17038 ->values(array(
17039   'lid' => '889',
17040   'location' => '/?q=fr/admin/settings/uploads',
17041   'textgroup' => 'default',
17042   '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.',
17043   'version' => '6.38-dev',
17044 ))
17045 ->values(array(
17046   'lid' => '890',
17047   'location' => '/?q=fr/admin/settings/file-system',
17048   'textgroup' => 'default',
17049   'source' => 'File system path',
17050   'version' => '6.38-dev',
17051 ))
17052 ->values(array(
17053   'lid' => '891',
17054   'location' => '/?q=fr/admin/settings/file-system',
17055   'textgroup' => 'default',
17056   '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.',
17057   'version' => '6.38-dev',
17058 ))
17059 ->values(array(
17060   'lid' => '892',
17061   'location' => '/?q=fr/admin/settings/file-system',
17062   'textgroup' => 'default',
17063   'source' => 'Temporary directory',
17064   'version' => '6.38-dev',
17065 ))
17066 ->values(array(
17067   'lid' => '893',
17068   'location' => '/?q=fr/admin/settings/file-system',
17069   'textgroup' => 'default',
17070   'source' => 'A file system path where uploaded files will be stored during previews.',
17071   'version' => '6.38-dev',
17072 ))
17073 ->values(array(
17074   'lid' => '894',
17075   'location' => '/?q=fr/admin/settings/file-system',
17076   'textgroup' => 'default',
17077   'source' => 'Download method',
17078   'version' => '6.38-dev',
17079 ))
17080 ->values(array(
17081   'lid' => '895',
17082   'location' => '/?q=fr/admin/settings/file-system',
17083   'textgroup' => 'default',
17084   'source' => 'Public - files are available using HTTP directly.',
17085   'version' => '6.38-dev',
17086 ))
17087 ->values(array(
17088   'lid' => '896',
17089   'location' => '/?q=fr/admin/settings/file-system',
17090   'textgroup' => 'default',
17091   'source' => 'Private - files are transferred by Drupal.',
17092   'version' => '6.38-dev',
17093 ))
17094 ->values(array(
17095   'lid' => '897',
17096   'location' => '/?q=fr/admin/settings/file-system',
17097   'textgroup' => 'default',
17098   '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.',
17099   'version' => '6.38-dev',
17100 ))
17101 ->values(array(
17102   'lid' => '898',
17103   'location' => '/?q=fr/admin/settings/file-system',
17104   'textgroup' => 'default',
17105   'source' => 'The directory %directory does not exist.',
17106   'version' => '6.38-dev',
17107 ))
17108 ->values(array(
17109   'lid' => '899',
17110   'location' => '/?q=fr/admin/settings/event',
17111   'textgroup' => 'default',
17112   'source' => 'Event overview',
17113   'version' => '6.38-dev',
17114 ))
17115 ->values(array(
17116   'lid' => '900',
17117   'location' => '/?q=fr/admin/settings/event',
17118   'textgroup' => 'default',
17119   'source' => 'Change how event summary information is displayed.',
17120   'version' => '6.38-dev',
17121 ))
17122 ->values(array(
17123   'lid' => '901',
17124   'location' => '/?q=fr/admin/settings/event',
17125   'textgroup' => 'default',
17126   'source' => 'Timezone handling',
17127   'version' => '6.38-dev',
17128 ))
17129 ->values(array(
17130   'lid' => '902',
17131   'location' => '/?q=fr/admin/settings/event',
17132   'textgroup' => 'default',
17133   'source' => 'Change how timezone information is saved and displayed.',
17134   'version' => '6.38-dev',
17135 ))
17136 ->values(array(
17137   'lid' => '903',
17138   'location' => '/?q=fr/admin/settings/event/timezone',
17139   'textgroup' => 'default',
17140   'source' => 'Event time zone input',
17141   'version' => '6.38-dev',
17142 ))
17143 ->values(array(
17144   'lid' => '904',
17145   'location' => '/?q=fr/admin/settings/event/timezone',
17146   'textgroup' => 'default',
17147   'source' => 'Use the sitewide time zone',
17148   'version' => '6.38-dev',
17149 ))
17150 ->values(array(
17151   'lid' => '905',
17152   'location' => '/?q=fr/admin/settings/event/timezone',
17153   'textgroup' => 'default',
17154   'source' => 'Use the time zone of the user editing or creating the event',
17155   'version' => '6.38-dev',
17156 ))
17157 ->values(array(
17158   'lid' => '906',
17159   'location' => '/?q=fr/admin/settings/event/timezone',
17160   'textgroup' => 'default',
17161   'source' => 'Allow users to set event time zones',
17162   'version' => '6.38-dev',
17163 ))
17164 ->values(array(
17165   'lid' => '907',
17166   'location' => '/?q=fr/admin/settings/event/timezone',
17167   'textgroup' => 'default',
17168   'source' => 'date/time settings',
17169   'version' => '6.38-dev',
17170 ))
17171 ->values(array(
17172   'lid' => '908',
17173   'location' => '/?q=fr/admin/settings/event/timezone',
17174   'textgroup' => 'default',
17175   '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.",
17176   'version' => '6.38-dev',
17177 ))
17178 ->values(array(
17179   'lid' => '909',
17180   'location' => '/?q=fr/admin/settings/event/timezone',
17181   'textgroup' => 'default',
17182   'source' => 'Event time zone display',
17183   'version' => '6.38-dev',
17184 ))
17185 ->values(array(
17186   'lid' => '910',
17187   'location' => '/?q=fr/admin/settings/event/timezone',
17188   'textgroup' => 'default',
17189   'source' => "Use the event's time zone",
17190   'version' => '6.38-dev',
17191 ))
17192 ->values(array(
17193   'lid' => '911',
17194   'location' => '/?q=fr/admin/settings/event/timezone',
17195   'textgroup' => 'default',
17196   '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.",
17197   'version' => '6.38-dev',
17198 ))
17199 ->values(array(
17200   'lid' => '912',
17201   'location' => '/?q=fr/admin/settings/event/timezone',
17202   'textgroup' => 'default',
17203   'source' => 'Time notation preference',
17204   'version' => '6.38-dev',
17205 ))
17206 ->values(array(
17207   'lid' => '913',
17208   'location' => '/?q=fr/admin/settings/event/timezone',
17209   'textgroup' => 'default',
17210   'source' => '24h',
17211   'version' => '6.38-dev',
17212 ))
17213 ->values(array(
17214   'lid' => '914',
17215   'location' => '/?q=fr/admin/settings/event/timezone',
17216   'textgroup' => 'default',
17217   'source' => '12h',
17218   'version' => '6.38-dev',
17219 ))
17220 ->values(array(
17221   'lid' => '915',
17222   'location' => '/?q=fr/admin/settings/event/timezone',
17223   'textgroup' => 'default',
17224   'source' => 'The time notation system used for entering event times.',
17225   'version' => '6.38-dev',
17226 ))
17227 ->values(array(
17228   'lid' => '916',
17229   'location' => '/?q=fr/admin/settings/event/overview',
17230   'textgroup' => 'default',
17231   'source' => 'Upcoming event block limit',
17232   'version' => '6.38-dev',
17233 ))
17234 ->values(array(
17235   'lid' => '917',
17236   'location' => '/?q=fr/admin/settings/event/overview',
17237   'textgroup' => 'default',
17238   'source' => 'Limit the amount of events displayed in the upcoming events block by this amount.',
17239   'version' => '6.38-dev',
17240 ))
17241 ->values(array(
17242   'lid' => '918',
17243   'location' => '/?q=fr/admin/settings/event/overview',
17244   'textgroup' => 'default',
17245   'source' => 'Default overview',
17246   'version' => '6.38-dev',
17247 ))
17248 ->values(array(
17249   'lid' => '919',
17250   'location' => '/?q=fr/admin/settings/event/overview',
17251   'textgroup' => 'default',
17252   'source' => 'Day',
17253   'version' => '6.38-dev',
17254 ))
17255 ->values(array(
17256   'lid' => '920',
17257   'location' => '/?q=fr/admin/settings/event/overview',
17258   'textgroup' => 'default',
17259   'source' => 'Week',
17260   'version' => '6.38-dev',
17261 ))
17262 ->values(array(
17263   'lid' => '921',
17264   'location' => '/?q=fr/admin/settings/event/overview',
17265   'textgroup' => 'default',
17266   'source' => 'Month',
17267   'version' => '6.38-dev',
17268 ))
17269 ->values(array(
17270   'lid' => '922',
17271   'location' => '/?q=fr/admin/settings/event/overview',
17272   'textgroup' => 'default',
17273   'source' => 'Table',
17274   'version' => '6.38-dev',
17275 ))
17276 ->values(array(
17277   'lid' => '923',
17278   'location' => '/?q=fr/admin/settings/event/overview',
17279   'textgroup' => 'default',
17280   '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.',
17281   'version' => '6.38-dev',
17282 ))
17283 ->values(array(
17284   'lid' => '924',
17285   'location' => '/?q=fr/admin/settings/event/overview',
17286   'textgroup' => 'default',
17287   'source' => 'Table view default period',
17288   'version' => '6.38-dev',
17289 ))
17290 ->values(array(
17291   'lid' => '925',
17292   'location' => '/?q=fr/admin/settings/event/overview',
17293   'textgroup' => 'default',
17294   'source' => 'here',
17295   'version' => '6.38-dev',
17296 ))
17297 ->values(array(
17298   'lid' => '926',
17299   'location' => '/?q=fr/admin/settings/event/overview',
17300   'textgroup' => 'default',
17301   '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',
17302   'version' => '6.38-dev',
17303 ))
17304 ->values(array(
17305   'lid' => '927',
17306   'location' => '/?q=fr/admin/settings/event/overview',
17307   'textgroup' => 'default',
17308   'source' => 'Taxonomy filter controls',
17309   'version' => '6.38-dev',
17310 ))
17311 ->values(array(
17312   'lid' => '928',
17313   'location' => '/?q=fr/admin/settings/event/overview',
17314   'textgroup' => 'default',
17315   'source' => 'Show taxonomy filter control on calendar views',
17316   'version' => '6.38-dev',
17317 ))
17318 ->values(array(
17319   'lid' => '929',
17320   'location' => '/?q=fr/admin/settings/event/overview',
17321   'textgroup' => 'default',
17322   'source' => 'Only show taxonomy filter control when taxonomy filter view is requested',
17323   'version' => '6.38-dev',
17324 ))
17325 ->values(array(
17326   'lid' => '930',
17327   'location' => '/?q=fr/admin/settings/event/overview',
17328   'textgroup' => 'default',
17329   'source' => 'Never show taxonomy filter control',
17330   'version' => '6.38-dev',
17331 ))
17332 ->values(array(
17333   'lid' => '931',
17334   'location' => '/?q=fr/admin/settings/event/overview',
17335   'textgroup' => 'default',
17336   'source' => 'Content type filter controls',
17337   'version' => '6.38-dev',
17338 ))
17339 ->values(array(
17340   'lid' => '932',
17341   'location' => '/?q=fr/admin/settings/event/overview',
17342   'textgroup' => 'default',
17343   'source' => 'Show content type filter control on calendar views',
17344   'version' => '6.38-dev',
17345 ))
17346 ->values(array(
17347   'lid' => '933',
17348   'location' => '/?q=fr/admin/settings/event/overview',
17349   'textgroup' => 'default',
17350   'source' => 'Only show content type filter control when content type filter view is requested',
17351   'version' => '6.38-dev',
17352 ))
17353 ->values(array(
17354   'lid' => '934',
17355   'location' => '/?q=fr/admin/settings/event/overview',
17356   'textgroup' => 'default',
17357   'source' => 'Never show content type filter control',
17358   'version' => '6.38-dev',
17359 ))
17360 ->values(array(
17361   'lid' => '935',
17362   'location' => '/?q=fr/admin/settings/email',
17363   'textgroup' => 'default',
17364   'source' => 'Hourly threshold for a CCK Email contact form',
17365   'version' => '6.38-dev',
17366 ))
17367 ->values(array(
17368   'lid' => '936',
17369   'location' => '/?q=fr/admin/settings/email',
17370   'textgroup' => 'default',
17371   'source' => 'The maximum number of contact form submissions a user can perform per hour.',
17372   'version' => '6.38-dev',
17373 ))
17374 ->values(array(
17375   'lid' => '937',
17376   'location' => '/?q=fr/admin/settings/admin',
17377   'textgroup' => 'default',
17378   'source' => 'System default',
17379   'version' => '6.38-dev',
17380 ))
17381 ->values(array(
17382   'lid' => '938',
17383   'location' => '/?q=fr/admin/settings/admin',
17384   'textgroup' => 'default',
17385   '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.',
17386   'version' => '6.38-dev',
17387 ))
17388 ->values(array(
17389   'lid' => '939',
17390   'location' => '/?q=fr/admin/settings/admin',
17391   'textgroup' => 'default',
17392   'source' => 'Use administration theme for content editing',
17393   'version' => '6.38-dev',
17394 ))
17395 ->values(array(
17396   'lid' => '940',
17397   'location' => '/?q=fr/admin/settings/admin',
17398   'textgroup' => 'default',
17399   'source' => 'Use the administration theme when editing existing posts or creating new ones.',
17400   'version' => '6.38-dev',
17401 ))
17402 ->values(array(
17403   'lid' => '941',
17404   'location' => '/?q=fr/admin/settings/actions',
17405   'textgroup' => 'default',
17406   'source' => 'Publish comment',
17407   'version' => '6.38-dev',
17408 ))
17409 ->values(array(
17410   'lid' => '942',
17411   'location' => '/?q=fr/admin/settings/actions',
17412   'textgroup' => 'default',
17413   'source' => 'Unpublish comment',
17414   'version' => '6.38-dev',
17415 ))
17416 ->values(array(
17417   'lid' => '943',
17418   'location' => '/?q=fr/admin/settings/actions',
17419   'textgroup' => 'default',
17420   'source' => 'Unpublish comment containing keyword(s)',
17421   'version' => '6.38-dev',
17422 ))
17423 ->values(array(
17424   'lid' => '944',
17425   'location' => '/?q=fr/admin/settings/actions',
17426   'textgroup' => 'default',
17427   'source' => 'Publish post',
17428   'version' => '6.38-dev',
17429 ))
17430 ->values(array(
17431   'lid' => '945',
17432   'location' => '/?q=fr/admin/settings/actions',
17433   'textgroup' => 'default',
17434   'source' => 'Unpublish post',
17435   'version' => '6.38-dev',
17436 ))
17437 ->values(array(
17438   'lid' => '946',
17439   'location' => '/?q=fr/admin/settings/actions',
17440   'textgroup' => 'default',
17441   'source' => 'Make post sticky',
17442   'version' => '6.38-dev',
17443 ))
17444 ->values(array(
17445   'lid' => '947',
17446   'location' => '/?q=fr/admin/settings/actions',
17447   'textgroup' => 'default',
17448   'source' => 'Make post unsticky',
17449   'version' => '6.38-dev',
17450 ))
17451 ->values(array(
17452   'lid' => '948',
17453   'location' => '/?q=fr/admin/settings/actions',
17454   'textgroup' => 'default',
17455   'source' => 'Promote post to front page',
17456   'version' => '6.38-dev',
17457 ))
17458 ->values(array(
17459   'lid' => '949',
17460   'location' => '/?q=fr/admin/settings/actions',
17461   'textgroup' => 'default',
17462   'source' => 'Remove post from front page',
17463   'version' => '6.38-dev',
17464 ))
17465 ->values(array(
17466   'lid' => '950',
17467   'location' => '/?q=fr/admin/settings/actions',
17468   'textgroup' => 'default',
17469   'source' => 'Change the author of a post',
17470   'version' => '6.38-dev',
17471 ))
17472 ->values(array(
17473   'lid' => '951',
17474   'location' => '/?q=fr/admin/settings/actions',
17475   'textgroup' => 'default',
17476   'source' => 'Save post',
17477   'version' => '6.38-dev',
17478 ))
17479 ->values(array(
17480   'lid' => '952',
17481   'location' => '/?q=fr/admin/settings/actions',
17482   'textgroup' => 'default',
17483   'source' => 'Unpublish post containing keyword(s)',
17484   'version' => '6.38-dev',
17485 ))
17486 ->values(array(
17487   'lid' => '953',
17488   'location' => '/?q=fr/admin/settings/actions',
17489   'textgroup' => 'default',
17490   'source' => 'Display a message to the user',
17491   'version' => '6.38-dev',
17492 ))
17493 ->values(array(
17494   'lid' => '954',
17495   'location' => '/?q=fr/admin/settings/actions',
17496   'textgroup' => 'default',
17497   'source' => 'Send e-mail',
17498   'version' => '6.38-dev',
17499 ))
17500 ->values(array(
17501   'lid' => '955',
17502   'location' => '/?q=fr/admin/settings/actions',
17503   'textgroup' => 'default',
17504   'source' => 'Redirect to URL',
17505   'version' => '6.38-dev',
17506 ))
17507 ->values(array(
17508   'lid' => '956',
17509   'location' => '/?q=fr/admin/settings/actions',
17510   'textgroup' => 'default',
17511   'source' => 'Block current user',
17512   'version' => '6.38-dev',
17513 ))
17514 ->values(array(
17515   'lid' => '957',
17516   'location' => '/?q=fr/admin/settings/actions',
17517   'textgroup' => 'default',
17518   'source' => 'Ban IP address of current user',
17519   'version' => '6.38-dev',
17520 ))
17521 ->values(array(
17522   'lid' => '958',
17523   'location' => '/?q=fr/admin/settings/actions',
17524   'textgroup' => 'default',
17525   'source' => "ImageCache: Flush ALL presets for this node's filefield images",
17526   'version' => '6.38-dev',
17527 ))
17528 ->values(array(
17529   'lid' => '959',
17530   'location' => '/?q=fr/admin/settings/actions',
17531   'textgroup' => 'default',
17532   'source' => "ImageCache: Generate ALL presets for this node's filefield images",
17533   'version' => '6.38-dev',
17534 ))
17535 ->values(array(
17536   'lid' => '960',
17537   'location' => '/?q=fr/admin/settings/actions',
17538   'textgroup' => 'default',
17539   'source' => "ImageCache: Generate configured preset(s) for this node's filefield images",
17540   'version' => '6.38-dev',
17541 ))
17542 ->values(array(
17543   'lid' => '961',
17544   'location' => '/?q=fr/admin/settings/actions',
17545   'textgroup' => 'default',
17546   'source' => 'Choose an advanced action',
17547   'version' => '6.38-dev',
17548 ))
17549 ->values(array(
17550   'lid' => '962',
17551   'location' => '/?q=fr/admin/settings/actions',
17552   'textgroup' => 'default',
17553   'source' => 'Action type',
17554   'version' => '6.38-dev',
17555 ))
17556 ->values(array(
17557   'lid' => '963',
17558   'location' => '/?q=fr/admin/settings/actions',
17559   'textgroup' => 'default',
17560   'source' => '« first',
17561   'version' => '6.38-dev',
17562 ))
17563 ->values(array(
17564   'lid' => '964',
17565   'location' => '/?q=fr/admin/settings/actions',
17566   'textgroup' => 'default',
17567   'source' => '‹ previous',
17568   'version' => '6.38-dev',
17569 ))
17570 ->values(array(
17571   'lid' => '965',
17572   'location' => '/?q=fr/admin/settings/actions',
17573   'textgroup' => 'default',
17574   'source' => 'next â€º',
17575   'version' => '6.38-dev',
17576 ))
17577 ->values(array(
17578   'lid' => '966',
17579   'location' => '/?q=fr/admin/settings/actions',
17580   'textgroup' => 'default',
17581   'source' => 'last Â»',
17582   'version' => '6.38-dev',
17583 ))
17584 ->values(array(
17585   'lid' => '967',
17586   'location' => '/?q=fr/admin/settings/actions',
17587   'textgroup' => 'default',
17588   'source' => 'Actions available to Drupal:',
17589   'version' => '6.38-dev',
17590 ))
17591 ->values(array(
17592   'lid' => '968',
17593   'location' => '/?q=fr/admin/settings/actions',
17594   'textgroup' => 'default',
17595   'source' => 'sort by @s',
17596   'version' => '6.38-dev',
17597 ))
17598 ->values(array(
17599   'lid' => '969',
17600   'location' => '/?q=fr/admin/settings/actions',
17601   'textgroup' => 'default',
17602   'source' => 'sort icon',
17603   'version' => '6.38-dev',
17604 ))
17605 ->values(array(
17606   'lid' => '970',
17607   'location' => '/?q=fr/admin/settings/actions',
17608   'textgroup' => 'default',
17609   'source' => 'sort descending',
17610   'version' => '6.38-dev',
17611 ))
17612 ->values(array(
17613   'lid' => '971',
17614   'location' => '/?q=fr/admin/settings/actions',
17615   'textgroup' => 'default',
17616   'source' => 'Make a new advanced action available',
17617   'version' => '6.38-dev',
17618 ))
17619 ->values(array(
17620   'lid' => '972',
17621   'location' => '/?q=fr/admin/settings/actions',
17622   'textgroup' => 'default',
17623   'source' => 'Create',
17624   'version' => '6.38-dev',
17625 ))
17626 ->values(array(
17627   'lid' => '973',
17628   'location' => '/?q=fr/admin/settings/actions',
17629   'textgroup' => 'default',
17630   'source' => 'Configure an advanced action',
17631   'version' => '6.38-dev',
17632 ))
17633 ->values(array(
17634   'lid' => '974',
17635   'location' => '/?q=fr/admin/settings/actions',
17636   'textgroup' => 'default',
17637   'source' => 'Remove orphans',
17638   'version' => '6.38-dev',
17639 ))
17640 ->values(array(
17641   'lid' => '975',
17642   'location' => '/?q=fr/admin/settings/actions',
17643   'textgroup' => 'default',
17644   'source' => 'Manage actions',
17645   'version' => '6.38-dev',
17646 ))
17647 ->values(array(
17648   'lid' => '976',
17649   'location' => '/?q=fr/admin/settings/actions',
17650   'textgroup' => 'default',
17651   '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.',
17652   'version' => '6.38-dev',
17653 ))
17654 ->values(array(
17655   'lid' => '977',
17656   'location' => '/?q=fr/admin/settings/actions',
17657   'textgroup' => 'default',
17658   '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.',
17659   'version' => '6.38-dev',
17660 ))
17661 ->values(array(
17662   'lid' => '978',
17663   'location' => '/?q=fr/admin/user/user',
17664   'textgroup' => 'default',
17665   'source' => 'Create new account',
17666   'version' => '6.38-dev',
17667 ))
17668 ->values(array(
17669   'lid' => '979',
17670   'location' => '/?q=fr/admin/user/user',
17671   'textgroup' => 'default',
17672   'source' => 'role',
17673   'version' => '6.38-dev',
17674 ))
17675 ->values(array(
17676   'lid' => '980',
17677   'location' => '/?q=fr/admin/user/user',
17678   'textgroup' => 'default',
17679   'source' => '@module module',
17680   'version' => '6.38-dev',
17681 ))
17682 ->values(array(
17683   'lid' => '981',
17684   'location' => '/?q=fr/admin/user/user',
17685   'textgroup' => 'default',
17686   'source' => 'access news feeds',
17687   'version' => '6.38-dev',
17688 ))
17689 ->values(array(
17690   'lid' => '982',
17691   'location' => '/?q=fr/admin/user/user',
17692   'textgroup' => 'default',
17693   'source' => 'administer news feeds',
17694   'version' => '6.38-dev',
17695 ))
17696 ->values(array(
17697   'lid' => '983',
17698   'location' => '/?q=fr/admin/user/user',
17699   'textgroup' => 'default',
17700   'source' => 'administer blocks',
17701   'version' => '6.38-dev',
17702 ))
17703 ->values(array(
17704   'lid' => '984',
17705   'location' => '/?q=fr/admin/user/user',
17706   'textgroup' => 'default',
17707   'source' => 'use PHP for block visibility',
17708   'version' => '6.38-dev',
17709 ))
17710 ->values(array(
17711   'lid' => '985',
17712   'location' => '/?q=fr/admin/user/user',
17713   'textgroup' => 'default',
17714   'source' => 'access printer-friendly version',
17715   'version' => '6.38-dev',
17716 ))
17717 ->values(array(
17718   'lid' => '986',
17719   'location' => '/?q=fr/admin/user/user',
17720   'textgroup' => 'default',
17721   'source' => 'add content to books',
17722   'version' => '6.38-dev',
17723 ))
17724 ->values(array(
17725   'lid' => '987',
17726   'location' => '/?q=fr/admin/user/user',
17727   'textgroup' => 'default',
17728   'source' => 'administer book outlines',
17729   'version' => '6.38-dev',
17730 ))
17731 ->values(array(
17732   'lid' => '988',
17733   'location' => '/?q=fr/admin/user/user',
17734   'textgroup' => 'default',
17735   'source' => 'create new books',
17736   'version' => '6.38-dev',
17737 ))
17738 ->values(array(
17739   'lid' => '989',
17740   'location' => '/?q=fr/admin/user/user',
17741   'textgroup' => 'default',
17742   'source' => 'access comments',
17743   'version' => '6.38-dev',
17744 ))
17745 ->values(array(
17746   'lid' => '990',
17747   'location' => '/?q=fr/admin/user/user',
17748   'textgroup' => 'default',
17749   'source' => 'administer comments',
17750   'version' => '6.38-dev',
17751 ))
17752 ->values(array(
17753   'lid' => '991',
17754   'location' => '/?q=fr/admin/user/user',
17755   'textgroup' => 'default',
17756   'source' => 'post comments',
17757   'version' => '6.38-dev',
17758 ))
17759 ->values(array(
17760   'lid' => '992',
17761   'location' => '/?q=fr/admin/user/user',
17762   'textgroup' => 'default',
17763   'source' => 'post comments without approval',
17764   'version' => '6.38-dev',
17765 ))
17766 ->values(array(
17767   'lid' => '993',
17768   'location' => '/?q=fr/admin/user/user',
17769   'textgroup' => 'default',
17770   'source' => 'access site-wide contact form',
17771   'version' => '6.38-dev',
17772 ))
17773 ->values(array(
17774   'lid' => '994',
17775   'location' => '/?q=fr/admin/user/user',
17776   'textgroup' => 'default',
17777   'source' => 'administer site-wide contact form',
17778   'version' => '6.38-dev',
17779 ))
17780 ->values(array(
17781   'lid' => '995',
17782   'location' => '/?q=fr/admin/user/user',
17783   'textgroup' => 'default',
17784   'source' => 'administer filters',
17785   'version' => '6.38-dev',
17786 ))
17787 ->values(array(
17788   'lid' => '996',
17789   'location' => '/?q=fr/admin/user/user',
17790   'textgroup' => 'default',
17791   'source' => 'administer languages',
17792   'version' => '6.38-dev',
17793 ))
17794 ->values(array(
17795   'lid' => '997',
17796   'location' => '/?q=fr/admin/user/user',
17797   'textgroup' => 'default',
17798   'source' => 'translate interface',
17799   'version' => '6.38-dev',
17800 ))
17801 ->values(array(
17802   'lid' => '998',
17803   'location' => '/?q=fr/admin/user/user',
17804   'textgroup' => 'default',
17805   'source' => 'administer menu',
17806   'version' => '6.38-dev',
17807 ))
17808 ->values(array(
17809   'lid' => '999',
17810   'location' => '/?q=fr/admin/user/user',
17811   'textgroup' => 'default',
17812   'source' => 'access content',
17813   'version' => '6.38-dev',
17814 ))
17815 ->values(array(
17816   'lid' => '1000',
17817   'location' => '/?q=fr/admin/user/user',
17818   'textgroup' => 'default',
17819   'source' => 'administer content types',
17820   'version' => '6.38-dev',
17821 ))
17822 ->values(array(
17823   'lid' => '1001',
17824   'location' => '/?q=fr/admin/user/user',
17825   'textgroup' => 'default',
17826   'source' => 'administer nodes',
17827   'version' => '6.38-dev',
17828 ))
17829 ->values(array(
17830   'lid' => '1002',
17831   'location' => '/?q=fr/admin/user/user',
17832   'textgroup' => 'default',
17833   'source' => 'create article content',
17834   'version' => '6.38-dev',
17835 ))
17836 ->values(array(
17837   'lid' => '1003',
17838   'location' => '/?q=fr/admin/user/user',
17839   'textgroup' => 'default',
17840   'source' => 'create company content',
17841   'version' => '6.38-dev',
17842 ))
17843 ->values(array(
17844   'lid' => '1004',
17845   'location' => '/?q=fr/admin/user/user',
17846   'textgroup' => 'default',
17847   'source' => 'create employee content',
17848   'version' => '6.38-dev',
17849 ))
17850 ->values(array(
17851   'lid' => '1005',
17852   'location' => '/?q=fr/admin/user/user',
17853   'textgroup' => 'default',
17854   'source' => 'create sponsor content',
17855   'version' => '6.38-dev',
17856 ))
17857 ->values(array(
17858   'lid' => '1006',
17859   'location' => '/?q=fr/admin/user/user',
17860   'textgroup' => 'default',
17861   'source' => 'create story content',
17862   'version' => '6.38-dev',
17863 ))
17864 ->values(array(
17865   'lid' => '1007',
17866   'location' => '/?q=fr/admin/user/user',
17867   'textgroup' => 'default',
17868   'source' => 'create test_event content',
17869   'version' => '6.38-dev',
17870 ))
17871 ->values(array(
17872   'lid' => '1008',
17873   'location' => '/?q=fr/admin/user/user',
17874   'textgroup' => 'default',
17875   'source' => 'create test_page content',
17876   'version' => '6.38-dev',
17877 ))
17878 ->values(array(
17879   'lid' => '1009',
17880   'location' => '/?q=fr/admin/user/user',
17881   'textgroup' => 'default',
17882   'source' => 'create test_planet content',
17883   'version' => '6.38-dev',
17884 ))
17885 ->values(array(
17886   'lid' => '1010',
17887   'location' => '/?q=fr/admin/user/user',
17888   'textgroup' => 'default',
17889   'source' => 'create test_story content',
17890   'version' => '6.38-dev',
17891 ))
17892 ->values(array(
17893   'lid' => '1011',
17894   'location' => '/?q=fr/admin/user/user',
17895   'textgroup' => 'default',
17896   'source' => 'delete any article content',
17897   'version' => '6.38-dev',
17898 ))
17899 ->values(array(
17900   'lid' => '1012',
17901   'location' => '/?q=fr/admin/user/user',
17902   'textgroup' => 'default',
17903   'source' => 'delete any company content',
17904   'version' => '6.38-dev',
17905 ))
17906 ->values(array(
17907   'lid' => '1013',
17908   'location' => '/?q=fr/admin/user/user',
17909   'textgroup' => 'default',
17910   'source' => 'delete any employee content',
17911   'version' => '6.38-dev',
17912 ))
17913 ->values(array(
17914   'lid' => '1014',
17915   'location' => '/?q=fr/admin/user/user',
17916   'textgroup' => 'default',
17917   'source' => 'delete any sponsor content',
17918   'version' => '6.38-dev',
17919 ))
17920 ->values(array(
17921   'lid' => '1015',
17922   'location' => '/?q=fr/admin/user/user',
17923   'textgroup' => 'default',
17924   'source' => 'delete any story content',
17925   'version' => '6.38-dev',
17926 ))
17927 ->values(array(
17928   'lid' => '1016',
17929   'location' => '/?q=fr/admin/user/user',
17930   'textgroup' => 'default',
17931   'source' => 'delete any test_event content',
17932   'version' => '6.38-dev',
17933 ))
17934 ->values(array(
17935   'lid' => '1017',
17936   'location' => '/?q=fr/admin/user/user',
17937   'textgroup' => 'default',
17938   'source' => 'delete any test_page content',
17939   'version' => '6.38-dev',
17940 ))
17941 ->values(array(
17942   'lid' => '1018',
17943   'location' => '/?q=fr/admin/user/user',
17944   'textgroup' => 'default',
17945   'source' => 'delete any test_planet content',
17946   'version' => '6.38-dev',
17947 ))
17948 ->values(array(
17949   'lid' => '1019',
17950   'location' => '/?q=fr/admin/user/user',
17951   'textgroup' => 'default',
17952   'source' => 'delete any test_story content',
17953   'version' => '6.38-dev',
17954 ))
17955 ->values(array(
17956   'lid' => '1020',
17957   'location' => '/?q=fr/admin/user/user',
17958   'textgroup' => 'default',
17959   'source' => 'delete own article content',
17960   'version' => '6.38-dev',
17961 ))
17962 ->values(array(
17963   'lid' => '1021',
17964   'location' => '/?q=fr/admin/user/user',
17965   'textgroup' => 'default',
17966   'source' => 'delete own company content',
17967   'version' => '6.38-dev',
17968 ))
17969 ->values(array(
17970   'lid' => '1022',
17971   'location' => '/?q=fr/admin/user/user',
17972   'textgroup' => 'default',
17973   'source' => 'delete own employee content',
17974   'version' => '6.38-dev',
17975 ))
17976 ->values(array(
17977   'lid' => '1023',
17978   'location' => '/?q=fr/admin/user/user',
17979   'textgroup' => 'default',
17980   'source' => 'delete own sponsor content',
17981   'version' => '6.38-dev',
17982 ))
17983 ->values(array(
17984   'lid' => '1024',
17985   'location' => '/?q=fr/admin/user/user',
17986   'textgroup' => 'default',
17987   'source' => 'delete own story content',
17988   'version' => '6.38-dev',
17989 ))
17990 ->values(array(
17991   'lid' => '1025',
17992   'location' => '/?q=fr/admin/user/user',
17993   'textgroup' => 'default',
17994   'source' => 'delete own test_event content',
17995   'version' => '6.38-dev',
17996 ))
17997 ->values(array(
17998   'lid' => '1026',
17999   'location' => '/?q=fr/admin/user/user',
18000   'textgroup' => 'default',
18001   'source' => 'delete own test_page content',
18002   'version' => '6.38-dev',
18003 ))
18004 ->values(array(
18005   'lid' => '1027',
18006   'location' => '/?q=fr/admin/user/user',
18007   'textgroup' => 'default',
18008   'source' => 'delete own test_planet content',
18009   'version' => '6.38-dev',
18010 ))
18011 ->values(array(
18012   'lid' => '1028',
18013   'location' => '/?q=fr/admin/user/user',
18014   'textgroup' => 'default',
18015   'source' => 'delete own test_story content',
18016   'version' => '6.38-dev',
18017 ))
18018 ->values(array(
18019   'lid' => '1029',
18020   'location' => '/?q=fr/admin/user/user',
18021   'textgroup' => 'default',
18022   'source' => 'delete revisions',
18023   'version' => '6.38-dev',
18024 ))
18025 ->values(array(
18026   'lid' => '1030',
18027   'location' => '/?q=fr/admin/user/user',
18028   'textgroup' => 'default',
18029   'source' => 'edit any article content',
18030   'version' => '6.38-dev',
18031 ))
18032 ->values(array(
18033   'lid' => '1031',
18034   'location' => '/?q=fr/admin/user/user',
18035   'textgroup' => 'default',
18036   'source' => 'edit any company content',
18037   'version' => '6.38-dev',
18038 ))
18039 ->values(array(
18040   'lid' => '1032',
18041   'location' => '/?q=fr/admin/user/user',
18042   'textgroup' => 'default',
18043   'source' => 'edit any employee content',
18044   'version' => '6.38-dev',
18045 ))
18046 ->values(array(
18047   'lid' => '1033',
18048   'location' => '/?q=fr/admin/user/user',
18049   'textgroup' => 'default',
18050   'source' => 'edit any sponsor content',
18051   'version' => '6.38-dev',
18052 ))
18053 ->values(array(
18054   'lid' => '1034',
18055   'location' => '/?q=fr/admin/user/user',
18056   'textgroup' => 'default',
18057   'source' => 'edit any story content',
18058   'version' => '6.38-dev',
18059 ))
18060 ->values(array(
18061   'lid' => '1035',
18062   'location' => '/?q=fr/admin/user/user',
18063   'textgroup' => 'default',
18064   'source' => 'edit any test_event content',
18065   'version' => '6.38-dev',
18066 ))
18067 ->values(array(
18068   'lid' => '1036',
18069   'location' => '/?q=fr/admin/user/user',
18070   'textgroup' => 'default',
18071   'source' => 'edit any test_page content',
18072   'version' => '6.38-dev',
18073 ))
18074 ->values(array(
18075   'lid' => '1037',
18076   'location' => '/?q=fr/admin/user/user',
18077   'textgroup' => 'default',
18078   'source' => 'edit any test_planet content',
18079   'version' => '6.38-dev',
18080 ))
18081 ->values(array(
18082   'lid' => '1038',
18083   'location' => '/?q=fr/admin/user/user',
18084   'textgroup' => 'default',
18085   'source' => 'edit any test_story content',
18086   'version' => '6.38-dev',
18087 ))
18088 ->values(array(
18089   'lid' => '1039',
18090   'location' => '/?q=fr/admin/user/user',
18091   'textgroup' => 'default',
18092   'source' => 'edit own article content',
18093   'version' => '6.38-dev',
18094 ))
18095 ->values(array(
18096   'lid' => '1040',
18097   'location' => '/?q=fr/admin/user/user',
18098   'textgroup' => 'default',
18099   'source' => 'edit own company content',
18100   'version' => '6.38-dev',
18101 ))
18102 ->values(array(
18103   'lid' => '1041',
18104   'location' => '/?q=fr/admin/user/user',
18105   'textgroup' => 'default',
18106   'source' => 'edit own employee content',
18107   'version' => '6.38-dev',
18108 ))
18109 ->values(array(
18110   'lid' => '1042',
18111   'location' => '/?q=fr/admin/user/user',
18112   'textgroup' => 'default',
18113   'source' => 'edit own sponsor content',
18114   'version' => '6.38-dev',
18115 ))
18116 ->values(array(
18117   'lid' => '1043',
18118   'location' => '/?q=fr/admin/user/user',
18119   'textgroup' => 'default',
18120   'source' => 'edit own story content',
18121   'version' => '6.38-dev',
18122 ))
18123 ->values(array(
18124   'lid' => '1044',
18125   'location' => '/?q=fr/admin/user/user',
18126   'textgroup' => 'default',
18127   'source' => 'edit own test_event content',
18128   'version' => '6.38-dev',
18129 ))
18130 ->values(array(
18131   'lid' => '1045',
18132   'location' => '/?q=fr/admin/user/user',
18133   'textgroup' => 'default',
18134   'source' => 'edit own test_page content',
18135   'version' => '6.38-dev',
18136 ))
18137 ->values(array(
18138   'lid' => '1046',
18139   'location' => '/?q=fr/admin/user/user',
18140   'textgroup' => 'default',
18141   'source' => 'edit own test_planet content',
18142   'version' => '6.38-dev',
18143 ))
18144 ->values(array(
18145   'lid' => '1047',
18146   'location' => '/?q=fr/admin/user/user',
18147   'textgroup' => 'default',
18148   'source' => 'edit own test_story content',
18149   'version' => '6.38-dev',
18150 ))
18151 ->values(array(
18152   'lid' => '1048',
18153   'location' => '/?q=fr/admin/user/user',
18154   'textgroup' => 'default',
18155   'source' => 'revert revisions',
18156   'version' => '6.38-dev',
18157 ))
18158 ->values(array(
18159   'lid' => '1049',
18160   'location' => '/?q=fr/admin/user/user',
18161   'textgroup' => 'default',
18162   'source' => 'view revisions',
18163   'version' => '6.38-dev',
18164 ))
18165 ->values(array(
18166   'lid' => '1050',
18167   'location' => '/?q=fr/admin/user/user',
18168   'textgroup' => 'default',
18169   'source' => 'administer url aliases',
18170   'version' => '6.38-dev',
18171 ))
18172 ->values(array(
18173   'lid' => '1051',
18174   'location' => '/?q=fr/admin/user/user',
18175   'textgroup' => 'default',
18176   'source' => 'create url aliases',
18177   'version' => '6.38-dev',
18178 ))
18179 ->values(array(
18180   'lid' => '1052',
18181   'location' => '/?q=fr/admin/user/user',
18182   'textgroup' => 'default',
18183   'source' => 'access administration pages',
18184   'version' => '6.38-dev',
18185 ))
18186 ->values(array(
18187   'lid' => '1053',
18188   'location' => '/?q=fr/admin/user/user',
18189   'textgroup' => 'default',
18190   'source' => 'access site reports',
18191   'version' => '6.38-dev',
18192 ))
18193 ->values(array(
18194   'lid' => '1054',
18195   'location' => '/?q=fr/admin/user/user',
18196   'textgroup' => 'default',
18197   'source' => 'administer actions',
18198   'version' => '6.38-dev',
18199 ))
18200 ->values(array(
18201   'lid' => '1055',
18202   'location' => '/?q=fr/admin/user/user',
18203   'textgroup' => 'default',
18204   'source' => 'administer files',
18205   'version' => '6.38-dev',
18206 ))
18207 ->values(array(
18208   'lid' => '1056',
18209   'location' => '/?q=fr/admin/user/user',
18210   'textgroup' => 'default',
18211   'source' => 'administer site configuration',
18212   'version' => '6.38-dev',
18213 ))
18214 ->values(array(
18215   'lid' => '1057',
18216   'location' => '/?q=fr/admin/user/user',
18217   'textgroup' => 'default',
18218   'source' => 'select different theme',
18219   'version' => '6.38-dev',
18220 ))
18221 ->values(array(
18222   'lid' => '1058',
18223   'location' => '/?q=fr/admin/user/user',
18224   'textgroup' => 'default',
18225   'source' => 'administer taxonomy',
18226   'version' => '6.38-dev',
18227 ))
18228 ->values(array(
18229   'lid' => '1059',
18230   'location' => '/?q=fr/admin/user/user',
18231   'textgroup' => 'default',
18232   'source' => 'translate content',
18233   'version' => '6.38-dev',
18234 ))
18235 ->values(array(
18236   'lid' => '1060',
18237   'location' => '/?q=fr/admin/user/user',
18238   'textgroup' => 'default',
18239   'source' => 'upload files',
18240   'version' => '6.38-dev',
18241 ))
18242 ->values(array(
18243   'lid' => '1061',
18244   'location' => '/?q=fr/admin/user/user',
18245   'textgroup' => 'default',
18246   'source' => 'view uploaded files',
18247   'version' => '6.38-dev',
18248 ))
18249 ->values(array(
18250   'lid' => '1062',
18251   'location' => '/?q=fr/admin/user/user',
18252   'textgroup' => 'default',
18253   'source' => 'access user profiles',
18254   'version' => '6.38-dev',
18255 ))
18256 ->values(array(
18257   'lid' => '1063',
18258   'location' => '/?q=fr/admin/user/user',
18259   'textgroup' => 'default',
18260   'source' => 'administer permissions',
18261   'version' => '6.38-dev',
18262 ))
18263 ->values(array(
18264   'lid' => '1064',
18265   'location' => '/?q=fr/admin/user/user',
18266   'textgroup' => 'default',
18267   'source' => 'administer users',
18268   'version' => '6.38-dev',
18269 ))
18270 ->values(array(
18271   'lid' => '1065',
18272   'location' => '/?q=fr/admin/user/user',
18273   'textgroup' => 'default',
18274   'source' => 'change own username',
18275   'version' => '6.38-dev',
18276 ))
18277 ->values(array(
18278   'lid' => '1066',
18279   'location' => '/?q=fr/admin/user/user',
18280   'textgroup' => 'default',
18281   'source' => 'view date repeats',
18282   'version' => '6.38-dev',
18283 ))
18284 ->values(array(
18285   'lid' => '1067',
18286   'location' => '/?q=fr/admin/user/user',
18287   'textgroup' => 'default',
18288   'source' => 'administer imageapi',
18289   'version' => '6.38-dev',
18290 ))
18291 ->values(array(
18292   'lid' => '1068',
18293   'location' => '/?q=fr/admin/user/user',
18294   'textgroup' => 'default',
18295   'source' => 'administer imagecache',
18296   'version' => '6.38-dev',
18297 ))
18298 ->values(array(
18299   'lid' => '1069',
18300   'location' => '/?q=fr/admin/user/user',
18301   'textgroup' => 'default',
18302   'source' => 'flush imagecache',
18303   'version' => '6.38-dev',
18304 ))
18305 ->values(array(
18306   'lid' => '1070',
18307   'location' => '/?q=fr/admin/user/user',
18308   'textgroup' => 'default',
18309   'source' => 'view imagecache big_blue_cheese',
18310   'version' => '6.38-dev',
18311 ))
18312 ->values(array(
18313   'lid' => '1071',
18314   'location' => '/?q=fr/admin/user/user',
18315   'textgroup' => 'default',
18316   'source' => 'view imagecache slackjaw_boys',
18317   'version' => '6.38-dev',
18318 ))
18319 ->values(array(
18320   'lid' => '1072',
18321   'location' => '/?q=fr/admin/user/user',
18322   'textgroup' => 'default',
18323   'source' => 'administer all languages',
18324   'version' => '6.38-dev',
18325 ))
18326 ->values(array(
18327   'lid' => '1073',
18328   'location' => '/?q=fr/admin/user/user',
18329   'textgroup' => 'default',
18330   'source' => 'administer translations',
18331   'version' => '6.38-dev',
18332 ))
18333 ->values(array(
18334   'lid' => '1074',
18335   'location' => '/?q=fr/admin/user/user',
18336   'textgroup' => 'default',
18337   'source' => 'permission',
18338   'version' => '6.38-dev',
18339 ))
18340 ->values(array(
18341   'lid' => '1075',
18342   'location' => '/?q=fr/admin/user/user',
18343   'textgroup' => 'default',
18344   'source' => 'status',
18345   'version' => '6.38-dev',
18346 ))
18347 ->values(array(
18348   'lid' => '1076',
18349   'location' => '/?q=fr/admin/user/user',
18350   'textgroup' => 'default',
18351   'source' => 'active',
18352   'version' => '6.38-dev',
18353 ))
18354 ->values(array(
18355   'lid' => '1077',
18356   'location' => '/?q=fr/admin/user/user',
18357   'textgroup' => 'default',
18358   'source' => 'blocked',
18359   'version' => '6.38-dev',
18360 ))
18361 ->values(array(
18362   'lid' => '1078',
18363   'location' => '/?q=fr/admin/user/user',
18364   'textgroup' => 'default',
18365   'source' => 'Show only users where',
18366   'version' => '6.38-dev',
18367 ))
18368 ->values(array(
18369   'lid' => '1079',
18370   'location' => '/?q=fr/admin/user/user',
18371   'textgroup' => 'default',
18372   'source' => 'Filter',
18373   'version' => '6.38-dev',
18374 ))
18375 ->values(array(
18376   'lid' => '1080',
18377   'location' => '/?q=fr/admin/user/user',
18378   'textgroup' => 'default',
18379   'source' => 'is',
18380   'version' => '6.38-dev',
18381 ))
18382 ->values(array(
18383   'lid' => '1081',
18384   'location' => '/?q=fr/admin/user/user',
18385   'textgroup' => 'default',
18386   'source' => 'Username',
18387   'version' => '6.38-dev',
18388 ))
18389 ->values(array(
18390   'lid' => '1082',
18391   'location' => '/?q=fr/admin/user/user',
18392   'textgroup' => 'default',
18393   'source' => 'Status',
18394   'version' => '6.38-dev',
18395 ))
18396 ->values(array(
18397   'lid' => '1083',
18398   'location' => '/?q=fr/admin/user/user',
18399   'textgroup' => 'default',
18400   'source' => 'Member for',
18401   'version' => '6.38-dev',
18402 ))
18403 ->values(array(
18404   'lid' => '1084',
18405   'location' => '/?q=fr/admin/user/user',
18406   'textgroup' => 'default',
18407   'source' => 'Last access',
18408   'version' => '6.38-dev',
18409 ))
18410 ->values(array(
18411   'lid' => '1085',
18412   'location' => '/?q=fr/admin/user/user',
18413   'textgroup' => 'default',
18414   'source' => 'Update options',
18415   'version' => '6.38-dev',
18416 ))
18417 ->values(array(
18418   'lid' => '1086',
18419   'location' => '/?q=fr/admin/user/user',
18420   'textgroup' => 'default',
18421   'source' => 'Unblock the selected users',
18422   'version' => '6.38-dev',
18423 ))
18424 ->values(array(
18425   'lid' => '1087',
18426   'location' => '/?q=fr/admin/user/user',
18427   'textgroup' => 'default',
18428   'source' => 'Block the selected users',
18429   'version' => '6.38-dev',
18430 ))
18431 ->values(array(
18432   'lid' => '1088',
18433   'location' => '/?q=fr/admin/user/user',
18434   'textgroup' => 'default',
18435   'source' => 'Delete the selected users',
18436   'version' => '6.38-dev',
18437 ))
18438 ->values(array(
18439   'lid' => '1089',
18440   'location' => '/?q=fr/admin/user/user',
18441   'textgroup' => 'default',
18442   'source' => 'Add a role to the selected users',
18443   'version' => '6.38-dev',
18444 ))
18445 ->values(array(
18446   'lid' => '1090',
18447   'location' => '/?q=fr/admin/user/user',
18448   'textgroup' => 'default',
18449   'source' => 'Remove a role from the selected users',
18450   'version' => '6.38-dev',
18451 ))
18452 ->values(array(
18453   'lid' => '1091',
18454   'location' => '/?q=fr/admin/user/user',
18455   'textgroup' => 'default',
18456   'source' => 'Update',
18457   'version' => '6.38-dev',
18458 ))
18459 ->values(array(
18460   'lid' => '1092',
18461   'location' => '/?q=fr/admin/user/user',
18462   'textgroup' => 'default',
18463   'source' => '@count years',
18464   'version' => '6.38-dev',
18465 ))
18466 ->values(array(
18467   'lid' => '1093',
18468   'location' => '/?q=fr/admin/user/user',
18469   'textgroup' => 'default',
18470   'source' => '@count weeks',
18471   'version' => '6.38-dev',
18472 ))
18473 ->values(array(
18474   'lid' => '1094',
18475   'location' => '/?q=fr/admin/user/user',
18476   'textgroup' => 'default',
18477   'source' => '@time ago',
18478   'version' => '6.38-dev',
18479 ))
18480 ->values(array(
18481   'lid' => '1095',
18482   'location' => '/?q=fr/admin/user/user',
18483   'textgroup' => 'default',
18484   'source' => '@count sec',
18485   'version' => '6.38-dev',
18486 ))
18487 ->values(array(
18488   'lid' => '1096',
18489   'location' => '/?q=fr/admin/user/user',
18490   'textgroup' => 'default',
18491   'source' => 'sort ascending',
18492   'version' => '6.38-dev',
18493 ))
18494 ->values(array(
18495   'lid' => '1097',
18496   'location' => '/?q=fr/admin/user/user',
18497   'textgroup' => 'default',
18498   'source' => 'Add user',
18499   'version' => '6.38-dev',
18500 ))
18501 ->values(array(
18502   'lid' => '1098',
18503   'location' => '/?q=fr/admin/user/user',
18504   'textgroup' => 'default',
18505   '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.',
18506   'version' => '6.38-dev',
18507 ))
18508 ->values(array(
18509   'lid' => '1099',
18510   'location' => '/?q=fr/admin/user/roles',
18511   'textgroup' => 'default',
18512   'source' => 'Add role',
18513   'version' => '6.38-dev',
18514 ))
18515 ->values(array(
18516   'lid' => '1100',
18517   'location' => '/?q=fr/admin/user/roles',
18518   'textgroup' => 'default',
18519   'source' => 'edit permissions',
18520   'version' => '6.38-dev',
18521 ))
18522 ->values(array(
18523   'lid' => '1101',
18524   'location' => '/?q=fr/admin/user/roles',
18525   'textgroup' => 'default',
18526   'source' => 'locked',
18527   'version' => '6.38-dev',
18528 ))
18529 ->values(array(
18530   'lid' => '1102',
18531   'location' => '/?q=fr/admin/user/roles',
18532   'textgroup' => 'default',
18533   'source' => 'edit role',
18534   'version' => '6.38-dev',
18535 ))
18536 ->values(array(
18537   'lid' => '1103',
18538   'location' => '/?q=fr/admin/user/roles',
18539   'textgroup' => 'default',
18540   'source' => 'Edit role',
18541   'version' => '6.38-dev',
18542 ))
18543 ->values(array(
18544   'lid' => '1104',
18545   'location' => '/?q=fr/admin/user/roles',
18546   'textgroup' => 'default',
18547   '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>",
18548   'version' => '6.38-dev',
18549 ))
18550 ->values(array(
18551   'lid' => '1105',
18552   'location' => '/?q=fr/admin/user/profile',
18553   'textgroup' => 'default',
18554   'source' => 'Add new field',
18555   'version' => '6.38-dev',
18556 ))
18557 ->values(array(
18558   'lid' => '1106',
18559   'location' => '/?q=fr/admin/user/profile',
18560   'textgroup' => 'default',
18561   'source' => 'single-line textfield',
18562   'version' => '6.38-dev',
18563 ))
18564 ->values(array(
18565   'lid' => '1107',
18566   'location' => '/?q=fr/admin/user/profile',
18567   'textgroup' => 'default',
18568   'source' => 'multi-line textfield',
18569   'version' => '6.38-dev',
18570 ))
18571 ->values(array(
18572   'lid' => '1108',
18573   'location' => '/?q=fr/admin/user/profile',
18574   'textgroup' => 'default',
18575   'source' => 'checkbox',
18576   'version' => '6.38-dev',
18577 ))
18578 ->values(array(
18579   'lid' => '1109',
18580   'location' => '/?q=fr/admin/user/profile',
18581   'textgroup' => 'default',
18582   'source' => 'list selection',
18583   'version' => '6.38-dev',
18584 ))
18585 ->values(array(
18586   'lid' => '1110',
18587   'location' => '/?q=fr/admin/user/profile',
18588   'textgroup' => 'default',
18589   'source' => 'freeform list',
18590   'version' => '6.38-dev',
18591 ))
18592 ->values(array(
18593   'lid' => '1111',
18594   'location' => '/?q=fr/admin/user/profile',
18595   'textgroup' => 'default',
18596   'source' => 'URL',
18597   'version' => '6.38-dev',
18598 ))
18599 ->values(array(
18600   'lid' => '1112',
18601   'location' => '/?q=fr/admin/user/profile',
18602   'textgroup' => 'default',
18603   'source' => 'date',
18604   'version' => '6.38-dev',
18605 ))
18606 ->values(array(
18607   'lid' => '1113',
18608   'location' => '/?q=fr/admin/user/profile',
18609   'textgroup' => 'default',
18610   'source' => 'No fields in this category. If this category remains empty when saved, it will be removed.',
18611   'version' => '6.38-dev',
18612 ))
18613 ->values(array(
18614   'lid' => '1114',
18615   'location' => '/?q=fr/admin/user/profile',
18616   'textgroup' => 'default',
18617   'source' => 'Title',
18618   'version' => '6.38-dev',
18619 ))
18620 ->values(array(
18621   'lid' => '1115',
18622   'location' => '/?q=fr/admin/user/profile',
18623   'textgroup' => 'default',
18624   'source' => 'Category',
18625   'version' => '6.38-dev',
18626 ))
18627 ->values(array(
18628   'lid' => '1116',
18629   'location' => '/?q=fr/admin/user/profile',
18630   'textgroup' => 'default',
18631   'source' => 'Delete field',
18632   'version' => '6.38-dev',
18633 ))
18634 ->values(array(
18635   'lid' => '1117',
18636   'location' => '/?q=fr/admin/user/profile',
18637   'textgroup' => 'default',
18638   'source' => 'Edit field',
18639   'version' => '6.38-dev',
18640 ))
18641 ->values(array(
18642   'lid' => '1118',
18643   'location' => '/?q=fr/admin/user/profile',
18644   'textgroup' => 'default',
18645   'source' => 'Profile category autocomplete',
18646   'version' => '6.38-dev',
18647 ))
18648 ->values(array(
18649   'lid' => '1119',
18650   'location' => '/?q=fr/admin/user/profile',
18651   'textgroup' => 'default',
18652   '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.",
18653   'version' => '6.38-dev',
18654 ))
18655 ->values(array(
18656   'lid' => '1120',
18657   'location' => '/?q=fr/admin/user/permissions',
18658   'textgroup' => 'default',
18659   'source' => 'Save permissions',
18660   'version' => '6.38-dev',
18661 ))
18662 ->values(array(
18663   'lid' => '1121',
18664   'location' => '/?q=fr/admin/user/permissions',
18665   'textgroup' => 'default',
18666   'source' => 'Permission',
18667   'version' => '6.38-dev',
18668 ))
18669 ->values(array(
18670   'lid' => '1122',
18671   'location' => '/?q=fr/admin/user/permissions',
18672   'textgroup' => 'default',
18673   '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.',
18674   'version' => '6.38-dev',
18675 ))
18676 ->values(array(
18677   'lid' => '1123',
18678   'location' => '/?q=fr/admin/user/rules',
18679   'textgroup' => 'default',
18680   'source' => 'Access type',
18681   'version' => '6.38-dev',
18682 ))
18683 ->values(array(
18684   'lid' => '1124',
18685   'location' => '/?q=fr/admin/user/rules',
18686   'textgroup' => 'default',
18687   'source' => 'Rule type',
18688   'version' => '6.38-dev',
18689 ))
18690 ->values(array(
18691   'lid' => '1125',
18692   'location' => '/?q=fr/admin/user/rules',
18693   'textgroup' => 'default',
18694   'source' => 'Mask',
18695   'version' => '6.38-dev',
18696 ))
18697 ->values(array(
18698   'lid' => '1126',
18699   'location' => '/?q=fr/admin/user/rules',
18700   'textgroup' => 'default',
18701   'source' => 'username',
18702   'version' => '6.38-dev',
18703 ))
18704 ->values(array(
18705   'lid' => '1127',
18706   'location' => '/?q=fr/admin/user/rules',
18707   'textgroup' => 'default',
18708   'source' => 'e-mail',
18709   'version' => '6.38-dev',
18710 ))
18711 ->values(array(
18712   'lid' => '1128',
18713   'location' => '/?q=fr/admin/user/rules',
18714   'textgroup' => 'default',
18715   'source' => 'host',
18716   'version' => '6.38-dev',
18717 ))
18718 ->values(array(
18719   'lid' => '1129',
18720   'location' => '/?q=fr/admin/user/rules',
18721   'textgroup' => 'default',
18722   'source' => 'There are currently no access rules.',
18723   'version' => '6.38-dev',
18724 ))
18725 ->values(array(
18726   'lid' => '1130',
18727   'location' => '/?q=fr/admin/user/rules',
18728   'textgroup' => 'default',
18729   'source' => 'Delete rule',
18730   'version' => '6.38-dev',
18731 ))
18732 ->values(array(
18733   'lid' => '1131',
18734   'location' => '/?q=fr/admin/user/rules',
18735   'textgroup' => 'default',
18736   'source' => 'Edit rule',
18737   'version' => '6.38-dev',
18738 ))
18739 ->values(array(
18740   'lid' => '1132',
18741   'location' => '/?q=fr/admin/user/rules',
18742   'textgroup' => 'default',
18743   'source' => 'Add rule',
18744   'version' => '6.38-dev',
18745 ))
18746 ->values(array(
18747   'lid' => '1133',
18748   'location' => '/?q=fr/admin/user/rules',
18749   'textgroup' => 'default',
18750   'source' => 'Check rules',
18751   'version' => '6.38-dev',
18752 ))
18753 ->values(array(
18754   'lid' => '1134',
18755   'location' => '/?q=fr/admin/user/rules',
18756   'textgroup' => 'default',
18757   '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.',
18758   'version' => '6.38-dev',
18759 ))
18760 ->values(array(
18761   'lid' => '1135',
18762   'location' => '/?q=fr/admin/user/profile/edit/11',
18763   'textgroup' => 'default',
18764   'source' => 'edit %title',
18765   'version' => '6.38-dev',
18766 ))
18767 ->values(array(
18768   'lid' => '1136',
18769   'location' => '/?q=fr/admin/user/profile/edit/11',
18770   'textgroup' => 'default',
18771   'source' => 'Field settings',
18772   'version' => '6.38-dev',
18773 ))
18774 ->values(array(
18775   'lid' => '1137',
18776   'location' => '/?q=fr/admin/user/profile/edit/11',
18777   'textgroup' => 'default',
18778   'source' => 'The category the new field should be part of. Categories are used to group fields logically. An example category is "Personal information".',
18779   'version' => '6.38-dev',
18780 ))
18781 ->values(array(
18782   'lid' => '1138',
18783   'location' => '/?q=fr/admin/user/profile/edit/11',
18784   'textgroup' => 'default',
18785   'source' => 'The title of the new field. The title will be shown to the user. An example title is "Favorite color".',
18786   'version' => '6.38-dev',
18787 ))
18788 ->values(array(
18789   'lid' => '1139',
18790   'location' => '/?q=fr/admin/user/profile/edit/11',
18791   'textgroup' => 'default',
18792   'source' => 'Form name',
18793   'version' => '6.38-dev',
18794 ))
18795 ->values(array(
18796   'lid' => '1140',
18797   'location' => '/?q=fr/admin/user/profile/edit/11',
18798   'textgroup' => 'default',
18799   '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\".",
18800   'version' => '6.38-dev',
18801 ))
18802 ->values(array(
18803   'lid' => '1141',
18804   'location' => '/?q=fr/admin/user/profile/edit/11',
18805   'textgroup' => 'default',
18806   'source' => 'Explanation',
18807   'version' => '6.38-dev',
18808 ))
18809 ->values(array(
18810   'lid' => '1142',
18811   'location' => '/?q=fr/admin/user/profile/edit/11',
18812   'textgroup' => 'default',
18813   'source' => 'An optional explanation to go with the new field. The explanation will be shown to the user.',
18814   'version' => '6.38-dev',
18815 ))
18816 ->values(array(
18817   'lid' => '1143',
18818   'location' => '/?q=fr/admin/user/profile/edit/11',
18819   'textgroup' => 'default',
18820   'source' => 'Selection options',
18821   'version' => '6.38-dev',
18822 ))
18823 ->values(array(
18824   'lid' => '1144',
18825   'location' => '/?q=fr/admin/user/profile/edit/11',
18826   'textgroup' => 'default',
18827   'source' => 'A list of all options. Put each option on a separate line. Example options are "red", "blue", "green", etc.',
18828   'version' => '6.38-dev',
18829 ))
18830 ->values(array(
18831   'lid' => '1145',
18832   'location' => '/?q=fr/admin/user/profile/edit/11',
18833   'textgroup' => 'default',
18834   'source' => 'Visibility',
18835   'version' => '6.38-dev',
18836 ))
18837 ->values(array(
18838   'lid' => '1146',
18839   'location' => '/?q=fr/admin/user/profile/edit/11',
18840   'textgroup' => 'default',
18841   'source' => 'Hidden profile field, only accessible by administrators, modules and themes.',
18842   'version' => '6.38-dev',
18843 ))
18844 ->values(array(
18845   'lid' => '1147',
18846   'location' => '/?q=fr/admin/user/profile/edit/11',
18847   'textgroup' => 'default',
18848   'source' => 'Private field, content only available to privileged users.',
18849   'version' => '6.38-dev',
18850 ))
18851 ->values(array(
18852   'lid' => '1148',
18853   'location' => '/?q=fr/admin/user/profile/edit/11',
18854   'textgroup' => 'default',
18855   'source' => 'Public field, content shown on profile page but not used on member list pages.',
18856   'version' => '6.38-dev',
18857 ))
18858 ->values(array(
18859   'lid' => '1149',
18860   'location' => '/?q=fr/admin/user/profile/edit/11',
18861   'textgroup' => 'default',
18862   'source' => 'Public field, content shown on profile page and on member list pages.',
18863   'version' => '6.38-dev',
18864 ))
18865 ->values(array(
18866   'lid' => '1150',
18867   'location' => '/?q=fr/admin/user/profile/edit/11',
18868   'textgroup' => 'default',
18869   'source' => 'Page title',
18870   'version' => '6.38-dev',
18871 ))
18872 ->values(array(
18873   'lid' => '1151',
18874   'location' => '/?q=fr/admin/user/profile/edit/11',
18875   'textgroup' => 'default',
18876   '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.',
18877   'version' => '6.38-dev',
18878 ))
18879 ->values(array(
18880   'lid' => '1152',
18881   'location' => '/?q=fr/admin/user/profile/edit/11',
18882   'textgroup' => 'default',
18883   'source' => 'The weights define the order in which the form fields are shown. Lighter fields "float up" towards the top of the category.',
18884   'version' => '6.38-dev',
18885 ))
18886 ->values(array(
18887   'lid' => '1153',
18888   'location' => '/?q=fr/admin/user/profile/edit/11',
18889   'textgroup' => 'default',
18890   'source' => 'Form will auto-complete while user is typing.',
18891   'version' => '6.38-dev',
18892 ))
18893 ->values(array(
18894   'lid' => '1154',
18895   'location' => '/?q=fr/admin/user/profile/edit/11',
18896   'textgroup' => 'default',
18897   'source' => 'For security, auto-complete will be disabled if the user does not have access to user profiles.',
18898   'version' => '6.38-dev',
18899 ))
18900 ->values(array(
18901   'lid' => '1155',
18902   'location' => '/?q=fr/admin/user/profile/edit/11',
18903   'textgroup' => 'default',
18904   'source' => 'The user must enter a value.',
18905   'version' => '6.38-dev',
18906 ))
18907 ->values(array(
18908   'lid' => '1156',
18909   'location' => '/?q=fr/admin/user/profile/edit/11',
18910   'textgroup' => 'default',
18911   'source' => 'Visible in user registration form.',
18912   'version' => '6.38-dev',
18913 ))
18914 ->values(array(
18915   'lid' => '1157',
18916   'location' => '/?q=fr/admin/user/profile/edit/11',
18917   'textgroup' => 'default',
18918   'source' => 'Save field',
18919   'version' => '6.38-dev',
18920 ))
18921 ->values(array(
18922   'lid' => '1158',
18923   'location' => '/?q=fr/admin/user/profile/edit/11',
18924   'textgroup' => 'default',
18925   'source' => 'The specified form name contains one or more illegal characters. Spaces or any other special characters except dash (-) and underscore (_) are not allowed.',
18926   'version' => '6.38-dev',
18927 ))
18928 ->values(array(
18929   'lid' => '1159',
18930   'location' => '/?q=fr/admin/settings/language/configure',
18931   'textgroup' => 'default',
18932   'source' => 'None.',
18933   'version' => '6.38-dev',
18934 ))
18935 ->values(array(
18936   'lid' => '1160',
18937   'location' => '/?q=fr/admin/settings/language/configure',
18938   'textgroup' => 'default',
18939   'source' => 'Path prefix only.',
18940   'version' => '6.38-dev',
18941 ))
18942 ->values(array(
18943   'lid' => '1161',
18944   'location' => '/?q=fr/admin/settings/language/configure',
18945   'textgroup' => 'default',
18946   'source' => 'Path prefix with language fallback.',
18947   'version' => '6.38-dev',
18948 ))
18949 ->values(array(
18950   'lid' => '1162',
18951   'location' => '/?q=fr/admin/settings/language/configure',
18952   'textgroup' => 'default',
18953   'source' => 'Domain name only.',
18954   'version' => '6.38-dev',
18955 ))
18956 ->values(array(
18957   'lid' => '1163',
18958   'location' => '/?q=fr/admin/settings/language/configure',
18959   'textgroup' => 'default',
18960   '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>",
18961   'version' => '6.38-dev',
18962 ))
18963 ->values(array(
18964   'lid' => '1164',
18965   'location' => '/?q=fr/admin/settings/language/configure',
18966   'textgroup' => 'default',
18967   'source' => 'Save settings',
18968   'version' => '6.38-dev',
18969 ))
18970 ->values(array(
18971   'lid' => '1165',
18972   'location' => '/?q=fr/admin/settings/language/configure',
18973   'textgroup' => 'default',
18974   'source' => "Language negotiation settings determine the site's presentation language. Available options include:",
18975   'version' => '6.38-dev',
18976 ))
18977 ->values(array(
18978   'lid' => '1166',
18979   'location' => '/?q=fr/admin/settings/language/configure',
18980   'textgroup' => 'default',
18981   '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.)',
18982   'version' => '6.38-dev',
18983 ))
18984 ->values(array(
18985   'lid' => '1167',
18986   'location' => '/?q=fr/admin/settings/language/configure',
18987   'textgroup' => 'default',
18988   '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>',
18989   'version' => '6.38-dev',
18990 ))
18991 ->values(array(
18992   'lid' => '1168',
18993   'location' => '/?q=fr/admin/settings/language/configure',
18994   'textgroup' => 'default',
18995   '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.",
18996   'version' => '6.38-dev',
18997 ))
18998 ->values(array(
18999   'lid' => '1169',
19000   'location' => '/?q=fr/admin/settings/language/configure',
19001   'textgroup' => 'default',
19002   '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>',
19003   'version' => '6.38-dev',
19004 ))
19005 ->values(array(
19006   'lid' => '1170',
19007   'location' => '/?q=fr/admin/settings/language/configure',
19008   'textgroup' => 'default',
19009   '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>.',
19010   'version' => '6.38-dev',
19011 ))
19012 ->values(array(
19013   'lid' => '1171',
19014   'location' => '/?q=fr/admin/settings/language/configure/strings',
19015   'textgroup' => 'default',
19016   'source' => 'Translatable input formats',
19017   'version' => '6.38-dev',
19018 ))
19019 ->values(array(
19020   'lid' => '1172',
19021   'location' => '/?q=fr/admin/settings/language/configure/strings',
19022   'textgroup' => 'default',
19023   '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.',
19024   'version' => '6.38-dev',
19025 ))
19026 ->values(array(
19027   'lid' => '1173',
19028   'location' => '/?q=fr/admin/settings/language/configure/strings',
19029   'textgroup' => 'default',
19030   'source' => 'Built-in interface',
19031   'version' => '6.38-dev',
19032 ))
19033 ->values(array(
19034   'lid' => '1174',
19035   'location' => '/?q=fr/admin/settings/language/configure/strings',
19036   'textgroup' => 'default',
19037   'source' => 'Blocks',
19038   'version' => '6.38-dev',
19039 ))
19040 ->values(array(
19041   'lid' => '1175',
19042   'location' => '/?q=fr/admin/settings/language/configure/strings',
19043   'textgroup' => 'default',
19044   'source' => 'Menu',
19045   'version' => '6.38-dev',
19046 ))
19047 ->values(array(
19048   'lid' => '1176',
19049   'location' => '/?q=fr/admin/settings/language/configure/strings',
19050   'textgroup' => 'default',
19051   'source' => 'Profile',
19052   'version' => '6.38-dev',
19053 ))
19054 ->values(array(
19055   'lid' => '1177',
19056   'location' => '/?q=fr/admin/settings/language/configure/strings',
19057   'textgroup' => 'default',
19058   '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.',
19059   'version' => '6.38-dev',
19060 ))
19061 ->values(array(
19062   'lid' => '1178',
19063   'location' => '/?q=fr/admin/settings/language/configure/strings',
19064   'textgroup' => 'default',
19065   '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.",
19066   'version' => '6.38-dev',
19067 ))
19068 ->values(array(
19069   'lid' => '1179',
19070   'location' => '/?q=fr/admin/settings/language/configure/strings',
19071   'textgroup' => 'default',
19072   '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.',
19073   'version' => '6.38-dev',
19074 ))
19075 ->values(array(
19076   'lid' => '1180',
19077   'location' => '/?q=fr/admin/settings/language/i18n',
19078   'textgroup' => 'default',
19079   'source' => 'Content selection',
19080   'version' => '6.38-dev',
19081 ))
19082 ->values(array(
19083   'lid' => '1181',
19084   'location' => '/?q=fr/admin/settings/language/i18n',
19085   'textgroup' => 'default',
19086   'source' => 'Content selection mode',
19087   'version' => '6.38-dev',
19088 ))
19089 ->values(array(
19090   'lid' => '1182',
19091   'location' => '/?q=fr/admin/settings/language/i18n',
19092   'textgroup' => 'default',
19093   'source' => 'Current language and language neutral.',
19094   'version' => '6.38-dev',
19095 ))
19096 ->values(array(
19097   'lid' => '1183',
19098   'location' => '/?q=fr/admin/settings/language/i18n',
19099   'textgroup' => 'default',
19100   'source' => 'Mixed current language (if available) or default language (if not) and language neutral.',
19101   'version' => '6.38-dev',
19102 ))
19103 ->values(array(
19104   'lid' => '1184',
19105   'location' => '/?q=fr/admin/settings/language/i18n',
19106   'textgroup' => 'default',
19107   'source' => 'Only default language and language neutral.',
19108   'version' => '6.38-dev',
19109 ))
19110 ->values(array(
19111   'lid' => '1185',
19112   'location' => '/?q=fr/admin/settings/language/i18n',
19113   'textgroup' => 'default',
19114   'source' => 'Only current language.',
19115   'version' => '6.38-dev',
19116 ))
19117 ->values(array(
19118   'lid' => '1186',
19119   'location' => '/?q=fr/admin/settings/language/i18n',
19120   'textgroup' => 'default',
19121   'source' => 'All content. No language conditions apply.',
19122   'version' => '6.38-dev',
19123 ))
19124 ->values(array(
19125   'lid' => '1187',
19126   'location' => '/?q=fr/admin/settings/language/i18n',
19127   'textgroup' => 'default',
19128   'source' => 'Determines which content to show depending on the current page language and the default language of the site.',
19129   'version' => '6.38-dev',
19130 ))
19131 ->values(array(
19132   'lid' => '1188',
19133   'location' => '/?q=fr/admin/settings/language/i18n',
19134   'textgroup' => 'default',
19135   'source' => 'Content translation links',
19136   'version' => '6.38-dev',
19137 ))
19138 ->values(array(
19139   'lid' => '1189',
19140   'location' => '/?q=fr/admin/settings/language/i18n',
19141   'textgroup' => 'default',
19142   'source' => 'Hide content translation links',
19143   'version' => '6.38-dev',
19144 ))
19145 ->values(array(
19146   'lid' => '1190',
19147   'location' => '/?q=fr/admin/settings/language/i18n',
19148   'textgroup' => 'default',
19149   '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.',
19150   'version' => '6.38-dev',
19151 ))
19152 ->values(array(
19153   'lid' => '1191',
19154   'location' => '/?q=fr/admin/settings/language/i18n',
19155   'textgroup' => 'default',
19156   'source' => 'Switch interface for translating',
19157   'version' => '6.38-dev',
19158 ))
19159 ->values(array(
19160   'lid' => '1192',
19161   'location' => '/?q=fr/admin/settings/language/i18n',
19162   'textgroup' => 'default',
19163   '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.',
19164   'version' => '6.38-dev',
19165 ))
19166 ->values(array(
19167   'lid' => '1193',
19168   'location' => '/?q=fr/admin/settings/language/i18n',
19169   'textgroup' => 'default',
19170   'source' => 'To set up multilingual options for vocabularies go to <a href="@configure_taxonomy">Taxonomy configuration page</a>.',
19171   'version' => '6.38-dev',
19172 ))
19173 ->values(array(
19174   'lid' => '1194',
19175   'location' => '/?q=fr/admin/settings/language/i18n',
19176   'textgroup' => 'default',
19177   'source' => 'To enable multilingual support for specific content types go to <a href="@configure_content_types">configure content types</a>.',
19178   'version' => '6.38-dev',
19179 ))
19180 ->values(array(
19181   'lid' => '1195',
19182   'location' => '/?q=fr/admin',
19183   'textgroup' => 'default',
19184   'source' => 'Drupal',
19185   'version' => '6.38-dev',
19186 ))
19187 ->values(array(
19188   'lid' => '1196',
19189   'location' => '/?q=fr/admin',
19190   'textgroup' => 'default',
19191   'source' => 'Web server',
19192   'version' => '6.38-dev',
19193 ))
19194 ->values(array(
19195   'lid' => '1197',
19196   'location' => '/?q=fr/admin',
19197   'textgroup' => 'default',
19198   'source' => 'PHP',
19199   'version' => '6.38-dev',
19200 ))
19201 ->values(array(
19202   'lid' => '1198',
19203   'location' => '/?q=fr/admin',
19204   'textgroup' => 'default',
19205   'source' => 'PHP register globals',
19206   'version' => '6.38-dev',
19207 ))
19208 ->values(array(
19209   'lid' => '1199',
19210   'location' => '/?q=fr/admin',
19211   'textgroup' => 'default',
19212   'source' => 'PHP memory limit',
19213   'version' => '6.38-dev',
19214 ))
19215 ->values(array(
19216   'lid' => '1200',
19217   'location' => '/?q=fr/admin',
19218   'textgroup' => 'default',
19219   'source' => 'MySQL database',
19220   'version' => '6.38-dev',
19221 ))
19222 ->values(array(
19223   'lid' => '1201',
19224   'location' => '/?q=fr/admin',
19225   'textgroup' => 'default',
19226   'source' => 'Protected',
19227   'version' => '6.38-dev',
19228 ))
19229 ->values(array(
19230   'lid' => '1202',
19231   'location' => '/?q=fr/admin',
19232   'textgroup' => 'default',
19233   'source' => 'Configuration file',
19234   'version' => '6.38-dev',
19235 ))
19236 ->values(array(
19237   'lid' => '1203',
19238   'location' => '/?q=fr/admin',
19239   'textgroup' => 'default',
19240   'source' => 'Files directory',
19241   'version' => '6.38-dev',
19242 ))
19243 ->values(array(
19244   'lid' => '1204',
19245   'location' => '/?q=fr/admin',
19246   'textgroup' => 'default',
19247   'source' => 'Temporary files directory',
19248   'version' => '6.38-dev',
19249 ))
19250 ->values(array(
19251   'lid' => '1205',
19252   'location' => '/?q=fr/admin',
19253   'textgroup' => 'default',
19254   'source' => 'Not fully protected',
19255   'version' => '6.38-dev',
19256 ))
19257 ->values(array(
19258   'lid' => '1206',
19259   'location' => '/?q=fr/admin',
19260   'textgroup' => 'default',
19261   '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.',
19262   'version' => '6.38-dev',
19263 ))
19264 ->values(array(
19265   'lid' => '1207',
19266   'location' => '/?q=fr/admin',
19267   'textgroup' => 'default',
19268   'source' => 'For more information, see the online handbook entry for <a href="@cron-handbook">configuring cron jobs</a>.',
19269   'version' => '6.38-dev',
19270 ))
19271 ->values(array(
19272   'lid' => '1208',
19273   'location' => '/?q=fr/admin',
19274   'textgroup' => 'default',
19275   'source' => 'Never run',
19276   'version' => '6.38-dev',
19277 ))
19278 ->values(array(
19279   'lid' => '1209',
19280   'location' => '/?q=fr/admin',
19281   'textgroup' => 'default',
19282   'source' => 'Cron has not run.',
19283   'version' => '6.38-dev',
19284 ))
19285 ->values(array(
19286   'lid' => '1210',
19287   'location' => '/?q=fr/admin',
19288   'textgroup' => 'default',
19289   'source' => 'Cron maintenance tasks',
19290   'version' => '6.38-dev',
19291 ))
19292 ->values(array(
19293   'lid' => '1211',
19294   'location' => '/?q=fr/admin',
19295   'textgroup' => 'default',
19296   'source' => 'You can <a href="@cron">run cron manually</a>.',
19297   'version' => '6.38-dev',
19298 ))
19299 ->values(array(
19300   'lid' => '1212',
19301   'location' => '/?q=fr/admin',
19302   'textgroup' => 'default',
19303   'source' => 'Not writable',
19304   'version' => '6.38-dev',
19305 ))
19306 ->values(array(
19307   'lid' => '1213',
19308   'location' => '/?q=fr/admin',
19309   'textgroup' => 'default',
19310   '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.",
19311   'version' => '6.38-dev',
19312 ))
19313 ->values(array(
19314   'lid' => '1214',
19315   'location' => '/?q=fr/admin',
19316   'textgroup' => 'default',
19317   'source' => 'Database updates',
19318   'version' => '6.38-dev',
19319 ))
19320 ->values(array(
19321   'lid' => '1215',
19322   'location' => '/?q=fr/admin',
19323   'textgroup' => 'default',
19324   'source' => 'Up to date',
19325   'version' => '6.38-dev',
19326 ))
19327 ->values(array(
19328   'lid' => '1216',
19329   'location' => '/?q=fr/admin',
19330   'textgroup' => 'default',
19331   'source' => 'Access to update.php',
19332   'version' => '6.38-dev',
19333 ))
19334 ->values(array(
19335   'lid' => '1217',
19336   'location' => '/?q=fr/admin',
19337   'textgroup' => 'default',
19338   'source' => 'Standard PHP',
19339   'version' => '6.38-dev',
19340 ))
19341 ->values(array(
19342   'lid' => '1218',
19343   'location' => '/?q=fr/admin',
19344   'textgroup' => 'default',
19345   'source' => 'PHP Mbstring Extension',
19346   'version' => '6.38-dev',
19347 ))
19348 ->values(array(
19349   'lid' => '1219',
19350   'location' => '/?q=fr/admin',
19351   'textgroup' => 'default',
19352   'source' => 'Error',
19353   'version' => '6.38-dev',
19354 ))
19355 ->values(array(
19356   'lid' => '1220',
19357   'location' => '/?q=fr/admin',
19358   'textgroup' => 'default',
19359   'source' => 'Unicode library',
19360   'version' => '6.38-dev',
19361 ))
19362 ->values(array(
19363   'lid' => '1221',
19364   'location' => '/?q=fr/admin',
19365   'textgroup' => 'default',
19366   'source' => 'Not enabled',
19367   'version' => '6.38-dev',
19368 ))
19369 ->values(array(
19370   'lid' => '1222',
19371   'location' => '/?q=fr/admin',
19372   'textgroup' => 'default',
19373   '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>.',
19374   'version' => '6.38-dev',
19375 ))
19376 ->values(array(
19377   'lid' => '1223',
19378   'location' => '/?q=fr/admin',
19379   'textgroup' => 'default',
19380   'source' => 'Update notifications',
19381   'version' => '6.38-dev',
19382 ))
19383 ->values(array(
19384   'lid' => '1224',
19385   'location' => '/?q=fr/admin',
19386   'textgroup' => 'default',
19387   'source' => 'set the site timezone name',
19388   'version' => '6.38-dev',
19389 ))
19390 ->values(array(
19391   'lid' => '1225',
19392   'location' => '/?q=fr/admin',
19393   'textgroup' => 'default',
19394   'source' => 'The Date Timezone module requires you to !link.',
19395   'version' => '6.38-dev',
19396 ))
19397 ->values(array(
19398   'lid' => '1226',
19399   'location' => '/?q=fr/admin',
19400   'textgroup' => 'default',
19401   'source' => 'Date Timezone requirements',
19402   'version' => '6.38-dev',
19403 ))
19404 ->values(array(
19405   'lid' => '1227',
19406   'location' => '/?q=fr/admin',
19407   'textgroup' => 'default',
19408   'source' => 'MySQL database for event module',
19409   'version' => '6.38-dev',
19410 ))
19411 ->values(array(
19412   'lid' => '1228',
19413   'location' => '/?q=fr/admin',
19414   'textgroup' => 'default',
19415   '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>.',
19416   'version' => '6.38-dev',
19417 ))
19418 ->values(array(
19419   'lid' => '1229',
19420   'location' => '/?q=fr/admin',
19421   'textgroup' => 'default',
19422   'source' => 'Upload progress',
19423   'version' => '6.38-dev',
19424 ))
19425 ->values(array(
19426   'lid' => '1230',
19427   'location' => '/?q=fr/admin',
19428   'textgroup' => 'default',
19429   'source' => 'ImageAPI Toolkit',
19430   'version' => '6.38-dev',
19431 ))
19432 ->values(array(
19433   'lid' => '1231',
19434   'location' => '/?q=fr/admin',
19435   'textgroup' => 'default',
19436   'source' => 'No ImageAPI toolkits available',
19437   'version' => '6.38-dev',
19438 ))
19439 ->values(array(
19440   'lid' => '1232',
19441   'location' => '/?q=fr/admin',
19442   'textgroup' => 'default',
19443   'source' => 'ImageAPI requires a Toolkit such as ImageAPI GD or ImageAPI ImageMagick to function. Go to !modules and enable one of them.',
19444   'version' => '6.38-dev',
19445 ))
19446 ->values(array(
19447   'lid' => '1233',
19448   'location' => '/?q=fr/admin',
19449   'textgroup' => 'default',
19450   'source' => 'ImageCache Directory',
19451   'version' => '6.38-dev',
19452 ))
19453 ->values(array(
19454   'lid' => '1234',
19455   'location' => '/?q=fr/admin',
19456   'textgroup' => 'default',
19457   'source' => '%p is not a directory or is not readable by the webserver.',
19458   'version' => '6.38-dev',
19459 ))
19460 ->values(array(
19461   'lid' => '1235',
19462   'location' => '/?q=fr/admin',
19463   'textgroup' => 'default',
19464   'source' => 'One or more problems were detected with your Drupal installation. Check the <a href="@status">status report</a> for more information.',
19465   'version' => '6.38-dev',
19466 ))
19467 ->values(array(
19468   'lid' => '1236',
19469   'location' => '/?q=fr/admin',
19470   'textgroup' => 'default',
19471   'source' => 'Comments',
19472   'version' => '6.38-dev',
19473 ))
19474 ->values(array(
19475   'lid' => '1237',
19476   'location' => '/?q=fr/admin',
19477   'textgroup' => 'default',
19478   'source' => 'List and edit site comments and the comment moderation queue.',
19479   'version' => '6.38-dev',
19480 ))
19481 ->values(array(
19482   'lid' => '1238',
19483   'location' => '/?q=fr/admin',
19484   'textgroup' => 'default',
19485   'source' => "View, edit, and delete your site's content.",
19486   'version' => '6.38-dev',
19487 ))
19488 ->values(array(
19489   'lid' => '1239',
19490   'location' => '/?q=fr/admin',
19491   'textgroup' => 'default',
19492   'source' => 'Manage posts by content type, including default status, front page promotion, etc.',
19493   'version' => '6.38-dev',
19494 ))
19495 ->values(array(
19496   'lid' => '1240',
19497   'location' => '/?q=fr/admin',
19498   'textgroup' => 'default',
19499   'source' => 'Post settings',
19500   'version' => '6.38-dev',
19501 ))
19502 ->values(array(
19503   'lid' => '1241',
19504   'location' => '/?q=fr/admin',
19505   'textgroup' => 'default',
19506   'source' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
19507   'version' => '6.38-dev',
19508 ))
19509 ->values(array(
19510   'lid' => '1242',
19511   'location' => '/?q=fr/admin',
19512   'textgroup' => 'default',
19513   'source' => 'RSS publishing',
19514   'version' => '6.38-dev',
19515 ))
19516 ->values(array(
19517   'lid' => '1243',
19518   'location' => '/?q=fr/admin',
19519   'textgroup' => 'default',
19520   'source' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
19521   'version' => '6.38-dev',
19522 ))
19523 ->values(array(
19524   'lid' => '1244',
19525   'location' => '/?q=fr/admin',
19526   'textgroup' => 'default',
19527   'source' => 'Manage tagging, categorization, and classification of your content.',
19528   'version' => '6.38-dev',
19529 ))
19530 ->values(array(
19531   'lid' => '1245',
19532   'location' => '/?q=fr/admin',
19533   'textgroup' => 'default',
19534   'source' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
19535   'version' => '6.38-dev',
19536 ))
19537 ->values(array(
19538   'lid' => '1246',
19539   'location' => '/?q=fr/admin',
19540   'textgroup' => 'default',
19541   'source' => "Manage your site's book outlines.",
19542   'version' => '6.38-dev',
19543 ))
19544 ->values(array(
19545   'lid' => '1247',
19546   'location' => '/?q=fr/admin',
19547   'textgroup' => 'default',
19548   'source' => 'Status report',
19549   'version' => '6.38-dev',
19550 ))
19551 ->values(array(
19552   'lid' => '1248',
19553   'location' => '/?q=fr/admin',
19554   'textgroup' => 'default',
19555   'source' => "Get a status report about your site's operation and any detected problems.",
19556   'version' => '6.38-dev',
19557 ))
19558 ->values(array(
19559   'lid' => '1249',
19560   'location' => '/?q=fr/admin',
19561   'textgroup' => 'default',
19562   'source' => "Configure what block content appears in your site's sidebars and other regions.",
19563   'version' => '6.38-dev',
19564 ))
19565 ->values(array(
19566   'lid' => '1250',
19567   'location' => '/?q=fr/admin',
19568   'textgroup' => 'default',
19569   'source' => 'Contact form',
19570   'version' => '6.38-dev',
19571 ))
19572 ->values(array(
19573   'lid' => '1251',
19574   'location' => '/?q=fr/admin',
19575   'textgroup' => 'default',
19576   'source' => 'Create a system contact form and set up categories for the form to use.',
19577   'version' => '6.38-dev',
19578 ))
19579 ->values(array(
19580   'lid' => '1252',
19581   'location' => '/?q=fr/admin',
19582   'textgroup' => 'default',
19583   'source' => 'Menus',
19584   'version' => '6.38-dev',
19585 ))
19586 ->values(array(
19587   'lid' => '1253',
19588   'location' => '/?q=fr/admin',
19589   'textgroup' => 'default',
19590   'source' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
19591   'version' => '6.38-dev',
19592 ))
19593 ->values(array(
19594   'lid' => '1254',
19595   'location' => '/?q=fr/admin',
19596   'textgroup' => 'default',
19597   'source' => 'Modules',
19598   'version' => '6.38-dev',
19599 ))
19600 ->values(array(
19601   'lid' => '1255',
19602   'location' => '/?q=fr/admin',
19603   'textgroup' => 'default',
19604   'source' => 'Enable or disable add-on modules for your site.',
19605   'version' => '6.38-dev',
19606 ))
19607 ->values(array(
19608   'lid' => '1256',
19609   'location' => '/?q=fr/admin',
19610   'textgroup' => 'default',
19611   'source' => 'Themes',
19612   'version' => '6.38-dev',
19613 ))
19614 ->values(array(
19615   'lid' => '1257',
19616   'location' => '/?q=fr/admin',
19617   'textgroup' => 'default',
19618   'source' => 'Change which theme your site uses or allows users to set.',
19619   'version' => '6.38-dev',
19620 ))
19621 ->values(array(
19622   'lid' => '1258',
19623   'location' => '/?q=fr/admin',
19624   'textgroup' => 'default',
19625   'source' => 'URL aliases',
19626   'version' => '6.38-dev',
19627 ))
19628 ->values(array(
19629   'lid' => '1259',
19630   'location' => '/?q=fr/admin',
19631   'textgroup' => 'default',
19632   'source' => "Change your site's URL paths by aliasing them.",
19633   'version' => '6.38-dev',
19634 ))
19635 ->values(array(
19636   'lid' => '1260',
19637   'location' => '/?q=fr/admin',
19638   'textgroup' => 'default',
19639   'source' => 'Translate interface',
19640   'version' => '6.38-dev',
19641 ))
19642 ->values(array(
19643   'lid' => '1261',
19644   'location' => '/?q=fr/admin',
19645   'textgroup' => 'default',
19646   'source' => 'Translate the built in interface and optionally other text.',
19647   'version' => '6.38-dev',
19648 ))
19649 ->values(array(
19650   'lid' => '1262',
19651   'location' => '/?q=fr/admin',
19652   'textgroup' => 'default',
19653   'source' => 'Hide descriptions',
19654   'version' => '6.38-dev',
19655 ))
19656 ->values(array(
19657   'lid' => '1263',
19658   'location' => '/?q=fr/admin',
19659   'textgroup' => 'default',
19660   'source' => 'Compress layout by hiding descriptions.',
19661   'version' => '6.38-dev',
19662 ))
19663 ->values(array(
19664   'lid' => '1264',
19665   'location' => '/?q=fr/admin',
19666   'textgroup' => 'default',
19667   'source' => 'By task',
19668   'version' => '6.38-dev',
19669 ))
19670 ->values(array(
19671   'lid' => '1265',
19672   'location' => '/?q=fr/admin',
19673   'textgroup' => 'default',
19674   'source' => 'By module',
19675   'version' => '6.38-dev',
19676 ))
19677 ->values(array(
19678   'lid' => '1266',
19679   'location' => '/?q=fr/admin',
19680   'textgroup' => 'default',
19681   'source' => 'Welcome to the administration section. Here you may control how your site functions.',
19682   'version' => '6.38-dev',
19683 ))
19684 ->values(array(
19685   'lid' => '1267',
19686   'location' => '/?q=fr/admin/by-module',
19687   'textgroup' => 'default',
19688   'source' => 'Configure permissions',
19689   'version' => '6.38-dev',
19690 ))
19691 ->values(array(
19692   'lid' => '1268',
19693   'location' => '/?q=fr/admin/by-module',
19694   'textgroup' => 'default',
19695   'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.',
19696   'version' => '6.38-dev',
19697 ))
19698 ->values(array(
19699   'lid' => '1269',
19700   'location' => '/?q=fr/admin/by-module',
19701   'textgroup' => 'default',
19702   'source' => 'Store a date in the database as a timestamp, deprecated format to suppport legacy data.',
19703   'version' => '6.38-dev',
19704 ))
19705 ->values(array(
19706   'lid' => '1270',
19707   'location' => '/?q=fr/admin/by-module',
19708   'textgroup' => 'default',
19709   'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.',
19710   'version' => '6.38-dev',
19711 ))
19712 ->values(array(
19713   'lid' => '1271',
19714   'location' => '/?q=fr/admin/by-module',
19715   'textgroup' => 'default',
19716   'source' => 'File',
19717   'version' => '6.38-dev',
19718 ))
19719 ->values(array(
19720   'lid' => '1272',
19721   'location' => '/?q=fr/admin/by-module',
19722   'textgroup' => 'default',
19723   'source' => 'Store an arbitrary file.',
19724   'version' => '6.38-dev',
19725 ))
19726 ->values(array(
19727   'lid' => '1273',
19728   'location' => '/?q=fr/admin/by-module',
19729   'textgroup' => 'default',
19730   'source' => 'Link',
19731   'version' => '6.38-dev',
19732 ))
19733 ->values(array(
19734   'lid' => '1274',
19735   'location' => '/?q=fr/admin/by-module',
19736   'textgroup' => 'default',
19737   'source' => 'Store a title, href, and attributes in the database to assemble a link.',
19738   'version' => '6.38-dev',
19739 ))
19740 ->values(array(
19741   'lid' => '1275',
19742   'location' => '/?q=fr/admin/by-module',
19743   'textgroup' => 'default',
19744   'source' => 'Phone Numbers - France',
19745   'version' => '6.38-dev',
19746 ))
19747 ->values(array(
19748   'lid' => '1276',
19749   'location' => '/?q=fr/admin/by-module',
19750   'textgroup' => 'default',
19751   'source' => 'Phone Numbers - Belgium',
19752   'version' => '6.38-dev',
19753 ))
19754 ->values(array(
19755   'lid' => '1277',
19756   'location' => '/?q=fr/admin/by-module',
19757   'textgroup' => 'default',
19758   'source' => 'Phone Numbers - Italy',
19759   'version' => '6.38-dev',
19760 ))
19761 ->values(array(
19762   'lid' => '1278',
19763   'location' => '/?q=fr/admin/by-module',
19764   'textgroup' => 'default',
19765   'source' => 'Phone Numbers - Greece',
19766   'version' => '6.38-dev',
19767 ))
19768 ->values(array(
19769   'lid' => '1279',
19770   'location' => '/?q=fr/admin/by-module',
19771   'textgroup' => 'default',
19772   'source' => 'Phone Numbers - Switzerland',
19773   'version' => '6.38-dev',
19774 ))
19775 ->values(array(
19776   'lid' => '1280',
19777   'location' => '/?q=fr/admin/by-module',
19778   'textgroup' => 'default',
19779   'source' => 'Phone Numbers - US & Canada',
19780   'version' => '6.38-dev',
19781 ))
19782 ->values(array(
19783   'lid' => '1281',
19784   'location' => '/?q=fr/admin/by-module',
19785   'textgroup' => 'default',
19786   'source' => 'Phone Numbers - Costa Rica',
19787   'version' => '6.38-dev',
19788 ))
19789 ->values(array(
19790   'lid' => '1282',
19791   'location' => '/?q=fr/admin/by-module',
19792   'textgroup' => 'default',
19793   'source' => 'Phone Numbers - Panama',
19794   'version' => '6.38-dev',
19795 ))
19796 ->values(array(
19797   'lid' => '1283',
19798   'location' => '/?q=fr/admin/by-module',
19799   'textgroup' => 'default',
19800   'source' => 'Phone Numbers - Great Britain - United Kingdom',
19801   'version' => '6.38-dev',
19802 ))
19803 ->values(array(
19804   'lid' => '1284',
19805   'location' => '/?q=fr/admin/by-module',
19806   'textgroup' => 'default',
19807   'source' => 'Phone Numbers - Russia',
19808   'version' => '6.38-dev',
19809 ))
19810 ->values(array(
19811   'lid' => '1285',
19812   'location' => '/?q=fr/admin/by-module',
19813   'textgroup' => 'default',
19814   'source' => 'Phone Numbers - Ukraine - in Kiev',
19815   'version' => '6.38-dev',
19816 ))
19817 ->values(array(
19818   'lid' => '1286',
19819   'location' => '/?q=fr/admin/by-module',
19820   'textgroup' => 'default',
19821   'source' => 'Phone Numbers - Spain',
19822   'version' => '6.38-dev',
19823 ))
19824 ->values(array(
19825   'lid' => '1287',
19826   'location' => '/?q=fr/admin/by-module',
19827   'textgroup' => 'default',
19828   'source' => 'Phone Numbers - Australia',
19829   'version' => '6.38-dev',
19830 ))
19831 ->values(array(
19832   'lid' => '1288',
19833   'location' => '/?q=fr/admin/by-module',
19834   'textgroup' => 'default',
19835   'source' => 'Phone Numbers - Czech Republic',
19836   'version' => '6.38-dev',
19837 ))
19838 ->values(array(
19839   'lid' => '1289',
19840   'location' => '/?q=fr/admin/by-module',
19841   'textgroup' => 'default',
19842   'source' => 'Phone Numbers - Hungary',
19843   'version' => '6.38-dev',
19844 ))
19845 ->values(array(
19846   'lid' => '1290',
19847   'location' => '/?q=fr/admin/by-module',
19848   'textgroup' => 'default',
19849   'source' => 'Phone Numbers - Poland - mobiles only',
19850   'version' => '6.38-dev',
19851 ))
19852 ->values(array(
19853   'lid' => '1291',
19854   'location' => '/?q=fr/admin/by-module',
19855   'textgroup' => 'default',
19856   'source' => 'Phone Numbers - Netherland',
19857   'version' => '6.38-dev',
19858 ))
19859 ->values(array(
19860   'lid' => '1292',
19861   'location' => '/?q=fr/admin/by-module',
19862   'textgroup' => 'default',
19863   'source' => 'Phone Numbers - Sweden',
19864   'version' => '6.38-dev',
19865 ))
19866 ->values(array(
19867   'lid' => '1293',
19868   'location' => '/?q=fr/admin/by-module',
19869   'textgroup' => 'default',
19870   'source' => 'Phone Numbers - South Africa',
19871   'version' => '6.38-dev',
19872 ))
19873 ->values(array(
19874   'lid' => '1294',
19875   'location' => '/?q=fr/admin/by-module',
19876   'textgroup' => 'default',
19877   'source' => 'Phone Numbers - Israel',
19878   'version' => '6.38-dev',
19879 ))
19880 ->values(array(
19881   'lid' => '1295',
19882   'location' => '/?q=fr/admin/by-module',
19883   'textgroup' => 'default',
19884   'source' => 'Phone Numbers - New Zealand',
19885   'version' => '6.38-dev',
19886 ))
19887 ->values(array(
19888   'lid' => '1296',
19889   'location' => '/?q=fr/admin/by-module',
19890   'textgroup' => 'default',
19891   'source' => 'Phone Numbers - Brazil',
19892   'version' => '6.38-dev',
19893 ))
19894 ->values(array(
19895   'lid' => '1297',
19896   'location' => '/?q=fr/admin/by-module',
19897   'textgroup' => 'default',
19898   'source' => 'Phone Numbers - Chile',
19899   'version' => '6.38-dev',
19900 ))
19901 ->values(array(
19902   'lid' => '1298',
19903   'location' => '/?q=fr/admin/by-module',
19904   'textgroup' => 'default',
19905   'source' => 'Phone Numbers - China',
19906   'version' => '6.38-dev',
19907 ))
19908 ->values(array(
19909   'lid' => '1299',
19910   'location' => '/?q=fr/admin/by-module',
19911   'textgroup' => 'default',
19912   'source' => 'Phone Numbers - Hong-Kong',
19913   'version' => '6.38-dev',
19914 ))
19915 ->values(array(
19916   'lid' => '1300',
19917   'location' => '/?q=fr/admin/by-module',
19918   'textgroup' => 'default',
19919   'source' => 'Phone Numbers - Macao',
19920   'version' => '6.38-dev',
19921 ))
19922 ->values(array(
19923   'lid' => '1301',
19924   'location' => '/?q=fr/admin/by-module',
19925   'textgroup' => 'default',
19926   'source' => 'Phone Numbers - The Philippines',
19927   'version' => '6.38-dev',
19928 ))
19929 ->values(array(
19930   'lid' => '1302',
19931   'location' => '/?q=fr/admin/by-module',
19932   'textgroup' => 'default',
19933   'source' => 'Phone Numbers - Singapore',
19934   'version' => '6.38-dev',
19935 ))
19936 ->values(array(
19937   'lid' => '1303',
19938   'location' => '/?q=fr/admin/by-module',
19939   'textgroup' => 'default',
19940   'source' => 'Phone Numbers - Jordan',
19941   'version' => '6.38-dev',
19942 ))
19943 ->values(array(
19944   'lid' => '1304',
19945   'location' => '/?q=fr/admin/by-module',
19946   'textgroup' => 'default',
19947   'source' => 'Phone Numbers - Egypt',
19948   'version' => '6.38-dev',
19949 ))
19950 ->values(array(
19951   'lid' => '1305',
19952   'location' => '/?q=fr/admin/by-module',
19953   'textgroup' => 'default',
19954   'source' => 'Phone Numbers - Pakistan',
19955   'version' => '6.38-dev',
19956 ))
19957 ->values(array(
19958   'lid' => '1306',
19959   'location' => '/?q=fr/admin/by-module',
19960   'textgroup' => 'default',
19961   'source' => 'Phone Numbers - International Phone Numbers per E.123',
19962   'version' => '6.38-dev',
19963 ))
19964 ->values(array(
19965   'lid' => '1307',
19966   'location' => '/?q=fr/admin/by-module',
19967   'textgroup' => 'default',
19968   'source' => 'Select List',
19969   'version' => '6.38-dev',
19970 ))
19971 ->values(array(
19972   'lid' => '1308',
19973   'location' => '/?q=fr/admin/by-module',
19974   'textgroup' => 'default',
19975   'source' => 'Select List with Repeat options',
19976   'version' => '6.38-dev',
19977 ))
19978 ->values(array(
19979   'lid' => '1309',
19980   'location' => '/?q=fr/admin/by-module',
19981   'textgroup' => 'default',
19982   'source' => 'Text Field with custom input format',
19983   'version' => '6.38-dev',
19984 ))
19985 ->values(array(
19986   'lid' => '1310',
19987   'location' => '/?q=fr/admin/by-module',
19988   'textgroup' => 'default',
19989   'source' => 'Text Field with Repeat options',
19990   'version' => '6.38-dev',
19991 ))
19992 ->values(array(
19993   'lid' => '1311',
19994   'location' => '/?q=fr/admin/by-module',
19995   'textgroup' => 'default',
19996   'source' => 'As Time Ago',
19997   'version' => '6.38-dev',
19998 ))
19999 ->values(array(
20000   'lid' => '1312',
20001   'location' => '/?q=fr/admin/by-module',
20002   'textgroup' => 'default',
20003   'source' => 'Default email link',
20004   'version' => '6.38-dev',
20005 ))
20006 ->values(array(
20007   'lid' => '1313',
20008   'location' => '/?q=fr/admin/by-module',
20009   'textgroup' => 'default',
20010   'source' => 'Email contact form',
20011   'version' => '6.38-dev',
20012 ))
20013 ->values(array(
20014   'lid' => '1314',
20015   'location' => '/?q=fr/admin/by-module',
20016   'textgroup' => 'default',
20017   'source' => 'Email plain text',
20018   'version' => '6.38-dev',
20019 ))
20020 ->values(array(
20021   'lid' => '1315',
20022   'location' => '/?q=fr/admin/by-module',
20023   'textgroup' => 'default',
20024   'source' => 'File Upload',
20025   'version' => '6.38-dev',
20026 ))
20027 ->values(array(
20028   'lid' => '1316',
20029   'location' => '/?q=fr/admin/by-module',
20030   'textgroup' => 'default',
20031   'source' => 'A plain file upload widget.',
20032   'version' => '6.38-dev',
20033 ))
20034 ->values(array(
20035   'lid' => '1317',
20036   'location' => '/?q=fr/admin/by-module',
20037   'textgroup' => 'default',
20038   'source' => 'Generic files',
20039   'version' => '6.38-dev',
20040 ))
20041 ->values(array(
20042   'lid' => '1318',
20043   'location' => '/?q=fr/admin/by-module',
20044   'textgroup' => 'default',
20045   'source' => 'Displays all kinds of files with an icon and a linked file description.',
20046   'version' => '6.38-dev',
20047 ))
20048 ->values(array(
20049   'lid' => '1319',
20050   'location' => '/?q=fr/admin/by-module',
20051   'textgroup' => 'default',
20052   'source' => 'Path to file',
20053   'version' => '6.38-dev',
20054 ))
20055 ->values(array(
20056   'lid' => '1320',
20057   'location' => '/?q=fr/admin/by-module',
20058   'textgroup' => 'default',
20059   'source' => 'Displays the file system path to the file.',
20060   'version' => '6.38-dev',
20061 ))
20062 ->values(array(
20063   'lid' => '1321',
20064   'location' => '/?q=fr/admin/by-module',
20065   'textgroup' => 'default',
20066   'source' => 'URL to file',
20067   'version' => '6.38-dev',
20068 ))
20069 ->values(array(
20070   'lid' => '1322',
20071   'location' => '/?q=fr/admin/by-module',
20072   'textgroup' => 'default',
20073   'source' => 'Displays a full URL to the file.',
20074   'version' => '6.38-dev',
20075 ))
20076 ->values(array(
20077   'lid' => '1323',
20078   'location' => '/?q=fr/admin/by-module',
20079   'textgroup' => 'default',
20080   'source' => '@preset image',
20081   'version' => '6.38-dev',
20082 ))
20083 ->values(array(
20084   'lid' => '1324',
20085   'location' => '/?q=fr/admin/by-module',
20086   'textgroup' => 'default',
20087   'source' => '@preset image linked to node',
20088   'version' => '6.38-dev',
20089 ))
20090 ->values(array(
20091   'lid' => '1325',
20092   'location' => '/?q=fr/admin/by-module',
20093   'textgroup' => 'default',
20094   'source' => '@preset image linked to image',
20095   'version' => '6.38-dev',
20096 ))
20097 ->values(array(
20098   'lid' => '1326',
20099   'location' => '/?q=fr/admin/by-module',
20100   'textgroup' => 'default',
20101   'source' => '@preset file path',
20102   'version' => '6.38-dev',
20103 ))
20104 ->values(array(
20105   'lid' => '1327',
20106   'location' => '/?q=fr/admin/by-module',
20107   'textgroup' => 'default',
20108   'source' => '@preset URL',
20109   'version' => '6.38-dev',
20110 ))
20111 ->values(array(
20112   'lid' => '1328',
20113   'location' => '/?q=fr/admin/by-module',
20114   'textgroup' => 'default',
20115   'source' => 'Image',
20116   'version' => '6.38-dev',
20117 ))
20118 ->values(array(
20119   'lid' => '1329',
20120   'location' => '/?q=fr/admin/by-module',
20121   'textgroup' => 'default',
20122   'source' => 'An edit widget for image files, including a preview of the image.',
20123   'version' => '6.38-dev',
20124 ))
20125 ->values(array(
20126   'lid' => '1330',
20127   'location' => '/?q=fr/admin/by-module',
20128   'textgroup' => 'default',
20129   'source' => 'Displays image files in their original size.',
20130   'version' => '6.38-dev',
20131 ))
20132 ->values(array(
20133   'lid' => '1331',
20134   'location' => '/?q=fr/admin/by-module',
20135   'textgroup' => 'default',
20136   'source' => 'Image linked to node',
20137   'version' => '6.38-dev',
20138 ))
20139 ->values(array(
20140   'lid' => '1332',
20141   'location' => '/?q=fr/admin/by-module',
20142   'textgroup' => 'default',
20143   'source' => 'Image linked to file',
20144   'version' => '6.38-dev',
20145 ))
20146 ->values(array(
20147   'lid' => '1333',
20148   'location' => '/?q=fr/admin/by-module',
20149   'textgroup' => 'default',
20150   'source' => 'Title, as link (default)',
20151   'version' => '6.38-dev',
20152 ))
20153 ->values(array(
20154   'lid' => '1334',
20155   'location' => '/?q=fr/admin/by-module',
20156   'textgroup' => 'default',
20157   'source' => 'Title, as plain text',
20158   'version' => '6.38-dev',
20159 ))
20160 ->values(array(
20161   'lid' => '1335',
20162   'location' => '/?q=fr/admin/by-module',
20163   'textgroup' => 'default',
20164   'source' => 'URL, as link',
20165   'version' => '6.38-dev',
20166 ))
20167 ->values(array(
20168   'lid' => '1336',
20169   'location' => '/?q=fr/admin/by-module',
20170   'textgroup' => 'default',
20171   'source' => 'URL, as plain text',
20172   'version' => '6.38-dev',
20173 ))
20174 ->values(array(
20175   'lid' => '1337',
20176   'location' => '/?q=fr/admin/by-module',
20177   'textgroup' => 'default',
20178   'source' => 'URL, as absolute URL',
20179   'version' => '6.38-dev',
20180 ))
20181 ->values(array(
20182   'lid' => '1338',
20183   'location' => '/?q=fr/admin/by-module',
20184   'textgroup' => 'default',
20185   'source' => 'Short, as link with title "Link"',
20186   'version' => '6.38-dev',
20187 ))
20188 ->values(array(
20189   'lid' => '1339',
20190   'location' => '/?q=fr/admin/by-module',
20191   'textgroup' => 'default',
20192   'source' => 'Label, as link with label as title',
20193   'version' => '6.38-dev',
20194 ))
20195 ->values(array(
20196   'lid' => '1340',
20197   'location' => '/?q=fr/admin/by-module',
20198   'textgroup' => 'default',
20199   'source' => 'Separate title and URL',
20200   'version' => '6.38-dev',
20201 ))
20202 ->values(array(
20203   'lid' => '1341',
20204   'location' => '/?q=fr/admin/by-module',
20205   'textgroup' => 'default',
20206   'source' => 'Textfield',
20207   'version' => '6.38-dev',
20208 ))
20209 ->values(array(
20210   'lid' => '1342',
20211   'location' => '/?q=fr/admin/by-module',
20212   'textgroup' => 'default',
20213   'source' => 'Revision information',
20214   'version' => '6.38-dev',
20215 ))
20216 ->values(array(
20217   'lid' => '1343',
20218   'location' => '/?q=fr/admin/by-module',
20219   'textgroup' => 'default',
20220   'source' => 'Authoring information',
20221   'version' => '6.38-dev',
20222 ))
20223 ->values(array(
20224   'lid' => '1344',
20225   'location' => '/?q=fr/admin/by-module',
20226   'textgroup' => 'default',
20227   'source' => 'Publishing options',
20228   'version' => '6.38-dev',
20229 ))
20230 ->values(array(
20231   'lid' => '1345',
20232   'location' => '/?q=fr/admin/by-module',
20233   'textgroup' => 'default',
20234   'source' => 'Comment settings',
20235   'version' => '6.38-dev',
20236 ))
20237 ->values(array(
20238   'lid' => '1346',
20239   'location' => '/?q=fr/admin/by-module',
20240   'textgroup' => 'default',
20241   'source' => 'Comment module form.',
20242   'version' => '6.38-dev',
20243 ))
20244 ->values(array(
20245   'lid' => '1347',
20246   'location' => '/?q=fr/admin/by-module',
20247   'textgroup' => 'default',
20248   'source' => 'Translation settings',
20249   'version' => '6.38-dev',
20250 ))
20251 ->values(array(
20252   'lid' => '1348',
20253   'location' => '/?q=fr/admin/by-module',
20254   'textgroup' => 'default',
20255   'source' => 'Translation module form.',
20256   'version' => '6.38-dev',
20257 ))
20258 ->values(array(
20259   'lid' => '1349',
20260   'location' => '/?q=fr/admin/by-module',
20261   'textgroup' => 'default',
20262   'source' => 'Path settings',
20263   'version' => '6.38-dev',
20264 ))
20265 ->values(array(
20266   'lid' => '1350',
20267   'location' => '/?q=fr/admin/by-module',
20268   'textgroup' => 'default',
20269   'source' => 'Path module form.',
20270   'version' => '6.38-dev',
20271 ))
20272 ->values(array(
20273   'lid' => '1351',
20274   'location' => 'content.module:1897;1900,  fuzzy',
20275   'textgroup' => 'default',
20276   'source' => 'Print',
20277   'version' => '6.38-dev',
20278 ))
20279 ->values(array(
20280   'lid' => '1352',
20281   'location' => '/?q=fr/admin/by-module',
20282   'textgroup' => 'default',
20283   'source' => 'Account settings',
20284   'version' => '6.38-dev',
20285 ))
20286 ->values(array(
20287   'lid' => '1353',
20288   'location' => '/?q=fr/admin/by-module',
20289   'textgroup' => 'default',
20290   'source' => 'Aggregates syndicated content (RSS, RDF, and Atom feeds).',
20291   'version' => '6.38-dev',
20292 ))
20293 ->values(array(
20294   'lid' => '1354',
20295   'location' => '/?q=fr/admin/by-module',
20296   'textgroup' => 'default',
20297   'source' => 'Controls the boxes that are displayed around the main content.',
20298   'version' => '6.38-dev',
20299 ))
20300 ->values(array(
20301   'lid' => '1355',
20302   'location' => '/?q=fr/admin/by-module',
20303   'textgroup' => 'default',
20304   'source' => 'Allows users to structure site pages in a hierarchy or outline.',
20305   'version' => '6.38-dev',
20306 ))
20307 ->values(array(
20308   'lid' => '1356',
20309   'location' => '/?q=fr/admin/by-module',
20310   'textgroup' => 'default',
20311   'source' => 'Allows users to comment on and discuss published content.',
20312   'version' => '6.38-dev',
20313 ))
20314 ->values(array(
20315   'lid' => '1357',
20316   'location' => '/?q=fr/admin/by-module',
20317   'textgroup' => 'default',
20318   'source' => 'Enables the use of both personal and site-wide contact forms.',
20319   'version' => '6.38-dev',
20320 ))
20321 ->values(array(
20322   'lid' => '1358',
20323   'location' => '/?q=fr/admin/by-module',
20324   'textgroup' => 'default',
20325   'source' => 'Defines CCK date/time fields and widgets.',
20326   'version' => '6.38-dev',
20327 ))
20328 ->values(array(
20329   'lid' => '1359',
20330   'location' => '/?q=fr/admin/by-module',
20331   'textgroup' => 'default',
20332   'source' => 'Defines an email field type for cck',
20333   'version' => '6.38-dev',
20334 ))
20335 ->values(array(
20336   'lid' => '1360',
20337   'location' => '/?q=fr/admin/by-module',
20338   'textgroup' => 'default',
20339   'source' => 'Calendaring API, calendar display and export',
20340   'version' => '6.38-dev',
20341 ))
20342 ->values(array(
20343   'lid' => '1361',
20344   'location' => '/?q=fr/admin/by-module',
20345   'textgroup' => 'default',
20346   'source' => 'Handles the filtering of content in preparation for display.',
20347   'version' => '6.38-dev',
20348 ))
20349 ->values(array(
20350   'lid' => '1362',
20351   'location' => '/?q=fr/admin/by-module',
20352   'textgroup' => 'default',
20353   'source' => 'Extends Drupal support for multilingual features.',
20354   'version' => '6.38-dev',
20355 ))
20356 ->values(array(
20357   'lid' => '1363',
20358   'location' => '/?q=fr/admin/by-module',
20359   'textgroup' => 'default',
20360   'source' => 'ImageAPI supporting multiple toolkits.',
20361   'version' => '6.38-dev',
20362 ))
20363 ->values(array(
20364   'lid' => '1364',
20365   'location' => '/?q=fr/admin/by-module',
20366   'textgroup' => 'default',
20367   'source' => 'Dynamic image manipulator and cache.',
20368   'version' => '6.38-dev',
20369 ))
20370 ->values(array(
20371   'lid' => '1365',
20372   'location' => '/?q=fr/admin/by-module',
20373   'textgroup' => 'default',
20374   'source' => 'Adds language handling functionality and enables the translation of the user interface to languages other than English.',
20375   'version' => '6.38-dev',
20376 ))
20377 ->values(array(
20378   'lid' => '1366',
20379   'location' => '/?q=fr/admin/by-module',
20380   'textgroup' => 'default',
20381   'source' => 'Allows administrators to customize the site navigation menu.',
20382   'version' => '6.38-dev',
20383 ))
20384 ->values(array(
20385   'lid' => '1367',
20386   'location' => '/?q=fr/admin/by-module',
20387   'textgroup' => 'default',
20388   'source' => 'Allows content to be submitted to the site and displayed on pages.',
20389   'version' => '6.38-dev',
20390 ))
20391 ->values(array(
20392   'lid' => '1368',
20393   'location' => '/?q=fr/admin/by-module',
20394   'textgroup' => 'default',
20395   'source' => 'Allows users to rename URLs.',
20396   'version' => '6.38-dev',
20397 ))
20398 ->values(array(
20399   'lid' => '1369',
20400   'location' => '/?q=fr/admin/by-module',
20401   'textgroup' => 'default',
20402   'source' => 'Supports configurable user profiles.',
20403   'version' => '6.38-dev',
20404 ))
20405 ->values(array(
20406   'lid' => '1370',
20407   'location' => '/?q=fr/admin/by-module',
20408   'textgroup' => 'default',
20409   'source' => 'Handles general site configuration for administrators.',
20410   'version' => '6.38-dev',
20411 ))
20412 ->values(array(
20413   'lid' => '1371',
20414   'location' => '/?q=fr/admin/by-module',
20415   'textgroup' => 'default',
20416   'source' => 'Enables the categorization of content.',
20417   'version' => '6.38-dev',
20418 ))
20419 ->values(array(
20420   'lid' => '1372',
20421   'location' => '/?q=fr/admin/by-module',
20422   'textgroup' => 'default',
20423   'source' => 'Allows content to be translated into different languages.',
20424   'version' => '6.38-dev',
20425 ))
20426 ->values(array(
20427   'lid' => '1373',
20428   'location' => '/?q=fr/admin/by-module',
20429   'textgroup' => 'default',
20430   'source' => 'Allows users to upload and attach files to content.',
20431   'version' => '6.38-dev',
20432 ))
20433 ->values(array(
20434   'lid' => '1374',
20435   'location' => '/?q=fr/admin/by-module',
20436   'textgroup' => 'default',
20437   'source' => 'Manages the user registration and login system.',
20438   'version' => '6.38-dev',
20439 ))
20440 ->values(array(
20441   'lid' => '1375',
20442   'location' => '/?q=fr/admin/by-module',
20443   'textgroup' => 'default',
20444   'source' => 'Variable API - Admin UI',
20445   'version' => '6.38-dev',
20446 ))
20447 ->values(array(
20448   'lid' => '1376',
20449   'location' => '/?q=fr/admin/by-module',
20450   'textgroup' => 'default',
20451   'source' => 'This page shows you all available administration tasks for each module.',
20452   'version' => '6.38-dev',
20453 ))
20454 ->values(array(
20455   'lid' => '1377',
20456   'location' => 'field.php:102 number.module:82 text.module:80',
20457   'textgroup' => 'default',
20458   'source' => 'is equal to',
20459   'version' => 'none',
20460 ))
20461 ->values(array(
20462   'lid' => '1378',
20463   'location' => 'field.php:103 number.module:83 text.module:81',
20464   'textgroup' => 'default',
20465   'source' => 'is not equal to',
20466   'version' => 'none',
20467 ))
20468 ->values(array(
20469   'lid' => '1379',
20470   'location' => 'field.php:104 text.module:82',
20471   'textgroup' => 'default',
20472   'source' => 'matches the pattern',
20473   'version' => 'none',
20474 ))
20475 ->values(array(
20476   'lid' => '1380',
20477   'location' => 'content_admin.inc:25 content.module:119',
20478   'textgroup' => 'default',
20479   'source' => 'duplicate',
20480   'version' => 'none',
20481 ))
20482 ->values(array(
20483   'lid' => '1381',
20484   'location' => 'number.module:52,  text.module:55',
20485   'textgroup' => 'default',
20486   'source' => 'The possible values this field can contain. Any other values will result in an error. Enter one value per line.',
20487   'version' => 'none',
20488 ))
20489 ->values(array(
20490   'lid' => '1382',
20491   'location' => 'content.module:73',
20492   'textgroup' => 'default',
20493   'source' => 'add content type',
20494   'version' => 'none',
20495 ))
20496 ->values(array(
20497   'lid' => '1383',
20498   'location' => 'content.module:80',
20499   'textgroup' => 'default',
20500   'source' => 'fields',
20501   'version' => 'none',
20502 ))
20503 ->values(array(
20504   'lid' => '1384',
20505   'location' => 'content.module:164',
20506   'textgroup' => 'default',
20507   'source' => 'remove field',
20508   'version' => 'none',
20509 ))
20510 ->values(array(
20511   'lid' => '1385',
20512   'location' => 'nodereference.module:15',
20513   'textgroup' => 'default',
20514   'source' => 'Defines a field type for referencing one node from another. <em>Note: Requires content.module.</em>',
20515   'version' => 'none',
20516 ))
20517 ->values(array(
20518   'lid' => '1386',
20519   'location' => 'nodereference.module:26',
20520   'textgroup' => 'default',
20521   'source' => 'node reference autocomplete',
20522   'version' => 'none',
20523 ))
20524 ->values(array(
20525   'lid' => '1387',
20526   'location' => 'nodereference.module:204',
20527   'textgroup' => 'default',
20528   'source' => 'No post with that title exists.',
20529   'version' => 'none',
20530 ))
20531 ->values(array(
20532   'lid' => '1388',
20533   'location' => 'number.module:15',
20534   'textgroup' => 'default',
20535   'source' => 'Defines numeric field types. <em>Note: Requires content.module.</em>',
20536   'version' => 'none',
20537 ))
20538 ->values(array(
20539   'lid' => '1389',
20540   'location' => 'optionwidgets.module:15',
20541   'textgroup' => 'default',
20542   '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>',
20543   'version' => 'none',
20544 ))
20545 ->values(array(
20546   'lid' => '1390',
20547   'location' => 'text.module:15',
20548   'textgroup' => 'default',
20549   'source' => 'Defines simple text field types. <em>Note: Requires content.module.</em>',
20550   'version' => 'none',
20551 ))
20552 ->values(array(
20553   'lid' => '1391',
20554   'location' => 'userreference.module:15',
20555   'textgroup' => 'default',
20556   'source' => 'Defines a field type for referencing a user from a node. <em>Note: Requires content.module.</em>',
20557   'version' => 'none',
20558 ))
20559 ->values(array(
20560   'lid' => '1392',
20561   'location' => 'userreference.module:176',
20562   'textgroup' => 'default',
20563   'source' => 'Invalid user name.',
20564   'version' => 'none',
20565 ))
20566 ->values(array(
20567   'lid' => '1393',
20568   'location' => 'weburl.module:15',
20569   'textgroup' => 'default',
20570   'source' => 'Defines simple weburl field types. <em>Note: Requires content.module.</em>',
20571   'version' => 'none',
20572 ))
20573 ->values(array(
20574   'lid' => '1394',
20575   'location' => 'weburl.module:164;172',
20576   'textgroup' => 'default',
20577   'source' => 'Not a valid Web URL.',
20578   'version' => 'none',
20579 ))
20580 ->values(array(
20581   'lid' => '1395',
20582   'location' => 'weburl.module:0',
20583   'textgroup' => 'default',
20584   'source' => 'weburl',
20585   'version' => 'none',
20586 ))
20587 ->values(array(
20588   'lid' => '1396',
20589   'location' => 'content_admin.inc:90',
20590   'textgroup' => 'default',
20591   'source' => 'The human-readable name of this content type.',
20592   'version' => 'none',
20593 ))
20594 ->values(array(
20595   'lid' => '1397',
20596   'location' => 'content_admin.inc:98',
20597   'textgroup' => 'default',
20598   'source' => 'A brief description of the content type.',
20599   'version' => 'none',
20600 ))
20601 ->values(array(
20602   'lid' => '1398',
20603   'location' => 'content_admin.inc:106',
20604   'textgroup' => 'default',
20605   'source' => 'Instructions to present to the user when adding new content of this type.',
20606   'version' => 'none',
20607 ))
20608 ->values(array(
20609   'lid' => '1399',
20610   'location' => 'content_admin.inc:110',
20611   'textgroup' => 'default',
20612   'source' => 'Title field label',
20613   'version' => 'none',
20614 ))
20615 ->values(array(
20616   'lid' => '1400',
20617   'location' => 'content_admin.inc:113',
20618   'textgroup' => 'default',
20619   'source' => 'The label for the title field.',
20620   'version' => 'none',
20621 ))
20622 ->values(array(
20623   'lid' => '1401',
20624   'location' => 'content_admin.inc:118',
20625   'textgroup' => 'default',
20626   'source' => 'Save content type',
20627   'version' => 'none',
20628 ))
20629 ->values(array(
20630   'lid' => '1402',
20631   'location' => 'content_admin.inc:182',
20632   'textgroup' => 'default',
20633   'source' => 'Saved content type %type.',
20634   'version' => 'none',
20635 ))
20636 ->values(array(
20637   'lid' => '1403',
20638   'location' => 'content_admin.inc:198',
20639   'textgroup' => 'default',
20640   'source' => 'Are you sure you want to delete the content type %type?',
20641   'version' => 'none',
20642 ))
20643 ->values(array(
20644   'lid' => '1404',
20645   'location' => 'content_admin.inc:198',
20646   'textgroup' => 'default',
20647   'source' => 'If you have any content left in this content type, it will be permanently deleted. This action cannot be undone.',
20648   'version' => 'none',
20649 ))
20650 ->values(array(
20651   'lid' => '1405',
20652   'location' => 'content_admin.inc:220',
20653   'textgroup' => 'default',
20654   'source' => 'Deleted content type %type.',
20655   'version' => 'none',
20656 ))
20657 ->values(array(
20658   'lid' => '1406',
20659   'location' => 'content_admin.inc:251',
20660   'textgroup' => 'default',
20661   'source' => 'remove',
20662   'version' => 'none',
20663 ))
20664 ->values(array(
20665   'lid' => '1407',
20666   'location' => 'content_admin.inc:313',
20667   'textgroup' => 'default',
20668   'source' => 'The human-readable name of this field.',
20669   'version' => 'none',
20670 ))
20671 ->values(array(
20672   'lid' => '1408',
20673   'location' => 'content_admin.inc:326',
20674   'textgroup' => 'default',
20675   'source' => 'Create field',
20676   'version' => 'none',
20677 ))
20678 ->values(array(
20679   'lid' => '1409',
20680   'location' => 'content_admin.inc:335',
20681   'textgroup' => 'default',
20682   '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.',
20683   'version' => 'none',
20684 ))
20685 ->values(array(
20686   'lid' => '1410',
20687   'location' => 'content_admin.inc:487',
20688   'textgroup' => 'default',
20689   'source' => 'The field %field no longer exists in any content type, so it was deleted.',
20690   'version' => 'none',
20691 ))
20692 ->values(array(
20693   'lid' => '1411',
20694   'location' => 'content_admin.inc:522',
20695   'textgroup' => 'default',
20696   'source' => 'Widget settings',
20697   'version' => 'none',
20698 ))
20699 ->values(array(
20700   'lid' => '1412',
20701   'location' => 'content_admin.inc:526',
20702   'textgroup' => 'default',
20703   'source' => 'Widget',
20704   'version' => 'none',
20705 ))
20706 ->values(array(
20707   'lid' => '1413',
20708   'location' => 'content_admin.inc:541',
20709   'textgroup' => 'default',
20710   'source' => 'In the node editing form, the heavier fields will sink and the lighter fields will be positioned nearer the top.',
20711   'version' => 'none',
20712 ))
20713 ->values(array(
20714   'lid' => '1414',
20715   'location' => 'content_admin.inc:552',
20716   'textgroup' => 'default',
20717   'source' => 'Instructions to present to the user below this field on the editing form.',
20718   'version' => 'none',
20719 ))
20720 ->values(array(
20721   'lid' => '1415',
20722   'location' => 'content_admin.inc:569',
20723   'textgroup' => 'default',
20724   'source' => 'Data settings',
20725   'version' => 'none',
20726 ))
20727 ->values(array(
20728   'lid' => '1416',
20729   'location' => 'content_admin.inc:579',
20730   'textgroup' => 'default',
20731   'source' => 'Multiple values',
20732   'version' => 'none',
20733 ))
20734 ->values(array(
20735   'lid' => '1417',
20736   'location' => 'content_admin.inc:652',
20737   'textgroup' => 'default',
20738   'source' => 'Saved field %field.',
20739   'version' => 'none',
20740 ))
20741 ->values(array(
20742   'lid' => '1418',
20743   'location' => 'content_admin.inc:882;971',
20744   'textgroup' => 'default',
20745   'source' => 'No PostgreSQL mapping found for %type data type.',
20746   'version' => 'none',
20747 ))
20748 ->values(array(
20749   'lid' => '1419',
20750   'location' => 'content_admin.inc:896;985',
20751   'textgroup' => 'default',
20752   'source' => 'database',
20753   'version' => 'none',
20754 ))
20755 ->values(array(
20756   'lid' => '1420',
20757   'location' => 'date.module:15',
20758   'textgroup' => 'default',
20759   'source' => 'Defines a date/time field type. <em>Note: Requires content.module.</em>',
20760   'version' => 'none',
20761 ))
20762 ->values(array(
20763   'lid' => '1421',
20764   'location' => 'date.module:36',
20765   'textgroup' => 'default',
20766   'source' => 'Year',
20767   'version' => 'none',
20768 ))
20769 ->values(array(
20770   'lid' => '1422',
20771   'location' => 'date.module:37',
20772   'textgroup' => 'default',
20773   'source' => 'Year and month',
20774   'version' => 'none',
20775 ))
20776 ->values(array(
20777   'lid' => '1423',
20778   'location' => 'date.module:40',
20779   'textgroup' => 'default',
20780   'source' => 'Time only',
20781   'version' => 'none',
20782 ))
20783 ->values(array(
20784   'lid' => '1424',
20785   'location' => 'date.module:44',
20786   'textgroup' => 'default',
20787   'source' => 'Granularity',
20788   'version' => 'none',
20789 ))
20790 ->values(array(
20791   'lid' => '1425',
20792   'location' => 'date.module:102',
20793   'textgroup' => 'default',
20794   'source' => "Times are entered and displayed with site's time zone",
20795   'version' => 'none',
20796 ))
20797 ->values(array(
20798   'lid' => '1426',
20799   'location' => 'date.module:103',
20800   'textgroup' => 'default',
20801   'source' => "Times are entered and displayed with user's time zone",
20802   'version' => 'none',
20803 ))
20804 ->values(array(
20805   'lid' => '1427',
20806   'location' => 'date.module:107',
20807   'textgroup' => 'default',
20808   'source' => 'Time zone handling',
20809   'version' => 'none',
20810 ))
20811 ->values(array(
20812   'lid' => '1428',
20813   'location' => 'date.module:153',
20814   'textgroup' => 'default',
20815   'source' => '%name must be entered in ISO 8601 format (YYYYMMDDThh:mm:ss).',
20816   'version' => 'none',
20817 ))
20818 ->values(array(
20819   'lid' => '1429',
20820   'location' => 'content.module:61',
20821   'textgroup' => 'default',
20822   'source' => 'content types',
20823   'version' => 'none',
20824 ))
20825 ->values(array(
20826   'lid' => '1430',
20827   'location' => 'content.module:67',
20828   'textgroup' => 'default',
20829   'source' => 'list',
20830   'version' => 'none',
20831 ))
20832 ->values(array(
20833   'lid' => '1431',
20834   'location' => 'modules/optionwidgets/optionwidgets.module:326',
20835   'textgroup' => 'default',
20836   'source' => '%name: this field cannot hold more than @count values.',
20837   'version' => 'none',
20838 ))
20839 ->values(array(
20840   'lid' => '1432',
20841   'location' => 'includes/panels/content_types/content_field.inc:37',
20842   'textgroup' => 'default',
20843   'source' => '@type: (@field_type) @field',
20844   'version' => 'none',
20845 ))
20846 ->values(array(
20847   'lid' => '1433',
20848   'location' => 'includes/panels/content_types/content_field.inc:44',
20849   'textgroup' => 'default',
20850   'source' => 'Field on the referenced node.',
20851   'version' => 'none',
20852 ))
20853 ->values(array(
20854   'lid' => '1434',
20855   'location' => 'includes/panels/content_types/content_field.inc:128',
20856   'textgroup' => 'default',
20857   'source' => 'Formatter',
20858   'version' => 'none',
20859 ))
20860 ->values(array(
20861   'lid' => '1435',
20862   'location' => 'includes/panels/content_types/content_field.inc:131',
20863   'textgroup' => 'default',
20864   'source' => 'Select a formatter.',
20865   'version' => 'none',
20866 ))
20867 ->values(array(
20868   'lid' => '1436',
20869   'location' => 'includes/panels/content_types/content_field.inc:147',
20870   'textgroup' => 'default',
20871   'source' => '"@s" field (@name)',
20872   'version' => 'none',
20873 ))
20874 ->values(array(
20875   'lid' => '1437',
20876   'location' => '/?q=zu/admin/settingsjhkjg',
20877   'textgroup' => 'default',
20878   'source' => 'Page not found',
20879   'version' => '6.38-dev',
20880 ))
20881 ->values(array(
20882   'lid' => '1438',
20883   'location' => '/?q=zu/admin/settingsjhkjg',
20884   'textgroup' => 'default',
20885   'source' => 'The requested page could not be found.',
20886   'version' => '6.38-dev',
20887 ))
20888 ->values(array(
20889   'lid' => '1439',
20890   'location' => '/?q=zu/admin/build/translate',
20891   'textgroup' => 'default',
20892   'source' => 'English (built-in)',
20893   'version' => '6.38-dev',
20894 ))
20895 ->values(array(
20896   'lid' => '1440',
20897   'location' => '/?q=zu/admin/build/translate',
20898   'textgroup' => 'default',
20899   'source' => 'n/a',
20900   'version' => '6.38-dev',
20901 ))
20902 ->values(array(
20903   'lid' => '1441',
20904   'location' => '/?q=zu/admin/build/translate',
20905   'textgroup' => 'default',
20906   'source' => 'Zulu',
20907   'version' => '6.38-dev',
20908 ))
20909 ->values(array(
20910   'lid' => '1442',
20911   'location' => '/?q=zu/admin/build/translate',
20912   'textgroup' => 'default',
20913   'source' => 'Overview',
20914   'version' => '6.38-dev',
20915 ))
20916 ->values(array(
20917   'lid' => '1443',
20918   'location' => '/?q=zu/admin/build/translate',
20919   'textgroup' => 'default',
20920   'source' => 'Refresh',
20921   'version' => '6.38-dev',
20922 ))
20923 ->values(array(
20924   'lid' => '1444',
20925   'location' => '/?q=zu/admin/build/translate',
20926   'textgroup' => 'default',
20927   '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.',
20928   'version' => '6.38-dev',
20929 ))
20930 ->values(array(
20931   'lid' => '1445',
20932   'location' => '/?q=zu/admin/build/translate',
20933   'textgroup' => 'default',
20934   'source' => 'Review the <a href="@languages">languages page</a> for more information on adding support for additional languages.',
20935   'version' => '6.38-dev',
20936 ))
20937 ->values(array(
20938   'lid' => '1446',
20939   'location' => '/?q=zu/admin/build/translate/search',
20940   'textgroup' => 'default',
20941   'source' => 'English',
20942   'version' => '6.38-dev',
20943 ))
20944 ->values(array(
20945   'lid' => '1447',
20946   'location' => '/?q=zu/admin/build/translate/search',
20947   'textgroup' => 'default',
20948   'source' => 'String contains',
20949   'version' => '6.38-dev',
20950 ))
20951 ->values(array(
20952   'lid' => '1448',
20953   'location' => '/?q=zu/admin/build/translate/search',
20954   'textgroup' => 'default',
20955   'source' => 'Leave blank to show all strings. The search is case sensitive.',
20956   'version' => '6.38-dev',
20957 ))
20958 ->values(array(
20959   'lid' => '1449',
20960   'location' => '/?q=zu/admin/build/translate/search',
20961   'textgroup' => 'default',
20962   'source' => 'All languages',
20963   'version' => '6.38-dev',
20964 ))
20965 ->values(array(
20966   'lid' => '1450',
20967   'location' => '/?q=zu/admin/build/translate/search',
20968   'textgroup' => 'default',
20969   'source' => 'English (provided by Drupal)',
20970   'version' => '6.38-dev',
20971 ))
20972 ->values(array(
20973   'lid' => '1451',
20974   'location' => '/?q=zu/admin/build/translate/search',
20975   'textgroup' => 'default',
20976   'source' => 'Search in',
20977   'version' => '6.38-dev',
20978 ))
20979 ->values(array(
20980   'lid' => '1452',
20981   'location' => '/?q=zu/admin/build/translate/search',
20982   'textgroup' => 'default',
20983   'source' => 'Both translated and untranslated strings',
20984   'version' => '6.38-dev',
20985 ))
20986 ->values(array(
20987   'lid' => '1453',
20988   'location' => '/?q=zu/admin/build/translate/search',
20989   'textgroup' => 'default',
20990   'source' => 'Only translated strings',
20991   'version' => '6.38-dev',
20992 ))
20993 ->values(array(
20994   'lid' => '1454',
20995   'location' => '/?q=zu/admin/build/translate/search',
20996   'textgroup' => 'default',
20997   'source' => 'Only untranslated strings',
20998   'version' => '6.38-dev',
20999 ))
21000 ->values(array(
21001   'lid' => '1455',
21002   'location' => '/?q=zu/admin/build/translate/search',
21003   'textgroup' => 'default',
21004   'source' => 'Limit search to',
21005   'version' => '6.38-dev',
21006 ))
21007 ->values(array(
21008   'lid' => '1456',
21009   'location' => '/?q=zu/admin/build/translate/search',
21010   'textgroup' => 'default',
21011   'source' => 'All text groups',
21012   'version' => '6.38-dev',
21013 ))
21014 ->values(array(
21015   'lid' => '1457',
21016   'location' => '/?q=zu/admin/build/translate/search',
21017   'textgroup' => 'default',
21018   '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.',
21019   'version' => '6.38-dev',
21020 ))
21021 ->values(array(
21022   'lid' => '1458',
21023   'location' => '/?q=zu/admin/build/translate/import',
21024   'textgroup' => 'default',
21025   'source' => 'Already added languages',
21026   'version' => '6.38-dev',
21027 ))
21028 ->values(array(
21029   'lid' => '1459',
21030   'location' => '/?q=zu/admin/build/translate/import',
21031   'textgroup' => 'default',
21032   'source' => 'Languages not yet added',
21033   'version' => '6.38-dev',
21034 ))
21035 ->values(array(
21036   'lid' => '1460',
21037   'location' => '/?q=zu/admin/build/translate/import',
21038   'textgroup' => 'default',
21039   'source' => 'Afar',
21040   'version' => '6.38-dev',
21041 ))
21042 ->values(array(
21043   'lid' => '1461',
21044   'location' => '/?q=zu/admin/build/translate/import',
21045   'textgroup' => 'default',
21046   'source' => 'Abkhazian',
21047   'version' => '6.38-dev',
21048 ))
21049 ->values(array(
21050   'lid' => '1462',
21051   'location' => '/?q=zu/admin/build/translate/import',
21052   'textgroup' => 'default',
21053   'source' => 'Avestan',
21054   'version' => '6.38-dev',
21055 ))
21056 ->values(array(
21057   'lid' => '1463',
21058   'location' => '/?q=zu/admin/build/translate/import',
21059   'textgroup' => 'default',
21060   'source' => 'Afrikaans',
21061   'version' => '6.38-dev',
21062 ))
21063 ->values(array(
21064   'lid' => '1464',
21065   'location' => '/?q=zu/admin/build/translate/import',
21066   'textgroup' => 'default',
21067   'source' => 'Akan',
21068   'version' => '6.38-dev',
21069 ))
21070 ->values(array(
21071   'lid' => '1465',
21072   'location' => '/?q=zu/admin/build/translate/import',
21073   'textgroup' => 'default',
21074   'source' => 'Amharic',
21075   'version' => '6.38-dev',
21076 ))
21077 ->values(array(
21078   'lid' => '1466',
21079   'location' => '/?q=zu/admin/build/translate/import',
21080   'textgroup' => 'default',
21081   'source' => 'Arabic',
21082   'version' => '6.38-dev',
21083 ))
21084 ->values(array(
21085   'lid' => '1467',
21086   'location' => '/?q=zu/admin/build/translate/import',
21087   'textgroup' => 'default',
21088   'source' => 'Assamese',
21089   'version' => '6.38-dev',
21090 ))
21091 ->values(array(
21092   'lid' => '1468',
21093   'location' => '/?q=zu/admin/build/translate/import',
21094   'textgroup' => 'default',
21095   'source' => 'Avar',
21096   'version' => '6.38-dev',
21097 ))
21098 ->values(array(
21099   'lid' => '1469',
21100   'location' => '/?q=zu/admin/build/translate/import',
21101   'textgroup' => 'default',
21102   'source' => 'Aymara',
21103   'version' => '6.38-dev',
21104 ))
21105 ->values(array(
21106   'lid' => '1470',
21107   'location' => '/?q=zu/admin/build/translate/import',
21108   'textgroup' => 'default',
21109   'source' => 'Azerbaijani',
21110   'version' => '6.38-dev',
21111 ))
21112 ->values(array(
21113   'lid' => '1471',
21114   'location' => '/?q=zu/admin/build/translate/import',
21115   'textgroup' => 'default',
21116   'source' => 'Bashkir',
21117   'version' => '6.38-dev',
21118 ))
21119 ->values(array(
21120   'lid' => '1472',
21121   'location' => '/?q=zu/admin/build/translate/import',
21122   'textgroup' => 'default',
21123   'source' => 'Belarusian',
21124   'version' => '6.38-dev',
21125 ))
21126 ->values(array(
21127   'lid' => '1473',
21128   'location' => '/?q=zu/admin/build/translate/import',
21129   'textgroup' => 'default',
21130   'source' => 'Bulgarian',
21131   'version' => '6.38-dev',
21132 ))
21133 ->values(array(
21134   'lid' => '1474',
21135   'location' => '/?q=zu/admin/build/translate/import',
21136   'textgroup' => 'default',
21137   'source' => 'Bihari',
21138   'version' => '6.38-dev',
21139 ))
21140 ->values(array(
21141   'lid' => '1475',
21142   'location' => '/?q=zu/admin/build/translate/import',
21143   'textgroup' => 'default',
21144   'source' => 'Bislama',
21145   'version' => '6.38-dev',
21146 ))
21147 ->values(array(
21148   'lid' => '1476',
21149   'location' => '/?q=zu/admin/build/translate/import',
21150   'textgroup' => 'default',
21151   'source' => 'Bambara',
21152   'version' => '6.38-dev',
21153 ))
21154 ->values(array(
21155   'lid' => '1477',
21156   'location' => '/?q=zu/admin/build/translate/import',
21157   'textgroup' => 'default',
21158   'source' => 'Bengali',
21159   'version' => '6.38-dev',
21160 ))
21161 ->values(array(
21162   'lid' => '1478',
21163   'location' => '/?q=zu/admin/build/translate/import',
21164   'textgroup' => 'default',
21165   'source' => 'Tibetan',
21166   'version' => '6.38-dev',
21167 ))
21168 ->values(array(
21169   'lid' => '1479',
21170   'location' => '/?q=zu/admin/build/translate/import',
21171   'textgroup' => 'default',
21172   'source' => 'Breton',
21173   'version' => '6.38-dev',
21174 ))
21175 ->values(array(
21176   'lid' => '1480',
21177   'location' => '/?q=zu/admin/build/translate/import',
21178   'textgroup' => 'default',
21179   'source' => 'Bosnian',
21180   'version' => '6.38-dev',
21181 ))
21182 ->values(array(
21183   'lid' => '1481',
21184   'location' => '/?q=zu/admin/build/translate/import',
21185   'textgroup' => 'default',
21186   'source' => 'Catalan',
21187   'version' => '6.38-dev',
21188 ))
21189 ->values(array(
21190   'lid' => '1482',
21191   'location' => '/?q=zu/admin/build/translate/import',
21192   'textgroup' => 'default',
21193   'source' => 'Chechen',
21194   'version' => '6.38-dev',
21195 ))
21196 ->values(array(
21197   'lid' => '1483',
21198   'location' => '/?q=zu/admin/build/translate/import',
21199   'textgroup' => 'default',
21200   'source' => 'Chamorro',
21201   'version' => '6.38-dev',
21202 ))
21203 ->values(array(
21204   'lid' => '1484',
21205   'location' => '/?q=zu/admin/build/translate/import',
21206   'textgroup' => 'default',
21207   'source' => 'Corsican',
21208   'version' => '6.38-dev',
21209 ))
21210 ->values(array(
21211   'lid' => '1485',
21212   'location' => '/?q=zu/admin/build/translate/import',
21213   'textgroup' => 'default',
21214   'source' => 'Cree',
21215   'version' => '6.38-dev',
21216 ))
21217 ->values(array(
21218   'lid' => '1486',
21219   'location' => '/?q=zu/admin/build/translate/import',
21220   'textgroup' => 'default',
21221   'source' => 'Czech',
21222   'version' => '6.38-dev',
21223 ))
21224 ->values(array(
21225   'lid' => '1487',
21226   'location' => '/?q=zu/admin/build/translate/import',
21227   'textgroup' => 'default',
21228   'source' => 'Old Slavonic',
21229   'version' => '6.38-dev',
21230 ))
21231 ->values(array(
21232   'lid' => '1488',
21233   'location' => '/?q=zu/admin/build/translate/import',
21234   'textgroup' => 'default',
21235   'source' => 'Chuvash',
21236   'version' => '6.38-dev',
21237 ))
21238 ->values(array(
21239   'lid' => '1489',
21240   'location' => '/?q=zu/admin/build/translate/import',
21241   'textgroup' => 'default',
21242   'source' => 'Welsh',
21243   'version' => '6.38-dev',
21244 ))
21245 ->values(array(
21246   'lid' => '1490',
21247   'location' => '/?q=zu/admin/build/translate/import',
21248   'textgroup' => 'default',
21249   'source' => 'Danish',
21250   'version' => '6.38-dev',
21251 ))
21252 ->values(array(
21253   'lid' => '1491',
21254   'location' => '/?q=zu/admin/build/translate/import',
21255   'textgroup' => 'default',
21256   'source' => 'German',
21257   'version' => '6.38-dev',
21258 ))
21259 ->values(array(
21260   'lid' => '1492',
21261   'location' => '/?q=zu/admin/build/translate/import',
21262   'textgroup' => 'default',
21263   'source' => 'Maldivian',
21264   'version' => '6.38-dev',
21265 ))
21266 ->values(array(
21267   'lid' => '1493',
21268   'location' => '/?q=zu/admin/build/translate/import',
21269   'textgroup' => 'default',
21270   'source' => 'Bhutani',
21271   'version' => '6.38-dev',
21272 ))
21273 ->values(array(
21274   'lid' => '1494',
21275   'location' => '/?q=zu/admin/build/translate/import',
21276   'textgroup' => 'default',
21277   'source' => 'Ewe',
21278   'version' => '6.38-dev',
21279 ))
21280 ->values(array(
21281   'lid' => '1495',
21282   'location' => '/?q=zu/admin/build/translate/import',
21283   'textgroup' => 'default',
21284   'source' => 'Greek',
21285   'version' => '6.38-dev',
21286 ))
21287 ->values(array(
21288   'lid' => '1496',
21289   'location' => '/?q=zu/admin/build/translate/import',
21290   'textgroup' => 'default',
21291   'source' => 'Esperanto',
21292   'version' => '6.38-dev',
21293 ))
21294 ->values(array(
21295   'lid' => '1497',
21296   'location' => '/?q=zu/admin/build/translate/import',
21297   'textgroup' => 'default',
21298   'source' => 'Spanish',
21299   'version' => '6.38-dev',
21300 ))
21301 ->values(array(
21302   'lid' => '1498',
21303   'location' => '/?q=zu/admin/build/translate/import',
21304   'textgroup' => 'default',
21305   'source' => 'Estonian',
21306   'version' => '6.38-dev',
21307 ))
21308 ->values(array(
21309   'lid' => '1499',
21310   'location' => '/?q=zu/admin/build/translate/import',
21311   'textgroup' => 'default',
21312   'source' => 'Basque',
21313   'version' => '6.38-dev',
21314 ))
21315 ->values(array(
21316   'lid' => '1500',
21317   'location' => '/?q=zu/admin/build/translate/import',
21318   'textgroup' => 'default',
21319   'source' => 'Persian',
21320   'version' => '6.38-dev',
21321 ))
21322 ->values(array(
21323   'lid' => '1501',
21324   'location' => '/?q=zu/admin/build/translate/import',
21325   'textgroup' => 'default',
21326   'source' => 'Fulah',
21327   'version' => '6.38-dev',
21328 ))
21329 ->values(array(
21330   'lid' => '1502',
21331   'location' => '/?q=zu/admin/build/translate/import',
21332   'textgroup' => 'default',
21333   'source' => 'Finnish',
21334   'version' => '6.38-dev',
21335 ))
21336 ->values(array(
21337   'lid' => '1503',
21338   'location' => '/?q=zu/admin/build/translate/import',
21339   'textgroup' => 'default',
21340   'source' => 'Fiji',
21341   'version' => '6.38-dev',
21342 ))
21343 ->values(array(
21344   'lid' => '1504',
21345   'location' => '/?q=zu/admin/build/translate/import',
21346   'textgroup' => 'default',
21347   'source' => 'Faeroese',
21348   'version' => '6.38-dev',
21349 ))
21350 ->values(array(
21351   'lid' => '1505',
21352   'location' => '/?q=zu/admin/build/translate/import',
21353   'textgroup' => 'default',
21354   'source' => 'Frisian',
21355   'version' => '6.38-dev',
21356 ))
21357 ->values(array(
21358   'lid' => '1506',
21359   'location' => '/?q=zu/admin/build/translate/import',
21360   'textgroup' => 'default',
21361   'source' => 'Irish',
21362   'version' => '6.38-dev',
21363 ))
21364 ->values(array(
21365   'lid' => '1507',
21366   'location' => '/?q=zu/admin/build/translate/import',
21367   'textgroup' => 'default',
21368   'source' => 'Scots Gaelic',
21369   'version' => '6.38-dev',
21370 ))
21371 ->values(array(
21372   'lid' => '1508',
21373   'location' => '/?q=zu/admin/build/translate/import',
21374   'textgroup' => 'default',
21375   'source' => 'Galician',
21376   'version' => '6.38-dev',
21377 ))
21378 ->values(array(
21379   'lid' => '1509',
21380   'location' => '/?q=zu/admin/build/translate/import',
21381   'textgroup' => 'default',
21382   'source' => 'Guarani',
21383   'version' => '6.38-dev',
21384 ))
21385 ->values(array(
21386   'lid' => '1510',
21387   'location' => '/?q=zu/admin/build/translate/import',
21388   'textgroup' => 'default',
21389   'source' => 'Gujarati',
21390   'version' => '6.38-dev',
21391 ))
21392 ->values(array(
21393   'lid' => '1511',
21394   'location' => '/?q=zu/admin/build/translate/import',
21395   'textgroup' => 'default',
21396   'source' => 'Manx',
21397   'version' => '6.38-dev',
21398 ))
21399 ->values(array(
21400   'lid' => '1512',
21401   'location' => '/?q=zu/admin/build/translate/import',
21402   'textgroup' => 'default',
21403   'source' => 'Hausa',
21404   'version' => '6.38-dev',
21405 ))
21406 ->values(array(
21407   'lid' => '1513',
21408   'location' => '/?q=zu/admin/build/translate/import',
21409   'textgroup' => 'default',
21410   'source' => 'Hebrew',
21411   'version' => '6.38-dev',
21412 ))
21413 ->values(array(
21414   'lid' => '1514',
21415   'location' => '/?q=zu/admin/build/translate/import',
21416   'textgroup' => 'default',
21417   'source' => 'Hindi',
21418   'version' => '6.38-dev',
21419 ))
21420 ->values(array(
21421   'lid' => '1515',
21422   'location' => '/?q=zu/admin/build/translate/import',
21423   'textgroup' => 'default',
21424   'source' => 'Hiri Motu',
21425   'version' => '6.38-dev',
21426 ))
21427 ->values(array(
21428   'lid' => '1516',
21429   'location' => '/?q=zu/admin/build/translate/import',
21430   'textgroup' => 'default',
21431   'source' => 'Croatian',
21432   'version' => '6.38-dev',
21433 ))
21434 ->values(array(
21435   'lid' => '1517',
21436   'location' => '/?q=zu/admin/build/translate/import',
21437   'textgroup' => 'default',
21438   'source' => 'Hungarian',
21439   'version' => '6.38-dev',
21440 ))
21441 ->values(array(
21442   'lid' => '1518',
21443   'location' => '/?q=zu/admin/build/translate/import',
21444   'textgroup' => 'default',
21445   'source' => 'Armenian',
21446   'version' => '6.38-dev',
21447 ))
21448 ->values(array(
21449   'lid' => '1519',
21450   'location' => '/?q=zu/admin/build/translate/import',
21451   'textgroup' => 'default',
21452   'source' => 'Herero',
21453   'version' => '6.38-dev',
21454 ))
21455 ->values(array(
21456   'lid' => '1520',
21457   'location' => '/?q=zu/admin/build/translate/import',
21458   'textgroup' => 'default',
21459   'source' => 'Interlingua',
21460   'version' => '6.38-dev',
21461 ))
21462 ->values(array(
21463   'lid' => '1521',
21464   'location' => '/?q=zu/admin/build/translate/import',
21465   'textgroup' => 'default',
21466   'source' => 'Indonesian',
21467   'version' => '6.38-dev',
21468 ))
21469 ->values(array(
21470   'lid' => '1522',
21471   'location' => '/?q=zu/admin/build/translate/import',
21472   'textgroup' => 'default',
21473   'source' => 'Interlingue',
21474   'version' => '6.38-dev',
21475 ))
21476 ->values(array(
21477   'lid' => '1523',
21478   'location' => '/?q=zu/admin/build/translate/import',
21479   'textgroup' => 'default',
21480   'source' => 'Igbo',
21481   'version' => '6.38-dev',
21482 ))
21483 ->values(array(
21484   'lid' => '1524',
21485   'location' => '/?q=zu/admin/build/translate/import',
21486   'textgroup' => 'default',
21487   'source' => 'Inupiak',
21488   'version' => '6.38-dev',
21489 ))
21490 ->values(array(
21491   'lid' => '1525',
21492   'location' => '/?q=zu/admin/build/translate/import',
21493   'textgroup' => 'default',
21494   'source' => 'Icelandic',
21495   'version' => '6.38-dev',
21496 ))
21497 ->values(array(
21498   'lid' => '1526',
21499   'location' => '/?q=zu/admin/build/translate/import',
21500   'textgroup' => 'default',
21501   'source' => 'Italian',
21502   'version' => '6.38-dev',
21503 ))
21504 ->values(array(
21505   'lid' => '1527',
21506   'location' => '/?q=zu/admin/build/translate/import',
21507   'textgroup' => 'default',
21508   'source' => 'Inuktitut',
21509   'version' => '6.38-dev',
21510 ))
21511 ->values(array(
21512   'lid' => '1528',
21513   'location' => '/?q=zu/admin/build/translate/import',
21514   'textgroup' => 'default',
21515   'source' => 'Japanese',
21516   'version' => '6.38-dev',
21517 ))
21518 ->values(array(
21519   'lid' => '1529',
21520   'location' => '/?q=zu/admin/build/translate/import',
21521   'textgroup' => 'default',
21522   'source' => 'Javanese',
21523   'version' => '6.38-dev',
21524 ))
21525 ->values(array(
21526   'lid' => '1530',
21527   'location' => '/?q=zu/admin/build/translate/import',
21528   'textgroup' => 'default',
21529   'source' => 'Georgian',
21530   'version' => '6.38-dev',
21531 ))
21532 ->values(array(
21533   'lid' => '1531',
21534   'location' => '/?q=zu/admin/build/translate/import',
21535   'textgroup' => 'default',
21536   'source' => 'Kongo',
21537   'version' => '6.38-dev',
21538 ))
21539 ->values(array(
21540   'lid' => '1532',
21541   'location' => '/?q=zu/admin/build/translate/import',
21542   'textgroup' => 'default',
21543   'source' => 'Kikuyu',
21544   'version' => '6.38-dev',
21545 ))
21546 ->values(array(
21547   'lid' => '1533',
21548   'location' => '/?q=zu/admin/build/translate/import',
21549   'textgroup' => 'default',
21550   'source' => 'Kwanyama',
21551   'version' => '6.38-dev',
21552 ))
21553 ->values(array(
21554   'lid' => '1534',
21555   'location' => '/?q=zu/admin/build/translate/import',
21556   'textgroup' => 'default',
21557   'source' => 'Kazakh',
21558   'version' => '6.38-dev',
21559 ))
21560 ->values(array(
21561   'lid' => '1535',
21562   'location' => '/?q=zu/admin/build/translate/import',
21563   'textgroup' => 'default',
21564   'source' => 'Greenlandic',
21565   'version' => '6.38-dev',
21566 ))
21567 ->values(array(
21568   'lid' => '1536',
21569   'location' => '/?q=zu/admin/build/translate/import',
21570   'textgroup' => 'default',
21571   'source' => 'Cambodian',
21572   'version' => '6.38-dev',
21573 ))
21574 ->values(array(
21575   'lid' => '1537',
21576   'location' => '/?q=zu/admin/build/translate/import',
21577   'textgroup' => 'default',
21578   'source' => 'Kannada',
21579   'version' => '6.38-dev',
21580 ))
21581 ->values(array(
21582   'lid' => '1538',
21583   'location' => '/?q=zu/admin/build/translate/import',
21584   'textgroup' => 'default',
21585   'source' => 'Korean',
21586   'version' => '6.38-dev',
21587 ))
21588 ->values(array(
21589   'lid' => '1539',
21590   'location' => '/?q=zu/admin/build/translate/import',
21591   'textgroup' => 'default',
21592   'source' => 'Kanuri',
21593   'version' => '6.38-dev',
21594 ))
21595 ->values(array(
21596   'lid' => '1540',
21597   'location' => '/?q=zu/admin/build/translate/import',
21598   'textgroup' => 'default',
21599   'source' => 'Kashmiri',
21600   'version' => '6.38-dev',
21601 ))
21602 ->values(array(
21603   'lid' => '1541',
21604   'location' => '/?q=zu/admin/build/translate/import',
21605   'textgroup' => 'default',
21606   'source' => 'Kurdish',
21607   'version' => '6.38-dev',
21608 ))
21609 ->values(array(
21610   'lid' => '1542',
21611   'location' => '/?q=zu/admin/build/translate/import',
21612   'textgroup' => 'default',
21613   'source' => 'Komi',
21614   'version' => '6.38-dev',
21615 ))
21616 ->values(array(
21617   'lid' => '1543',
21618   'location' => '/?q=zu/admin/build/translate/import',
21619   'textgroup' => 'default',
21620   'source' => 'Cornish',
21621   'version' => '6.38-dev',
21622 ))
21623 ->values(array(
21624   'lid' => '1544',
21625   'location' => '/?q=zu/admin/build/translate/import',
21626   'textgroup' => 'default',
21627   'source' => 'Kirghiz',
21628   'version' => '6.38-dev',
21629 ))
21630 ->values(array(
21631   'lid' => '1545',
21632   'location' => '/?q=zu/admin/build/translate/import',
21633   'textgroup' => 'default',
21634   'source' => 'Latin',
21635   'version' => '6.38-dev',
21636 ))
21637 ->values(array(
21638   'lid' => '1546',
21639   'location' => '/?q=zu/admin/build/translate/import',
21640   'textgroup' => 'default',
21641   'source' => 'Luxembourgish',
21642   'version' => '6.38-dev',
21643 ))
21644 ->values(array(
21645   'lid' => '1547',
21646   'location' => '/?q=zu/admin/build/translate/import',
21647   'textgroup' => 'default',
21648   'source' => 'Luganda',
21649   'version' => '6.38-dev',
21650 ))
21651 ->values(array(
21652   'lid' => '1548',
21653   'location' => '/?q=zu/admin/build/translate/import',
21654   'textgroup' => 'default',
21655   'source' => 'Lingala',
21656   'version' => '6.38-dev',
21657 ))
21658 ->values(array(
21659   'lid' => '1549',
21660   'location' => '/?q=zu/admin/build/translate/import',
21661   'textgroup' => 'default',
21662   'source' => 'Laothian',
21663   'version' => '6.38-dev',
21664 ))
21665 ->values(array(
21666   'lid' => '1550',
21667   'location' => '/?q=zu/admin/build/translate/import',
21668   'textgroup' => 'default',
21669   'source' => 'Lithuanian',
21670   'version' => '6.38-dev',
21671 ))
21672 ->values(array(
21673   'lid' => '1551',
21674   'location' => '/?q=zu/admin/build/translate/import',
21675   'textgroup' => 'default',
21676   'source' => 'Latvian',
21677   'version' => '6.38-dev',
21678 ))
21679 ->values(array(
21680   'lid' => '1552',
21681   'location' => '/?q=zu/admin/build/translate/import',
21682   'textgroup' => 'default',
21683   'source' => 'Malagasy',
21684   'version' => '6.38-dev',
21685 ))
21686 ->values(array(
21687   'lid' => '1553',
21688   'location' => '/?q=zu/admin/build/translate/import',
21689   'textgroup' => 'default',
21690   'source' => 'Marshallese',
21691   'version' => '6.38-dev',
21692 ))
21693 ->values(array(
21694   'lid' => '1554',
21695   'location' => '/?q=zu/admin/build/translate/import',
21696   'textgroup' => 'default',
21697   'source' => 'Maori',
21698   'version' => '6.38-dev',
21699 ))
21700 ->values(array(
21701   'lid' => '1555',
21702   'location' => '/?q=zu/admin/build/translate/import',
21703   'textgroup' => 'default',
21704   'source' => 'Macedonian',
21705   'version' => '6.38-dev',
21706 ))
21707 ->values(array(
21708   'lid' => '1556',
21709   'location' => '/?q=zu/admin/build/translate/import',
21710   'textgroup' => 'default',
21711   'source' => 'Malayalam',
21712   'version' => '6.38-dev',
21713 ))
21714 ->values(array(
21715   'lid' => '1557',
21716   'location' => '/?q=zu/admin/build/translate/import',
21717   'textgroup' => 'default',
21718   'source' => 'Mongolian',
21719   'version' => '6.38-dev',
21720 ))
21721 ->values(array(
21722   'lid' => '1558',
21723   'location' => '/?q=zu/admin/build/translate/import',
21724   'textgroup' => 'default',
21725   'source' => 'Moldavian',
21726   'version' => '6.38-dev',
21727 ))
21728 ->values(array(
21729   'lid' => '1559',
21730   'location' => '/?q=zu/admin/build/translate/import',
21731   'textgroup' => 'default',
21732   'source' => 'Marathi',
21733   'version' => '6.38-dev',
21734 ))
21735 ->values(array(
21736   'lid' => '1560',
21737   'location' => '/?q=zu/admin/build/translate/import',
21738   'textgroup' => 'default',
21739   'source' => 'Malay',
21740   'version' => '6.38-dev',
21741 ))
21742 ->values(array(
21743   'lid' => '1561',
21744   'location' => '/?q=zu/admin/build/translate/import',
21745   'textgroup' => 'default',
21746   'source' => 'Maltese',
21747   'version' => '6.38-dev',
21748 ))
21749 ->values(array(
21750   'lid' => '1562',
21751   'location' => '/?q=zu/admin/build/translate/import',
21752   'textgroup' => 'default',
21753   'source' => 'Burmese',
21754   'version' => '6.38-dev',
21755 ))
21756 ->values(array(
21757   'lid' => '1563',
21758   'location' => '/?q=zu/admin/build/translate/import',
21759   'textgroup' => 'default',
21760   'source' => 'Nauru',
21761   'version' => '6.38-dev',
21762 ))
21763 ->values(array(
21764   'lid' => '1564',
21765   'location' => '/?q=zu/admin/build/translate/import',
21766   'textgroup' => 'default',
21767   'source' => 'North Ndebele',
21768   'version' => '6.38-dev',
21769 ))
21770 ->values(array(
21771   'lid' => '1565',
21772   'location' => '/?q=zu/admin/build/translate/import',
21773   'textgroup' => 'default',
21774   'source' => 'Nepali',
21775   'version' => '6.38-dev',
21776 ))
21777 ->values(array(
21778   'lid' => '1566',
21779   'location' => '/?q=zu/admin/build/translate/import',
21780   'textgroup' => 'default',
21781   'source' => 'Ndonga',
21782   'version' => '6.38-dev',
21783 ))
21784 ->values(array(
21785   'lid' => '1567',
21786   'location' => '/?q=zu/admin/build/translate/import',
21787   'textgroup' => 'default',
21788   'source' => 'Dutch',
21789   'version' => '6.38-dev',
21790 ))
21791 ->values(array(
21792   'lid' => '1568',
21793   'location' => '/?q=zu/admin/build/translate/import',
21794   'textgroup' => 'default',
21795   'source' => 'Norwegian BokmÃ¥l',
21796   'version' => '6.38-dev',
21797 ))
21798 ->values(array(
21799   'lid' => '1569',
21800   'location' => '/?q=zu/admin/build/translate/import',
21801   'textgroup' => 'default',
21802   'source' => 'Norwegian Nynorsk',
21803   'version' => '6.38-dev',
21804 ))
21805 ->values(array(
21806   'lid' => '1570',
21807   'location' => '/?q=zu/admin/build/translate/import',
21808   'textgroup' => 'default',
21809   'source' => 'South Ndebele',
21810   'version' => '6.38-dev',
21811 ))
21812 ->values(array(
21813   'lid' => '1571',
21814   'location' => '/?q=zu/admin/build/translate/import',
21815   'textgroup' => 'default',
21816   'source' => 'Navajo',
21817   'version' => '6.38-dev',
21818 ))
21819 ->values(array(
21820   'lid' => '1572',
21821   'location' => '/?q=zu/admin/build/translate/import',
21822   'textgroup' => 'default',
21823   'source' => 'Chichewa',
21824   'version' => '6.38-dev',
21825 ))
21826 ->values(array(
21827   'lid' => '1573',
21828   'location' => '/?q=zu/admin/build/translate/import',
21829   'textgroup' => 'default',
21830   'source' => 'Occitan',
21831   'version' => '6.38-dev',
21832 ))
21833 ->values(array(
21834   'lid' => '1574',
21835   'location' => '/?q=zu/admin/build/translate/import',
21836   'textgroup' => 'default',
21837   'source' => 'Oromo',
21838   'version' => '6.38-dev',
21839 ))
21840 ->values(array(
21841   'lid' => '1575',
21842   'location' => '/?q=zu/admin/build/translate/import',
21843   'textgroup' => 'default',
21844   'source' => 'Oriya',
21845   'version' => '6.38-dev',
21846 ))
21847 ->values(array(
21848   'lid' => '1576',
21849   'location' => '/?q=zu/admin/build/translate/import',
21850   'textgroup' => 'default',
21851   'source' => 'Ossetian',
21852   'version' => '6.38-dev',
21853 ))
21854 ->values(array(
21855   'lid' => '1577',
21856   'location' => '/?q=zu/admin/build/translate/import',
21857   'textgroup' => 'default',
21858   'source' => 'Punjabi',
21859   'version' => '6.38-dev',
21860 ))
21861 ->values(array(
21862   'lid' => '1578',
21863   'location' => '/?q=zu/admin/build/translate/import',
21864   'textgroup' => 'default',
21865   'source' => 'Pali',
21866   'version' => '6.38-dev',
21867 ))
21868 ->values(array(
21869   'lid' => '1579',
21870   'location' => '/?q=zu/admin/build/translate/import',
21871   'textgroup' => 'default',
21872   'source' => 'Polish',
21873   'version' => '6.38-dev',
21874 ))
21875 ->values(array(
21876   'lid' => '1580',
21877   'location' => '/?q=zu/admin/build/translate/import',
21878   'textgroup' => 'default',
21879   'source' => 'Pashto',
21880   'version' => '6.38-dev',
21881 ))
21882 ->values(array(
21883   'lid' => '1581',
21884   'location' => '/?q=zu/admin/build/translate/import',
21885   'textgroup' => 'default',
21886   'source' => 'Portuguese, Portugal',
21887   'version' => '6.38-dev',
21888 ))
21889 ->values(array(
21890   'lid' => '1582',
21891   'location' => '/?q=zu/admin/build/translate/import',
21892   'textgroup' => 'default',
21893   'source' => 'Portuguese, Brazil',
21894   'version' => '6.38-dev',
21895 ))
21896 ->values(array(
21897   'lid' => '1583',
21898   'location' => '/?q=zu/admin/build/translate/import',
21899   'textgroup' => 'default',
21900   'source' => 'Quechua',
21901   'version' => '6.38-dev',
21902 ))
21903 ->values(array(
21904   'lid' => '1584',
21905   'location' => '/?q=zu/admin/build/translate/import',
21906   'textgroup' => 'default',
21907   'source' => 'Rhaeto-Romance',
21908   'version' => '6.38-dev',
21909 ))
21910 ->values(array(
21911   'lid' => '1585',
21912   'location' => '/?q=zu/admin/build/translate/import',
21913   'textgroup' => 'default',
21914   'source' => 'Kirundi',
21915   'version' => '6.38-dev',
21916 ))
21917 ->values(array(
21918   'lid' => '1586',
21919   'location' => '/?q=zu/admin/build/translate/import',
21920   'textgroup' => 'default',
21921   'source' => 'Romanian',
21922   'version' => '6.38-dev',
21923 ))
21924 ->values(array(
21925   'lid' => '1587',
21926   'location' => '/?q=zu/admin/build/translate/import',
21927   'textgroup' => 'default',
21928   'source' => 'Russian',
21929   'version' => '6.38-dev',
21930 ))
21931 ->values(array(
21932   'lid' => '1588',
21933   'location' => '/?q=zu/admin/build/translate/import',
21934   'textgroup' => 'default',
21935   'source' => 'Kinyarwanda',
21936   'version' => '6.38-dev',
21937 ))
21938 ->values(array(
21939   'lid' => '1589',
21940   'location' => '/?q=zu/admin/build/translate/import',
21941   'textgroup' => 'default',
21942   'source' => 'Sanskrit',
21943   'version' => '6.38-dev',
21944 ))
21945 ->values(array(
21946   'lid' => '1590',
21947   'location' => '/?q=zu/admin/build/translate/import',
21948   'textgroup' => 'default',
21949   'source' => 'Sardinian',
21950   'version' => '6.38-dev',
21951 ))
21952 ->values(array(
21953   'lid' => '1591',
21954   'location' => '/?q=zu/admin/build/translate/import',
21955   'textgroup' => 'default',
21956   'source' => 'Sindhi',
21957   'version' => '6.38-dev',
21958 ))
21959 ->values(array(
21960   'lid' => '1592',
21961   'location' => '/?q=zu/admin/build/translate/import',
21962   'textgroup' => 'default',
21963   'source' => 'Northern Sami',
21964   'version' => '6.38-dev',
21965 ))
21966 ->values(array(
21967   'lid' => '1593',
21968   'location' => '/?q=zu/admin/build/translate/import',
21969   'textgroup' => 'default',
21970   'source' => 'Sango',
21971   'version' => '6.38-dev',
21972 ))
21973 ->values(array(
21974   'lid' => '1594',
21975   'location' => '/?q=zu/admin/build/translate/import',
21976   'textgroup' => 'default',
21977   'source' => 'Serbo-Croatian',
21978   'version' => '6.38-dev',
21979 ))
21980 ->values(array(
21981   'lid' => '1595',
21982   'location' => '/?q=zu/admin/build/translate/import',
21983   'textgroup' => 'default',
21984   'source' => 'Sinhala',
21985   'version' => '6.38-dev',
21986 ))
21987 ->values(array(
21988   'lid' => '1596',
21989   'location' => '/?q=zu/admin/build/translate/import',
21990   'textgroup' => 'default',
21991   'source' => 'Slovak',
21992   'version' => '6.38-dev',
21993 ))
21994 ->values(array(
21995   'lid' => '1597',
21996   'location' => '/?q=zu/admin/build/translate/import',
21997   'textgroup' => 'default',
21998   'source' => 'Slovenian',
21999   'version' => '6.38-dev',
22000 ))
22001 ->values(array(
22002   'lid' => '1598',
22003   'location' => '/?q=zu/admin/build/translate/import',
22004   'textgroup' => 'default',
22005   'source' => 'Samoan',
22006   'version' => '6.38-dev',
22007 ))
22008 ->values(array(
22009   'lid' => '1599',
22010   'location' => '/?q=zu/admin/build/translate/import',
22011   'textgroup' => 'default',
22012   'source' => 'Shona',
22013   'version' => '6.38-dev',
22014 ))
22015 ->values(array(
22016   'lid' => '1600',
22017   'location' => '/?q=zu/admin/build/translate/import',
22018   'textgroup' => 'default',
22019   'source' => 'Somali',
22020   'version' => '6.38-dev',
22021 ))
22022 ->values(array(
22023   'lid' => '1601',
22024   'location' => '/?q=zu/admin/build/translate/import',
22025   'textgroup' => 'default',
22026   'source' => 'Albanian',
22027   'version' => '6.38-dev',
22028 ))
22029 ->values(array(
22030   'lid' => '1602',
22031   'location' => '/?q=zu/admin/build/translate/import',
22032   'textgroup' => 'default',
22033   'source' => 'Serbian',
22034   'version' => '6.38-dev',
22035 ))
22036 ->values(array(
22037   'lid' => '1603',
22038   'location' => '/?q=zu/admin/build/translate/import',
22039   'textgroup' => 'default',
22040   'source' => 'Siswati',
22041   'version' => '6.38-dev',
22042 ))
22043 ->values(array(
22044   'lid' => '1604',
22045   'location' => '/?q=zu/admin/build/translate/import',
22046   'textgroup' => 'default',
22047   'source' => 'Sesotho',
22048   'version' => '6.38-dev',
22049 ))
22050 ->values(array(
22051   'lid' => '1605',
22052   'location' => '/?q=zu/admin/build/translate/import',
22053   'textgroup' => 'default',
22054   'source' => 'Sudanese',
22055   'version' => '6.38-dev',
22056 ))
22057 ->values(array(
22058   'lid' => '1606',
22059   'location' => '/?q=zu/admin/build/translate/import',
22060   'textgroup' => 'default',
22061   'source' => 'Swedish',
22062   'version' => '6.38-dev',
22063 ))
22064 ->values(array(
22065   'lid' => '1607',
22066   'location' => '/?q=zu/admin/build/translate/import',
22067   'textgroup' => 'default',
22068   'source' => 'Swahili',
22069   'version' => '6.38-dev',
22070 ))
22071 ->values(array(
22072   'lid' => '1608',
22073   'location' => '/?q=zu/admin/build/translate/import',
22074   'textgroup' => 'default',
22075   'source' => 'Tamil',
22076   'version' => '6.38-dev',
22077 ))
22078 ->values(array(
22079   'lid' => '1609',
22080   'location' => '/?q=zu/admin/build/translate/import',
22081   'textgroup' => 'default',
22082   'source' => 'Telugu',
22083   'version' => '6.38-dev',
22084 ))
22085 ->values(array(
22086   'lid' => '1610',
22087   'location' => '/?q=zu/admin/build/translate/import',
22088   'textgroup' => 'default',
22089   'source' => 'Tajik',
22090   'version' => '6.38-dev',
22091 ))
22092 ->values(array(
22093   'lid' => '1611',
22094   'location' => '/?q=zu/admin/build/translate/import',
22095   'textgroup' => 'default',
22096   'source' => 'Thai',
22097   'version' => '6.38-dev',
22098 ))
22099 ->values(array(
22100   'lid' => '1612',
22101   'location' => '/?q=zu/admin/build/translate/import',
22102   'textgroup' => 'default',
22103   'source' => 'Tigrinya',
22104   'version' => '6.38-dev',
22105 ))
22106 ->values(array(
22107   'lid' => '1613',
22108   'location' => '/?q=zu/admin/build/translate/import',
22109   'textgroup' => 'default',
22110   'source' => 'Turkmen',
22111   'version' => '6.38-dev',
22112 ))
22113 ->values(array(
22114   'lid' => '1614',
22115   'location' => '/?q=zu/admin/build/translate/import',
22116   'textgroup' => 'default',
22117   'source' => 'Tagalog',
22118   'version' => '6.38-dev',
22119 ))
22120 ->values(array(
22121   'lid' => '1615',
22122   'location' => '/?q=zu/admin/build/translate/import',
22123   'textgroup' => 'default',
22124   'source' => 'Setswana',
22125   'version' => '6.38-dev',
22126 ))
22127 ->values(array(
22128   'lid' => '1616',
22129   'location' => '/?q=zu/admin/build/translate/import',
22130   'textgroup' => 'default',
22131   'source' => 'Tonga',
22132   'version' => '6.38-dev',
22133 ))
22134 ->values(array(
22135   'lid' => '1617',
22136   'location' => '/?q=zu/admin/build/translate/import',
22137   'textgroup' => 'default',
22138   'source' => 'Turkish',
22139   'version' => '6.38-dev',
22140 ))
22141 ->values(array(
22142   'lid' => '1618',
22143   'location' => '/?q=zu/admin/build/translate/import',
22144   'textgroup' => 'default',
22145   'source' => 'Tsonga',
22146   'version' => '6.38-dev',
22147 ))
22148 ->values(array(
22149   'lid' => '1619',
22150   'location' => '/?q=zu/admin/build/translate/import',
22151   'textgroup' => 'default',
22152   'source' => 'Tatar',
22153   'version' => '6.38-dev',
22154 ))
22155 ->values(array(
22156   'lid' => '1620',
22157   'location' => '/?q=zu/admin/build/translate/import',
22158   'textgroup' => 'default',
22159   'source' => 'Twi',
22160   'version' => '6.38-dev',
22161 ))
22162 ->values(array(
22163   'lid' => '1621',
22164   'location' => '/?q=zu/admin/build/translate/import',
22165   'textgroup' => 'default',
22166   'source' => 'Tahitian',
22167   'version' => '6.38-dev',
22168 ))
22169 ->values(array(
22170   'lid' => '1622',
22171   'location' => '/?q=zu/admin/build/translate/import',
22172   'textgroup' => 'default',
22173   'source' => 'Uighur',
22174   'version' => '6.38-dev',
22175 ))
22176 ->values(array(
22177   'lid' => '1623',
22178   'location' => '/?q=zu/admin/build/translate/refresh',
22179   'textgroup' => 'default',
22180   'source' => 'Select text groups',
22181   'version' => '6.38-dev',
22182 ))
22183 ->values(array(
22184   'lid' => '1624',
22185   'location' => '/?q=zu/admin/build/translate/import',
22186   'textgroup' => 'default',
22187   'source' => 'Ukrainian',
22188   'version' => '6.38-dev',
22189 ))
22190 ->values(array(
22191   'lid' => '1625',
22192   'location' => '/?q=zu/admin/build/translate/refresh',
22193   'textgroup' => 'default',
22194   'source' => 'If a text group is no showing up here it means this feature is not implemented for it.',
22195   'version' => '6.38-dev',
22196 ))
22197 ->values(array(
22198   'lid' => '1626',
22199   'location' => '/?q=zu/admin/build/translate/import',
22200   'textgroup' => 'default',
22201   'source' => 'Urdu',
22202   'version' => '6.38-dev',
22203 ))
22204 ->values(array(
22205   'lid' => '1627',
22206   'location' => '/?q=zu/admin/build/translate/refresh',
22207   'textgroup' => 'default',
22208   'source' => 'Refresh strings',
22209   'version' => '6.38-dev',
22210 ))
22211 ->values(array(
22212   'lid' => '1628',
22213   'location' => '/?q=zu/admin/build/translate/import',
22214   'textgroup' => 'default',
22215   'source' => 'Uzbek',
22216   'version' => '6.38-dev',
22217 ))
22218 ->values(array(
22219   'lid' => '1629',
22220   'location' => '/?q=zu/admin/build/translate/refresh',
22221   'textgroup' => 'default',
22222   'source' => 'This will create all the missing strings for the selected text groups.',
22223   'version' => '6.38-dev',
22224 ))
22225 ->values(array(
22226   'lid' => '1630',
22227   'location' => '/?q=zu/admin/build/translate/import',
22228   'textgroup' => 'default',
22229   'source' => 'Venda',
22230   'version' => '6.38-dev',
22231 ))
22232 ->values(array(
22233   'lid' => '1631',
22234   'location' => '/?q=zu/admin/build/translate/refresh',
22235   'textgroup' => 'default',
22236   'source' => 'Select languages',
22237   'version' => '6.38-dev',
22238 ))
22239 ->values(array(
22240   'lid' => '1632',
22241   'location' => '/?q=zu/admin/build/translate/import',
22242   'textgroup' => 'default',
22243   'source' => 'Vietnamese',
22244   'version' => '6.38-dev',
22245 ))
22246 ->values(array(
22247   'lid' => '1633',
22248   'location' => '/?q=zu/admin/build/translate/refresh',
22249   'textgroup' => 'default',
22250   'source' => 'Update translations',
22251   'version' => '6.38-dev',
22252 ))
22253 ->values(array(
22254   'lid' => '1634',
22255   'location' => '/?q=zu/admin/build/translate/import',
22256   'textgroup' => 'default',
22257   'source' => 'Wolof',
22258   'version' => '6.38-dev',
22259 ))
22260 ->values(array(
22261   'lid' => '1635',
22262   'location' => '/?q=zu/admin/build/translate/refresh',
22263   'textgroup' => 'default',
22264   'source' => 'This will fetch all existing translations from the localization tables for the selected text groups and languages.',
22265   'version' => '6.38-dev',
22266 ))
22267 ->values(array(
22268   'lid' => '1636',
22269   'location' => '/?q=zu/admin/build/translate/import',
22270   'textgroup' => 'default',
22271   'source' => 'Xhosa',
22272   'version' => '6.38-dev',
22273 ))
22274 ->values(array(
22275   'lid' => '1637',
22276   'location' => '/?q=zu/admin/build/translate/import',
22277   'textgroup' => 'default',
22278   'source' => 'Yiddish',
22279   'version' => '6.38-dev',
22280 ))
22281 ->values(array(
22282   'lid' => '1638',
22283   'location' => '/?q=zu/admin/build/translate/import',
22284   'textgroup' => 'default',
22285   'source' => 'Yoruba',
22286   'version' => '6.38-dev',
22287 ))
22288 ->values(array(
22289   'lid' => '1639',
22290   'location' => '/?q=zu/admin/build/translate/refresh',
22291   'textgroup' => 'default',
22292   'source' => 'On this page you can refresh and update values for user defined strings.',
22293   'version' => '6.38-dev',
22294 ))
22295 ->values(array(
22296   'lid' => '1640',
22297   'location' => '/?q=zu/admin/build/translate/import',
22298   'textgroup' => 'default',
22299   'source' => 'Zhuang',
22300   'version' => '6.38-dev',
22301 ))
22302 ->values(array(
22303   'lid' => '1641',
22304   'location' => '/?q=zu/admin/build/translate/refresh',
22305   'textgroup' => 'default',
22306   '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.',
22307   'version' => '6.38-dev',
22308 ))
22309 ->values(array(
22310   'lid' => '1642',
22311   'location' => '/?q=zu/admin/build/translate/import',
22312   'textgroup' => 'default',
22313   'source' => 'Chinese, Simplified',
22314   'version' => '6.38-dev',
22315 ))
22316 ->values(array(
22317   'lid' => '1643',
22318   'location' => '/?q=zu/admin/build/translate/refresh',
22319   'textgroup' => 'default',
22320   '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.',
22321   'version' => '6.38-dev',
22322 ))
22323 ->values(array(
22324   'lid' => '1644',
22325   'location' => '/?q=zu/admin/build/translate/import',
22326   'textgroup' => 'default',
22327   'source' => 'Chinese, Traditional',
22328   'version' => '6.38-dev',
22329 ))
22330 ->values(array(
22331   'lid' => '1645',
22332   'location' => '/?q=zu/admin/build/translate/refresh',
22333   'textgroup' => 'default',
22334   'source' => 'To search and translate strings, use the <a href="@translate-interface">translation interface</a> pages.',
22335   'version' => '6.38-dev',
22336 ))
22337 ->values(array(
22338   'lid' => '1646',
22339   'location' => '/?q=zu/admin/build/translate/import',
22340   'textgroup' => 'default',
22341   'source' => 'Import translation',
22342   'version' => '6.38-dev',
22343 ))
22344 ->values(array(
22345   'lid' => '1647',
22346   'location' => '/?q=zu/admin/build/translate/refresh',
22347   'textgroup' => 'default',
22348   '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.',
22349   'version' => '6.38-dev',
22350 ))
22351 ->values(array(
22352   'lid' => '1648',
22353   'location' => '/?q=zu/admin/build/translate/import',
22354   'textgroup' => 'default',
22355   'source' => 'Language file',
22356   'version' => '6.38-dev',
22357 ))
22358 ->values(array(
22359   'lid' => '1649',
22360   'location' => '/?q=zu/admin/build/translate/import',
22361   'textgroup' => 'default',
22362   'source' => 'A Gettext Portable Object (<em>.po</em>) file.',
22363   'version' => '6.38-dev',
22364 ))
22365 ->values(array(
22366   'lid' => '1650',
22367   'location' => '/?q=zu/admin/build/translate/import',
22368   'textgroup' => 'default',
22369   'source' => 'Import into',
22370   'version' => '6.38-dev',
22371 ))
22372 ->values(array(
22373   'lid' => '1651',
22374   'location' => '/?q=zu/admin/build/translate/import',
22375   'textgroup' => 'default',
22376   '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.',
22377   'version' => '6.38-dev',
22378 ))
22379 ->values(array(
22380   'lid' => '1652',
22381   'location' => '/?q=zu/admin/build/translate/import',
22382   'textgroup' => 'default',
22383   'source' => 'Text group',
22384   'version' => '6.38-dev',
22385 ))
22386 ->values(array(
22387   'lid' => '1653',
22388   'location' => '/?q=zu/admin/build/translate/import',
22389   'textgroup' => 'default',
22390   'source' => 'Imported translations will be added to this text group.',
22391   'version' => '6.38-dev',
22392 ))
22393 ->values(array(
22394   'lid' => '1654',
22395   'location' => '/?q=zu/admin/build/translate/import',
22396   'textgroup' => 'default',
22397   'source' => 'Mode',
22398   'version' => '6.38-dev',
22399 ))
22400 ->values(array(
22401   'lid' => '1655',
22402   'location' => '/?q=zu/admin/build/translate/import',
22403   'textgroup' => 'default',
22404   'source' => 'Strings in the uploaded file replace existing ones, new ones are added',
22405   'version' => '6.38-dev',
22406 ))
22407 ->values(array(
22408   'lid' => '1656',
22409   'location' => '/?q=zu/admin/build/translate/import',
22410   'textgroup' => 'default',
22411   'source' => 'Existing strings are kept, only new strings are added',
22412   'version' => '6.38-dev',
22413 ))
22414 ->values(array(
22415   'lid' => '1657',
22416   'location' => '/?q=zu/admin/build/translate/import',
22417   'textgroup' => 'default',
22418   '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.',
22419   'version' => '6.38-dev',
22420 ))
22421 ->values(array(
22422   'lid' => '1658',
22423   'location' => '/?q=zu/admin/build/translate/import',
22424   'textgroup' => 'default',
22425   '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>.',
22426   'version' => '6.38-dev',
22427 ))
22428 ->values(array(
22429   'lid' => '1659',
22430   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22431   'textgroup' => 'default',
22432   'source' => 'Variable name',
22433   'version' => '6.38-dev',
22434 ))
22435 ->values(array(
22436   'lid' => '1660',
22437   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22438   'textgroup' => 'default',
22439   'source' => 'Is multilingual',
22440   'version' => '6.38-dev',
22441 ))
22442 ->values(array(
22443   'lid' => '1661',
22444   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22445   'textgroup' => 'default',
22446   'source' => 'Has translations',
22447   'version' => '6.38-dev',
22448 ))
22449 ->values(array(
22450   'lid' => '1662',
22451   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22452   'textgroup' => 'default',
22453   'source' => 'Delete all existing translations for variables.',
22454   'version' => '6.38-dev',
22455 ))
22456 ->values(array(
22457   'lid' => '1663',
22458   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22459   'textgroup' => 'default',
22460   'source' => 'Delete all translations',
22461   'version' => '6.38-dev',
22462 ))
22463 ->values(array(
22464   'lid' => '1664',
22465   'location' => 'type:forum:name',
22466   'textgroup' => 'nodetype',
22467   'source' => 'Forum topic',
22468   'version' => '1',
22469 ))
22470 ->values(array(
22471   'lid' => '1665',
22472   'location' => 'type:forum:title',
22473   'textgroup' => 'nodetype',
22474   'source' => 'Subject',
22475   'version' => '1',
22476 ))
22477 ->values(array(
22478   'lid' => '1666',
22479   'location' => 'type:forum:body',
22480   'textgroup' => 'nodetype',
22481   'source' => 'Body',
22482   'version' => '1',
22483 ))
22484 ->values(array(
22485   'lid' => '1667',
22486   'location' => 'type:forum:description',
22487   'textgroup' => 'nodetype',
22488   'source' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
22489   'version' => '1',
22490 ))
22491 ->values(array(
22492   'lid' => '1668',
22493   'location' => 'modules/block/block.js',
22494   'textgroup' => 'default',
22495   'source' => 'The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.',
22496   'version' => 'none',
22497 ))
22498 ->values(array(
22499   'lid' => '1669',
22500   'location' => 'modules/nodereference/nodereference.module:117',
22501   'textgroup' => 'default',
22502   '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>",
22503   'version' => 'none',
22504 ))
22505 ->values(array(
22506   'lid' => '1670',
22507   'location' => 'modules/nodereference/nodereference.module:175',
22508   'textgroup' => 'default',
22509   'source' => "%name: This post can't be referenced.",
22510   'version' => 'none',
22511 ))
22512 ->values(array(
22513   'lid' => '1671',
22514   'location' => 'modules/nodereference/nodereference.module:518',
22515   'textgroup' => 'default',
22516   'source' => '%name: Title mismatch. Please check your selection.',
22517   'version' => 'none',
22518 ))
22519 ->values(array(
22520   'lid' => '1672',
22521   'location' => 'vocabulary:6:name',
22522   'textgroup' => 'taxonomy',
22523   'source' => 'Type',
22524   'version' => '1',
22525 ))
22526 ->values(array(
22527   'lid' => '1673',
22528   'location' => 'vocabulary:7:name',
22529   'textgroup' => 'taxonomy',
22530   'source' => 'Forums',
22531   'version' => '1',
22532 ))
22533 ->values(array(
22534   'lid' => '1674',
22535   'location' => 'item:463:title',
22536   'textgroup' => 'menu',
22537   'source' => 'fr - Test 1',
22538   'version' => '1',
22539 ))
22540 ->values(array(
22541   'lid' => '1675',
22542   'location' => 'item:463:description',
22543   'textgroup' => 'menu',
22544   'source' => 'fr - Test menu link 1',
22545   'version' => '1',
22546 ))
22547 ->values(array(
22548   'lid' => '1676',
22549   'location' => 'item:138:title',
22550   'textgroup' => 'menu',
22551   'source' => 'Test 1',
22552   'version' => '1',
22553 ))
22554 ->values(array(
22555   'lid' => '1677',
22556   'location' => 'item:138:description',
22557   'textgroup' => 'menu',
22558   'source' => 'Test menu link 1',
22559   'version' => '1',
22560 ))
22561 ->values(array(
22562   'lid' => '1678',
22563   'location' => 'field:profile_really_really_love_migrating:title',
22564   'textgroup' => 'profile',
22565   'source' => 'I really, really, really love migrating',
22566   'version' => '1',
22567 ))
22568 ->values(array(
22569   'lid' => '1679',
22570   'location' => 'menu:menu-translation-test:title',
22571   'textgroup' => 'menu',
22572   'source' => 'Translation test',
22573   'version' => '1',
22574 ))
22575 ->values(array(
22576   'lid' => '1680',
22577   'location' => 'field:employee-field_company:widget_label',
22578   'textgroup' => 'cck',
22579   'source' => 'Company',
22580   'version' => '1',
22581 ))
22582 ->values(array(
22583   'lid' => '1681',
22584   'location' => 'field:employee-field_commander:widget_label',
22585   'textgroup' => 'cck',
22586   'source' => 'Commanding Officer',
22587   'version' => '1',
22588 ))
22589 ->values(array(
22590   'lid' => '1682',
22591   'location' => 'field:employee-field_company_2:widget_label',
22592   'textgroup' => 'cck',
22593   'source' => 'Company 2',
22594   'version' => '1',
22595 ))
22596 ->values(array(
22597   'lid' => '1683',
22598   'location' => 'field:employee-field_company_3:widget_label',
22599   'textgroup' => 'cck',
22600   'source' => 'Company 3',
22601   'version' => '1',
22602 ))
22603 ->values(array(
22604   'lid' => '1684',
22605   'location' => 'field:page-field_reference:widget_label',
22606   'textgroup' => 'cck',
22607   'source' => 'Reference',
22608   'version' => '1',
22609 ))
22610 ->values(array(
22611   'lid' => '1685',
22612   'location' => 'field:page-field_reference_2:widget_label',
22613   'textgroup' => 'cck',
22614   'source' => 'Reference',
22615   'version' => '1',
22616 ))
22617 ->values(array(
22618   'lid' => '1686',
22619   'location' => 'field:story-field_test_string_selectlist:widget_label',
22620   'textgroup' => 'cck',
22621   'source' => 'String Select List Field',
22622   'version' => '1',
22623 ))
22624 ->values(array(
22625   'lid' => '1689',
22626   'location' => 'field:test_planet-field_test_text_single_checkbox:widget_label',
22627   'textgroup' => 'cck',
22628   'source' => 'Text Single Checkbox Field',
22629   'version' => '1',
22630 ))
22631 ->values(array(
22632   'lid' => '1690',
22633   'location' => 'field:field_test_string_selectlist:option_A',
22634   'textgroup' => 'cck',
22635   'source' => 'Black',
22636   'version' => '1',
22637 ))
22638 ->values(array(
22639   'lid' => '1691',
22640   'location' => 'field:field_test_string_selectlist:option_B',
22641   'textgroup' => 'cck',
22642   'source' => 'White',
22643   'version' => '1',
22644 ))
22645 ->execute();
22646
22647 $connection->schema()->createTable('locales_target', array(
22648   'fields' => array(
22649     'lid' => array(
22650       'type' => 'int',
22651       'not null' => TRUE,
22652       'size' => 'normal',
22653       'default' => '0',
22654     ),
22655     'translation' => array(
22656       'type' => 'blob',
22657       'not null' => TRUE,
22658       'size' => 'normal',
22659     ),
22660     'language' => array(
22661       'type' => 'varchar',
22662       'not null' => TRUE,
22663       'length' => '12',
22664       'default' => '',
22665     ),
22666     'plid' => array(
22667       'type' => 'int',
22668       'not null' => TRUE,
22669       'size' => 'normal',
22670       'default' => '0',
22671     ),
22672     'plural' => array(
22673       'type' => 'int',
22674       'not null' => TRUE,
22675       'size' => 'normal',
22676       'default' => '0',
22677     ),
22678     'i18n_status' => array(
22679       'type' => 'int',
22680       'not null' => TRUE,
22681       'size' => 'normal',
22682       'default' => '0',
22683     ),
22684   ),
22685   'primary key' => array(
22686     'language',
22687     'lid',
22688     'plural',
22689   ),
22690   'indexes' => array(
22691     'lid' => array(
22692       'lid',
22693     ),
22694     'plid' => array(
22695       'plid',
22696     ),
22697     'plural' => array(
22698       'plural',
22699     ),
22700   ),
22701   'mysql_character_set' => 'utf8',
22702 ));
22703
22704 $connection->insert('locales_target')
22705 ->fields(array(
22706   'lid',
22707   'translation',
22708   'language',
22709   'plid',
22710   'plural',
22711   'i18n_status',
22712 ))
22713 ->values(array(
22714   'lid' => '5',
22715   '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).",
22716   'language' => 'fr',
22717   'plid' => '0',
22718   'plural' => '0',
22719   'i18n_status' => '0',
22720 ))
22721 ->values(array(
22722   'lid' => '6',
22723   '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.",
22724   'language' => 'fr',
22725   'plid' => '0',
22726   'plural' => '0',
22727   'i18n_status' => '0',
22728 ))
22729 ->values(array(
22730   'lid' => '7',
22731   '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 :",
22732   'language' => 'fr',
22733   'plid' => '0',
22734   'plural' => '0',
22735   'i18n_status' => '0',
22736 ))
22737 ->values(array(
22738   'lid' => '8',
22739   '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.",
22740   'language' => 'fr',
22741   'plid' => '0',
22742   'plural' => '0',
22743   'i18n_status' => '0',
22744 ))
22745 ->values(array(
22746   'lid' => '9',
22747   '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.",
22748   'language' => 'fr',
22749   'plid' => '0',
22750   'plural' => '0',
22751   'i18n_status' => '0',
22752 ))
22753 ->values(array(
22754   'lid' => '10',
22755   '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").',
22756   'language' => 'fr',
22757   'plid' => '0',
22758   'plural' => '0',
22759   'i18n_status' => '0',
22760 ))
22761 ->values(array(
22762   'lid' => '11',
22763   '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.",
22764   'language' => 'fr',
22765   'plid' => '0',
22766   'plural' => '0',
22767   'i18n_status' => '0',
22768 ))
22769 ->values(array(
22770   'lid' => '12',
22771   '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.",
22772   'language' => 'fr',
22773   'plid' => '0',
22774   'plural' => '0',
22775   'i18n_status' => '0',
22776 ))
22777 ->values(array(
22778   'lid' => '13',
22779   '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>.",
22780   'language' => 'fr',
22781   'plid' => '0',
22782   'plural' => '0',
22783   'i18n_status' => '0',
22784 ))
22785 ->values(array(
22786   'lid' => '14',
22787   '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.',
22788   'language' => 'fr',
22789   'plid' => '0',
22790   'plural' => '0',
22791   'i18n_status' => '0',
22792 ))
22793 ->values(array(
22794   'lid' => '15',
22795   '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.",
22796   'language' => 'fr',
22797   'plid' => '0',
22798   'plural' => '0',
22799   'i18n_status' => '0',
22800 ))
22801 ->values(array(
22802   'lid' => '16',
22803   'translation' => "Contrôlez ici l'ordre des champs dans le formulaire de saisie.",
22804   'language' => 'fr',
22805   'plid' => '0',
22806   'plural' => '0',
22807   'i18n_status' => '0',
22808 ))
22809 ->values(array(
22810   'lid' => '17',
22811   'translation' => 'Ce champ est obligatoire.',
22812   'language' => 'fr',
22813   'plid' => '0',
22814   'plural' => '0',
22815   'i18n_status' => '0',
22816 ))
22817 ->values(array(
22818   'lid' => '18',
22819   'translation' => '!title : !required',
22820   'language' => 'fr',
22821   'plid' => '0',
22822   'plural' => '0',
22823   'i18n_status' => '0',
22824 ))
22825 ->values(array(
22826   'lid' => '19',
22827   'translation' => 'Ordre',
22828   'language' => 'fr',
22829   'plid' => '0',
22830   'plural' => '0',
22831   'i18n_status' => '0',
22832 ))
22833 ->values(array(
22834   'lid' => '20',
22835   'translation' => 'Élément de flux RSS',
22836   'language' => 'fr',
22837   'plid' => '0',
22838   'plural' => '0',
22839   'i18n_status' => '0',
22840 ))
22841 ->values(array(
22842   'lid' => '21',
22843   'translation' => 'Index de recherche',
22844   'language' => 'fr',
22845   'plid' => '0',
22846   'plural' => '0',
22847   'i18n_status' => '0',
22848 ))
22849 ->values(array(
22850   'lid' => '22',
22851   'translation' => 'Résultat de recherche',
22852   'language' => 'fr',
22853   'plid' => '0',
22854   'plural' => '0',
22855   'i18n_status' => '0',
22856 ))
22857 ->values(array(
22858   'lid' => '23',
22859   'translation' => 'Langue',
22860   'language' => 'fr',
22861   'plid' => '0',
22862   'plural' => '0',
22863   'i18n_status' => '0',
22864 ))
22865 ->values(array(
22866   'lid' => '24',
22867   'translation' => 'Taxonomie',
22868   'language' => 'fr',
22869   'plid' => '0',
22870   'plural' => '0',
22871   'i18n_status' => '0',
22872 ))
22873 ->values(array(
22874   'lid' => '25',
22875   'translation' => 'Fichiers attachés',
22876   'language' => 'fr',
22877   'plid' => '0',
22878   'plural' => '0',
22879   'i18n_status' => '0',
22880 ))
22881 ->values(array(
22882   'lid' => '26',
22883   'translation' => 'Mise Ã  jour du type de champ %type avec le module %module.',
22884   'language' => 'fr',
22885   'plid' => '0',
22886   'plural' => '0',
22887   'i18n_status' => '0',
22888 ))
22889 ->values(array(
22890   'lid' => '27',
22891   'translation' => 'Mise Ã  jour du type de widget %widget avec le module %module.',
22892   'language' => 'fr',
22893   'plid' => '0',
22894   'plural' => '0',
22895   'i18n_status' => '0',
22896 ))
22897 ->values(array(
22898   'lid' => '28',
22899   'translation' => "Utiliser du code PHP pour le paramétrage des champs (dangereux - Ã  n'autoriser qu'avec précautions)",
22900   'language' => 'fr',
22901   'plid' => '0',
22902   'plural' => '0',
22903   'i18n_status' => '0',
22904 ))
22905 ->values(array(
22906   'lid' => '29',
22907   'translation' => 'Gérer les champs',
22908   'language' => 'fr',
22909   'plid' => '0',
22910   'plural' => '0',
22911   'i18n_status' => '0',
22912 ))
22913 ->values(array(
22914   'lid' => '30',
22915   'translation' => 'Afficher les champs',
22916   'language' => 'fr',
22917   'plid' => '0',
22918   'plural' => '0',
22919   'i18n_status' => '0',
22920 ))
22921 ->values(array(
22922   'lid' => '31',
22923   'translation' => 'Général',
22924   'language' => 'fr',
22925   'plid' => '0',
22926   'plural' => '0',
22927   'i18n_status' => '0',
22928 ))
22929 ->values(array(
22930   'lid' => '32',
22931   'translation' => 'Avancé',
22932   'language' => 'fr',
22933   'plid' => '0',
22934   'plural' => '0',
22935   'i18n_status' => '0',
22936 ))
22937 ->values(array(
22938   'lid' => '33',
22939   'translation' => 'Supprimer un champ',
22940   'language' => 'fr',
22941   'plid' => '0',
22942   'plural' => '0',
22943   'i18n_status' => '0',
22944 ))
22945 ->values(array(
22946   'lid' => '34',
22947   'translation' => 'Content',
22948   'language' => 'fr',
22949   'plid' => '0',
22950   'plural' => '0',
22951   'i18n_status' => '0',
22952 ))
22953 ->values(array(
22954   'lid' => '35',
22955   'translation' => 'Permet aux administrateurs de définir des nouveaux types de contenu.',
22956   'language' => 'fr',
22957   'plid' => '0',
22958   'plural' => '0',
22959   'i18n_status' => '0',
22960 ))
22961 ->values(array(
22962   'lid' => '36',
22963   'translation' => 'CCK',
22964   'language' => 'fr',
22965   'plid' => '0',
22966   'plural' => '0',
22967   'i18n_status' => '0',
22968 ))
22969 ->values(array(
22970   'lid' => '37',
22971   'translation' => 'Texte',
22972   'language' => 'fr',
22973   'plid' => '0',
22974   'plural' => '0',
22975   'i18n_status' => '0',
22976 ))
22977 ->values(array(
22978   'lid' => '38',
22979   '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é.",
22980   'language' => 'fr',
22981   'plid' => '0',
22982   'plural' => '0',
22983   'i18n_status' => '0',
22984 ))
22985 ->values(array(
22986   'lid' => '39',
22987   'translation' => 'Zone de texte',
22988   'language' => 'fr',
22989   'plid' => '0',
22990   'plural' => '0',
22991   'i18n_status' => '0',
22992 ))
22993 ->values(array(
22994   'lid' => '40',
22995   'translation' => 'Ôter',
22996   'language' => 'fr',
22997   'plid' => '0',
22998   'plural' => '0',
22999   'i18n_status' => '0',
23000 ))
23001 ->values(array(
23002   'lid' => '41',
23003   'translation' => 'Basique',
23004   'language' => 'fr',
23005   'plid' => '0',
23006   'plural' => '0',
23007   'i18n_status' => '0',
23008 ))
23009 ->values(array(
23010   'lid' => '42',
23011   'translation' => 'Résumé',
23012   'language' => 'fr',
23013   'plid' => '0',
23014   'plural' => '0',
23015   'i18n_status' => '0',
23016 ))
23017 ->values(array(
23018   'lid' => '43',
23019   'translation' => 'NÅ“ud complet',
23020   'language' => 'fr',
23021   'plid' => '0',
23022   'plural' => '0',
23023   'i18n_status' => '0',
23024 ))
23025 ->values(array(
23026   'lid' => '44',
23027   'translation' => 'RSS',
23028   'language' => 'fr',
23029   'plid' => '0',
23030   'plural' => '0',
23031   'i18n_status' => '0',
23032 ))
23033 ->values(array(
23034   'lid' => '45',
23035   'translation' => 'Recherche',
23036   'language' => 'fr',
23037   'plid' => '0',
23038   'plural' => '0',
23039   'i18n_status' => '0',
23040 ))
23041 ->values(array(
23042   'lid' => '46',
23043   'translation' => 'Formulaire du module node.',
23044   'language' => 'fr',
23045   'plid' => '0',
23046   'plural' => '0',
23047   'i18n_status' => '0',
23048 ))
23049 ->values(array(
23050   'lid' => '47',
23051   'translation' => 'Formulaire du module locale.',
23052   'language' => 'fr',
23053   'plid' => '0',
23054   'plural' => '0',
23055   'i18n_status' => '0',
23056 ))
23057 ->values(array(
23058   'lid' => '48',
23059   'translation' => 'Paramètres du menu',
23060   'language' => 'fr',
23061   'plid' => '0',
23062   'plural' => '0',
23063   'i18n_status' => '0',
23064 ))
23065 ->values(array(
23066   'lid' => '49',
23067   'translation' => 'Formulaire du module menu.',
23068   'language' => 'fr',
23069   'plid' => '0',
23070   'plural' => '0',
23071   'i18n_status' => '0',
23072 ))
23073 ->values(array(
23074   'lid' => '50',
23075   'translation' => 'Formulaire du module taxonomy.',
23076   'language' => 'fr',
23077   'plid' => '0',
23078   'plural' => '0',
23079   'i18n_status' => '0',
23080 ))
23081 ->values(array(
23082   'lid' => '51',
23083   'translation' => 'Livre',
23084   'language' => 'fr',
23085   'plid' => '0',
23086   'plural' => '0',
23087   'i18n_status' => '0',
23088 ))
23089 ->values(array(
23090   'lid' => '52',
23091   'translation' => 'Formulaire du module livre (book).',
23092   'language' => 'fr',
23093   'plid' => '0',
23094   'plural' => '0',
23095   'i18n_status' => '0',
23096 ))
23097 ->values(array(
23098   'lid' => '53',
23099   'translation' => 'Titre du sondage',
23100   'language' => 'fr',
23101   'plid' => '0',
23102   'plural' => '0',
23103   'i18n_status' => '0',
23104 ))
23105 ->values(array(
23106   'lid' => '54',
23107   'translation' => 'Titre du module sondage (Poll)',
23108   'language' => 'fr',
23109   'plid' => '0',
23110   'plural' => '0',
23111   'i18n_status' => '0',
23112 ))
23113 ->values(array(
23114   'lid' => '55',
23115   'translation' => 'Choix du sondage',
23116   'language' => 'fr',
23117   'plid' => '0',
23118   'plural' => '0',
23119   'i18n_status' => '0',
23120 ))
23121 ->values(array(
23122   'lid' => '56',
23123   'translation' => 'Choix du module sondage (poll).',
23124   'language' => 'fr',
23125   'plid' => '0',
23126   'plural' => '0',
23127   'i18n_status' => '0',
23128 ))
23129 ->values(array(
23130   'lid' => '57',
23131   'translation' => 'Paramètrage du sondage',
23132   'language' => 'fr',
23133   'plid' => '0',
23134   'plural' => '0',
23135   'i18n_status' => '0',
23136 ))
23137 ->values(array(
23138   'lid' => '58',
23139   'translation' => 'Paramètres du module sondage (poll).',
23140   'language' => 'fr',
23141   'plid' => '0',
23142   'plural' => '0',
23143   'i18n_status' => '0',
23144 ))
23145 ->values(array(
23146   'lid' => '59',
23147   'translation' => 'Formulaire du module upload.',
23148   'language' => 'fr',
23149   'plid' => '0',
23150   'plural' => '0',
23151   'i18n_status' => '0',
23152 ))
23153 ->values(array(
23154   'lid' => '60',
23155   'translation' => 'contenu',
23156   'language' => 'fr',
23157   'plid' => '0',
23158   'plural' => '0',
23159   'i18n_status' => '0',
23160 ))
23161 ->values(array(
23162   'lid' => '61',
23163   'translation' => 'Champs',
23164   'language' => 'fr',
23165   'plid' => '0',
23166   'plural' => '0',
23167   'i18n_status' => '0',
23168 ))
23169 ->values(array(
23170   'lid' => '62',
23171   '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.",
23172   'language' => 'fr',
23173   'plid' => '0',
23174   'plural' => '0',
23175   'i18n_status' => '0',
23176 ))
23177 ->values(array(
23178   'lid' => '63',
23179   '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.",
23180   'language' => 'fr',
23181   'plid' => '0',
23182   'plural' => '0',
23183   'i18n_status' => '0',
23184 ))
23185 ->values(array(
23186   'lid' => '64',
23187   '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. ",
23188   'language' => 'fr',
23189   'plid' => '0',
23190   'plural' => '0',
23191   'i18n_status' => '0',
23192 ))
23193 ->values(array(
23194   'lid' => '65',
23195   '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.',
23196   'language' => 'fr',
23197   'plid' => '0',
23198   'plural' => '0',
23199   'i18n_status' => '0',
23200 ))
23201 ->values(array(
23202   'lid' => '66',
23203   'translation' => 'CCK - Aucune Intégration aux Vues',
23204   'language' => 'fr',
23205   'plid' => '0',
23206   'plural' => '0',
23207   'i18n_status' => '0',
23208 ))
23209 ->values(array(
23210   'lid' => '67',
23211   'translation' => 'L"intégration de CCK avec le module Views requiert Views 6.x-2.0-rc2 ou une version supérieure.',
23212   'language' => 'fr',
23213   'plid' => '0',
23214   'plural' => '0',
23215   'i18n_status' => '0',
23216 ))
23217 ->values(array(
23218   'lid' => '68',
23219   'translation' => 'Nom',
23220   'language' => 'fr',
23221   'plid' => '0',
23222   'plural' => '0',
23223   'i18n_status' => '0',
23224 ))
23225 ->values(array(
23226   'lid' => '69',
23227   'translation' => 'Type',
23228   'language' => 'fr',
23229   'plid' => '0',
23230   'plural' => '0',
23231   'i18n_status' => '0',
23232 ))
23233 ->values(array(
23234   'lid' => '70',
23235   'translation' => 'Description',
23236   'language' => 'fr',
23237   'plid' => '0',
23238   'plural' => '0',
23239   'i18n_status' => '0',
23240 ))
23241 ->values(array(
23242   'lid' => '71',
23243   'translation' => 'Opérations',
23244   'language' => 'fr',
23245   'plid' => '0',
23246   'plural' => '0',
23247   'i18n_status' => '0',
23248 ))
23249 ->values(array(
23250   'lid' => '72',
23251   'translation' => 'éditer',
23252   'language' => 'fr',
23253   'plid' => '0',
23254   'plural' => '0',
23255   'i18n_status' => '0',
23256 ))
23257 ->values(array(
23258   'lid' => '73',
23259   'translation' => 'gérer les champs',
23260   'language' => 'fr',
23261   'plid' => '0',
23262   'plural' => '0',
23263   'i18n_status' => '0',
23264 ))
23265 ->values(array(
23266   'lid' => '74',
23267   'translation' => 'supprimer',
23268   'language' => 'fr',
23269   'plid' => '0',
23270   'plural' => '0',
23271   'i18n_status' => '0',
23272 ))
23273 ->values(array(
23274   'lid' => '75',
23275   'translation' => 'Aucun type de contenu disponible.',
23276   'language' => 'fr',
23277   'plid' => '0',
23278   'plural' => '0',
23279   'i18n_status' => '0',
23280 ))
23281 ->values(array(
23282   'lid' => '76',
23283   'translation' => '» Ajouter un nouveau type de contenu',
23284   'language' => 'fr',
23285   'plid' => '0',
23286   'plural' => '0',
23287   'i18n_status' => '0',
23288 ))
23289 ->values(array(
23290   'lid' => '77',
23291   'translation' => 'Nom du champ',
23292   'language' => 'fr',
23293   'plid' => '0',
23294   'plural' => '0',
23295   'i18n_status' => '0',
23296 ))
23297 ->values(array(
23298   'lid' => '78',
23299   'translation' => 'Type de champ',
23300   'language' => 'fr',
23301   'plid' => '0',
23302   'plural' => '0',
23303   'i18n_status' => '0',
23304 ))
23305 ->values(array(
23306   'lid' => '79',
23307   'translation' => 'Utilisé dans',
23308   'language' => 'fr',
23309   'plid' => '0',
23310   'plural' => '0',
23311   'i18n_status' => '0',
23312 ))
23313 ->values(array(
23314   'lid' => '80',
23315   'translation' => '@field_name (Verrouillé)',
23316   'language' => 'fr',
23317   'plid' => '0',
23318   'plural' => '0',
23319   'i18n_status' => '0',
23320 ))
23321 ->values(array(
23322   'lid' => '81',
23323   'translation' => "Aucun champ n'est pour l'instant défini sur l'ensemble des types de contenu.",
23324   'language' => 'fr',
23325   'plid' => '0',
23326   'plural' => '0',
23327   'i18n_status' => '0',
23328 ))
23329 ->values(array(
23330   'lid' => '82',
23331   '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.",
23332   'language' => 'fr',
23333   'plid' => '0',
23334   'plural' => '0',
23335   'i18n_status' => '0',
23336 ))
23337 ->values(array(
23338   'lid' => '83',
23339   'translation' => '!field (!field_name) est un champ inactif de type !field_type, qui utilise un widget de type !widget_type.',
23340   'language' => 'fr',
23341   'plid' => '0',
23342   'plural' => '0',
23343   'i18n_status' => '0',
23344 ))
23345 ->values(array(
23346   'lid' => '84',
23347   'translation' => 'Configurer',
23348   'language' => 'fr',
23349   'plid' => '0',
23350   'plural' => '0',
23351   'i18n_status' => '0',
23352 ))
23353 ->values(array(
23354   'lid' => '85',
23355   'translation' => 'Verrouillé',
23356   'language' => 'fr',
23357   'plid' => '0',
23358   'plural' => '0',
23359   'i18n_status' => '0',
23360 ))
23361 ->values(array(
23362   'lid' => '86',
23363   'translation' => '- Sélectionnez un type de champ -',
23364   'language' => 'fr',
23365   'plid' => '0',
23366   'plural' => '0',
23367   'i18n_status' => '0',
23368 ))
23369 ->values(array(
23370   'lid' => '87',
23371   'translation' => '- Sélectionnez un widget -',
23372   'language' => 'fr',
23373   'plid' => '0',
23374   'plural' => '0',
23375   'i18n_status' => '0',
23376 ))
23377 ->values(array(
23378   'lid' => '88',
23379   'translation' => 'Étiquette',
23380   'language' => 'fr',
23381   'plid' => '0',
23382   'plural' => '0',
23383   'i18n_status' => '0',
23384 ))
23385 ->values(array(
23386   'lid' => '89',
23387   'translation' => 'Nom du champ (a-z, 0-9, _)',
23388   'language' => 'fr',
23389   'plid' => '0',
23390   'plural' => '0',
23391   'i18n_status' => '0',
23392 ))
23393 ->values(array(
23394   'lid' => '90',
23395   'translation' => 'Type de données Ã  stocker.',
23396   'language' => 'fr',
23397   'plid' => '0',
23398   'plural' => '0',
23399   'i18n_status' => '0',
23400 ))
23401 ->values(array(
23402   'lid' => '91',
23403   'translation' => "Elément du formulaire pour l'édition des données.",
23404   'language' => 'fr',
23405   'plid' => '0',
23406   'plural' => '0',
23407   'i18n_status' => '0',
23408 ))
23409 ->values(array(
23410   'lid' => '92',
23411   'translation' => '- Sélectionnez un champ existant -',
23412   'language' => 'fr',
23413   'plid' => '0',
23414   'plural' => '0',
23415   'i18n_status' => '0',
23416 ))
23417 ->values(array(
23418   'lid' => '93',
23419   'translation' => 'Champ Ã  partager',
23420   'language' => 'fr',
23421   'plid' => '0',
23422   'plural' => '0',
23423   'i18n_status' => '0',
23424 ))
23425 ->values(array(
23426   'lid' => '94',
23427   'translation' => 'Nom du groupe (a-z, 0-9, _)',
23428   'language' => 'fr',
23429   'plid' => '0',
23430   'plural' => '0',
23431   'i18n_status' => '0',
23432 ))
23433 ->values(array(
23434   'lid' => '95',
23435   'translation' => 'Enregistrer',
23436   'language' => 'fr',
23437   'plid' => '0',
23438   'plural' => '0',
23439   'i18n_status' => '0',
23440 ))
23441 ->values(array(
23442   'lid' => '96',
23443   'translation' => 'Ajouter un nouveau champ : vous devez fournir une Ã©tiquette.',
23444   'language' => 'fr',
23445   'plid' => '0',
23446   'plural' => '0',
23447   'i18n_status' => '0',
23448 ))
23449 ->values(array(
23450   'lid' => '97',
23451   'translation' => 'Ajouter un nouveau champ : vous devez fournir un nom de champ.',
23452   'language' => 'fr',
23453   'plid' => '0',
23454   'plural' => '0',
23455   'i18n_status' => '0',
23456 ))
23457 ->values(array(
23458   'lid' => '98',
23459   '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. ",
23460   'language' => 'fr',
23461   'plid' => '0',
23462   'plural' => '0',
23463   'i18n_status' => '0',
23464 ))
23465 ->values(array(
23466   'lid' => '99',
23467   '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_'.",
23468   'language' => 'fr',
23469   'plid' => '0',
23470   'plural' => '0',
23471   'i18n_status' => '0',
23472 ))
23473 ->values(array(
23474   'lid' => '100',
23475   'translation' => "Ajouter un nouveau champ : le nom 'field_instance' est un nom réservé.",
23476   'language' => 'fr',
23477   'plid' => '0',
23478   'plural' => '0',
23479   'i18n_status' => '0',
23480 ))
23481 ->values(array(
23482   'lid' => '101',
23483   'translation' => 'Ajouter un nouveau champ : le nom du champ %field_name existe déjà.',
23484   'language' => 'fr',
23485   'plid' => '0',
23486   'plural' => '0',
23487   'i18n_status' => '0',
23488 ))
23489 ->values(array(
23490   'lid' => '102',
23491   'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un type de champ.',
23492   'language' => 'fr',
23493   'plid' => '0',
23494   'plural' => '0',
23495   'i18n_status' => '0',
23496 ))
23497 ->values(array(
23498   'lid' => '103',
23499   'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un widget.',
23500   'language' => 'fr',
23501   'plid' => '0',
23502   'plural' => '0',
23503   'i18n_status' => '0',
23504 ))
23505 ->values(array(
23506   'lid' => '104',
23507   'translation' => 'Ajouter un nouveau champ : widget non valide.',
23508   'language' => 'fr',
23509   'plid' => '0',
23510   'plural' => '0',
23511   'i18n_status' => '0',
23512 ))
23513 ->values(array(
23514   'lid' => '105',
23515   'translation' => 'Ajouter un champ existant : vous devez fournir une Ã©tiquette.',
23516   'language' => 'fr',
23517   'plid' => '0',
23518   'plural' => '0',
23519   'i18n_status' => '0',
23520 ))
23521 ->values(array(
23522   'lid' => '106',
23523   'translation' => 'Ajouter un champ existant : vous devez sélectionner un champ.',
23524   'language' => 'fr',
23525   'plid' => '0',
23526   'plural' => '0',
23527   'i18n_status' => '0',
23528 ))
23529 ->values(array(
23530   'lid' => '107',
23531   'translation' => 'Ajouter un champ existant: vous devez sélectionner un widget.',
23532   'language' => 'fr',
23533   'plid' => '0',
23534   'plural' => '0',
23535   'i18n_status' => '0',
23536 ))
23537 ->values(array(
23538   'lid' => '108',
23539   'translation' => 'Ajouter un champ existant : widget non valide.',
23540   'language' => 'fr',
23541   'plid' => '0',
23542   'plural' => '0',
23543   'i18n_status' => '0',
23544 ))
23545 ->values(array(
23546   'lid' => '109',
23547   'translation' => "Un problème est survenu Ã  la création du champ '%label'.",
23548   'language' => 'fr',
23549   'plid' => '0',
23550   'plural' => '0',
23551   'i18n_status' => '0',
23552 ))
23553 ->values(array(
23554   'lid' => '110',
23555   'translation' => "Le champ %label n'a pas pu Ãªtre ajouté au type de contenu car il est verrouillé.",
23556   'language' => 'fr',
23557   'plid' => '0',
23558   'plural' => '0',
23559   'i18n_status' => '0',
23560 ))
23561 ->values(array(
23562   'lid' => '111',
23563   'translation' => "Un problème est survenu lors de l'ajout du champ '%label'.",
23564   'language' => 'fr',
23565   'plid' => '0',
23566   'plural' => '0',
23567   'i18n_status' => '0',
23568 ))
23569 ->values(array(
23570   'lid' => '112',
23571   '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>.",
23572   'language' => 'fr',
23573   'plid' => '0',
23574   'plural' => '0',
23575   'i18n_status' => '0',
23576 ))
23577 ->values(array(
23578   'lid' => '113',
23579   'translation' => 'Au dessus',
23580   'language' => 'fr',
23581   'plid' => '0',
23582   'plural' => '0',
23583   'i18n_status' => '0',
23584 ))
23585 ->values(array(
23586   'lid' => '114',
23587   'translation' => 'Sur la même ligne',
23588   'language' => 'fr',
23589   'plid' => '0',
23590   'plural' => '0',
23591   'i18n_status' => '0',
23592 ))
23593 ->values(array(
23594   'lid' => '115',
23595   'translation' => 'Inclure',
23596   'language' => 'fr',
23597   'plid' => '0',
23598   'plural' => '0',
23599   'i18n_status' => '0',
23600 ))
23601 ->values(array(
23602   'lid' => '116',
23603   'translation' => 'Exclure',
23604   'language' => 'fr',
23605   'plid' => '0',
23606   'plural' => '0',
23607   'i18n_status' => '0',
23608 ))
23609 ->values(array(
23610   'lid' => '117',
23611   'translation' => 'aucune mise en forme',
23612   'language' => 'fr',
23613   'plid' => '0',
23614   'plural' => '0',
23615   'i18n_status' => '0',
23616 ))
23617 ->values(array(
23618   'lid' => '118',
23619   'translation' => 'simple',
23620   'language' => 'fr',
23621   'plid' => '0',
23622   'plural' => '0',
23623   'i18n_status' => '0',
23624 ))
23625 ->values(array(
23626   'lid' => '119',
23627   'translation' => 'groupe de champs',
23628   'language' => 'fr',
23629   'plid' => '0',
23630   'plural' => '0',
23631   'i18n_status' => '0',
23632 ))
23633 ->values(array(
23634   'lid' => '120',
23635   'translation' => 'groupe de champs - repliable',
23636   'language' => 'fr',
23637   'plid' => '0',
23638   'plural' => '0',
23639   'i18n_status' => '0',
23640 ))
23641 ->values(array(
23642   'lid' => '121',
23643   'translation' => 'groupe de champs - replié',
23644   'language' => 'fr',
23645   'plid' => '0',
23646   'plural' => '0',
23647   'i18n_status' => '0',
23648 ))
23649 ->values(array(
23650   'lid' => '122',
23651   'translation' => 'Vos paramètres ont Ã©té enregistrés.',
23652   'language' => 'fr',
23653   'plid' => '0',
23654   'plural' => '0',
23655   'i18n_status' => '0',
23656 ))
23657 ->values(array(
23658   'lid' => '123',
23659   'translation' => '@type : @field (@label)',
23660   'language' => 'fr',
23661   'plid' => '0',
23662   'plural' => '0',
23663   'i18n_status' => '0',
23664 ))
23665 ->values(array(
23666   'lid' => '124',
23667   'translation' => 'Éditer les informations de base',
23668   'language' => 'fr',
23669   'plid' => '0',
23670   'plural' => '0',
23671   'i18n_status' => '0',
23672 ))
23673 ->values(array(
23674   'lid' => '125',
23675   'translation' => 'Le nom lisible par une machine du champ. Ce nom ne peut Ãªtre changé.',
23676   'language' => 'fr',
23677   'plid' => '0',
23678   'plural' => '0',
23679   'i18n_status' => '0',
23680 ))
23681 ->values(array(
23682   'lid' => '126',
23683   'translation' => "Nom lisible par une personne, destiné Ã  servir d'étiquette pour ce champ au sein du type de contenu '%type'.",
23684   'language' => 'fr',
23685   'plid' => '0',
23686   'plural' => '0',
23687   'i18n_status' => '0',
23688 ))
23689 ->values(array(
23690   'lid' => '127',
23691   '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.',
23692   'language' => 'fr',
23693   'plid' => '0',
23694   'plural' => '0',
23695   'i18n_status' => '0',
23696 ))
23697 ->values(array(
23698   'lid' => '128',
23699   'translation' => 'Type de widget',
23700   'language' => 'fr',
23701   'plid' => '0',
23702   'plural' => '0',
23703   'i18n_status' => '0',
23704 ))
23705 ->values(array(
23706   'lid' => '129',
23707   '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'.",
23708   'language' => 'fr',
23709   'plid' => '0',
23710   'plural' => '0',
23711   'i18n_status' => '0',
23712 ))
23713 ->values(array(
23714   'lid' => '130',
23715   'translation' => 'Continuer',
23716   'language' => 'fr',
23717   'plid' => '0',
23718   'plural' => '0',
23719   'i18n_status' => '0',
23720 ))
23721 ->values(array(
23722   'lid' => '131',
23723   'translation' => 'Les paramètres basiques du champ %label ont Ã©té mis Ã  jour.',
23724   'language' => 'fr',
23725   'plid' => '0',
23726   'plural' => '0',
23727   'i18n_status' => '0',
23728 ))
23729 ->values(array(
23730   'lid' => '132',
23731   'translation' => 'Un problème a Ã©té rencontré lors de la mise Ã  jour des paramètres basiques du champ %label.',
23732   'language' => 'fr',
23733   'plid' => '0',
23734   'plural' => '0',
23735   'i18n_status' => '0',
23736 ))
23737 ->values(array(
23738   'lid' => '133',
23739   'translation' => "Êtes-vous certain de vouloir enlever le champ '%field' ?",
23740   'language' => 'fr',
23741   'plid' => '0',
23742   'plural' => '0',
23743   'i18n_status' => '0',
23744 ))
23745 ->values(array(
23746   'lid' => '134',
23747   'translation' => 'Si vous avez encore du contenu dans ce champ, il sera perdu. Cette action est irréversible.',
23748   'language' => 'fr',
23749   'plid' => '0',
23750   'plural' => '0',
23751   'i18n_status' => '0',
23752 ))
23753 ->values(array(
23754   'lid' => '135',
23755   'translation' => 'Annuler',
23756   'language' => 'fr',
23757   'plid' => '0',
23758   'plural' => '0',
23759   'i18n_status' => '0',
23760 ))
23761 ->values(array(
23762   'lid' => '136',
23763   'translation' => 'Ce champ est <strong>verrouillé</strong> et ne peut Ãªtre supprimé.',
23764   'language' => 'fr',
23765   'plid' => '0',
23766   'plural' => '0',
23767   'i18n_status' => '0',
23768 ))
23769 ->values(array(
23770   'lid' => '137',
23771   'translation' => "Le champ '%field' de '%type' a Ã©té enlevé.",
23772   'language' => 'fr',
23773   'plid' => '0',
23774   'plural' => '0',
23775   'i18n_status' => '0',
23776 ))
23777 ->values(array(
23778   'lid' => '138',
23779   'translation' => "Un problème est survenu Ã  la suppression du champ '%field' du type '%type'.",
23780   'language' => 'fr',
23781   'plid' => '0',
23782   'plural' => '0',
23783   'i18n_status' => '0',
23784 ))
23785 ->values(array(
23786   'lid' => '139',
23787   'translation' => 'Le champ %field est verouillé et ne peut Ãªtre Ã©dité.',
23788   'language' => 'fr',
23789   'plid' => '0',
23790   'plural' => '0',
23791   'i18n_status' => '0',
23792 ))
23793 ->values(array(
23794   'lid' => '140',
23795   'translation' => "Informations de base pour '%type'",
23796   'language' => 'fr',
23797   'plid' => '0',
23798   'plural' => '0',
23799   'i18n_status' => '0',
23800 ))
23801 ->values(array(
23802   'lid' => '141',
23803   'translation' => 'Modifier les informations de base',
23804   'language' => 'fr',
23805   'plid' => '0',
23806   'plural' => '0',
23807   'i18n_status' => '0',
23808 ))
23809 ->values(array(
23810   'lid' => '142',
23811   'translation' => "Paramètres de '%type'",
23812   'language' => 'fr',
23813   'plid' => '0',
23814   'plural' => '0',
23815   'i18n_status' => '0',
23816 ))
23817 ->values(array(
23818   'lid' => '143',
23819   'translation' => "Ces paramètres ne s'applique qu'au champ '%field' tel qu'il apparaît dans le type contenu '%type'.",
23820   'language' => 'fr',
23821   'plid' => '0',
23822   'plural' => '0',
23823   'i18n_status' => '0',
23824 ))
23825 ->values(array(
23826   'lid' => '144',
23827   'translation' => "Texte d'aide",
23828   'language' => 'fr',
23829   'plid' => '0',
23830   'plural' => '0',
23831   'i18n_status' => '0',
23832 ))
23833 ->values(array(
23834   'lid' => '145',
23835   'translation' => "Instructions Ã  présenter Ã  l'utilisateur sous ce champ, dans le formulaire d'édition.<br />Balises HTML autorisées : @tags",
23836   'language' => 'fr',
23837   'plid' => '0',
23838   'plural' => '0',
23839   'i18n_status' => '0',
23840 ))
23841 ->values(array(
23842   'lid' => '146',
23843   'translation' => 'Valeur par défaut',
23844   'language' => 'fr',
23845   'plid' => '0',
23846   'plural' => '0',
23847   'i18n_status' => '0',
23848 ))
23849 ->values(array(
23850   'lid' => '147',
23851   'translation' => 'Code PHP',
23852   'language' => 'fr',
23853   'plid' => '0',
23854   'plural' => '0',
23855   'i18n_status' => '0',
23856 ))
23857 ->values(array(
23858   'lid' => '148',
23859   'translation' => "'@column' => valeur de @column",
23860   'language' => 'fr',
23861   'plid' => '0',
23862   'plural' => '0',
23863   'i18n_status' => '0',
23864 ))
23865 ->values(array(
23866   'lid' => '149',
23867   '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);",
23868   'language' => 'fr',
23869   'plid' => '0',
23870   'plural' => '0',
23871   'i18n_status' => '0',
23872 ))
23873 ->values(array(
23874   'lid' => '150',
23875   'translation' => 'Code',
23876   'language' => 'fr',
23877   'plid' => '0',
23878   'plural' => '0',
23879   'i18n_status' => '0',
23880 ))
23881 ->values(array(
23882   'lid' => '151',
23883   '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.",
23884   'language' => 'fr',
23885   'plid' => '0',
23886   'plural' => '0',
23887   'i18n_status' => '0',
23888 ))
23889 ->values(array(
23890   'lid' => '152',
23891   'translation' => '&lt;aucun&gt;',
23892   'language' => 'fr',
23893   'plid' => '0',
23894   'plural' => '0',
23895   'i18n_status' => '0',
23896 ))
23897 ->values(array(
23898   'lid' => '153',
23899   'translation' => "Vous n'êtes pas autorisé Ã  saisir du code PHP.",
23900   'language' => 'fr',
23901   'plid' => '0',
23902   'plural' => '0',
23903   'i18n_status' => '0',
23904 ))
23905 ->values(array(
23906   'lid' => '154',
23907   'translation' => 'Ce code PHP a Ã©té inséré par un administrateur et supplantera toute valeur spécifiée ci-dessus.',
23908   'language' => 'fr',
23909   'plid' => '0',
23910   'plural' => '0',
23911   'i18n_status' => '0',
23912 ))
23913 ->values(array(
23914   'lid' => '155',
23915   'translation' => 'Paramètres globaux',
23916   'language' => 'fr',
23917   'plid' => '0',
23918   'plural' => '0',
23919   'i18n_status' => '0',
23920 ))
23921 ->values(array(
23922   'lid' => '156',
23923   'translation' => "Ces paramètres s'appliquent au champ '%field' dans tous les types de contenu où il apparaît.",
23924   'language' => 'fr',
23925   'plid' => '0',
23926   'plural' => '0',
23927   'i18n_status' => '0',
23928 ))
23929 ->values(array(
23930   'lid' => '157',
23931   'translation' => 'Obligatoire',
23932   'language' => 'fr',
23933   'plid' => '0',
23934   'plural' => '0',
23935   'i18n_status' => '0',
23936 ))
23937 ->values(array(
23938   'lid' => '158',
23939   'translation' => "Le nombre maximum de valeurs qu'un utilisateur peut entrer pour ce champ.",
23940   'language' => 'fr',
23941   'plid' => '0',
23942   'plural' => '0',
23943   'i18n_status' => '0',
23944 ))
23945 ->values(array(
23946   'lid' => '159',
23947   'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter autant de valeurs qu'ils le souhaitent.",
23948   'language' => 'fr',
23949   'plid' => '0',
23950   'plural' => '0',
23951   'i18n_status' => '0',
23952 ))
23953 ->values(array(
23954   'lid' => '160',
23955   'translation' => 'Attention ! Changer ce paramètre alors que des données ont déjà Ã©té créées peut conduire Ã  perdre des données !',
23956   'language' => 'fr',
23957   'plid' => '0',
23958   'plural' => '0',
23959   'i18n_status' => '0',
23960 ))
23961 ->values(array(
23962   'lid' => '161',
23963   'translation' => 'Nombre de valeurs',
23964   'language' => 'fr',
23965   'plid' => '0',
23966   'plural' => '0',
23967   'i18n_status' => '0',
23968 ))
23969 ->values(array(
23970   'lid' => '162',
23971   'translation' => 'Illimité',
23972   'language' => 'fr',
23973   'plid' => '0',
23974   'plural' => '0',
23975   'i18n_status' => '0',
23976 ))
23977 ->values(array(
23978   'lid' => '163',
23979   'translation' => 'Enregistrer les paramètres du champ',
23980   'language' => 'fr',
23981   'plid' => '0',
23982   'plural' => '0',
23983   'i18n_status' => '0',
23984 ))
23985 ->values(array(
23986   'lid' => '164',
23987   'translation' => "Le code PHP pour la 'valeur par défaut' a retourné @value, qui n'est pas valide.",
23988   'language' => 'fr',
23989   'plid' => '0',
23990   'plural' => '0',
23991   'i18n_status' => '0',
23992 ))
23993 ->values(array(
23994   'lid' => '165',
23995   'translation' => 'La valeur par défaut est invalide.',
23996   'language' => 'fr',
23997   'plid' => '0',
23998   'plural' => '0',
23999   'i18n_status' => '0',
24000 ))
24001 ->values(array(
24002   'lid' => '166',
24003   'translation' => "Le champ '%label' a Ã©té ajouté.",
24004   'language' => 'fr',
24005   'plid' => '0',
24006   'plural' => '0',
24007   'i18n_status' => '0',
24008 ))
24009 ->values(array(
24010   'lid' => '167',
24011   'translation' => "Champ '%label' enregistré.",
24012   'language' => 'fr',
24013   'plid' => '0',
24014   'plural' => '0',
24015   'i18n_status' => '0',
24016 ))
24017 ->values(array(
24018   'lid' => '168',
24019   'translation' => 'Exécution',
24020   'language' => 'fr',
24021   'plid' => '0',
24022   'plural' => '0',
24023   'i18n_status' => '0',
24024 ))
24025 ->values(array(
24026   'lid' => '169',
24027   'translation' => 'La mise Ã  jour a Ã©choué.',
24028   'language' => 'fr',
24029   'plid' => '0',
24030   'plural' => '0',
24031   'i18n_status' => '0',
24032 ))
24033 ->values(array(
24034   'lid' => '170',
24035   'translation' => 'La base de données a Ã©té modifiée et des données ont Ã©té déplacées ou supprimées.',
24036   'language' => 'fr',
24037   'plid' => '0',
24038   'plural' => '0',
24039   'i18n_status' => '0',
24040 ))
24041 ->values(array(
24042   'lid' => '171',
24043   'translation' => 'Une erreur est survenue et a interrompu la modification de la base de données.',
24044   'language' => 'fr',
24045   'plid' => '0',
24046   'plural' => '0',
24047   'i18n_status' => '0',
24048 ))
24049 ->values(array(
24050   'lid' => '172',
24051   'translation' => "'%title' en cours de traitement",
24052   'language' => 'fr',
24053   'plid' => '0',
24054   'plural' => '0',
24055   'i18n_status' => '0',
24056 ))
24057 ->values(array(
24058   'lid' => '173',
24059   'translation' => '%name doit Ãªtre un entier.',
24060   'language' => 'fr',
24061   'plid' => '0',
24062   'plural' => '0',
24063   'i18n_status' => '0',
24064 ))
24065 ->values(array(
24066   'lid' => '174',
24067   'translation' => '%name doit Ãªtre un entier positif.',
24068   'language' => 'fr',
24069   'plid' => '0',
24070   'plural' => '0',
24071   'i18n_status' => '0',
24072 ))
24073 ->values(array(
24074   'lid' => '175',
24075   'translation' => '%name doit Ãªtre un nombre.',
24076   'language' => 'fr',
24077   'plid' => '0',
24078   'plural' => '0',
24079   'i18n_status' => '0',
24080 ))
24081 ->values(array(
24082   'lid' => '176',
24083   'translation' => '1 Ã©lément traité avec succès&nbsp:',
24084   'language' => 'fr',
24085   'plid' => '0',
24086   'plural' => '0',
24087   'i18n_status' => '0',
24088 ))
24089 ->values(array(
24090   'lid' => '177',
24091   'translation' => '@count Ã©léments traités avec succès&nbsp:',
24092   'language' => 'fr',
24093   'plid' => '176',
24094   'plural' => '1',
24095   'i18n_status' => '0',
24096 ))
24097 ->values(array(
24098   'lid' => '178',
24099   'translation' => "La table de champs a Ã©té renommée de '%old_name' Ã  '%new_name' et les instances des champs ont Ã©té mises Ã  jour.",
24100   'language' => 'fr',
24101   'plid' => '0',
24102   'plural' => '0',
24103   'i18n_status' => '0',
24104 ))
24105 ->values(array(
24106   'lid' => '179',
24107   'translation' => "La table de champs '%name' a Ã©té supprimée.",
24108   'language' => 'fr',
24109   'plid' => '0',
24110   'plural' => '0',
24111   'i18n_status' => '0',
24112 ))
24113 ->values(array(
24114   'lid' => '180',
24115   'translation' => 'Ajouter un autre Ã©lément',
24116   'language' => 'fr',
24117   'plid' => '0',
24118   'plural' => '0',
24119   'i18n_status' => '0',
24120 ))
24121 ->values(array(
24122   'lid' => '181',
24123   'translation' => 'Contenu du champ',
24124   'language' => 'fr',
24125   'plid' => '0',
24126   'plural' => '0',
24127   'i18n_status' => '0',
24128 ))
24129 ->values(array(
24130   'lid' => '182',
24131   'translation' => 'Un champ de contenu du node référencé.',
24132   'language' => 'fr',
24133   'plid' => '0',
24134   'plural' => '0',
24135   'i18n_status' => '0',
24136 ))
24137 ->values(array(
24138   'lid' => '183',
24139   'translation' => 'Noeud',
24140   'language' => 'fr',
24141   'plid' => '0',
24142   'plural' => '0',
24143   'i18n_status' => '0',
24144 ))
24145 ->values(array(
24146   'lid' => '184',
24147   'translation' => 'Contexte du noeud',
24148   'language' => 'fr',
24149   'plid' => '0',
24150   'plural' => '0',
24151   'i18n_status' => '0',
24152 ))
24153 ->values(array(
24154   'lid' => '185',
24155   'translation' => 'Titre du bloc',
24156   'language' => 'fr',
24157   'plid' => '0',
24158   'plural' => '0',
24159   'i18n_status' => '0',
24160 ))
24161 ->values(array(
24162   'lid' => '186',
24163   'translation' => 'Caché',
24164   'language' => 'fr',
24165   'plid' => '0',
24166   'plural' => '0',
24167   'i18n_status' => '0',
24168 ))
24169 ->values(array(
24170   'lid' => '187',
24171   'translation' => "Configurer la manière dont l'étiquette est affichée.",
24172   'language' => 'fr',
24173   'plid' => '0',
24174   'plural' => '0',
24175   'i18n_status' => '0',
24176 ))
24177 ->values(array(
24178   'lid' => '188',
24179   'translation' => 'Champ / Formateur',
24180   'language' => 'fr',
24181   'plid' => '0',
24182   'plural' => '0',
24183   'i18n_status' => '0',
24184 ))
24185 ->values(array(
24186   'lid' => '189',
24187   'translation' => 'Sélectionner un champ et un formateur.',
24188   'language' => 'fr',
24189   'plid' => '0',
24190   'plural' => '0',
24191   'i18n_status' => '0',
24192 ))
24193 ->values(array(
24194   'lid' => '190',
24195   'translation' => '"@s" champ @name',
24196   'language' => 'fr',
24197   'plid' => '0',
24198   'plural' => '0',
24199   'i18n_status' => '0',
24200 ))
24201 ->values(array(
24202   'lid' => '191',
24203   'translation' => 'Remplir un champ',
24204   'language' => 'fr',
24205   'plid' => '0',
24206   'plural' => '0',
24207   'i18n_status' => '0',
24208 ))
24209 ->values(array(
24210   'lid' => '192',
24211   'translation' => 'Vous devez vous assurer que le champ existe pour le type de contenu donné.',
24212   'language' => 'fr',
24213   'plid' => '0',
24214   'plural' => '0',
24215   'i18n_status' => '0',
24216 ))
24217 ->values(array(
24218   'lid' => '193',
24219   'translation' => 'Champ',
24220   'language' => 'fr',
24221   'plid' => '0',
24222   'plural' => '0',
24223   'i18n_status' => '0',
24224 ))
24225 ->values(array(
24226   'lid' => '194',
24227   'translation' => 'Sélectionnez le nom-machine du champ.',
24228   'language' => 'fr',
24229   'plid' => '0',
24230   'plural' => '0',
24231   'i18n_status' => '0',
24232 ))
24233 ->values(array(
24234   'lid' => '195',
24235   'translation' => 'Avancé : Préciser les valeurs des champs avec du code PHP',
24236   'language' => 'fr',
24237   'plid' => '0',
24238   'plural' => '0',
24239   'i18n_status' => '0',
24240 ))
24241 ->values(array(
24242   'lid' => '196',
24243   '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.",
24244   'language' => 'fr',
24245   'plid' => '0',
24246   'plural' => '0',
24247   'i18n_status' => '0',
24248 ))
24249 ->values(array(
24250   'lid' => '197',
24251   'translation' => 'Vous devez retourner la valeur par défaut dans le format attendu.',
24252   'language' => 'fr',
24253   'plid' => '0',
24254   'plural' => '0',
24255   'i18n_status' => '0',
24256 ))
24257 ->values(array(
24258   'lid' => '198',
24259   'translation' => "Remplir le champ '@field' de @node",
24260   'language' => 'fr',
24261   'plid' => '0',
24262   'plural' => '0',
24263   'i18n_status' => '0',
24264 ))
24265 ->values(array(
24266   'lid' => '199',
24267   'translation' => 'Le champ possède une valeur',
24268   'language' => 'fr',
24269   'plid' => '0',
24270   'plural' => '0',
24271   'i18n_status' => '0',
24272 ))
24273 ->values(array(
24274   'lid' => '200',
24275   '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.',
24276   'language' => 'fr',
24277   'plid' => '0',
24278   'plural' => '0',
24279   'i18n_status' => '0',
24280 ))
24281 ->values(array(
24282   'lid' => '201',
24283   'translation' => 'Le champ a Ã©té modifié',
24284   'language' => 'fr',
24285   'plid' => '0',
24286   'plural' => '0',
24287   'i18n_status' => '0',
24288 ))
24289 ->values(array(
24290   'lid' => '202',
24291   'translation' => 'Contenu contenant des modifications',
24292   'language' => 'fr',
24293   'plid' => '0',
24294   'plural' => '0',
24295   'i18n_status' => '0',
24296 ))
24297 ->values(array(
24298   'lid' => '203',
24299   'translation' => 'Contenu ne contenant pas de modification',
24300   'language' => 'fr',
24301   'plid' => '0',
24302   'plural' => '0',
24303   'i18n_status' => '0',
24304 ))
24305 ->values(array(
24306   'lid' => '204',
24307   'translation' => "Le champ '@field' de @node possède une valeur",
24308   'language' => 'fr',
24309   'plid' => '0',
24310   'plural' => '0',
24311   'i18n_status' => '0',
24312 ))
24313 ->values(array(
24314   'lid' => '205',
24315   'translation' => 'Sélectionnez le nom-machine du champ Ã  voir.',
24316   'language' => 'fr',
24317   'plid' => '0',
24318   'plural' => '0',
24319   'i18n_status' => '0',
24320 ))
24321 ->values(array(
24322   'lid' => '206',
24323   'translation' => "Le champ '@field' de @node a Ã©té modifié",
24324   'language' => 'fr',
24325   'plid' => '0',
24326   'plural' => '0',
24327   'i18n_status' => '0',
24328 ))
24329 ->values(array(
24330   'lid' => '207',
24331   'translation' => 'Jeton (Token)',
24332   'language' => 'fr',
24333   'plid' => '0',
24334   'plural' => '0',
24335   'i18n_status' => '0',
24336 ))
24337 ->values(array(
24338   'lid' => '208',
24339   'translation' => 'Identifiant du nÅ“ud référencé',
24340   'language' => 'fr',
24341   'plid' => '0',
24342   'plural' => '0',
24343   'i18n_status' => '0',
24344 ))
24345 ->values(array(
24346   'lid' => '209',
24347   'translation' => 'Titre du nÅ“ud référencé',
24348   'language' => 'fr',
24349   'plid' => '0',
24350   'plural' => '0',
24351   'i18n_status' => '0',
24352 ))
24353 ->values(array(
24354   'lid' => '210',
24355   'translation' => 'Titre non filtré du noeud référencé. ATTENTION - saisie brute utilisateur.',
24356   'language' => 'fr',
24357   'plid' => '0',
24358   'plural' => '0',
24359   'i18n_status' => '0',
24360 ))
24361 ->values(array(
24362   'lid' => '211',
24363   'translation' => 'Lien html formaté vers le noeud référencé.',
24364   'language' => 'fr',
24365   'plid' => '0',
24366   'plural' => '0',
24367   'i18n_status' => '0',
24368 ))
24369 ->values(array(
24370   'lid' => '212',
24371   'translation' => 'Alias de chemin relatif vers le noeud référencé.',
24372   'language' => 'fr',
24373   'plid' => '0',
24374   'plural' => '0',
24375   'i18n_status' => '0',
24376 ))
24377 ->values(array(
24378   'lid' => '213',
24379   'translation' => 'Alias de chemin absolu vers le noeud référencé.',
24380   'language' => 'fr',
24381   'plid' => '0',
24382   'plural' => '0',
24383   'i18n_status' => '0',
24384 ))
24385 ->values(array(
24386   'lid' => '214',
24387   'translation' => 'Valeur numérique brute',
24388   'language' => 'fr',
24389   'plid' => '0',
24390   'plural' => '0',
24391   'i18n_status' => '0',
24392 ))
24393 ->values(array(
24394   'lid' => '215',
24395   'translation' => 'Valeur numérique mise en forme',
24396   'language' => 'fr',
24397   'plid' => '0',
24398   'plural' => '0',
24399   'i18n_status' => '0',
24400 ))
24401 ->values(array(
24402   'lid' => '216',
24403   'translation' => 'Texte brut, non filtré',
24404   'language' => 'fr',
24405   'plid' => '0',
24406   'plural' => '0',
24407   'i18n_status' => '0',
24408 ))
24409 ->values(array(
24410   'lid' => '217',
24411   'translation' => 'Texte filtré et mis en forme',
24412   'language' => 'fr',
24413   'plid' => '0',
24414   'plural' => '0',
24415   'i18n_status' => '0',
24416 ))
24417 ->values(array(
24418   'lid' => '218',
24419   'translation' => "Identifiant de l'utilisateur référencé",
24420   'language' => 'fr',
24421   'plid' => '0',
24422   'plural' => '0',
24423   'i18n_status' => '0',
24424 ))
24425 ->values(array(
24426   'lid' => '219',
24427   'translation' => "Nom de l'utilisateur référencé",
24428   'language' => 'fr',
24429   'plid' => '0',
24430   'plural' => '0',
24431   'i18n_status' => '0',
24432 ))
24433 ->values(array(
24434   'lid' => '220',
24435   'translation' => "Lien HTML mis en forme vers l'utilisateur référencé",
24436   'language' => 'fr',
24437   'plid' => '0',
24438   'plural' => '0',
24439   'i18n_status' => '0',
24440 ))
24441 ->values(array(
24442   'lid' => '221',
24443   'translation' => "Alias de chemin relatif vers l'utilisateur référencé.",
24444   'language' => 'fr',
24445   'plid' => '0',
24446   'plural' => '0',
24447   'i18n_status' => '0',
24448 ))
24449 ->values(array(
24450   'lid' => '222',
24451   'translation' => "Alias de chemin absolu vers l'utilisateur référencé.",
24452   'language' => 'fr',
24453   'plid' => '0',
24454   'plural' => '0',
24455   'i18n_status' => '0',
24456 ))
24457 ->values(array(
24458   'lid' => '223',
24459   'translation' => '@label (!name)',
24460   'language' => 'fr',
24461   'plid' => '0',
24462   'plural' => '0',
24463   'i18n_status' => '0',
24464 ))
24465 ->values(array(
24466   'lid' => '224',
24467   'translation' => '@label (!name) - !column',
24468   'language' => 'fr',
24469   'plid' => '0',
24470   'plural' => '0',
24471   'i18n_status' => '0',
24472 ))
24473 ->values(array(
24474   'lid' => '225',
24475   'translation' => '@label-truncated - !column',
24476   'language' => 'fr',
24477   'plid' => '0',
24478   'plural' => '0',
24479   'i18n_status' => '0',
24480 ))
24481 ->values(array(
24482   'lid' => '226',
24483   'translation' => 'Apparaît dans : @types',
24484   'language' => 'fr',
24485   'plid' => '0',
24486   'plural' => '0',
24487   'i18n_status' => '0',
24488 ))
24489 ->values(array(
24490   'lid' => '227',
24491   'translation' => 'Aucun',
24492   'language' => 'fr',
24493   'plid' => '0',
24494   'plural' => '0',
24495   'i18n_status' => '0',
24496 ))
24497 ->values(array(
24498   'lid' => '228',
24499   'translation' => 'Étiquette du widget (@label)',
24500   'language' => 'fr',
24501   'plid' => '0',
24502   'plural' => '0',
24503   'i18n_status' => '0',
24504 ))
24505 ->values(array(
24506   'lid' => '229',
24507   'translation' => 'Personnalisé',
24508   'language' => 'fr',
24509   'plid' => '0',
24510   'plural' => '0',
24511   'i18n_status' => '0',
24512 ))
24513 ->values(array(
24514   'lid' => '230',
24515   'translation' => 'Étiquette personnalisée',
24516   'language' => 'fr',
24517   'plid' => '0',
24518   'plural' => '0',
24519   'i18n_status' => '0',
24520 ))
24521 ->values(array(
24522   'lid' => '231',
24523   'translation' => 'Format',
24524   'language' => 'fr',
24525   'plid' => '0',
24526   'plural' => '0',
24527   'i18n_status' => '0',
24528 ))
24529 ->values(array(
24530   'lid' => '232',
24531   'translation' => 'Grouper plusieurs valeurs',
24532   'language' => 'fr',
24533   'plid' => '0',
24534   'plural' => '0',
24535   'i18n_status' => '0',
24536 ))
24537 ->values(array(
24538   'lid' => '233',
24539   '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. ",
24540   'language' => 'fr',
24541   'plid' => '0',
24542   'plural' => '0',
24543   'i18n_status' => '0',
24544 ))
24545 ->values(array(
24546   'lid' => '234',
24547   'translation' => 'Afficher @count valeur(s)',
24548   'language' => 'fr',
24549   'plid' => '0',
24550   'plural' => '0',
24551   'i18n_status' => '0',
24552 ))
24553 ->values(array(
24554   'lid' => '235',
24555   'translation' => 'en commençant Ã  @count',
24556   'language' => 'fr',
24557   'plid' => '0',
24558   'plural' => '0',
24559   'i18n_status' => '0',
24560 ))
24561 ->values(array(
24562   'lid' => '236',
24563   'translation' => 'Inversé (commencer Ã  partir des dernières valeurs)',
24564   'language' => 'fr',
24565   'plid' => '0',
24566   'plural' => '0',
24567   'i18n_status' => '0',
24568 ))
24569 ->values(array(
24570   'lid' => '237',
24571   'translation' => 'Tous / Toutes',
24572   'language' => 'fr',
24573   'plid' => '0',
24574   'plural' => '0',
24575   'i18n_status' => '0',
24576 ))
24577 ->values(array(
24578   'lid' => '238',
24579   'translation' => 'Delta',
24580   'language' => 'fr',
24581   'plid' => '0',
24582   'plural' => '0',
24583   'i18n_status' => '0',
24584 ))
24585 ->values(array(
24586   'lid' => '239',
24587   '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.",
24588   'language' => 'fr',
24589   'plid' => '0',
24590   'plural' => '0',
24591   'i18n_status' => '0',
24592 ))
24593 ->values(array(
24594   'lid' => '240',
24595   '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.",
24596   'language' => 'fr',
24597   'plid' => '0',
24598   'plural' => '0',
24599   'i18n_status' => '0',
24600 ))
24601 ->values(array(
24602   'lid' => '241',
24603   'translation' => 'Exporter',
24604   'language' => 'fr',
24605   'plid' => '0',
24606   'plural' => '0',
24607   'i18n_status' => '0',
24608 ))
24609 ->values(array(
24610   'lid' => '242',
24611   '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.",
24612   'language' => 'fr',
24613   'plid' => '0',
24614   'plural' => '0',
24615   'i18n_status' => '0',
24616 ))
24617 ->values(array(
24618   'lid' => '243',
24619   'translation' => 'Types',
24620   'language' => 'fr',
24621   'plid' => '0',
24622   'plural' => '0',
24623   'i18n_status' => '0',
24624 ))
24625 ->values(array(
24626   'lid' => '244',
24627   'translation' => 'Sélectionner le type de contenu Ã  exporter.',
24628   'language' => 'fr',
24629   'plid' => '0',
24630   'plural' => '0',
24631   'i18n_status' => '0',
24632 ))
24633 ->values(array(
24634   'lid' => '245',
24635   'translation' => 'Données exportée',
24636   'language' => 'fr',
24637   'plid' => '0',
24638   'plural' => '0',
24639   'i18n_status' => '0',
24640 ))
24641 ->values(array(
24642   'lid' => '246',
24643   'translation' => "Copiez le texte exporté et collez-le dans le type de contenu de votre choix, Ã  l'aide de la fonction d'import.",
24644   'language' => 'fr',
24645   'plid' => '0',
24646   'plural' => '0',
24647   'i18n_status' => '0',
24648 ))
24649 ->values(array(
24650   'lid' => '247',
24651   'translation' => 'Types de contenu',
24652   'language' => 'fr',
24653   'plid' => '0',
24654   'plural' => '0',
24655   'i18n_status' => '0',
24656 ))
24657 ->values(array(
24658   'lid' => '248',
24659   'translation' => 'Type de contenu',
24660   'language' => 'fr',
24661   'plid' => '0',
24662   'plural' => '0',
24663   'i18n_status' => '0',
24664 ))
24665 ->values(array(
24666   'lid' => '249',
24667   '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.',
24668   'language' => 'fr',
24669   'plid' => '0',
24670   'plural' => '0',
24671   'i18n_status' => '0',
24672 ))
24673 ->values(array(
24674   'lid' => '250',
24675   'translation' => 'Données Ã  importer',
24676   'language' => 'fr',
24677   'plid' => '0',
24678   'plural' => '0',
24679   'i18n_status' => '0',
24680 ))
24681 ->values(array(
24682   'lid' => '251',
24683   'translation' => 'Collez dans ce champ le texte créé par un export de contenu.',
24684   'language' => 'fr',
24685   'plid' => '0',
24686   'plural' => '0',
24687   'i18n_status' => '0',
24688 ))
24689 ->values(array(
24690   'lid' => '252',
24691   'translation' => 'Importer',
24692   'language' => 'fr',
24693   'plid' => '0',
24694   'plural' => '0',
24695   'i18n_status' => '0',
24696 ))
24697 ->values(array(
24698   'lid' => '253',
24699   'translation' => "Un fichier a Ã©té préchargé pour l'import.",
24700   'language' => 'fr',
24701   'plid' => '0',
24702   'plural' => '0',
24703   'i18n_status' => '0',
24704 ))
24705 ->values(array(
24706   'lid' => '254',
24707   'translation' => "Les données d'import ne sont valides.",
24708   'language' => 'fr',
24709   'plid' => '0',
24710   'plural' => '0',
24711   'i18n_status' => '0',
24712 ))
24713 ->values(array(
24714   'lid' => '255',
24715   'translation' => "Les modules suivants doivent Ãªtre activés pour que l'import fonctionne : '%modules'.",
24716   'language' => 'fr',
24717   'plid' => '0',
24718   'plural' => '0',
24719   'i18n_status' => '0',
24720 ))
24721 ->values(array(
24722   'lid' => '256',
24723   'translation' => "Le type de contenu '%type' existe déjà dans cette base de données.",
24724   'language' => 'fr',
24725   'plid' => '0',
24726   'plural' => '0',
24727   'i18n_status' => '0',
24728 ))
24729 ->values(array(
24730   'lid' => '257',
24731   'translation' => "Abandon. L'import n'a pas Ã©té réalisé.",
24732   'language' => 'fr',
24733   'plid' => '0',
24734   'plural' => '0',
24735   'i18n_status' => '0',
24736 ))
24737 ->values(array(
24738   'lid' => '258',
24739   '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.",
24740   'language' => 'fr',
24741   'plid' => '0',
24742   'plural' => '0',
24743   'i18n_status' => '0',
24744 ))
24745 ->values(array(
24746   'lid' => '259',
24747   'translation' => "Le champ importé '%field_label' (%field_name) n'a pas Ã©té ajouté Ã  '%type' car ce champ existe déjà.",
24748   'language' => 'fr',
24749   'plid' => '0',
24750   'plural' => '0',
24751   'i18n_status' => '0',
24752 ))
24753 ->values(array(
24754   'lid' => '260',
24755   'translation' => "Le champ importé '%field_label' (%field_name) a Ã©té ajouté au type de contenu '%type'.",
24756   'language' => 'fr',
24757   'plid' => '0',
24758   'plural' => '0',
24759   'i18n_status' => '0',
24760 ))
24761 ->values(array(
24762   'lid' => '261',
24763   'translation' => 'content_copy',
24764   'language' => 'fr',
24765   'plid' => '0',
24766   'plural' => '0',
24767   'i18n_status' => '0',
24768 ))
24769 ->values(array(
24770   'lid' => '262',
24771   'translation' => 'Content Copy',
24772   'language' => 'fr',
24773   'plid' => '0',
24774   'plural' => '0',
24775   'i18n_status' => '0',
24776 ))
24777 ->values(array(
24778   'lid' => '263',
24779   'translation' => "Permet d'importer et d'exporter des définitions de champs.",
24780   'language' => 'fr',
24781   'plid' => '0',
24782   'plural' => '0',
24783   'i18n_status' => '0',
24784 ))
24785 ->values(array(
24786   'lid' => '264',
24787   '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.",
24788   'language' => 'fr',
24789   'plid' => '0',
24790   'plural' => '0',
24791   'i18n_status' => '0',
24792 ))
24793 ->values(array(
24794   'lid' => '265',
24795   'translation' => 'Multigroupe',
24796   'language' => 'fr',
24797   'plid' => '0',
24798   'plural' => '0',
24799   'i18n_status' => '0',
24800 ))
24801 ->values(array(
24802   'lid' => '266',
24803   'translation' => 'Standard',
24804   'language' => 'fr',
24805   'plid' => '0',
24806   'plural' => '0',
24807   'i18n_status' => '0',
24808 ))
24809 ->values(array(
24810   'lid' => '267',
24811   'translation' => 'Type de groupe.',
24812   'language' => 'fr',
24813   'plid' => '0',
24814   'plural' => '0',
24815   'i18n_status' => '0',
24816 ))
24817 ->values(array(
24818   'lid' => '268',
24819   '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.",
24820   'language' => 'fr',
24821   'plid' => '0',
24822   'plural' => '0',
24823   'i18n_status' => '0',
24824 ))
24825 ->values(array(
24826   'lid' => '269',
24827   '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. ",
24828   'language' => 'fr',
24829   'plid' => '0',
24830   'plural' => '0',
24831   'i18n_status' => '0',
24832 ))
24833 ->values(array(
24834   'lid' => '270',
24835   '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. ",
24836   'language' => 'fr',
24837   'plid' => '0',
24838   'plural' => '0',
24839   'i18n_status' => '0',
24840 ))
24841 ->values(array(
24842   'lid' => '271',
24843   'translation' => "Vous Ãªtes en train d'inclure le champ %field dans un Multigroupe",
24844   'language' => 'fr',
24845   'plid' => '0',
24846   'plural' => '0',
24847   'i18n_status' => '0',
24848 ))
24849 ->values(array(
24850   'lid' => '272',
24851   '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.",
24852   'language' => 'fr',
24853   'plid' => '0',
24854   'plural' => '0',
24855   'i18n_status' => '0',
24856 ))
24857 ->values(array(
24858   'lid' => '273',
24859   'translation' => "Vous Ãªtes en train de retirer le champ %field d'un Multigroupe",
24860   'language' => 'fr',
24861   'plid' => '0',
24862   'plural' => '0',
24863   'i18n_status' => '0',
24864 ))
24865 ->values(array(
24866   'lid' => '274',
24867   'translation' => 'Simple',
24868   'language' => 'fr',
24869   'plid' => '0',
24870   'plural' => '0',
24871   'i18n_status' => '0',
24872 ))
24873 ->values(array(
24874   'lid' => '275',
24875   'translation' => 'Groupe de champs',
24876   'language' => 'fr',
24877   'plid' => '0',
24878   'plural' => '0',
24879   'i18n_status' => '0',
24880 ))
24881 ->values(array(
24882   'lid' => '276',
24883   'translation' => 'Ligne horizontale',
24884   'language' => 'fr',
24885   'plid' => '0',
24886   'plural' => '0',
24887   'i18n_status' => '0',
24888 ))
24889 ->values(array(
24890   'lid' => '277',
24891   'translation' => 'Tableau - Colonne unique',
24892   'language' => 'fr',
24893   'plid' => '0',
24894   'plural' => '0',
24895   'i18n_status' => '0',
24896 ))
24897 ->values(array(
24898   'lid' => '278',
24899   'translation' => 'Tableau - Colonnes multiples',
24900   'language' => 'fr',
24901   'plid' => '0',
24902   'plural' => '0',
24903   'i18n_status' => '0',
24904 ))
24905 ->values(array(
24906   'lid' => '279',
24907   'translation' => '[Format du sous-groupe]',
24908   'language' => 'fr',
24909   'plid' => '0',
24910   'plural' => '0',
24911   'i18n_status' => '0',
24912 ))
24913 ->values(array(
24914   'lid' => '280',
24915   'translation' => 'Paramètres multigroupe',
24916   'language' => 'fr',
24917   'plid' => '0',
24918   'plural' => '0',
24919   'i18n_status' => '0',
24920 ))
24921 ->values(array(
24922   'lid' => '281',
24923   'translation' => 'Colonnes multiples',
24924   'language' => 'fr',
24925   'plid' => '0',
24926   'plural' => '0',
24927   'i18n_status' => '0',
24928 ))
24929 ->values(array(
24930   'lid' => '282',
24931   'translation' => "Activez cette option pour rendre chaque champs dans une colonne disctincte sur le formulaire d'édition de noeud.",
24932   'language' => 'fr',
24933   'plid' => '0',
24934   'plural' => '0',
24935   'i18n_status' => '0',
24936 ))
24937 ->values(array(
24938   'lid' => '283',
24939   'translation' => "Activez cette option pour rendre obligatoire un minimum d'une collection de champs dans ce Multigroupe.",
24940   'language' => 'fr',
24941   'plid' => '0',
24942   'plural' => '0',
24943   'i18n_status' => '0',
24944 ))
24945 ->values(array(
24946   'lid' => '284',
24947   'translation' => "Nombre de fois où répéter l'ensemble Multigroupe de champs.",
24948   'language' => 'fr',
24949   'plid' => '0',
24950   'plural' => '0',
24951   'i18n_status' => '0',
24952 ))
24953 ->values(array(
24954   'lid' => '285',
24955   'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter des Ã©léments autant de fois qu'ils le souhaitent.",
24956   'language' => 'fr',
24957   'plid' => '0',
24958   'plural' => '0',
24959   'i18n_status' => '0',
24960 ))
24961 ->values(array(
24962   'lid' => '286',
24963   'translation' => 'Tous les champs de ce groupe seront automatiquement paramétrés pour autoriser ce nombre de valeurs.',
24964   'language' => 'fr',
24965   'plid' => '0',
24966   'plural' => '0',
24967   'i18n_status' => '0',
24968 ))
24969 ->values(array(
24970   'lid' => '287',
24971   'translation' => 'Nombre de répétitions',
24972   'language' => 'fr',
24973   'plid' => '0',
24974   'plural' => '0',
24975   'i18n_status' => '0',
24976 ))
24977 ->values(array(
24978   'lid' => '288',
24979   'translation' => 'Etiquettes',
24980   'language' => 'fr',
24981   'plid' => '0',
24982   'plural' => '0',
24983   'i18n_status' => '0',
24984 ))
24985 ->values(array(
24986   'lid' => '289',
24987   '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'.",
24988   'language' => 'fr',
24989   'plid' => '0',
24990   'plural' => '0',
24991   'i18n_status' => '0',
24992 ))
24993 ->values(array(
24994   'lid' => '290',
24995   'translation' => 'Etiquette du sous-groupe %number',
24996   'language' => 'fr',
24997   'plid' => '0',
24998   'plural' => '0',
24999   'i18n_status' => '0',
25000 ))
25001 ->values(array(
25002   'lid' => '291',
25003   '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.',
25004   'language' => 'fr',
25005   'plid' => '0',
25006   'plural' => '0',
25007   'i18n_status' => '0',
25008 ))
25009 ->values(array(
25010   'lid' => '292',
25011   'translation' => 'Le champ !name est obligatoire dans le groupe @group.',
25012   'language' => 'fr',
25013   'plid' => '0',
25014   'plural' => '0',
25015   'i18n_status' => '0',
25016 ))
25017 ->values(array(
25018   'lid' => '293',
25019   'translation' => 'Le groupe @name requiert au minimum un groupe de champs.',
25020   'language' => 'fr',
25021   'plid' => '0',
25022   'plural' => '0',
25023   'i18n_status' => '0',
25024 ))
25025 ->values(array(
25026   'lid' => '294',
25027   'translation' => 'Ajouter plus de valeurs',
25028   'language' => 'fr',
25029   'plid' => '0',
25030   'plural' => '0',
25031   'i18n_status' => '0',
25032 ))
25033 ->values(array(
25034   'lid' => '295',
25035   'translation' => 'content_multigroup',
25036   'language' => 'fr',
25037   'plid' => '0',
25038   'plural' => '0',
25039   'i18n_status' => '0',
25040 ))
25041 ->values(array(
25042   'lid' => '296',
25043   'translation' => 'Contenu Multigroupe',
25044   'language' => 'fr',
25045   'plid' => '0',
25046   'plural' => '0',
25047   'i18n_status' => '0',
25048 ))
25049 ->values(array(
25050   'lid' => '297',
25051   'translation' => "Combinez de multiples champs CCK au sein de collections de champs qui fonctionnent Ã  l'unisson.",
25052   'language' => 'fr',
25053   'plid' => '0',
25054   'plural' => '0',
25055   'i18n_status' => '0',
25056 ))
25057 ->values(array(
25058   'lid' => '298',
25059   'translation' => 'éditer',
25060   'language' => 'fr',
25061   'plid' => '0',
25062   'plural' => '0',
25063   'i18n_status' => '0',
25064 ))
25065 ->values(array(
25066   'lid' => '299',
25067   'translation' => 'field_name',
25068   'language' => 'fr',
25069   'plid' => '0',
25070   'plural' => '0',
25071   'i18n_status' => '0',
25072 ))
25073 ->values(array(
25074   'lid' => '300',
25075   'translation' => 'voir',
25076   'language' => 'fr',
25077   'plid' => '0',
25078   'plural' => '0',
25079   'i18n_status' => '0',
25080 ))
25081 ->values(array(
25082   'lid' => '301',
25083   'translation' => 'content_permissions',
25084   'language' => 'fr',
25085   'plid' => '0',
25086   'plural' => '0',
25087   'i18n_status' => '0',
25088 ))
25089 ->values(array(
25090   'lid' => '302',
25091   'translation' => 'Veuillez <a href="!url">configurer vos permissions sur les champs</a> immédiatement. Tous les champs sont inaccessibles par défaut.',
25092   'language' => 'fr',
25093   'plid' => '0',
25094   'plural' => '0',
25095   'i18n_status' => '0',
25096 ))
25097 ->values(array(
25098   'lid' => '303',
25099   'translation' => 'Permissions sur les Contenus',
25100   'language' => 'fr',
25101   'plid' => '0',
25102   'plural' => '0',
25103   'i18n_status' => '0',
25104 ))
25105 ->values(array(
25106   'lid' => '304',
25107   'translation' => 'Définit un niveau de permission par champ pour les champs CCK.',
25108   'language' => 'fr',
25109   'plid' => '0',
25110   'plural' => '0',
25111   'i18n_status' => '0',
25112 ))
25113 ->values(array(
25114   'lid' => '305',
25115   'translation' => 'Contenu du groupe de champ',
25116   'language' => 'fr',
25117   'plid' => '0',
25118   'plural' => '0',
25119   'i18n_status' => '0',
25120 ))
25121 ->values(array(
25122   'lid' => '306',
25123   'translation' => "Tous les champs d'un groupe de champs sur le node référencé.",
25124   'language' => 'fr',
25125   'plid' => '0',
25126   'plural' => '0',
25127   'i18n_status' => '0',
25128 ))
25129 ->values(array(
25130   'lid' => '307',
25131   'translation' => '@group_label (@group_type_name)',
25132   'language' => 'fr',
25133   'plid' => '0',
25134   'plural' => '0',
25135   'i18n_status' => '0',
25136 ))
25137 ->values(array(
25138   'lid' => '308',
25139   'translation' => 'Fieldgroup',
25140   'language' => 'fr',
25141   'plid' => '0',
25142   'plural' => '0',
25143   'i18n_status' => '0',
25144 ))
25145 ->values(array(
25146   'lid' => '309',
25147   '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é.",
25148   'language' => 'fr',
25149   'plid' => '0',
25150   'plural' => '0',
25151   'i18n_status' => '0',
25152 ))
25153 ->values(array(
25154   'lid' => '310',
25155   'translation' => '"@s" groupe de champs @name',
25156   'language' => 'fr',
25157   'plid' => '0',
25158   'plural' => '0',
25159   'i18n_status' => '0',
25160 ))
25161 ->values(array(
25162   'lid' => '311',
25163   'translation' => 'Paramètres du formulaire',
25164   'language' => 'fr',
25165   'plid' => '0',
25166   'plural' => '0',
25167   'i18n_status' => '0',
25168 ))
25169 ->values(array(
25170   'lid' => '312',
25171   'translation' => "Ces paramètres s'appliquent au groupe dans le formulaire d'édition de nÅ“ud.",
25172   'language' => 'fr',
25173   'plid' => '0',
25174   'plural' => '0',
25175   'i18n_status' => '0',
25176 ))
25177 ->values(array(
25178   'lid' => '313',
25179   'translation' => 'Style',
25180   'language' => 'fr',
25181   'plid' => '0',
25182   'plural' => '0',
25183   'i18n_status' => '0',
25184 ))
25185 ->values(array(
25186   'lid' => '314',
25187   'translation' => 'toujours déplié',
25188   'language' => 'fr',
25189   'plid' => '0',
25190   'plural' => '0',
25191   'i18n_status' => '0',
25192 ))
25193 ->values(array(
25194   'lid' => '315',
25195   'translation' => 'repliable',
25196   'language' => 'fr',
25197   'plid' => '0',
25198   'plural' => '0',
25199   'i18n_status' => '0',
25200 ))
25201 ->values(array(
25202   'lid' => '316',
25203   'translation' => 'replié',
25204   'language' => 'fr',
25205   'plid' => '0',
25206   'plural' => '0',
25207   'i18n_status' => '0',
25208 ))
25209 ->values(array(
25210   'lid' => '317',
25211   'translation' => "Instructions Ã  présenter Ã  l'utilisateur dans le formulaire d'édition.",
25212   'language' => 'fr',
25213   'plid' => '0',
25214   'plural' => '0',
25215   'i18n_status' => '0',
25216 ))
25217 ->values(array(
25218   'lid' => '318',
25219   'translation' => "Paramètres d'affichage",
25220   'language' => 'fr',
25221   'plid' => '0',
25222   'plural' => '0',
25223   'i18n_status' => '0',
25224 ))
25225 ->values(array(
25226   'lid' => '319',
25227   'translation' => "Ces paramètres s'appliquent au groupe Ã  l'affichage du nÅ“ud.",
25228   'language' => 'fr',
25229   'plid' => '0',
25230   'plural' => '0',
25231   'i18n_status' => '0',
25232 ))
25233 ->values(array(
25234   'lid' => '320',
25235   'translation' => 'Description du groupe.',
25236   'language' => 'fr',
25237   'plid' => '0',
25238   'plural' => '0',
25239   'i18n_status' => '0',
25240 ))
25241 ->values(array(
25242   'lid' => '321',
25243   'translation' => "Êtes-vous sûr(e) de vouloir supprimer le groupe '%label' ?",
25244   'language' => 'fr',
25245   'plid' => '0',
25246   'plural' => '0',
25247   'i18n_status' => '0',
25248 ))
25249 ->values(array(
25250   'lid' => '322',
25251   'translation' => 'Cette action est irréversible.',
25252   'language' => 'fr',
25253   'plid' => '0',
25254   'plural' => '0',
25255   'i18n_status' => '0',
25256 ))
25257 ->values(array(
25258   'lid' => '323',
25259   'translation' => "Le groupe '%group_name' a Ã©té supprimé.",
25260   'language' => 'fr',
25261   'plid' => '0',
25262   'plural' => '0',
25263   'i18n_status' => '0',
25264 ))
25265 ->values(array(
25266   'lid' => '324',
25267   'translation' => 'aucun',
25268   'language' => 'fr',
25269   'plid' => '0',
25270   'plural' => '0',
25271   'i18n_status' => '0',
25272 ))
25273 ->values(array(
25274   'lid' => '325',
25275   'translation' => 'Vous devez fournir une Ã©tiquette.',
25276   'language' => 'fr',
25277   'plid' => '0',
25278   'plural' => '0',
25279   'i18n_status' => '0',
25280 ))
25281 ->values(array(
25282   'lid' => '326',
25283   'translation' => 'Vous devez fournir un nom de groupe',
25284   'language' => 'fr',
25285   'plid' => '0',
25286   'plural' => '0',
25287   'i18n_status' => '0',
25288 ))
25289 ->values(array(
25290   'lid' => '327',
25291   '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.",
25292   'language' => 'fr',
25293   'plid' => '0',
25294   'plural' => '0',
25295   'i18n_status' => '0',
25296 ))
25297 ->values(array(
25298   'lid' => '328',
25299   'translation' => "Le nom de groupe %group_name est trop long. Le nom est limité Ã  32 caractères, le préfixe 'group_' compris.",
25300   'language' => 'fr',
25301   'plid' => '0',
25302   'plural' => '0',
25303   'i18n_status' => '0',
25304 ))
25305 ->values(array(
25306   'lid' => '329',
25307   'translation' => 'Le nom de groupe %group_name existe déjà.',
25308   'language' => 'fr',
25309   'plid' => '0',
25310   'plural' => '0',
25311   'i18n_status' => '0',
25312 ))
25313 ->values(array(
25314   'lid' => '330',
25315   'translation' => 'Ajouter un nouveau groupe :',
25316   'language' => 'fr',
25317   'plid' => '0',
25318   'plural' => '0',
25319   'i18n_status' => '0',
25320 ))
25321 ->values(array(
25322   'lid' => '331',
25323   'translation' => 'Ajouter un nouveau groupe : vous devez fournir une Ã©tiquette.',
25324   'language' => 'fr',
25325   'plid' => '0',
25326   'plural' => '0',
25327   'i18n_status' => '0',
25328 ))
25329 ->values(array(
25330   'lid' => '332',
25331   'translation' => 'Ajouter un nouveau groupe : vous devez fournir un nom de groupe.',
25332   'language' => 'fr',
25333   'plid' => '0',
25334   'plural' => '0',
25335   'i18n_status' => '0',
25336 ))
25337 ->values(array(
25338   'lid' => '333',
25339   'translation' => 'Groupe standard',
25340   'language' => 'fr',
25341   'plid' => '0',
25342   'plural' => '0',
25343   'i18n_status' => '0',
25344 ))
25345 ->values(array(
25346   'lid' => '334',
25347   'translation' => 'Éditer le groupe',
25348   'language' => 'fr',
25349   'plid' => '0',
25350   'plural' => '0',
25351   'i18n_status' => '0',
25352 ))
25353 ->values(array(
25354   'lid' => '335',
25355   'translation' => 'fieldgroup',
25356   'language' => 'fr',
25357   'plid' => '0',
25358   'plural' => '0',
25359   'i18n_status' => '0',
25360 ))
25361 ->values(array(
25362   'lid' => '336',
25363   'translation' => "Créée des groupes d'affichage pour les champs CCK.",
25364   'language' => 'fr',
25365   'plid' => '0',
25366   'plural' => '0',
25367   'i18n_status' => '0',
25368 ))
25369 ->values(array(
25370   'lid' => '337',
25371   'translation' => 'Charge un noeud référencé',
25372   'language' => 'fr',
25373   'plid' => '0',
25374   'plural' => '0',
25375   'i18n_status' => '0',
25376 ))
25377 ->values(array(
25378   'lid' => '338',
25379   'translation' => 'Contenu contenant le champ node reference',
25380   'language' => 'fr',
25381   'plid' => '0',
25382   'plural' => '0',
25383   'i18n_status' => '0',
25384 ))
25385 ->values(array(
25386   'lid' => '339',
25387   'translation' => 'Contenu référencé',
25388   'language' => 'fr',
25389   'plid' => '0',
25390   'plural' => '0',
25391   'i18n_status' => '0',
25392 ))
25393 ->values(array(
25394   'lid' => '340',
25395   'translation' => 'Notez que si le champs possède des valeurs multiples, seul le premier contenu sera chargé.',
25396   'language' => 'fr',
25397   'plid' => '0',
25398   'plural' => '0',
25399   'i18n_status' => '0',
25400 ))
25401 ->values(array(
25402   'lid' => '341',
25403   'translation' => "Il n'y a aucun champ  nodereference défini.",
25404   'language' => 'fr',
25405   'plid' => '0',
25406   'plural' => '0',
25407   'i18n_status' => '0',
25408 ))
25409 ->values(array(
25410   'lid' => '342',
25411   'translation' => 'Node référence',
25412   'language' => 'fr',
25413   'plid' => '0',
25414   'plural' => '0',
25415   'i18n_status' => '0',
25416 ))
25417 ->values(array(
25418   'lid' => '343',
25419   'translation' => "Stocker l'ID du noeud lié en tant que valeur entière.",
25420   'language' => 'fr',
25421   'plid' => '0',
25422   'plural' => '0',
25423   'i18n_status' => '0',
25424 ))
25425 ->values(array(
25426   'lid' => '344',
25427   'translation' => 'Types de contenu pouvant Ãªtre référencés',
25428   'language' => 'fr',
25429   'plid' => '0',
25430   'plural' => '0',
25431   'i18n_status' => '0',
25432 ))
25433 ->values(array(
25434   'lid' => '345',
25435   'translation' => 'Vues par défaut',
25436   'language' => 'fr',
25437   'plid' => '0',
25438   'plural' => '0',
25439   'i18n_status' => '0',
25440 ))
25441 ->values(array(
25442   'lid' => '346',
25443   'translation' => 'Vues Ã©xistantes',
25444   'language' => 'fr',
25445   'plid' => '0',
25446   'plural' => '0',
25447   'i18n_status' => '0',
25448 ))
25449 ->values(array(
25450   'lid' => '347',
25451   'translation' => 'Avancé - NÅ“uds pouvant Ãªtre référencés (Vue)',
25452   'language' => 'fr',
25453   'plid' => '0',
25454   'plural' => '0',
25455   'i18n_status' => '0',
25456 ))
25457 ->values(array(
25458   'lid' => '348',
25459   'translation' => 'Vue utilisée pour sélectionner les noeuds',
25460   'language' => 'fr',
25461   'plid' => '0',
25462   'plural' => '0',
25463   'i18n_status' => '0',
25464 ))
25465 ->values(array(
25466   'lid' => '349',
25467   'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les noeuds pouvant Ãªtre référencés.<br />Note :</p>',
25468   'language' => 'fr',
25469   'plid' => '0',
25470   'plural' => '0',
25471   'i18n_status' => '0',
25472 ))
25473 ->values(array(
25474   'lid' => '350',
25475   '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>",
25476   'language' => 'fr',
25477   'plid' => '0',
25478   'plural' => '0',
25479   'i18n_status' => '0',
25480 ))
25481 ->values(array(
25482   'lid' => '351',
25483   'translation' => 'Arguments de la vue',
25484   'language' => 'fr',
25485   'plid' => '0',
25486   'plural' => '0',
25487   'i18n_status' => '0',
25488 ))
25489 ->values(array(
25490   'lid' => '352',
25491   'translation' => "Fournit une liste d'arguments, séparés par des virgules, Ã  transmettre Ã  la vue.",
25492   'language' => 'fr',
25493   'plid' => '0',
25494   'plural' => '0',
25495   'i18n_status' => '0',
25496 ))
25497 ->values(array(
25498   'lid' => '353',
25499   '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>",
25500   'language' => 'fr',
25501   'plid' => '0',
25502   'plural' => '0',
25503   'i18n_status' => '0',
25504 ))
25505 ->values(array(
25506   'lid' => '354',
25507   'translation' => '%name : saisie non valide.',
25508   'language' => 'fr',
25509   'plid' => '0',
25510   'plural' => '0',
25511   'i18n_status' => '0',
25512 ))
25513 ->values(array(
25514   'lid' => '355',
25515   'translation' => '%name : ce contenu ne peut Ãªtre référencé.',
25516   'language' => 'fr',
25517   'plid' => '0',
25518   'plural' => '0',
25519   'i18n_status' => '0',
25520 ))
25521 ->values(array(
25522   'lid' => '356',
25523   'translation' => 'Titre (avec lien)',
25524   'language' => 'fr',
25525   'plid' => '0',
25526   'plural' => '0',
25527   'i18n_status' => '0',
25528 ))
25529 ->values(array(
25530   'lid' => '357',
25531   'translation' => 'Titre (sans lien)',
25532   'language' => 'fr',
25533   'plid' => '0',
25534   'plural' => '0',
25535   'i18n_status' => '0',
25536 ))
25537 ->values(array(
25538   'lid' => '358',
25539   'translation' => 'Liste de sélection',
25540   'language' => 'fr',
25541   'plid' => '0',
25542   'plural' => '0',
25543   'i18n_status' => '0',
25544 ))
25545 ->values(array(
25546   'lid' => '359',
25547   'translation' => 'Cases Ã  cocher/boutons radio',
25548   'language' => 'fr',
25549   'plid' => '0',
25550   'plural' => '0',
25551   'i18n_status' => '0',
25552 ))
25553 ->values(array(
25554   'lid' => '360',
25555   'translation' => 'Champ texte Ã  auto-complètement',
25556   'language' => 'fr',
25557   'plid' => '0',
25558   'plural' => '0',
25559   'i18n_status' => '0',
25560 ))
25561 ->values(array(
25562   'lid' => '361',
25563   'translation' => "Correspondance de l'autocomplétion",
25564   'language' => 'fr',
25565   'plid' => '0',
25566   'plural' => '0',
25567   'i18n_status' => '0',
25568 ))
25569 ->values(array(
25570   'lid' => '362',
25571   'translation' => 'Commence par',
25572   'language' => 'fr',
25573   'plid' => '0',
25574   'plural' => '0',
25575   'i18n_status' => '0',
25576 ))
25577 ->values(array(
25578   'lid' => '363',
25579   'translation' => 'Contient',
25580   'language' => 'fr',
25581   'plid' => '0',
25582   'plural' => '0',
25583   'i18n_status' => '0',
25584 ))
25585 ->values(array(
25586   'lid' => '364',
25587   '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",
25588   'language' => 'fr',
25589   'plid' => '0',
25590   'plural' => '0',
25591   'i18n_status' => '0',
25592 ))
25593 ->values(array(
25594   'lid' => '365',
25595   'translation' => '%name : différence de titre. Veuillez vérifier votre sélection.',
25596   'language' => 'fr',
25597   'plid' => '0',
25598   'plural' => '0',
25599   'i18n_status' => '0',
25600 ))
25601 ->values(array(
25602   'lid' => '366',
25603   'translation' => "%name : aucun contenu valide n'a Ã©té trouvé pour ce titre.",
25604   'language' => 'fr',
25605   'plid' => '0',
25606   'plural' => '0',
25607   'i18n_status' => '0',
25608 ))
25609 ->values(array(
25610   'lid' => '367',
25611   'translation' => 'Autocomplétion de nodereference',
25612   'language' => 'fr',
25613   'plid' => '0',
25614   'plural' => '0',
25615   'i18n_status' => '0',
25616 ))
25617 ->values(array(
25618   'lid' => '368',
25619   'translation' => 'nodereference',
25620   'language' => 'fr',
25621   'plid' => '0',
25622   'plural' => '0',
25623   'i18n_status' => '0',
25624 ))
25625 ->values(array(
25626   'lid' => '369',
25627   'translation' => 'Node Reference',
25628   'language' => 'fr',
25629   'plid' => '0',
25630   'plural' => '0',
25631   'i18n_status' => '0',
25632 ))
25633 ->values(array(
25634   'lid' => '370',
25635   'translation' => 'Définit un type de champ pour référencer un noeud depuis un autre noeud.',
25636   'language' => 'fr',
25637   'plid' => '0',
25638   'plural' => '0',
25639   'i18n_status' => '0',
25640 ))
25641 ->values(array(
25642   'lid' => '371',
25643   'translation' => 'Entier',
25644   'language' => 'fr',
25645   'plid' => '0',
25646   'plural' => '0',
25647   'i18n_status' => '0',
25648 ))
25649 ->values(array(
25650   'lid' => '372',
25651   'translation' => 'Stocke un nombre dans la base de données en format entier.',
25652   'language' => 'fr',
25653   'plid' => '0',
25654   'plural' => '0',
25655   'i18n_status' => '0',
25656 ))
25657 ->values(array(
25658   'lid' => '373',
25659   'translation' => 'Décimal',
25660   'language' => 'fr',
25661   'plid' => '0',
25662   'plural' => '0',
25663   'i18n_status' => '0',
25664 ))
25665 ->values(array(
25666   'lid' => '374',
25667   'translation' => 'Stocke un nombre dans la base de données en format décimal fixe.',
25668   'language' => 'fr',
25669   'plid' => '0',
25670   'plural' => '0',
25671   'i18n_status' => '0',
25672 ))
25673 ->values(array(
25674   'lid' => '375',
25675   'translation' => 'Réel (Float)',
25676   'language' => 'fr',
25677   'plid' => '0',
25678   'plural' => '0',
25679   'i18n_status' => '0',
25680 ))
25681 ->values(array(
25682   'lid' => '376',
25683   'translation' => 'Stocke un nombre dans la base de données en format réel.',
25684   'language' => 'fr',
25685   'plid' => '0',
25686   'plural' => '0',
25687   'i18n_status' => '0',
25688 ))
25689 ->values(array(
25690   'lid' => '377',
25691   'translation' => 'Minimum',
25692   'language' => 'fr',
25693   'plid' => '0',
25694   'plural' => '0',
25695   'i18n_status' => '0',
25696 ))
25697 ->values(array(
25698   'lid' => '378',
25699   'translation' => 'Maximum',
25700   'language' => 'fr',
25701   'plid' => '0',
25702   'plural' => '0',
25703   'i18n_status' => '0',
25704 ))
25705 ->values(array(
25706   'lid' => '379',
25707   'translation' => 'Précision',
25708   'language' => 'fr',
25709   'plid' => '0',
25710   'plural' => '0',
25711   'i18n_status' => '0',
25712 ))
25713 ->values(array(
25714   'lid' => '380',
25715   'translation' => 'Le nombre total de chiffres Ã  stocker dans la base de données, en incluant ceux Ã  droite de la virgule.',
25716   'language' => 'fr',
25717   'plid' => '0',
25718   'plural' => '0',
25719   'i18n_status' => '0',
25720 ))
25721 ->values(array(
25722   'lid' => '381',
25723   'translation' => 'Echelle',
25724   'language' => 'fr',
25725   'plid' => '0',
25726   'plural' => '0',
25727   'i18n_status' => '0',
25728 ))
25729 ->values(array(
25730   'lid' => '382',
25731   'translation' => 'Le nombre de chiffres Ã  droite de la virgule',
25732   'language' => 'fr',
25733   'plid' => '0',
25734   'plural' => '0',
25735   'i18n_status' => '0',
25736 ))
25737 ->values(array(
25738   'lid' => '383',
25739   'translation' => 'Séparateur de décimales',
25740   'language' => 'fr',
25741   'plid' => '0',
25742   'plural' => '0',
25743   'i18n_status' => '0',
25744 ))
25745 ->values(array(
25746   'lid' => '384',
25747   'translation' => 'Le caractère que les utilisateurs saisiront pour séparer les décimales dans les formulaires.',
25748   'language' => 'fr',
25749   'plid' => '0',
25750   'plural' => '0',
25751   'i18n_status' => '0',
25752 ))
25753 ->values(array(
25754   'lid' => '385',
25755   'translation' => 'Préfixe',
25756   'language' => 'fr',
25757   'plid' => '0',
25758   'plural' => '0',
25759   'i18n_status' => '0',
25760 ))
25761 ->values(array(
25762   'lid' => '386',
25763   '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).',
25764   'language' => 'fr',
25765   'plid' => '0',
25766   'plural' => '0',
25767   'i18n_status' => '0',
25768 ))
25769 ->values(array(
25770   'lid' => '387',
25771   'translation' => 'Suffixe',
25772   'language' => 'fr',
25773   'plid' => '0',
25774   'plural' => '0',
25775   'i18n_status' => '0',
25776 ))
25777 ->values(array(
25778   'lid' => '388',
25779   '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).',
25780   'language' => 'fr',
25781   'plid' => '0',
25782   'plural' => '0',
25783   'i18n_status' => '0',
25784 ))
25785 ->values(array(
25786   'lid' => '389',
25787   'translation' => 'Valeurs autorisées',
25788   'language' => 'fr',
25789   'plid' => '0',
25790   'plural' => '0',
25791   'i18n_status' => '0',
25792 ))
25793 ->values(array(
25794   'lid' => '390',
25795   'translation' => 'Liste des valeurs autorisées',
25796   'language' => 'fr',
25797   'plid' => '0',
25798   'plural' => '0',
25799   'i18n_status' => '0',
25800 ))
25801 ->values(array(
25802   'lid' => '391',
25803   '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",
25804   'language' => 'fr',
25805   'plid' => '0',
25806   'plural' => '0',
25807   'i18n_status' => '0',
25808 ))
25809 ->values(array(
25810   'lid' => '392',
25811   '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.',
25812   'language' => 'fr',
25813   'plid' => '0',
25814   'plural' => '0',
25815   'i18n_status' => '0',
25816 ))
25817 ->values(array(
25818   'lid' => '393',
25819   'translation' => 'Ce code PHP a Ã©té saisi par un administrateur et supplantera la liste des valeurs permises ci-dessus.',
25820   'language' => 'fr',
25821   'plid' => '0',
25822   'plural' => '0',
25823   'i18n_status' => '0',
25824 ))
25825 ->values(array(
25826   'lid' => '394',
25827   'translation' => '@label (!name) - Valeurs autorisées',
25828   'language' => 'fr',
25829   'plid' => '0',
25830   'plural' => '0',
25831   'i18n_status' => '0',
25832 ))
25833 ->values(array(
25834   'lid' => '395',
25835   'translation' => '"Minimum" doit Ãªtre un nombre.',
25836   'language' => 'fr',
25837   'plid' => '0',
25838   'plural' => '0',
25839   'i18n_status' => '0',
25840 ))
25841 ->values(array(
25842   'lid' => '396',
25843   'translation' => '"Maximum" doit Ãªtre un nombre.',
25844   'language' => 'fr',
25845   'plid' => '0',
25846   'plural' => '0',
25847   'i18n_status' => '0',
25848 ))
25849 ->values(array(
25850   'lid' => '397',
25851   'translation' => '%name : la valeur ne peut Ãªtre inférieure Ã  %min.',
25852   'language' => 'fr',
25853   'plid' => '0',
25854   'plural' => '0',
25855   'i18n_status' => '0',
25856 ))
25857 ->values(array(
25858   'lid' => '398',
25859   'translation' => '%name : la valeur ne peut Ãªtre supérieure Ã  %max.',
25860   'language' => 'fr',
25861   'plid' => '0',
25862   'plural' => '0',
25863   'i18n_status' => '0',
25864 ))
25865 ->values(array(
25866   'lid' => '399',
25867   'translation' => '%name : valeur illégale.',
25868   'language' => 'fr',
25869   'plid' => '0',
25870   'plural' => '0',
25871   'i18n_status' => '0',
25872 ))
25873 ->values(array(
25874   'lid' => '400',
25875   'translation' => 'non mis en forme',
25876   'language' => 'fr',
25877   'plid' => '0',
25878   'plural' => '0',
25879   'i18n_status' => '0',
25880 ))
25881 ->values(array(
25882   'lid' => '401',
25883   'translation' => 'Champ texte',
25884   'language' => 'fr',
25885   'plid' => '0',
25886   'plural' => '0',
25887   'i18n_status' => '0',
25888 ))
25889 ->values(array(
25890   'lid' => '402',
25891   'translation' => 'Seuls les nombres et les décimaux sont autorisés dans %field.',
25892   'language' => 'fr',
25893   'plid' => '0',
25894   'plural' => '0',
25895   'i18n_status' => '0',
25896 ))
25897 ->values(array(
25898   'lid' => '403',
25899   'translation' => 'Seuls les nombres sont autorisés dans %field.',
25900   'language' => 'fr',
25901   'plid' => '0',
25902   'plural' => '0',
25903   'i18n_status' => '0',
25904 ))
25905 ->values(array(
25906   'lid' => '404',
25907   'translation' => 'Seuls les nombres et le caractère décimal (%decimal) sont autorisés dans %field.',
25908   'language' => 'fr',
25909   'plid' => '0',
25910   'plural' => '0',
25911   'i18n_status' => '0',
25912 ))
25913 ->values(array(
25914   'lid' => '405',
25915   'translation' => 'nombre',
25916   'language' => 'fr',
25917   'plid' => '0',
25918   'plural' => '0',
25919   'i18n_status' => '0',
25920 ))
25921 ->values(array(
25922   'lid' => '406',
25923   'translation' => 'Nombre',
25924   'language' => 'fr',
25925   'plid' => '0',
25926   'plural' => '0',
25927   'i18n_status' => '0',
25928 ))
25929 ->values(array(
25930   'lid' => '407',
25931   'translation' => 'Définit des types de champs numériques.',
25932   'language' => 'fr',
25933   'plid' => '0',
25934   'plural' => '0',
25935   'i18n_status' => '0',
25936 ))
25937 ->values(array(
25938   'lid' => '408',
25939   '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.",
25940   'language' => 'fr',
25941   'plid' => '0',
25942   'plural' => '0',
25943   'i18n_status' => '0',
25944 ))
25945 ->values(array(
25946   'lid' => '409',
25947   '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'.",
25948   'language' => 'fr',
25949   'plid' => '0',
25950   'plural' => '0',
25951   'i18n_status' => '0',
25952 ))
25953 ->values(array(
25954   'lid' => '410',
25955   '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.",
25956   'language' => 'fr',
25957   'plid' => '0',
25958   'plural' => '0',
25959   'i18n_status' => '0',
25960 ))
25961 ->values(array(
25962   'lid' => '411',
25963   'translation' => "Vous devez préciser les 'valeurs autorisées' pour ce champ.",
25964   'language' => 'fr',
25965   'plid' => '0',
25966   'plural' => '0',
25967   'i18n_status' => '0',
25968 ))
25969 ->values(array(
25970   'lid' => '412',
25971   'translation' => 'Case Ã  cocher on/off unique',
25972   'language' => 'fr',
25973   'plid' => '0',
25974   'plural' => '0',
25975   'i18n_status' => '0',
25976 ))
25977 ->values(array(
25978   'lid' => '413',
25979   'translation' => '%name : ce champ ne peut contenir plus de @count valeurs.',
25980   'language' => 'fr',
25981   'plid' => '0',
25982   'plural' => '0',
25983   'i18n_status' => '0',
25984 ))
25985 ->values(array(
25986   'lid' => '414',
25987   'translation' => 'N/A',
25988   'language' => 'fr',
25989   'plid' => '0',
25990   'plural' => '0',
25991   'i18n_status' => '0',
25992 ))
25993 ->values(array(
25994   'lid' => '415',
25995   'translation' => '- Aucun -',
25996   'language' => 'fr',
25997   'plid' => '0',
25998   'plural' => '0',
25999   'i18n_status' => '0',
26000 ))
26001 ->values(array(
26002   'lid' => '416',
26003   'translation' => 'optionwidgets',
26004   'language' => 'fr',
26005   'plid' => '0',
26006   'plural' => '0',
26007   'i18n_status' => '0',
26008 ))
26009 ->values(array(
26010   'lid' => '417',
26011   'translation' => 'Option Widgets',
26012   'language' => 'fr',
26013   'plid' => '0',
26014   'plural' => '0',
26015   'i18n_status' => '0',
26016 ))
26017 ->values(array(
26018   'lid' => '418',
26019   'translation' => 'Définit des widgets de liste déroulante, case Ã  cocher et bouton radio pour des champs texte et numériques.',
26020   'language' => 'fr',
26021   'plid' => '0',
26022   'plural' => '0',
26023   'i18n_status' => '0',
26024 ))
26025 ->values(array(
26026   'lid' => '419',
26027   'translation' => 'Enregistre le texte dans la base de données.',
26028   'language' => 'fr',
26029   'plid' => '0',
26030   'plural' => '0',
26031   'i18n_status' => '0',
26032 ))
26033 ->values(array(
26034   'lid' => '420',
26035   'translation' => 'Texte simple',
26036   'language' => 'fr',
26037   'plid' => '0',
26038   'plural' => '0',
26039   'i18n_status' => '0',
26040 ))
26041 ->values(array(
26042   'lid' => '421',
26043   'translation' => "Texte filtré (l'utilisateur choisit le format d'entrée)",
26044   'language' => 'fr',
26045   'plid' => '0',
26046   'plural' => '0',
26047   'i18n_status' => '0',
26048 ))
26049 ->values(array(
26050   'lid' => '422',
26051   'translation' => 'Traitement du texte',
26052   'language' => 'fr',
26053   'plid' => '0',
26054   'plural' => '0',
26055   'i18n_status' => '0',
26056 ))
26057 ->values(array(
26058   'lid' => '423',
26059   'translation' => 'Taille maximale',
26060   'language' => 'fr',
26061   'plid' => '0',
26062   'plural' => '0',
26063   'i18n_status' => '0',
26064 ))
26065 ->values(array(
26066   'lid' => '424',
26067   'translation' => 'La taille maximale des champs, en caractères. Laisser vide pour ne pas limiter la taille.',
26068   'language' => 'fr',
26069   'plid' => '0',
26070   'plural' => '0',
26071   'i18n_status' => '0',
26072 ))
26073 ->values(array(
26074   'lid' => '425',
26075   'translation' => '%name : la valeur ne doit pas dépasser %max caractères.',
26076   'language' => 'fr',
26077   'plid' => '0',
26078   'plural' => '0',
26079   'i18n_status' => '0',
26080 ))
26081 ->values(array(
26082   'lid' => '426',
26083   'translation' => 'Par défaut',
26084   'language' => 'fr',
26085   'plid' => '0',
26086   'plural' => '0',
26087   'i18n_status' => '0',
26088 ))
26089 ->values(array(
26090   'lid' => '427',
26091   'translation' => 'Coupé',
26092   'language' => 'fr',
26093   'plid' => '0',
26094   'plural' => '0',
26095   'i18n_status' => '0',
26096 ))
26097 ->values(array(
26098   'lid' => '428',
26099   'translation' => 'Zone de texte (plusieurs lignes)',
26100   'language' => 'fr',
26101   'plid' => '0',
26102   'plural' => '0',
26103   'i18n_status' => '0',
26104 ))
26105 ->values(array(
26106   'lid' => '429',
26107   'translation' => 'Taille du champ texte',
26108   'language' => 'fr',
26109   'plid' => '0',
26110   'plural' => '0',
26111   'i18n_status' => '0',
26112 ))
26113 ->values(array(
26114   'lid' => '430',
26115   'translation' => 'Rangées',
26116   'language' => 'fr',
26117   'plid' => '0',
26118   'plural' => '0',
26119   'i18n_status' => '0',
26120 ))
26121 ->values(array(
26122   'lid' => '431',
26123   'translation' => 'texte',
26124   'language' => 'fr',
26125   'plid' => '0',
26126   'plural' => '0',
26127   'i18n_status' => '0',
26128 ))
26129 ->values(array(
26130   'lid' => '432',
26131   'translation' => 'Définit les types de champs en texte simple.',
26132   'language' => 'fr',
26133   'plid' => '0',
26134   'plural' => '0',
26135   'i18n_status' => '0',
26136 ))
26137 ->values(array(
26138   'lid' => '433',
26139   'translation' => 'Charge un utilisateur référencé',
26140   'language' => 'fr',
26141   'plid' => '0',
26142   'plural' => '0',
26143   'i18n_status' => '0',
26144 ))
26145 ->values(array(
26146   'lid' => '434',
26147   'translation' => 'Contenu contenant le champ userrefernece',
26148   'language' => 'fr',
26149   'plid' => '0',
26150   'plural' => '0',
26151   'i18n_status' => '0',
26152 ))
26153 ->values(array(
26154   'lid' => '435',
26155   'translation' => 'Utilisateur référencé',
26156   'language' => 'fr',
26157   'plid' => '0',
26158   'plural' => '0',
26159   'i18n_status' => '0',
26160 ))
26161 ->values(array(
26162   'lid' => '436',
26163   'translation' => 'Noter que si le champ possède des valeurs multiples, seul le premier utilisateur sera chargé',
26164   'language' => 'fr',
26165   'plid' => '0',
26166   'plural' => '0',
26167   'i18n_status' => '0',
26168 ))
26169 ->values(array(
26170   'lid' => '437',
26171   'translation' => "Il n'y a aucun champ userreference défini",
26172   'language' => 'fr',
26173   'plid' => '0',
26174   'plural' => '0',
26175   'i18n_status' => '0',
26176 ))
26177 ->values(array(
26178   'lid' => '438',
26179   'translation' => 'User reference',
26180   'language' => 'fr',
26181   'plid' => '0',
26182   'plural' => '0',
26183   'i18n_status' => '0',
26184 ))
26185 ->values(array(
26186   'lid' => '439',
26187   'translation' => "Stocke l'ID d'un utilisateur lié sous forme d'entier",
26188   'language' => 'fr',
26189   'plid' => '0',
26190   'plural' => '0',
26191   'i18n_status' => '0',
26192 ))
26193 ->values(array(
26194   'lid' => '440',
26195   'translation' => 'Rôles utilisateur pouvant Ãªtre référencés',
26196   'language' => 'fr',
26197   'plid' => '0',
26198   'plural' => '0',
26199   'i18n_status' => '0',
26200 ))
26201 ->values(array(
26202   'lid' => '441',
26203   'translation' => 'Statuts utilisateur pouvant Ãªtre référencés',
26204   'language' => 'fr',
26205   'plid' => '0',
26206   'plural' => '0',
26207   'i18n_status' => '0',
26208 ))
26209 ->values(array(
26210   'lid' => '442',
26211   'translation' => 'Actif',
26212   'language' => 'fr',
26213   'plid' => '0',
26214   'plural' => '0',
26215   'i18n_status' => '0',
26216 ))
26217 ->values(array(
26218   'lid' => '443',
26219   'translation' => 'Bloqué',
26220   'language' => 'fr',
26221   'plid' => '0',
26222   'plural' => '0',
26223   'i18n_status' => '0',
26224 ))
26225 ->values(array(
26226   'lid' => '444',
26227   'translation' => 'Avancé - Utilisateurs pouvant Ãªtre référencés (Vue)',
26228   'language' => 'fr',
26229   'plid' => '0',
26230   'plural' => '0',
26231   'i18n_status' => '0',
26232 ))
26233 ->values(array(
26234   'lid' => '445',
26235   'translation' => 'Vue utilisée pour sélectionner les utilisateurs',
26236   'language' => 'fr',
26237   'plid' => '0',
26238   'plural' => '0',
26239   'i18n_status' => '0',
26240 ))
26241 ->values(array(
26242   'lid' => '446',
26243   'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les utilisateurs pouvant Ãªtre référencés.<br />Note :</p>',
26244   'language' => 'fr',
26245   'plid' => '0',
26246   'plural' => '0',
26247   'i18n_status' => '0',
26248 ))
26249 ->values(array(
26250   'lid' => '447',
26251   '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>",
26252   'language' => 'fr',
26253   'plid' => '0',
26254   'plural' => '0',
26255   'i18n_status' => '0',
26256 ))
26257 ->values(array(
26258   'lid' => '448',
26259   '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>",
26260   'language' => 'fr',
26261   'plid' => '0',
26262   'plural' => '0',
26263   'i18n_status' => '0',
26264 ))
26265 ->values(array(
26266   'lid' => '449',
26267   'translation' => '%name : utilisateur invalide.',
26268   'language' => 'fr',
26269   'plid' => '0',
26270   'plural' => '0',
26271   'i18n_status' => '0',
26272 ))
26273 ->values(array(
26274   'lid' => '450',
26275   '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.",
26276   'language' => 'fr',
26277   'plid' => '0',
26278   'plural' => '0',
26279   'i18n_status' => '0',
26280 ))
26281 ->values(array(
26282   'lid' => '451',
26283   'translation' => 'Lien retour',
26284   'language' => 'fr',
26285   'plid' => '0',
26286   'plural' => '0',
26287   'i18n_status' => '0',
26288 ))
26289 ->values(array(
26290   'lid' => '452',
26291   '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é.",
26292   'language' => 'fr',
26293   'plid' => '0',
26294   'plural' => '0',
26295   'i18n_status' => '0',
26296 ))
26297 ->values(array(
26298   'lid' => '453',
26299   'translation' => "%name : nous n'avons pas trouvé d'utilisateur valide pour ce nom.",
26300   'language' => 'fr',
26301   'plid' => '0',
26302   'plural' => '0',
26303   'i18n_status' => '0',
26304 ))
26305 ->values(array(
26306   'lid' => '454',
26307   'translation' => 'Contenu lié',
26308   'language' => 'fr',
26309   'plid' => '0',
26310   'plural' => '0',
26311   'i18n_status' => '0',
26312 ))
26313 ->values(array(
26314   'lid' => '455',
26315   'translation' => 'Autocomplétion Userreference',
26316   'language' => 'fr',
26317   'plid' => '0',
26318   'plural' => '0',
26319   'i18n_status' => '0',
26320 ))
26321 ->values(array(
26322   'lid' => '456',
26323   'translation' => 'userreference',
26324   'language' => 'fr',
26325   'plid' => '0',
26326   'plural' => '0',
26327   'i18n_status' => '0',
26328 ))
26329 ->values(array(
26330   'lid' => '457',
26331   'translation' => 'User Reference',
26332   'language' => 'fr',
26333   'plid' => '0',
26334   'plural' => '0',
26335   'i18n_status' => '0',
26336 ))
26337 ->values(array(
26338   'lid' => '458',
26339   'translation' => 'Définit un type de champ pour référencer un utilisateur depuis un noeud.',
26340   'language' => 'fr',
26341   'plid' => '0',
26342   'plural' => '0',
26343   'i18n_status' => '0',
26344 ))
26345 ->values(array(
26346   'lid' => '459',
26347   'translation' => 'Poids',
26348   'language' => 'fr',
26349   'plid' => '0',
26350   'plural' => '0',
26351   'i18n_status' => '0',
26352 ))
26353 ->values(array(
26354   'lid' => '460',
26355   'translation' => 'Ajouter',
26356   'language' => 'fr',
26357   'plid' => '0',
26358   'plural' => '0',
26359   'i18n_status' => '0',
26360 ))
26361 ->values(array(
26362   'lid' => '461',
26363   'translation' => 'Nouveau champ',
26364   'language' => 'fr',
26365   'plid' => '0',
26366   'plural' => '0',
26367   'i18n_status' => '0',
26368 ))
26369 ->values(array(
26370   'lid' => '462',
26371   'translation' => 'Champ existant',
26372   'language' => 'fr',
26373   'plid' => '0',
26374   'plural' => '0',
26375   'i18n_status' => '0',
26376 ))
26377 ->values(array(
26378   'lid' => '463',
26379   'translation' => 'Nouveau groupe',
26380   'language' => 'fr',
26381   'plid' => '0',
26382   'plural' => '0',
26383   'i18n_status' => '0',
26384 ))
26385 ->values(array(
26386   'lid' => '464',
26387   '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.",
26388   'language' => 'fr',
26389   'plid' => '0',
26390   'plural' => '0',
26391   'i18n_status' => '0',
26392 ))
26393 ->values(array(
26394   'lid' => '465',
26395   'translation' => 'Vous pouvez ajouter un champ Ã  un groupe en le faisant glisser ci-dessous et Ã  la droite du groupe.',
26396   'language' => 'fr',
26397   'plid' => '0',
26398   'plural' => '0',
26399   'i18n_status' => '0',
26400 ))
26401 ->values(array(
26402   'lid' => '466',
26403   '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é.",
26404   'language' => 'fr',
26405   'plid' => '0',
26406   'plural' => '0',
26407   'i18n_status' => '0',
26408 ))
26409 ->values(array(
26410   'lid' => '467',
26411   'translation' => "Utiliser la case Ã  cocher 'Exclure' pour exclure un Ã©lément de la valeur de !content transmis au gabarit du node.",
26412   'language' => 'fr',
26413   'plid' => '0',
26414   'plural' => '0',
26415   'i18n_status' => '0',
26416 ))
26417 ->values(array(
26418   'lid' => '468',
26419   'translation' => 'Supprimer cet Ã©lément',
26420   'language' => 'fr',
26421   'plid' => '0',
26422   'plural' => '0',
26423   'i18n_status' => '0',
26424 ))
26425 ->values(array(
26426   'lid' => '469',
26427   'translation' => 'Ajouter un champ',
26428   'language' => 'fr',
26429   'plid' => '0',
26430   'plural' => '0',
26431   'i18n_status' => '0',
26432 ))
26433 ->values(array(
26434   'lid' => '470',
26435   'translation' => "Valeur illégale pour le champ '%name'.",
26436   'language' => 'fr',
26437   'plid' => '0',
26438   'plural' => '0',
26439   'i18n_status' => '0',
26440 ))
26441 ->values(array(
26442   'lid' => '471',
26443   'translation' => "La longueur de '%label' dépasse %max caractères.",
26444   'language' => 'fr',
26445   'plid' => '0',
26446   'plural' => '0',
26447   'i18n_status' => '0',
26448 ))
26449 ->values(array(
26450   'lid' => '472',
26451   'translation' => "Le champ 'Rangées' doit Ãªtre un entier positif.",
26452   'language' => 'fr',
26453   'plid' => '0',
26454   'plural' => '0',
26455   'i18n_status' => '0',
26456 ))
26457 ->values(array(
26458   'lid' => '473',
26459   '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",
26460   'language' => 'fr',
26461   'plid' => '0',
26462   'plural' => '0',
26463   'i18n_status' => '0',
26464 ))
26465 ->values(array(
26466   'lid' => '474',
26467   'translation' => 'ajouter un champ',
26468   'language' => 'fr',
26469   'plid' => '0',
26470   'plural' => '0',
26471   'i18n_status' => '0',
26472 ))
26473 ->values(array(
26474   'lid' => '475',
26475   'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez néanmoins dès maintenant !link.",
26476   'language' => 'fr',
26477   'plid' => '0',
26478   'plural' => '0',
26479   'i18n_status' => '0',
26480 ))
26481 ->values(array(
26482   'lid' => '476',
26483   'translation' => 'ajouter un nouveau champ',
26484   'language' => 'fr',
26485   'plid' => '0',
26486   'plural' => '0',
26487   'i18n_status' => '0',
26488 ))
26489 ->values(array(
26490   'lid' => '477',
26491   '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.",
26492   'language' => 'fr',
26493   'plid' => '0',
26494   'plural' => '0',
26495   'i18n_status' => '0',
26496 ))
26497 ->values(array(
26498   'lid' => '478',
26499   '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.",
26500   'language' => 'fr',
26501   'plid' => '0',
26502   'plural' => '0',
26503   'i18n_status' => '0',
26504 ))
26505 ->values(array(
26506   'lid' => '479',
26507   'translation' => 'Ajouter un champ existant',
26508   'language' => 'fr',
26509   'plid' => '0',
26510   'plural' => '0',
26511   'i18n_status' => '0',
26512 ))
26513 ->values(array(
26514   'lid' => '480',
26515   'translation' => 'Créer un nouveau champ',
26516   'language' => 'fr',
26517   'plid' => '0',
26518   'plural' => '0',
26519   'i18n_status' => '0',
26520 ))
26521 ->values(array(
26522   'lid' => '481',
26523   'translation' => 'Nom du champ, lisible par une machine.',
26524   'language' => 'fr',
26525   'plid' => '0',
26526   'plural' => '0',
26527   'i18n_status' => '0',
26528 ))
26529 ->values(array(
26530   'lid' => '482',
26531   'translation' => ' Ce nom ne peut Ãªtre modifié.',
26532   'language' => 'fr',
26533   'plid' => '0',
26534   'plural' => '0',
26535   'i18n_status' => '0',
26536 ))
26537 ->values(array(
26538   'lid' => '483',
26539   '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.",
26540   'language' => 'fr',
26541   'plid' => '0',
26542   'plural' => '0',
26543   'i18n_status' => '0',
26544 ))
26545 ->values(array(
26546   'lid' => '484',
26547   'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données.',
26548   'language' => 'fr',
26549   'plid' => '0',
26550   'plural' => '0',
26551   'i18n_status' => '0',
26552 ))
26553 ->values(array(
26554   'lid' => '485',
26555   '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.",
26556   'language' => 'fr',
26557   'plid' => '0',
26558   'plural' => '0',
26559   'i18n_status' => '0',
26560 ))
26561 ->values(array(
26562   'lid' => '486',
26563   '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_'.",
26564   'language' => 'fr',
26565   'plid' => '0',
26566   'plural' => '0',
26567   'i18n_status' => '0',
26568 ))
26569 ->values(array(
26570   'lid' => '487',
26571   'translation' => "Le nom de champ '%field_name' existe déjà.",
26572   'language' => 'fr',
26573   'plid' => '0',
26574   'plural' => '0',
26575   'i18n_status' => '0',
26576 ))
26577 ->values(array(
26578   'lid' => '488',
26579   'translation' => "Le nom 'field_instance' est un nom réservé.",
26580   'language' => 'fr',
26581   'plid' => '0',
26582   'plural' => '0',
26583   'i18n_status' => '0',
26584 ))
26585 ->values(array(
26586   'lid' => '489',
26587   'translation' => "Le champ '%label' a Ã©té créé.",
26588   'language' => 'fr',
26589   'plid' => '0',
26590   'plural' => '0',
26591   'i18n_status' => '0',
26592 ))
26593 ->values(array(
26594   'lid' => '490',
26595   'translation' => "Mettre Ã  jour le champ '%label'.",
26596   'language' => 'fr',
26597   'plid' => '0',
26598   'plural' => '0',
26599   'i18n_status' => '0',
26600 ))
26601 ->values(array(
26602   'lid' => '491',
26603   'translation' => "Un problème est survenu Ã  la mise Ã  jour du champ '%label'.",
26604   'language' => 'fr',
26605   'plid' => '0',
26606   'plural' => '0',
26607   'i18n_status' => '0',
26608 ))
26609 ->values(array(
26610   'lid' => '492',
26611   '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.",
26612   'language' => 'fr',
26613   'plid' => '0',
26614   'plural' => '0',
26615   'i18n_status' => '0',
26616 ))
26617 ->values(array(
26618   'lid' => '493',
26619   '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.",
26620   'language' => 'fr',
26621   'plid' => '0',
26622   'plural' => '0',
26623   'i18n_status' => '0',
26624 ))
26625 ->values(array(
26626   'lid' => '494',
26627   'translation' => 'Le code PHP de valeur par défaut a créé @value, qui est invalide.',
26628   'language' => 'fr',
26629   'plid' => '0',
26630   'plural' => '0',
26631   'i18n_status' => '0',
26632 ))
26633 ->values(array(
26634   'lid' => '495',
26635   'translation' => 'Lien HTML mis en forme vers le nÅ“ud',
26636   'language' => 'fr',
26637   'plid' => '0',
26638   'plural' => '0',
26639   'i18n_status' => '0',
26640 ))
26641 ->values(array(
26642   'lid' => '496',
26643   'translation' => "La valeur de '%name 'ne peut Ãªtre plus petite que %min.",
26644   'language' => 'fr',
26645   'plid' => '0',
26646   'plural' => '0',
26647   'i18n_status' => '0',
26648 ))
26649 ->values(array(
26650   'lid' => '497',
26651   'translation' => "La valeur de '%name' ne peut pas Ãªtre plus grande que %max.",
26652   'language' => 'fr',
26653   'plid' => '0',
26654   'plural' => '0',
26655   'i18n_status' => '0',
26656 ))
26657 ->values(array(
26658   'lid' => '498',
26659   'translation' => "Seuls des nombres et des décimaux sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26660   'language' => 'fr',
26661   'plid' => '0',
26662   'plural' => '0',
26663   'i18n_status' => '0',
26664 ))
26665 ->values(array(
26666   'lid' => '499',
26667   'translation' => "Seuls des nombres sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26668   'language' => 'fr',
26669   'plid' => '0',
26670   'plural' => '0',
26671   'i18n_status' => '0',
26672 ))
26673 ->values(array(
26674   'lid' => '500',
26675   'translation' => "Seuls des nombres et le marqueur décimal (%decimal) sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26676   'language' => 'fr',
26677   'plid' => '0',
26678   'plural' => '0',
26679   'i18n_status' => '0',
26680 ))
26681 ->values(array(
26682   'lid' => '501',
26683   '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.",
26684   'language' => 'fr',
26685   'plid' => '0',
26686   'plural' => '0',
26687   'i18n_status' => '0',
26688 ))
26689 ->values(array(
26690   'lid' => '504',
26691   'translation' => 'fr - Favorite color',
26692   'language' => 'fr',
26693   'plid' => '0',
26694   'plural' => '0',
26695   'i18n_status' => '0',
26696 ))
26697 ->values(array(
26698   'lid' => '505',
26699   'translation' => 'Inscrivez votre couleur préférée',
26700   'language' => 'fr',
26701   'plid' => '0',
26702   'plural' => '0',
26703   'i18n_status' => '0',
26704 ))
26705 ->values(array(
26706   'lid' => '506',
26707   'translation' => 'fr - Personal information',
26708   'language' => 'fr',
26709   'plid' => '0',
26710   'plural' => '0',
26711   'i18n_status' => '0',
26712 ))
26713 ->values(array(
26714   'lid' => '507',
26715   'translation' => 'fr - Biography',
26716   'language' => 'fr',
26717   'plid' => '0',
26718   'plural' => '0',
26719   'i18n_status' => '0',
26720 ))
26721 ->values(array(
26722   'lid' => '508',
26723   'translation' => 'fr - Tell people a little bit about yourself',
26724   'language' => 'fr',
26725   'plid' => '0',
26726   'plural' => '0',
26727   'i18n_status' => '0',
26728 ))
26729 ->values(array(
26730   'lid' => '509',
26731   'translation' => 'fr - Sell your email address?',
26732   'language' => 'fr',
26733   'plid' => '0',
26734   'plural' => '0',
26735   'i18n_status' => '0',
26736 ))
26737 ->values(array(
26738   'lid' => '510',
26739   'translation' => "fr - If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
26740   'language' => 'fr',
26741   'plid' => '0',
26742   'plural' => '0',
26743   'i18n_status' => '0',
26744 ))
26745 ->values(array(
26746   'lid' => '511',
26747   'translation' => 'fr - Communication preferences',
26748   'language' => 'fr',
26749   'plid' => '0',
26750   'plural' => '0',
26751   'i18n_status' => '0',
26752 ))
26753 ->values(array(
26754   'lid' => '512',
26755   'translation' => 'fr - Sales Category',
26756   'language' => 'fr',
26757   'plid' => '0',
26758   'plural' => '0',
26759   'i18n_status' => '0',
26760 ))
26761 ->values(array(
26762   'lid' => '513',
26763   'translation' => "fr - Select the sales categories to which this user's address was sold.",
26764   'language' => 'fr',
26765   'plid' => '0',
26766   'plural' => '0',
26767   'i18n_status' => '0',
26768 ))
26769 ->values(array(
26770   'lid' => '514',
26771   'translation' => 'fr - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
26772   'language' => 'fr',
26773   'plid' => '0',
26774   'plural' => '0',
26775   'i18n_status' => '0',
26776 ))
26777 ->values(array(
26778   'lid' => '515',
26779   'translation' => 'fr - Administrative data',
26780   'language' => 'fr',
26781   'plid' => '0',
26782   'plural' => '0',
26783   'i18n_status' => '0',
26784 ))
26785 ->values(array(
26786   'lid' => '516',
26787   'translation' => 'Mes groupes préférés',
26788   'language' => 'fr',
26789   'plid' => '0',
26790   'plural' => '0',
26791   'i18n_status' => '0',
26792 ))
26793 ->values(array(
26794   'lid' => '517',
26795   'translation' => "fr - Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
26796   'language' => 'fr',
26797   'plid' => '0',
26798   'plural' => '0',
26799   'i18n_status' => '0',
26800 ))
26801 ->values(array(
26802   'lid' => '518',
26803   'translation' => 'fr - Birthdate',
26804   'language' => 'fr',
26805   'plid' => '0',
26806   'plural' => '0',
26807   'i18n_status' => '0',
26808 ))
26809 ->values(array(
26810   'lid' => '519',
26811   'translation' => "fr - Enter your birth date and we'll send you a coupon.",
26812   'language' => 'fr',
26813   'plid' => '0',
26814   'plural' => '0',
26815   'i18n_status' => '0',
26816 ))
26817 ->values(array(
26818   'lid' => '520',
26819   'translation' => "J'aime les migrations",
26820   'language' => 'fr',
26821   'plid' => '0',
26822   'plural' => '0',
26823   'i18n_status' => '1',
26824 ))
26825 ->values(array(
26826   'lid' => '521',
26827   'translation' => 'Si vous cochez cette case, vous aimez les migrations.',
26828   'language' => 'fr',
26829   'plid' => '0',
26830   'plural' => '0',
26831   'i18n_status' => '0',
26832 ))
26833 ->values(array(
26834   'lid' => '522',
26835   'translation' => 'fr - Blog',
26836   'language' => 'fr',
26837   'plid' => '0',
26838   'plural' => '0',
26839   'i18n_status' => '0',
26840 ))
26841 ->values(array(
26842   'lid' => '523',
26843   'translation' => 'fr - Paste the full URL, including http://, of your personal blog.',
26844   'language' => 'fr',
26845   'plid' => '0',
26846   'plural' => '0',
26847   'i18n_status' => '0',
26848 ))
26849 ->values(array(
26850   'lid' => '524',
26851   'translation' => 'fr - Static Block',
26852   'language' => 'fr',
26853   'plid' => '0',
26854   'plural' => '0',
26855   'i18n_status' => '0',
26856 ))
26857 ->values(array(
26858   'lid' => '525',
26859   'translation' => '<h3>fr - My first custom block body</h3>',
26860   'language' => 'fr',
26861   'plid' => '0',
26862   'plural' => '0',
26863   'i18n_status' => '0',
26864 ))
26865 ->values(array(
26866   'lid' => '526',
26867   'translation' => 'Encore un bloc statique',
26868   'language' => 'fr',
26869   'plid' => '0',
26870   'plural' => '0',
26871   'i18n_status' => '0',
26872 ))
26873 ->values(array(
26874   'lid' => '527',
26875   'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
26876   'language' => 'fr',
26877   'plid' => '0',
26878   'plural' => '0',
26879   'i18n_status' => '0',
26880 ))
26881 ->values(array(
26882   'lid' => '528',
26883   'translation' => 'fr - Tags',
26884   'language' => 'fr',
26885   'plid' => '0',
26886   'plural' => '0',
26887   'i18n_status' => '0',
26888 ))
26889 ->values(array(
26890   'lid' => '529',
26891   'translation' => 'fr - vocabulary 1 (i=0)',
26892   'language' => 'fr',
26893   'plid' => '0',
26894   'plural' => '0',
26895   'i18n_status' => '0',
26896 ))
26897 ->values(array(
26898   'lid' => '530',
26899   'translation' => 'fr - vocabulary 2 (i=1)',
26900   'language' => 'fr',
26901   'plid' => '0',
26902   'plural' => '0',
26903   'i18n_status' => '0',
26904 ))
26905 ->values(array(
26906   'lid' => '531',
26907   'translation' => 'fr - vocabulary 3 (i=2)',
26908   'language' => 'fr',
26909   'plid' => '0',
26910   'plural' => '0',
26911   'i18n_status' => '0',
26912 ))
26913 ->values(array(
26914   'lid' => '532',
26915   'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
26916   'language' => 'fr',
26917   'plid' => '0',
26918   'plural' => '0',
26919   'i18n_status' => '0',
26920 ))
26921 ->values(array(
26922   'lid' => '533',
26923   'translation' => 'fr - Article',
26924   'language' => 'fr',
26925   'plid' => '0',
26926   'plural' => '0',
26927   'i18n_status' => '0',
26928 ))
26929 ->values(array(
26930   'lid' => '534',
26931   'translation' => 'fr - Title',
26932   'language' => 'fr',
26933   'plid' => '0',
26934   'plural' => '0',
26935   'i18n_status' => '0',
26936 ))
26937 ->values(array(
26938   'lid' => '535',
26939   'translation' => 'fr - Body',
26940   'language' => 'fr',
26941   'plid' => '0',
26942   'plural' => '0',
26943   'i18n_status' => '0',
26944 ))
26945 ->values(array(
26946   'lid' => '536',
26947   'translation' => 'fr - An <em>article</em>, content type.',
26948   'language' => 'fr',
26949   'plid' => '0',
26950   'plural' => '0',
26951   'i18n_status' => '0',
26952 ))
26953 ->values(array(
26954   'lid' => '537',
26955   'translation' => 'fr - Company',
26956   'language' => 'fr',
26957   'plid' => '0',
26958   'plural' => '0',
26959   'i18n_status' => '0',
26960 ))
26961 ->values(array(
26962   'lid' => '538',
26963   'translation' => 'fr - Name',
26964   'language' => 'fr',
26965   'plid' => '0',
26966   'plural' => '0',
26967   'i18n_status' => '0',
26968 ))
26969 ->values(array(
26970   'lid' => '539',
26971   'translation' => 'fr - Description',
26972   'language' => 'fr',
26973   'plid' => '0',
26974   'plural' => '0',
26975   'i18n_status' => '0',
26976 ))
26977 ->values(array(
26978   'lid' => '540',
26979   'translation' => 'fr - Company node type',
26980   'language' => 'fr',
26981   'plid' => '0',
26982   'plural' => '0',
26983   'i18n_status' => '0',
26984 ))
26985 ->values(array(
26986   'lid' => '541',
26987   'translation' => 'fr - Employee',
26988   'language' => 'fr',
26989   'plid' => '0',
26990   'plural' => '0',
26991   'i18n_status' => '0',
26992 ))
26993 ->values(array(
26994   'lid' => '542',
26995   'translation' => 'fr - Name',
26996   'language' => 'fr',
26997   'plid' => '0',
26998   'plural' => '0',
26999   'i18n_status' => '0',
27000 ))
27001 ->values(array(
27002   'lid' => '543',
27003   'translation' => 'fr - Bio',
27004   'language' => 'fr',
27005   'plid' => '0',
27006   'plural' => '0',
27007   'i18n_status' => '0',
27008 ))
27009 ->values(array(
27010   'lid' => '544',
27011   'translation' => 'fr - Employee node type',
27012   'language' => 'fr',
27013   'plid' => '0',
27014   'plural' => '0',
27015   'i18n_status' => '0',
27016 ))
27017 ->values(array(
27018   'lid' => '545',
27019   'translation' => 'fr - Sponsor',
27020   'language' => 'fr',
27021   'plid' => '0',
27022   'plural' => '0',
27023   'i18n_status' => '0',
27024 ))
27025 ->values(array(
27026   'lid' => '546',
27027   'translation' => 'fr - Name',
27028   'language' => 'fr',
27029   'plid' => '0',
27030   'plural' => '0',
27031   'i18n_status' => '0',
27032 ))
27033 ->values(array(
27034   'lid' => '547',
27035   'translation' => 'fr - Body',
27036   'language' => 'fr',
27037   'plid' => '0',
27038   'plural' => '0',
27039   'i18n_status' => '0',
27040 ))
27041 ->values(array(
27042   'lid' => '548',
27043   'translation' => 'fr - Sponsor node type',
27044   'language' => 'fr',
27045   'plid' => '0',
27046   'plural' => '0',
27047   'i18n_status' => '0',
27048 ))
27049 ->values(array(
27050   'lid' => '549',
27051   'translation' => 'fr - Story',
27052   'language' => 'fr',
27053   'plid' => '0',
27054   'plural' => '0',
27055   'i18n_status' => '0',
27056 ))
27057 ->values(array(
27058   'lid' => '550',
27059   'translation' => 'fr - Title',
27060   'language' => 'fr',
27061   'plid' => '0',
27062   'plural' => '0',
27063   'i18n_status' => '0',
27064 ))
27065 ->values(array(
27066   'lid' => '551',
27067   'translation' => 'fr - Body',
27068   'language' => 'fr',
27069   'plid' => '0',
27070   'plural' => '0',
27071   'i18n_status' => '0',
27072 ))
27073 ->values(array(
27074   'lid' => '552',
27075   '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.",
27076   'language' => 'fr',
27077   'plid' => '0',
27078   'plural' => '0',
27079   'i18n_status' => '0',
27080 ))
27081 ->values(array(
27082   'lid' => '553',
27083   'translation' => 'fr - Migrate test event',
27084   'language' => 'fr',
27085   'plid' => '0',
27086   'plural' => '0',
27087   'i18n_status' => '0',
27088 ))
27089 ->values(array(
27090   'lid' => '554',
27091   'translation' => 'fr - Event Name',
27092   'language' => 'fr',
27093   'plid' => '0',
27094   'plural' => '0',
27095   'i18n_status' => '0',
27096 ))
27097 ->values(array(
27098   'lid' => '555',
27099   'translation' => 'fr - Body',
27100   'language' => 'fr',
27101   'plid' => '0',
27102   'plural' => '0',
27103   'i18n_status' => '0',
27104 ))
27105 ->values(array(
27106   'lid' => '556',
27107   'translation' => 'fr - test event description here',
27108   'language' => 'fr',
27109   'plid' => '0',
27110   'plural' => '0',
27111   'i18n_status' => '0',
27112 ))
27113 ->values(array(
27114   'lid' => '558',
27115   'translation' => 'fr - Migrate test page',
27116   'language' => 'fr',
27117   'plid' => '0',
27118   'plural' => '0',
27119   'i18n_status' => '0',
27120 ))
27121 ->values(array(
27122   'lid' => '559',
27123   'translation' => 'fr - Title',
27124   'language' => 'fr',
27125   'plid' => '0',
27126   'plural' => '0',
27127   'i18n_status' => '0',
27128 ))
27129 ->values(array(
27130   'lid' => '560',
27131   'translation' => 'fr - This is the body field label',
27132   'language' => 'fr',
27133   'plid' => '0',
27134   'plural' => '0',
27135   'i18n_status' => '0',
27136 ))
27137 ->values(array(
27138   'lid' => '561',
27139   '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.",
27140   'language' => 'fr',
27141   'plid' => '0',
27142   'plural' => '0',
27143   'i18n_status' => '0',
27144 ))
27145 ->values(array(
27146   'lid' => '562',
27147   'translation' => 'fr - Migrate test planet',
27148   'language' => 'fr',
27149   'plid' => '0',
27150   'plural' => '0',
27151   'i18n_status' => '0',
27152 ))
27153 ->values(array(
27154   'lid' => '563',
27155   'translation' => 'fr - Title',
27156   'language' => 'fr',
27157   'plid' => '0',
27158   'plural' => '0',
27159   'i18n_status' => '0',
27160 ))
27161 ->values(array(
27162   'lid' => '564',
27163   'translation' => 'fr - Body',
27164   'language' => 'fr',
27165   'plid' => '0',
27166   'plural' => '0',
27167   'i18n_status' => '0',
27168 ))
27169 ->values(array(
27170   'lid' => '565',
27171   '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.",
27172   'language' => 'fr',
27173   'plid' => '0',
27174   'plural' => '0',
27175   'i18n_status' => '0',
27176 ))
27177 ->values(array(
27178   'lid' => '566',
27179   'translation' => 'Migrer histoire de test',
27180   'language' => 'fr',
27181   'plid' => '0',
27182   'plural' => '0',
27183   'i18n_status' => '0',
27184 ))
27185 ->values(array(
27186   'lid' => '567',
27187   'translation' => 'Titre',
27188   'language' => 'fr',
27189   'plid' => '0',
27190   'plural' => '0',
27191   'i18n_status' => '0',
27192 ))
27193 ->values(array(
27194   'lid' => '568',
27195   'translation' => 'Le corps',
27196   'language' => 'fr',
27197   'plid' => '0',
27198   'plural' => '0',
27199   'i18n_status' => '0',
27200 ))
27201 ->values(array(
27202   'lid' => '569',
27203   '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.",
27204   'language' => 'fr',
27205   'plid' => '0',
27206   'plural' => '0',
27207   'i18n_status' => '0',
27208 ))
27209 ->values(array(
27210   'lid' => '570',
27211   'translation' => 'fr - Text Field',
27212   'language' => 'fr',
27213   'plid' => '0',
27214   'plural' => '0',
27215   'i18n_status' => '0',
27216 ))
27217 ->values(array(
27218   'lid' => '571',
27219   'translation' => 'fr - An example text field without exclude.',
27220   'language' => 'fr',
27221   'plid' => '0',
27222   'plural' => '0',
27223   'i18n_status' => '0',
27224 ))
27225 ->values(array(
27226   'lid' => '572',
27227   'translation' => 'fr - Integer Field',
27228   'language' => 'fr',
27229   'plid' => '0',
27230   'plural' => '0',
27231   'i18n_status' => '0',
27232 ))
27233 ->values(array(
27234   'lid' => '573',
27235   'translation' => 'fr - An example integer field.',
27236   'language' => 'fr',
27237   'plid' => '0',
27238   'plural' => '0',
27239   'i18n_status' => '0',
27240 ))
27241 ->values(array(
27242   'lid' => '574',
27243   'translation' => 'fr - Text Field',
27244   'language' => 'fr',
27245   'plid' => '0',
27246   'plural' => '0',
27247   'i18n_status' => '0',
27248 ))
27249 ->values(array(
27250   'lid' => '575',
27251   'translation' => 'fr - An example text field.',
27252   'language' => 'fr',
27253   'plid' => '0',
27254   'plural' => '0',
27255   'i18n_status' => '0',
27256 ))
27257 ->values(array(
27258   'lid' => '576',
27259   'translation' => 'fr - Decimal Field',
27260   'language' => 'fr',
27261   'plid' => '0',
27262   'plural' => '0',
27263   'i18n_status' => '0',
27264 ))
27265 ->values(array(
27266   'lid' => '577',
27267   'translation' => 'fr - An example decimal field.',
27268   'language' => 'fr',
27269   'plid' => '0',
27270   'plural' => '0',
27271   'i18n_status' => '0',
27272 ))
27273 ->values(array(
27274   'lid' => '578',
27275   'translation' => 'fr - Float Field',
27276   'language' => 'fr',
27277   'plid' => '0',
27278   'plural' => '0',
27279   'i18n_status' => '0',
27280 ))
27281 ->values(array(
27282   'lid' => '579',
27283   'translation' => 'fr - An example float field.',
27284   'language' => 'fr',
27285   'plid' => '0',
27286   'plural' => '0',
27287   'i18n_status' => '0',
27288 ))
27289 ->values(array(
27290   'lid' => '580',
27291   'translation' => 'fr - Integer Field',
27292   'language' => 'fr',
27293   'plid' => '0',
27294   'plural' => '0',
27295   'i18n_status' => '0',
27296 ))
27297 ->values(array(
27298   'lid' => '581',
27299   'translation' => 'fr - An example integer field.',
27300   'language' => 'fr',
27301   'plid' => '0',
27302   'plural' => '0',
27303   'i18n_status' => '0',
27304 ))
27305 ->values(array(
27306   'lid' => '582',
27307   'translation' => 'fr - Integer Field',
27308   'language' => 'fr',
27309   'plid' => '0',
27310   'plural' => '0',
27311   'i18n_status' => '0',
27312 ))
27313 ->values(array(
27314   'lid' => '583',
27315   'translation' => 'fr - An example integer field.',
27316   'language' => 'fr',
27317   'plid' => '0',
27318   'plural' => '0',
27319   'i18n_status' => '0',
27320 ))
27321 ->values(array(
27322   'lid' => '584',
27323   'translation' => 'fr - Email Field',
27324   'language' => 'fr',
27325   'plid' => '0',
27326   'plural' => '0',
27327   'i18n_status' => '0',
27328 ))
27329 ->values(array(
27330   'lid' => '585',
27331   'translation' => 'fr - An example email field.',
27332   'language' => 'fr',
27333   'plid' => '0',
27334   'plural' => '0',
27335   'i18n_status' => '0',
27336 ))
27337 ->values(array(
27338   'lid' => '586',
27339   'translation' => 'fr - Link Field',
27340   'language' => 'fr',
27341   'plid' => '0',
27342   'plural' => '0',
27343   'i18n_status' => '0',
27344 ))
27345 ->values(array(
27346   'lid' => '587',
27347   'translation' => 'fr - An example link field.',
27348   'language' => 'fr',
27349   'plid' => '0',
27350   'plural' => '0',
27351   'i18n_status' => '0',
27352 ))
27353 ->values(array(
27354   'lid' => '588',
27355   'translation' => 'fr - File Field',
27356   'language' => 'fr',
27357   'plid' => '0',
27358   'plural' => '0',
27359   'i18n_status' => '0',
27360 ))
27361 ->values(array(
27362   'lid' => '589',
27363   'translation' => 'fr - An example file field.',
27364   'language' => 'fr',
27365   'plid' => '0',
27366   'plural' => '0',
27367   'i18n_status' => '0',
27368 ))
27369 ->values(array(
27370   'lid' => '590',
27371   'translation' => 'fr - Image Field',
27372   'language' => 'fr',
27373   'plid' => '0',
27374   'plural' => '0',
27375   'i18n_status' => '0',
27376 ))
27377 ->values(array(
27378   'lid' => '591',
27379   'translation' => 'fr - An example image field.',
27380   'language' => 'fr',
27381   'plid' => '0',
27382   'plural' => '0',
27383   'i18n_status' => '0',
27384 ))
27385 ->values(array(
27386   'lid' => '592',
27387   'translation' => 'fr - Date Field',
27388   'language' => 'fr',
27389   'plid' => '0',
27390   'plural' => '0',
27391   'i18n_status' => '0',
27392 ))
27393 ->values(array(
27394   'lid' => '593',
27395   'translation' => 'fr - An example date field.',
27396   'language' => 'fr',
27397   'plid' => '0',
27398   'plural' => '0',
27399   'i18n_status' => '0',
27400 ))
27401 ->values(array(
27402   'lid' => '594',
27403   'translation' => 'fr - Date Stamp Field',
27404   'language' => 'fr',
27405   'plid' => '0',
27406   'plural' => '0',
27407   'i18n_status' => '0',
27408 ))
27409 ->values(array(
27410   'lid' => '595',
27411   'translation' => 'fr - An example date stamp field.',
27412   'language' => 'fr',
27413   'plid' => '0',
27414   'plural' => '0',
27415   'i18n_status' => '0',
27416 ))
27417 ->values(array(
27418   'lid' => '596',
27419   'translation' => 'fr - Datetime Field',
27420   'language' => 'fr',
27421   'plid' => '0',
27422   'plural' => '0',
27423   'i18n_status' => '0',
27424 ))
27425 ->values(array(
27426   'lid' => '597',
27427   'translation' => 'fr - An example datetime field.',
27428   'language' => 'fr',
27429   'plid' => '0',
27430   'plural' => '0',
27431   'i18n_status' => '0',
27432 ))
27433 ->values(array(
27434   'lid' => '598',
27435   'translation' => 'fr - Phone Field',
27436   'language' => 'fr',
27437   'plid' => '0',
27438   'plural' => '0',
27439   'i18n_status' => '0',
27440 ))
27441 ->values(array(
27442   'lid' => '599',
27443   'translation' => 'fr - An example phone field.',
27444   'language' => 'fr',
27445   'plid' => '0',
27446   'plural' => '0',
27447   'i18n_status' => '0',
27448 ))
27449 ->values(array(
27450   'lid' => '600',
27451   'translation' => 'fr - Decimal Radio Buttons Field',
27452   'language' => 'fr',
27453   'plid' => '0',
27454   'plural' => '0',
27455   'i18n_status' => '0',
27456 ))
27457 ->values(array(
27458   'lid' => '601',
27459   'translation' => 'fr - An example decimal field using radio buttons.',
27460   'language' => 'fr',
27461   'plid' => '0',
27462   'plural' => '0',
27463   'i18n_status' => '0',
27464 ))
27465 ->values(array(
27466   'lid' => '604',
27467   'translation' => 'fr - Float Single Checkbox Field',
27468   'language' => 'fr',
27469   'plid' => '0',
27470   'plural' => '0',
27471   'i18n_status' => '0',
27472 ))
27473 ->values(array(
27474   'lid' => '605',
27475   'translation' => 'fr - An example float field using a single on/off checkbox.',
27476   'language' => 'fr',
27477   'plid' => '0',
27478   'plural' => '0',
27479   'i18n_status' => '0',
27480 ))
27481 ->values(array(
27482   'lid' => '607',
27483   'translation' => 'fr - 1.234',
27484   'language' => 'fr',
27485   'plid' => '0',
27486   'plural' => '0',
27487   'i18n_status' => '0',
27488 ))
27489 ->values(array(
27490   'lid' => '608',
27491   'translation' => 'fr - Integer Select List Field',
27492   'language' => 'fr',
27493   'plid' => '0',
27494   'plural' => '0',
27495   'i18n_status' => '0',
27496 ))
27497 ->values(array(
27498   'lid' => '609',
27499   'translation' => 'fr - An example integer field using a select list.',
27500   'language' => 'fr',
27501   'plid' => '0',
27502   'plural' => '0',
27503   'i18n_status' => '0',
27504 ))
27505 ->values(array(
27506   'lid' => '611',
27507   'translation' => 'fr - 2341',
27508   'language' => 'fr',
27509   'plid' => '0',
27510   'plural' => '0',
27511   'i18n_status' => '0',
27512 ))
27513 ->values(array(
27514   'lid' => '613',
27515   'translation' => 'fr - 4123',
27516   'language' => 'fr',
27517   'plid' => '0',
27518   'plural' => '0',
27519   'i18n_status' => '0',
27520 ))
27521 ->values(array(
27522   'lid' => '614',
27523   'translation' => 'fr - Text Single Checkbox Field',
27524   'language' => 'fr',
27525   'plid' => '0',
27526   'plural' => '0',
27527   'i18n_status' => '0',
27528 ))
27529 ->values(array(
27530   'lid' => '615',
27531   'translation' => 'fr - An example text field using a single on/off checkbox.',
27532   'language' => 'fr',
27533   'plid' => '0',
27534   'plural' => '0',
27535   'i18n_status' => '0',
27536 ))
27537 ->values(array(
27538   'lid' => '616',
27539   'translation' => 'fr - Hello',
27540   'language' => 'fr',
27541   'plid' => '0',
27542   'plural' => '0',
27543   'i18n_status' => '0',
27544 ))
27545 ->values(array(
27546   'lid' => '617',
27547   'translation' => 'fr - Goodbye',
27548   'language' => 'fr',
27549   'plid' => '0',
27550   'plural' => '0',
27551   'i18n_status' => '0',
27552 ))
27553 ->values(array(
27554   'lid' => '618',
27555   'translation' => 'fr - Text Single Checkbox Field 2',
27556   'language' => 'fr',
27557   'plid' => '0',
27558   'plural' => '0',
27559   'i18n_status' => '0',
27560 ))
27561 ->values(array(
27562   'lid' => '619',
27563   'translation' => 'fr - Checkbox that uses keys only and no label.',
27564   'language' => 'fr',
27565   'plid' => '0',
27566   'plural' => '0',
27567   'i18n_status' => '0',
27568 ))
27569 ->values(array(
27570   'lid' => '620',
27571   'translation' => 'fr - Off',
27572   'language' => 'fr',
27573   'plid' => '0',
27574   'plural' => '0',
27575   'i18n_status' => '0',
27576 ))
27577 ->values(array(
27578   'lid' => '621',
27579   'translation' => 'fr - Hello',
27580   'language' => 'fr',
27581   'plid' => '0',
27582   'plural' => '0',
27583   'i18n_status' => '0',
27584 ))
27585 ->values(array(
27586   'lid' => '622',
27587   'translation' => 'Champ de texte',
27588   'language' => 'fr',
27589   'plid' => '0',
27590   'plural' => '0',
27591   'i18n_status' => '0',
27592 ))
27593 ->values(array(
27594   'lid' => '623',
27595   'translation' => 'fr - An example text field.',
27596   'language' => 'fr',
27597   'plid' => '0',
27598   'plural' => '0',
27599   'i18n_status' => '0',
27600 ))
27601 ->values(array(
27602   'lid' => '624',
27603   'translation' => 'fr - Decimal Field',
27604   'language' => 'fr',
27605   'plid' => '0',
27606   'plural' => '0',
27607   'i18n_status' => '0',
27608 ))
27609 ->values(array(
27610   'lid' => '625',
27611   'translation' => 'Un exemple plusieurs valeurs champ décimal.',
27612   'language' => 'fr',
27613   'plid' => '0',
27614   'plural' => '0',
27615   'i18n_status' => '0',
27616 ))
27617 ->values(array(
27618   'lid' => '627',
27619   'translation' => 'fr - An example text field using a single on/off checkbox.',
27620   'language' => 'fr',
27621   'plid' => '0',
27622   'plural' => '0',
27623   'i18n_status' => '0',
27624 ))
27625 ->values(array(
27626   'lid' => '633',
27627   'translation' => 'fr - Drupal.org',
27628   'language' => 'fr',
27629   'plid' => '0',
27630   'plural' => '0',
27631   'i18n_status' => '0',
27632 ))
27633 ->values(array(
27634   'lid' => '634',
27635   'translation' => 'fr - Test 2',
27636   'language' => 'fr',
27637   'plid' => '0',
27638   'plural' => '0',
27639   'i18n_status' => '0',
27640 ))
27641 ->values(array(
27642   'lid' => '635',
27643   'translation' => 'fr - Test menu link 2',
27644   'language' => 'fr',
27645   'plid' => '0',
27646   'plural' => '0',
27647   'i18n_status' => '0',
27648 ))
27649 ->values(array(
27650   'lid' => '663',
27651   'translation' => 'fr - Content management',
27652   'language' => 'fr',
27653   'plid' => '0',
27654   'plural' => '0',
27655   'i18n_status' => '0',
27656 ))
27657 ->values(array(
27658   'lid' => '1254',
27659   'translation' => 'fr - Modules',
27660   'language' => 'fr',
27661   'plid' => '0',
27662   'plural' => '0',
27663   'i18n_status' => '0',
27664 ))
27665 ->values(array(
27666   'lid' => '1264',
27667   'translation' => 'fr - By task',
27668   'language' => 'fr',
27669   'plid' => '0',
27670   'plural' => '0',
27671   'i18n_status' => '0',
27672 ))
27673 ->values(array(
27674   'lid' => '1265',
27675   'translation' => 'fr - By module',
27676   'language' => 'fr',
27677   'plid' => '0',
27678   'plural' => '0',
27679   'i18n_status' => '0',
27680 ))
27681 ->values(array(
27682   'lid' => '1669',
27683   '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>",
27684   'language' => 'fr',
27685   'plid' => '0',
27686   'plural' => '0',
27687   'i18n_status' => '0',
27688 ))
27689 ->values(array(
27690   'lid' => '1670',
27691   'translation' => "Champ '%name' : cette publication ne peut Ãªtre référencée.",
27692   'language' => 'fr',
27693   'plid' => '0',
27694   'plural' => '0',
27695   'i18n_status' => '0',
27696 ))
27697 ->values(array(
27698   'lid' => '1671',
27699   'translation' => "Champ '%name' : incohérence au niveau du titre. Merci de vérifier votre sélection.",
27700   'language' => 'fr',
27701   'plid' => '0',
27702   'plural' => '0',
27703   'i18n_status' => '0',
27704 ))
27705 ->values(array(
27706   'lid' => '1678',
27707   'translation' => 'fr - I really, really, really love migrating ',
27708   'language' => 'fr',
27709   'plid' => '0',
27710   'plural' => '0',
27711   'i18n_status' => '0',
27712 ))
27713 ->values(array(
27714   'lid' => '1690',
27715   'translation' => 'Noir',
27716   'language' => 'fr',
27717   'plid' => '0',
27718   'plural' => '0',
27719   'i18n_status' => '0',
27720 ))
27721 ->values(array(
27722   'lid' => '66',
27723   'translation' => 'zu - CCK - Aucune Intégration aux Vues',
27724   'language' => 'zu',
27725   'plid' => '0',
27726   'plural' => '0',
27727   'i18n_status' => '0',
27728 ))
27729 ->values(array(
27730   'lid' => '506',
27731   'translation' => 'zu - Personal information',
27732   'language' => 'zu',
27733   'plid' => '0',
27734   'plural' => '0',
27735   'i18n_status' => '0',
27736 ))
27737 ->values(array(
27738   'lid' => '512',
27739   'translation' => 'zu - Sales Category',
27740   'language' => 'zu',
27741   'plid' => '0',
27742   'plural' => '0',
27743   'i18n_status' => '0',
27744 ))
27745 ->values(array(
27746   'lid' => '513',
27747   'translation' => "zu - Select the sales categories to which this user's address was sold.",
27748   'language' => 'zu',
27749   'plid' => '0',
27750   'plural' => '0',
27751   'i18n_status' => '0',
27752 ))
27753 ->values(array(
27754   'lid' => '514',
27755   'translation' => 'zu - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
27756   'language' => 'zu',
27757   'plid' => '0',
27758   'plural' => '0',
27759   'i18n_status' => '0',
27760 ))
27761 ->values(array(
27762   'lid' => '525',
27763   'translation' => '<h3>zu - My first custom block body</h3>',
27764   'language' => 'zu',
27765   'plid' => '0',
27766   'plural' => '0',
27767   'i18n_status' => '0',
27768 ))
27769 ->values(array(
27770   'lid' => '529',
27771   'translation' => 'zu - vocabulary 1 (i=0)',
27772   'language' => 'zu',
27773   'plid' => '0',
27774   'plural' => '0',
27775   'i18n_status' => '0',
27776 ))
27777 ->values(array(
27778   'lid' => '535',
27779   'translation' => 'zu - Body',
27780   'language' => 'zu',
27781   'plid' => '0',
27782   'plural' => '0',
27783   'i18n_status' => '0',
27784 ))
27785 ->values(array(
27786   'lid' => '590',
27787   'translation' => 'zu - Image Field',
27788   'language' => 'zu',
27789   'plid' => '0',
27790   'plural' => '0',
27791   'i18n_status' => '0',
27792 ))
27793 ->values(array(
27794   'lid' => '591',
27795   'translation' => 'zu - An example image field.',
27796   'language' => 'zu',
27797   'plid' => '0',
27798   'plural' => '0',
27799   'i18n_status' => '0',
27800 ))
27801 ->values(array(
27802   'lid' => '607',
27803   'translation' => 'zu - 1.234',
27804   'language' => 'zu',
27805   'plid' => '0',
27806   'plural' => '0',
27807   'i18n_status' => '0',
27808 ))
27809 ->values(array(
27810   'lid' => '611',
27811   'translation' => 'zu - 2341',
27812   'language' => 'zu',
27813   'plid' => '0',
27814   'plural' => '0',
27815   'i18n_status' => '0',
27816 ))
27817 ->values(array(
27818   'lid' => '621',
27819   'translation' => 'zu - Hello',
27820   'language' => 'zu',
27821   'plid' => '0',
27822   'plural' => '0',
27823   'i18n_status' => '0',
27824 ))
27825 ->values(array(
27826   'lid' => '635',
27827   'translation' => 'zu - Test menu link 2',
27828   'language' => 'zu',
27829   'plid' => '0',
27830   'plural' => '0',
27831   'i18n_status' => '0',
27832 ))
27833 ->values(array(
27834   'lid' => '1690',
27835   'translation' => 'Okumnyama',
27836   'language' => 'zu',
27837   'plid' => '0',
27838   'plural' => '0',
27839   'i18n_status' => '0',
27840 ))
27841 ->values(array(
27842   'lid' => '1691',
27843   'translation' => 'Mhlophe',
27844   'language' => 'zu',
27845   'plid' => '0',
27846   'plural' => '0',
27847   'i18n_status' => '0',
27848 ))
27849 ->execute();
27850
27851 $connection->schema()->createTable('menu_custom', array(
27852   'fields' => array(
27853     'menu_name' => array(
27854       'type' => 'varchar',
27855       'not null' => TRUE,
27856       'length' => '32',
27857       'default' => '',
27858     ),
27859     'title' => array(
27860       'type' => 'varchar',
27861       'not null' => TRUE,
27862       'length' => '255',
27863       'default' => '',
27864     ),
27865     'description' => array(
27866       'type' => 'text',
27867       'not null' => FALSE,
27868       'size' => 'normal',
27869     ),
27870   ),
27871   'primary key' => array(
27872     'menu_name',
27873   ),
27874   'mysql_character_set' => 'utf8',
27875 ));
27876
27877 $connection->insert('menu_custom')
27878 ->fields(array(
27879   'menu_name',
27880   'title',
27881   'description',
27882 ))
27883 ->values(array(
27884   'menu_name' => 'navigation',
27885   'title' => 'Navigation',
27886   '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.',
27887 ))
27888 ->values(array(
27889   'menu_name' => 'primary-links',
27890   'title' => 'Primary links',
27891   '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.',
27892 ))
27893 ->values(array(
27894   'menu_name' => 'secondary-links',
27895   'title' => 'Secondary links',
27896   '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',
27897 ))
27898 ->execute();
27899
27900 $connection->schema()->createTable('menu_links', array(
27901   'fields' => array(
27902     'menu_name' => array(
27903       'type' => 'varchar',
27904       'not null' => TRUE,
27905       'length' => '32',
27906       'default' => '',
27907     ),
27908     'mlid' => array(
27909       'type' => 'serial',
27910       'not null' => TRUE,
27911       'size' => 'normal',
27912       'unsigned' => TRUE,
27913     ),
27914     'plid' => array(
27915       'type' => 'int',
27916       'not null' => TRUE,
27917       'size' => 'normal',
27918       'default' => '0',
27919       'unsigned' => TRUE,
27920     ),
27921     'link_path' => array(
27922       'type' => 'varchar',
27923       'not null' => TRUE,
27924       'length' => '255',
27925       'default' => '',
27926     ),
27927     'router_path' => array(
27928       'type' => 'varchar',
27929       'not null' => TRUE,
27930       'length' => '255',
27931       'default' => '',
27932     ),
27933     'link_title' => array(
27934       'type' => 'varchar',
27935       'not null' => TRUE,
27936       'length' => '255',
27937       'default' => '',
27938     ),
27939     'options' => array(
27940       'type' => 'text',
27941       'not null' => FALSE,
27942       'size' => 'normal',
27943     ),
27944     'module' => array(
27945       'type' => 'varchar',
27946       'not null' => TRUE,
27947       'length' => '255',
27948       'default' => 'system',
27949     ),
27950     'hidden' => array(
27951       'type' => 'int',
27952       'not null' => TRUE,
27953       'size' => 'normal',
27954       'default' => '0',
27955     ),
27956     'external' => array(
27957       'type' => 'int',
27958       'not null' => TRUE,
27959       'size' => 'normal',
27960       'default' => '0',
27961     ),
27962     'has_children' => array(
27963       'type' => 'int',
27964       'not null' => TRUE,
27965       'size' => 'normal',
27966       'default' => '0',
27967     ),
27968     'expanded' => array(
27969       'type' => 'int',
27970       'not null' => TRUE,
27971       'size' => 'normal',
27972       'default' => '0',
27973     ),
27974     'weight' => array(
27975       'type' => 'int',
27976       'not null' => TRUE,
27977       'size' => 'normal',
27978       'default' => '0',
27979     ),
27980     'depth' => array(
27981       'type' => 'int',
27982       'not null' => TRUE,
27983       'size' => 'normal',
27984       'default' => '0',
27985     ),
27986     'customized' => array(
27987       'type' => 'int',
27988       'not null' => TRUE,
27989       'size' => 'normal',
27990       'default' => '0',
27991     ),
27992     'p1' => array(
27993       'type' => 'int',
27994       'not null' => TRUE,
27995       'size' => 'normal',
27996       'default' => '0',
27997       'unsigned' => TRUE,
27998     ),
27999     'p2' => array(
28000       'type' => 'int',
28001       'not null' => TRUE,
28002       'size' => 'normal',
28003       'default' => '0',
28004       'unsigned' => TRUE,
28005     ),
28006     'p3' => array(
28007       'type' => 'int',
28008       'not null' => TRUE,
28009       'size' => 'normal',
28010       'default' => '0',
28011       'unsigned' => TRUE,
28012     ),
28013     'p4' => array(
28014       'type' => 'int',
28015       'not null' => TRUE,
28016       'size' => 'normal',
28017       'default' => '0',
28018       'unsigned' => TRUE,
28019     ),
28020     'p5' => array(
28021       'type' => 'int',
28022       'not null' => TRUE,
28023       'size' => 'normal',
28024       'default' => '0',
28025       'unsigned' => TRUE,
28026     ),
28027     'p6' => array(
28028       'type' => 'int',
28029       'not null' => TRUE,
28030       'size' => 'normal',
28031       'default' => '0',
28032       'unsigned' => TRUE,
28033     ),
28034     'p7' => array(
28035       'type' => 'int',
28036       'not null' => TRUE,
28037       'size' => 'normal',
28038       'default' => '0',
28039       'unsigned' => TRUE,
28040     ),
28041     'p8' => array(
28042       'type' => 'int',
28043       'not null' => TRUE,
28044       'size' => 'normal',
28045       'default' => '0',
28046       'unsigned' => TRUE,
28047     ),
28048     'p9' => array(
28049       'type' => 'int',
28050       'not null' => TRUE,
28051       'size' => 'normal',
28052       'default' => '0',
28053       'unsigned' => TRUE,
28054     ),
28055     'updated' => array(
28056       'type' => 'int',
28057       'not null' => TRUE,
28058       'size' => 'normal',
28059       'default' => '0',
28060     ),
28061   ),
28062   'primary key' => array(
28063     'mlid',
28064   ),
28065   'mysql_character_set' => 'utf8',
28066 ));
28067
28068 $connection->insert('menu_links')
28069 ->fields(array(
28070   'menu_name',
28071   'mlid',
28072   'plid',
28073   'link_path',
28074   'router_path',
28075   'link_title',
28076   'options',
28077   'module',
28078   'hidden',
28079   'external',
28080   'has_children',
28081   'expanded',
28082   'weight',
28083   'depth',
28084   'customized',
28085   'p1',
28086   'p2',
28087   'p3',
28088   'p4',
28089   'p5',
28090   'p6',
28091   'p7',
28092   'p8',
28093   'p9',
28094   'updated',
28095 ))
28096 ->values(array(
28097   'menu_name' => 'book-toc-1',
28098   'mlid' => '1',
28099   'plid' => '0',
28100   'link_path' => 'node/4',
28101   'router_path' => 'node/%',
28102   'link_title' => 'Test top book title',
28103   'options' => 'a:0:{}',
28104   'module' => 'book',
28105   'hidden' => '0',
28106   'external' => '0',
28107   'has_children' => '1',
28108   'expanded' => '0',
28109   'weight' => '-10',
28110   'depth' => '1',
28111   'customized' => '0',
28112   'p1' => '1',
28113   'p2' => '0',
28114   'p3' => '0',
28115   'p4' => '0',
28116   'p5' => '0',
28117   'p6' => '0',
28118   'p7' => '0',
28119   'p8' => '0',
28120   'p9' => '0',
28121   'updated' => '0',
28122 ))
28123 ->values(array(
28124   'menu_name' => 'book-toc-1',
28125   'mlid' => '2',
28126   'plid' => '1',
28127   'link_path' => 'node/5',
28128   'router_path' => 'node/%',
28129   'link_title' => 'Test book title child 1',
28130   'options' => 'a:0:{}',
28131   'module' => 'book',
28132   'hidden' => '0',
28133   'external' => '0',
28134   'has_children' => '1',
28135   'expanded' => '0',
28136   'weight' => '0',
28137   'depth' => '2',
28138   'customized' => '0',
28139   'p1' => '1',
28140   'p2' => '2',
28141   'p3' => '0',
28142   'p4' => '0',
28143   'p5' => '0',
28144   'p6' => '0',
28145   'p7' => '0',
28146   'p8' => '0',
28147   'p9' => '0',
28148   'updated' => '0',
28149 ))
28150 ->values(array(
28151   'menu_name' => 'book-toc-1',
28152   'mlid' => '3',
28153   'plid' => '2',
28154   'link_path' => 'node/6',
28155   'router_path' => 'node/%',
28156   'link_title' => 'Test book title child 1.1',
28157   'options' => 'a:0:{}',
28158   'module' => 'book',
28159   'hidden' => '0',
28160   'external' => '0',
28161   'has_children' => '0',
28162   'expanded' => '0',
28163   'weight' => '0',
28164   'depth' => '3',
28165   'customized' => '0',
28166   'p1' => '1',
28167   'p2' => '2',
28168   'p3' => '3',
28169   'p4' => '0',
28170   'p5' => '0',
28171   'p6' => '0',
28172   'p7' => '0',
28173   'p8' => '0',
28174   'p9' => '0',
28175   'updated' => '0',
28176 ))
28177 ->values(array(
28178   'menu_name' => 'book-toc-1',
28179   'mlid' => '4',
28180   'plid' => '2',
28181   'link_path' => 'node/7',
28182   'router_path' => 'node/%',
28183   'link_title' => 'Test book title child 1.2',
28184   'options' => 'a:0:{}',
28185   'module' => 'book',
28186   'hidden' => '0',
28187   'external' => '0',
28188   'has_children' => '0',
28189   'expanded' => '0',
28190   'weight' => '0',
28191   'depth' => '3',
28192   'customized' => '0',
28193   'p1' => '1',
28194   'p2' => '2',
28195   'p3' => '4',
28196   'p4' => '0',
28197   'p5' => '0',
28198   'p6' => '0',
28199   'p7' => '0',
28200   'p8' => '0',
28201   'p9' => '0',
28202   'updated' => '0',
28203 ))
28204 ->values(array(
28205   'menu_name' => 'book-toc-2',
28206   'mlid' => '5',
28207   'plid' => '0',
28208   'link_path' => 'node/8',
28209   'router_path' => 'node/%',
28210   'link_title' => 'Test top book 2 title',
28211   'options' => 'a:0:{}',
28212   'module' => 'book',
28213   'hidden' => '0',
28214   'external' => '0',
28215   'has_children' => '1',
28216   'expanded' => '0',
28217   'weight' => '-10',
28218   'depth' => '1',
28219   'customized' => '0',
28220   'p1' => '5',
28221   'p2' => '0',
28222   'p3' => '0',
28223   'p4' => '0',
28224   'p5' => '0',
28225   'p6' => '0',
28226   'p7' => '0',
28227   'p8' => '0',
28228   'p9' => '0',
28229   'updated' => '0',
28230 ))
28231 ->values(array(
28232   'menu_name' => 'secondary-links',
28233   'mlid' => '138',
28234   'plid' => '139',
28235   'link_path' => 'user/login',
28236   'router_path' => 'user/login',
28237   'link_title' => 'Test 1',
28238   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 1";}s:8:"langcode";s:2:"en";}',
28239   'module' => 'menu',
28240   'hidden' => '0',
28241   'external' => '0',
28242   'has_children' => '1',
28243   'expanded' => '0',
28244   'weight' => '-50',
28245   'depth' => '2',
28246   'customized' => '1',
28247   'p1' => '139',
28248   'p2' => '138',
28249   'p3' => '0',
28250   'p4' => '0',
28251   'p5' => '0',
28252   'p6' => '0',
28253   'p7' => '0',
28254   'p8' => '0',
28255   'p9' => '0',
28256   'updated' => '0',
28257 ))
28258 ->values(array(
28259   'menu_name' => 'secondary-links',
28260   'mlid' => '139',
28261   'plid' => '0',
28262   'link_path' => 'admin',
28263   'router_path' => 'admin',
28264   'link_title' => 'Test 2',
28265   'options' => 'a:2:{s:5:"query";s:7:"foo=bar";s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 2";}}',
28266   'module' => 'menu',
28267   'hidden' => '0',
28268   'external' => '0',
28269   'has_children' => '1',
28270   'expanded' => '1',
28271   'weight' => '-49',
28272   'depth' => '1',
28273   'customized' => '1',
28274   'p1' => '139',
28275   'p2' => '0',
28276   'p3' => '0',
28277   'p4' => '0',
28278   'p5' => '0',
28279   'p6' => '0',
28280   'p7' => '0',
28281   'p8' => '0',
28282   'p9' => '0',
28283   'updated' => '0',
28284 ))
28285 ->values(array(
28286   'menu_name' => 'secondary-links',
28287   'mlid' => '140',
28288   'plid' => '0',
28289   'link_path' => 'https://www.drupal.org',
28290   'router_path' => '',
28291   'link_title' => 'Drupal.org',
28292   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}}',
28293   'module' => 'menu',
28294   'hidden' => '0',
28295   'external' => '1',
28296   'has_children' => '0',
28297   'expanded' => '0',
28298   'weight' => '-50',
28299   'depth' => '1',
28300   'customized' => '1',
28301   'p1' => '140',
28302   'p2' => '0',
28303   'p3' => '0',
28304   'p4' => '0',
28305   'p5' => '0',
28306   'p6' => '0',
28307   'p7' => '0',
28308   'p8' => '0',
28309   'p9' => '0',
28310   'updated' => '0',
28311 ))
28312 ->values(array(
28313   'menu_name' => 'navigation',
28314   'mlid' => '141',
28315   'plid' => '0',
28316   'link_path' => 'node',
28317   'router_path' => 'node',
28318   'link_title' => 'Content',
28319   'options' => 'a:0:{}',
28320   'module' => 'system',
28321   'hidden' => '-1',
28322   'external' => '0',
28323   'has_children' => '0',
28324   'expanded' => '0',
28325   'weight' => '0',
28326   'depth' => '1',
28327   'customized' => '0',
28328   'p1' => '141',
28329   'p2' => '0',
28330   'p3' => '0',
28331   'p4' => '0',
28332   'p5' => '0',
28333   'p6' => '0',
28334   'p7' => '0',
28335   'p8' => '0',
28336   'p9' => '0',
28337   'updated' => '0',
28338 ))
28339 ->values(array(
28340   'menu_name' => 'navigation',
28341   'mlid' => '142',
28342   'plid' => '0',
28343   'link_path' => 'rss.xml',
28344   'router_path' => 'rss.xml',
28345   'link_title' => 'RSS feed',
28346   'options' => 'a:0:{}',
28347   'module' => 'system',
28348   'hidden' => '-1',
28349   'external' => '0',
28350   'has_children' => '0',
28351   'expanded' => '0',
28352   'weight' => '0',
28353   'depth' => '1',
28354   'customized' => '0',
28355   'p1' => '142',
28356   'p2' => '0',
28357   'p3' => '0',
28358   'p4' => '0',
28359   'p5' => '0',
28360   'p6' => '0',
28361   'p7' => '0',
28362   'p8' => '0',
28363   'p9' => '0',
28364   'updated' => '0',
28365 ))
28366 ->values(array(
28367   'menu_name' => 'navigation',
28368   'mlid' => '143',
28369   'plid' => '0',
28370   'link_path' => 'batch',
28371   'router_path' => 'batch',
28372   'link_title' => '',
28373   'options' => 'a:0:{}',
28374   'module' => 'system',
28375   'hidden' => '-1',
28376   'external' => '0',
28377   'has_children' => '0',
28378   'expanded' => '0',
28379   'weight' => '0',
28380   'depth' => '1',
28381   'customized' => '0',
28382   'p1' => '143',
28383   'p2' => '0',
28384   'p3' => '0',
28385   'p4' => '0',
28386   'p5' => '0',
28387   'p6' => '0',
28388   'p7' => '0',
28389   'p8' => '0',
28390   'p9' => '0',
28391   'updated' => '0',
28392 ))
28393 ->values(array(
28394   'menu_name' => 'navigation',
28395   'mlid' => '144',
28396   'plid' => '0',
28397   'link_path' => 'admin',
28398   'router_path' => 'admin',
28399   'link_title' => 'Administer',
28400   'options' => 'a:0:{}',
28401   'module' => 'system',
28402   'hidden' => '0',
28403   'external' => '0',
28404   'has_children' => '1',
28405   'expanded' => '0',
28406   'weight' => '9',
28407   'depth' => '1',
28408   'customized' => '0',
28409   'p1' => '144',
28410   'p2' => '0',
28411   'p3' => '0',
28412   'p4' => '0',
28413   'p5' => '0',
28414   'p6' => '0',
28415   'p7' => '0',
28416   'p8' => '0',
28417   'p9' => '0',
28418   'updated' => '0',
28419 ))
28420 ->values(array(
28421   'menu_name' => 'navigation',
28422   'mlid' => '145',
28423   'plid' => '0',
28424   'link_path' => 'contact',
28425   'router_path' => 'contact',
28426   'link_title' => 'Contact',
28427   'options' => 'a:0:{}',
28428   'module' => 'system',
28429   'hidden' => '1',
28430   'external' => '0',
28431   'has_children' => '0',
28432   'expanded' => '0',
28433   'weight' => '0',
28434   'depth' => '1',
28435   'customized' => '0',
28436   'p1' => '145',
28437   'p2' => '0',
28438   'p3' => '0',
28439   'p4' => '0',
28440   'p5' => '0',
28441   'p6' => '0',
28442   'p7' => '0',
28443   'p8' => '0',
28444   'p9' => '0',
28445   'updated' => '0',
28446 ))
28447 ->values(array(
28448   'menu_name' => 'navigation',
28449   'mlid' => '147',
28450   'plid' => '0',
28451   'link_path' => 'logout',
28452   'router_path' => 'logout',
28453   'link_title' => 'Log out',
28454   'options' => 'a:0:{}',
28455   'module' => 'system',
28456   'hidden' => '0',
28457   'external' => '0',
28458   'has_children' => '0',
28459   'expanded' => '0',
28460   'weight' => '10',
28461   'depth' => '1',
28462   'customized' => '0',
28463   'p1' => '147',
28464   'p2' => '0',
28465   'p3' => '0',
28466   'p4' => '0',
28467   'p5' => '0',
28468   'p6' => '0',
28469   'p7' => '0',
28470   'p8' => '0',
28471   'p9' => '0',
28472   'updated' => '0',
28473 ))
28474 ->values(array(
28475   'menu_name' => 'navigation',
28476   'mlid' => '148',
28477   'plid' => '0',
28478   'link_path' => 'user',
28479   'router_path' => 'user',
28480   'link_title' => 'User account',
28481   'options' => 'a:0:{}',
28482   'module' => 'system',
28483   'hidden' => '-1',
28484   'external' => '0',
28485   'has_children' => '0',
28486   'expanded' => '0',
28487   'weight' => '0',
28488   'depth' => '1',
28489   'customized' => '0',
28490   'p1' => '148',
28491   'p2' => '0',
28492   'p3' => '0',
28493   'p4' => '0',
28494   'p5' => '0',
28495   'p6' => '0',
28496   'p7' => '0',
28497   'p8' => '0',
28498   'p9' => '0',
28499   'updated' => '0',
28500 ))
28501 ->values(array(
28502   'menu_name' => 'navigation',
28503   'mlid' => '149',
28504   'plid' => '0',
28505   'link_path' => 'profile',
28506   'router_path' => 'profile',
28507   'link_title' => 'User list',
28508   'options' => 'a:0:{}',
28509   'module' => 'system',
28510   'hidden' => '1',
28511   'external' => '0',
28512   'has_children' => '0',
28513   'expanded' => '0',
28514   'weight' => '0',
28515   'depth' => '1',
28516   'customized' => '0',
28517   'p1' => '149',
28518   'p2' => '0',
28519   'p3' => '0',
28520   'p4' => '0',
28521   'p5' => '0',
28522   'p6' => '0',
28523   'p7' => '0',
28524   'p8' => '0',
28525   'p9' => '0',
28526   'updated' => '0',
28527 ))
28528 ->values(array(
28529   'menu_name' => 'navigation',
28530   'mlid' => '150',
28531   'plid' => '0',
28532   'link_path' => 'node/%',
28533   'router_path' => 'node/%',
28534   'link_title' => '',
28535   'options' => 'a:0:{}',
28536   'module' => 'system',
28537   'hidden' => '-1',
28538   'external' => '0',
28539   'has_children' => '0',
28540   'expanded' => '0',
28541   'weight' => '0',
28542   'depth' => '1',
28543   'customized' => '0',
28544   'p1' => '150',
28545   'p2' => '0',
28546   'p3' => '0',
28547   'p4' => '0',
28548   'p5' => '0',
28549   'p6' => '0',
28550   'p7' => '0',
28551   'p8' => '0',
28552   'p9' => '0',
28553   'updated' => '0',
28554 ))
28555 ->values(array(
28556   'menu_name' => 'navigation',
28557   'mlid' => '151',
28558   'plid' => '0',
28559   'link_path' => 'content/js_add_more',
28560   'router_path' => 'content/js_add_more',
28561   'link_title' => '',
28562   'options' => 'a:0:{}',
28563   'module' => 'system',
28564   'hidden' => '-1',
28565   'external' => '0',
28566   'has_children' => '0',
28567   'expanded' => '0',
28568   'weight' => '0',
28569   'depth' => '1',
28570   'customized' => '0',
28571   'p1' => '151',
28572   'p2' => '0',
28573   'p3' => '0',
28574   'p4' => '0',
28575   'p5' => '0',
28576   'p6' => '0',
28577   'p7' => '0',
28578   'p8' => '0',
28579   'p9' => '0',
28580   'updated' => '0',
28581 ))
28582 ->values(array(
28583   'menu_name' => 'navigation',
28584   'mlid' => '152',
28585   'plid' => '0',
28586   'link_path' => 'upload/js',
28587   'router_path' => 'upload/js',
28588   'link_title' => '',
28589   'options' => 'a:0:{}',
28590   'module' => 'system',
28591   'hidden' => '-1',
28592   'external' => '0',
28593   'has_children' => '0',
28594   'expanded' => '0',
28595   'weight' => '0',
28596   'depth' => '1',
28597   'customized' => '0',
28598   'p1' => '152',
28599   'p2' => '0',
28600   'p3' => '0',
28601   'p4' => '0',
28602   'p5' => '0',
28603   'p6' => '0',
28604   'p7' => '0',
28605   'p8' => '0',
28606   'p9' => '0',
28607   'updated' => '0',
28608 ))
28609 ->values(array(
28610   'menu_name' => 'navigation',
28611   'mlid' => '153',
28612   'plid' => '0',
28613   'link_path' => 'taxonomy/autocomplete',
28614   'router_path' => 'taxonomy/autocomplete',
28615   'link_title' => 'Autocomplete taxonomy',
28616   'options' => 'a:0:{}',
28617   'module' => 'system',
28618   'hidden' => '-1',
28619   'external' => '0',
28620   'has_children' => '0',
28621   'expanded' => '0',
28622   'weight' => '0',
28623   'depth' => '1',
28624   'customized' => '0',
28625   'p1' => '153',
28626   'p2' => '0',
28627   'p3' => '0',
28628   'p4' => '0',
28629   'p5' => '0',
28630   'p6' => '0',
28631   'p7' => '0',
28632   'p8' => '0',
28633   'p9' => '0',
28634   'updated' => '0',
28635 ))
28636 ->values(array(
28637   'menu_name' => 'navigation',
28638   'mlid' => '155',
28639   'plid' => '144',
28640   'link_path' => 'admin/compact',
28641   'router_path' => 'admin/compact',
28642   'link_title' => 'Compact mode',
28643   'options' => 'a:0:{}',
28644   'module' => 'system',
28645   'hidden' => '-1',
28646   'external' => '0',
28647   'has_children' => '0',
28648   'expanded' => '0',
28649   'weight' => '0',
28650   'depth' => '2',
28651   'customized' => '0',
28652   'p1' => '144',
28653   'p2' => '155',
28654   'p3' => '0',
28655   'p4' => '0',
28656   'p5' => '0',
28657   'p6' => '0',
28658   'p7' => '0',
28659   'p8' => '0',
28660   'p9' => '0',
28661   'updated' => '0',
28662 ))
28663 ->values(array(
28664   'menu_name' => 'navigation',
28665   'mlid' => '156',
28666   'plid' => '0',
28667   'link_path' => 'filter/tips',
28668   'router_path' => 'filter/tips',
28669   'link_title' => 'Compose tips',
28670   'options' => 'a:0:{}',
28671   'module' => 'system',
28672   'hidden' => '1',
28673   'external' => '0',
28674   'has_children' => '0',
28675   'expanded' => '0',
28676   'weight' => '0',
28677   'depth' => '1',
28678   'customized' => '0',
28679   'p1' => '156',
28680   'p2' => '0',
28681   'p3' => '0',
28682   'p4' => '0',
28683   'p5' => '0',
28684   'p6' => '0',
28685   'p7' => '0',
28686   'p8' => '0',
28687   'p9' => '0',
28688   'updated' => '0',
28689 ))
28690 ->values(array(
28691   'menu_name' => 'navigation',
28692   'mlid' => '157',
28693   'plid' => '144',
28694   'link_path' => 'admin/content',
28695   'router_path' => 'admin/content',
28696   'link_title' => 'Content management',
28697   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}",
28698   'module' => 'system',
28699   'hidden' => '0',
28700   'external' => '0',
28701   'has_children' => '1',
28702   'expanded' => '0',
28703   'weight' => '-10',
28704   'depth' => '2',
28705   'customized' => '0',
28706   'p1' => '144',
28707   'p2' => '157',
28708   'p3' => '0',
28709   'p4' => '0',
28710   'p5' => '0',
28711   'p6' => '0',
28712   'p7' => '0',
28713   'p8' => '0',
28714   'p9' => '0',
28715   'updated' => '0',
28716 ))
28717 ->values(array(
28718   'menu_name' => 'navigation',
28719   'mlid' => '158',
28720   'plid' => '0',
28721   'link_path' => 'node/add',
28722   'router_path' => 'node/add',
28723   'link_title' => 'Create content',
28724   'options' => 'a:0:{}',
28725   'module' => 'system',
28726   'hidden' => '0',
28727   'external' => '0',
28728   'has_children' => '1',
28729   'expanded' => '0',
28730   'weight' => '1',
28731   'depth' => '1',
28732   'customized' => '0',
28733   'p1' => '158',
28734   'p2' => '0',
28735   'p3' => '0',
28736   'p4' => '0',
28737   'p5' => '0',
28738   'p6' => '0',
28739   'p7' => '0',
28740   'p8' => '0',
28741   'p9' => '0',
28742   'updated' => '0',
28743 ))
28744 ->values(array(
28745   'menu_name' => 'navigation',
28746   'mlid' => '159',
28747   'plid' => '0',
28748   'link_path' => 'comment/delete',
28749   'router_path' => 'comment/delete',
28750   'link_title' => 'Delete comment',
28751   'options' => 'a:0:{}',
28752   'module' => 'system',
28753   'hidden' => '-1',
28754   'external' => '0',
28755   'has_children' => '0',
28756   'expanded' => '0',
28757   'weight' => '0',
28758   'depth' => '1',
28759   'customized' => '0',
28760   'p1' => '159',
28761   'p2' => '0',
28762   'p3' => '0',
28763   'p4' => '0',
28764   'p5' => '0',
28765   'p6' => '0',
28766   'p7' => '0',
28767   'p8' => '0',
28768   'p9' => '0',
28769   'updated' => '0',
28770 ))
28771 ->values(array(
28772   'menu_name' => 'navigation',
28773   'mlid' => '160',
28774   'plid' => '0',
28775   'link_path' => 'comment/edit',
28776   'router_path' => 'comment/edit',
28777   'link_title' => 'Edit comment',
28778   'options' => 'a:0:{}',
28779   'module' => 'system',
28780   'hidden' => '-1',
28781   'external' => '0',
28782   'has_children' => '0',
28783   'expanded' => '0',
28784   'weight' => '0',
28785   'depth' => '1',
28786   'customized' => '0',
28787   'p1' => '160',
28788   'p2' => '0',
28789   'p3' => '0',
28790   'p4' => '0',
28791   'p5' => '0',
28792   'p6' => '0',
28793   'p7' => '0',
28794   'p8' => '0',
28795   'p9' => '0',
28796   'updated' => '0',
28797 ))
28798 ->values(array(
28799   'menu_name' => 'navigation',
28800   'mlid' => '161',
28801   'plid' => '0',
28802   'link_path' => 'system/files',
28803   'router_path' => 'system/files',
28804   'link_title' => 'File download',
28805   'options' => 'a:0:{}',
28806   'module' => 'system',
28807   'hidden' => '-1',
28808   'external' => '0',
28809   'has_children' => '0',
28810   'expanded' => '0',
28811   'weight' => '0',
28812   'depth' => '1',
28813   'customized' => '0',
28814   'p1' => '161',
28815   'p2' => '0',
28816   'p3' => '0',
28817   'p4' => '0',
28818   'p5' => '0',
28819   'p6' => '0',
28820   'p7' => '0',
28821   'p8' => '0',
28822   'p9' => '0',
28823   'updated' => '0',
28824 ))
28825 ->values(array(
28826   'menu_name' => 'navigation',
28827   'mlid' => '163',
28828   'plid' => '149',
28829   'link_path' => 'profile/autocomplete',
28830   'router_path' => 'profile/autocomplete',
28831   'link_title' => 'Profile autocomplete',
28832   'options' => 'a:0:{}',
28833   'module' => 'system',
28834   'hidden' => '-1',
28835   'external' => '0',
28836   'has_children' => '0',
28837   'expanded' => '0',
28838   'weight' => '0',
28839   'depth' => '2',
28840   'customized' => '0',
28841   'p1' => '149',
28842   'p2' => '163',
28843   'p3' => '0',
28844   'p4' => '0',
28845   'p5' => '0',
28846   'p6' => '0',
28847   'p7' => '0',
28848   'p8' => '0',
28849   'p9' => '0',
28850   'updated' => '0',
28851 ))
28852 ->values(array(
28853   'menu_name' => 'navigation',
28854   'mlid' => '165',
28855   'plid' => '144',
28856   'link_path' => 'admin/reports',
28857   'router_path' => 'admin/reports',
28858   'link_title' => 'Reports',
28859   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}',
28860   'module' => 'system',
28861   'hidden' => '0',
28862   'external' => '0',
28863   'has_children' => '1',
28864   'expanded' => '0',
28865   'weight' => '5',
28866   'depth' => '2',
28867   'customized' => '0',
28868   'p1' => '144',
28869   'p2' => '165',
28870   'p3' => '0',
28871   'p4' => '0',
28872   'p5' => '0',
28873   'p6' => '0',
28874   'p7' => '0',
28875   'p8' => '0',
28876   'p9' => '0',
28877   'updated' => '0',
28878 ))
28879 ->values(array(
28880   'menu_name' => 'navigation',
28881   'mlid' => '166',
28882   'plid' => '144',
28883   'link_path' => 'admin/build',
28884   'router_path' => 'admin/build',
28885   'link_title' => 'Site building',
28886   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}',
28887   'module' => 'system',
28888   'hidden' => '0',
28889   'external' => '0',
28890   'has_children' => '1',
28891   'expanded' => '0',
28892   'weight' => '-10',
28893   'depth' => '2',
28894   'customized' => '0',
28895   'p1' => '144',
28896   'p2' => '166',
28897   'p3' => '0',
28898   'p4' => '0',
28899   'p5' => '0',
28900   'p6' => '0',
28901   'p7' => '0',
28902   'p8' => '0',
28903   'p9' => '0',
28904   'updated' => '0',
28905 ))
28906 ->values(array(
28907   'menu_name' => 'navigation',
28908   'mlid' => '167',
28909   'plid' => '144',
28910   'link_path' => 'admin/settings',
28911   'router_path' => 'admin/settings',
28912   'link_title' => 'Site configuration',
28913   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}',
28914   'module' => 'system',
28915   'hidden' => '0',
28916   'external' => '0',
28917   'has_children' => '1',
28918   'expanded' => '0',
28919   'weight' => '-5',
28920   'depth' => '2',
28921   'customized' => '0',
28922   'p1' => '144',
28923   'p2' => '167',
28924   'p3' => '0',
28925   'p4' => '0',
28926   'p5' => '0',
28927   'p6' => '0',
28928   'p7' => '0',
28929   'p8' => '0',
28930   'p9' => '0',
28931   'updated' => '0',
28932 ))
28933 ->values(array(
28934   'menu_name' => 'navigation',
28935   'mlid' => '169',
28936   'plid' => '0',
28937   'link_path' => 'user/autocomplete',
28938   'router_path' => 'user/autocomplete',
28939   'link_title' => 'User autocomplete',
28940   'options' => 'a:0:{}',
28941   'module' => 'system',
28942   'hidden' => '-1',
28943   'external' => '0',
28944   'has_children' => '0',
28945   'expanded' => '0',
28946   'weight' => '0',
28947   'depth' => '1',
28948   'customized' => '0',
28949   'p1' => '169',
28950   'p2' => '0',
28951   'p3' => '0',
28952   'p4' => '0',
28953   'p5' => '0',
28954   'p6' => '0',
28955   'p7' => '0',
28956   'p8' => '0',
28957   'p9' => '0',
28958   'updated' => '0',
28959 ))
28960 ->values(array(
28961   'menu_name' => 'navigation',
28962   'mlid' => '170',
28963   'plid' => '144',
28964   'link_path' => 'admin/user',
28965   'router_path' => 'admin/user',
28966   'link_title' => 'User management',
28967   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}",
28968   'module' => 'system',
28969   'hidden' => '0',
28970   'external' => '0',
28971   'has_children' => '1',
28972   'expanded' => '0',
28973   'weight' => '0',
28974   'depth' => '2',
28975   'customized' => '0',
28976   'p1' => '144',
28977   'p2' => '170',
28978   'p3' => '0',
28979   'p4' => '0',
28980   'p5' => '0',
28981   'p6' => '0',
28982   'p7' => '0',
28983   'p8' => '0',
28984   'p9' => '0',
28985   'updated' => '0',
28986 ))
28987 ->values(array(
28988   'menu_name' => 'navigation',
28989   'mlid' => '171',
28990   'plid' => '0',
28991   'link_path' => 'user/timezone',
28992   'router_path' => 'user/timezone',
28993   'link_title' => 'User timezone',
28994   'options' => 'a:0:{}',
28995   'module' => 'system',
28996   'hidden' => '-1',
28997   'external' => '0',
28998   'has_children' => '0',
28999   'expanded' => '0',
29000   'weight' => '0',
29001   'depth' => '1',
29002   'customized' => '0',
29003   'p1' => '171',
29004   'p2' => '0',
29005   'p3' => '0',
29006   'p4' => '0',
29007   'p5' => '0',
29008   'p6' => '0',
29009   'p7' => '0',
29010   'p8' => '0',
29011   'p9' => '0',
29012   'updated' => '0',
29013 ))
29014 ->values(array(
29015   'menu_name' => 'navigation',
29016   'mlid' => '172',
29017   'plid' => '0',
29018   'link_path' => 'user/%',
29019   'router_path' => 'user/%',
29020   'link_title' => 'My account',
29021   'options' => 'a:0:{}',
29022   'module' => 'system',
29023   'hidden' => '0',
29024   'external' => '0',
29025   'has_children' => '0',
29026   'expanded' => '0',
29027   'weight' => '0',
29028   'depth' => '1',
29029   'customized' => '0',
29030   'p1' => '172',
29031   'p2' => '0',
29032   'p3' => '0',
29033   'p4' => '0',
29034   'p5' => '0',
29035   'p6' => '0',
29036   'p7' => '0',
29037   'p8' => '0',
29038   'p9' => '0',
29039   'updated' => '0',
29040 ))
29041 ->values(array(
29042   'menu_name' => 'navigation',
29043   'mlid' => '175',
29044   'plid' => '170',
29045   'link_path' => 'admin/user/rules',
29046   'router_path' => 'admin/user/rules',
29047   'link_title' => 'Access rules',
29048   '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.";}}',
29049   'module' => 'system',
29050   'hidden' => '0',
29051   'external' => '0',
29052   'has_children' => '0',
29053   'expanded' => '0',
29054   'weight' => '0',
29055   'depth' => '3',
29056   'customized' => '0',
29057   'p1' => '144',
29058   'p2' => '170',
29059   'p3' => '175',
29060   'p4' => '0',
29061   'p5' => '0',
29062   'p6' => '0',
29063   'p7' => '0',
29064   'p8' => '0',
29065   'p9' => '0',
29066   'updated' => '0',
29067 ))
29068 ->values(array(
29069   'menu_name' => 'navigation',
29070   'mlid' => '176',
29071   'plid' => '167',
29072   'link_path' => 'admin/settings/actions',
29073   'router_path' => 'admin/settings/actions',
29074   'link_title' => 'Actions',
29075   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
29076   'module' => 'system',
29077   'hidden' => '0',
29078   'external' => '0',
29079   'has_children' => '0',
29080   'expanded' => '0',
29081   'weight' => '0',
29082   'depth' => '3',
29083   'customized' => '0',
29084   'p1' => '144',
29085   'p2' => '167',
29086   'p3' => '176',
29087   'p4' => '0',
29088   'p5' => '0',
29089   'p6' => '0',
29090   'p7' => '0',
29091   'p8' => '0',
29092   'p9' => '0',
29093   'updated' => '0',
29094 ))
29095 ->values(array(
29096   'menu_name' => 'navigation',
29097   'mlid' => '177',
29098   'plid' => '167',
29099   'link_path' => 'admin/settings/admin',
29100   'router_path' => 'admin/settings/admin',
29101   'link_title' => 'Administration theme',
29102   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}',
29103   'module' => 'system',
29104   'hidden' => '0',
29105   'external' => '0',
29106   'has_children' => '0',
29107   'expanded' => '0',
29108   'weight' => '0',
29109   'depth' => '3',
29110   'customized' => '0',
29111   'p1' => '144',
29112   'p2' => '167',
29113   'p3' => '177',
29114   'p4' => '0',
29115   'p5' => '0',
29116   'p6' => '0',
29117   'p7' => '0',
29118   'p8' => '0',
29119   'p9' => '0',
29120   'updated' => '0',
29121 ))
29122 ->values(array(
29123   'menu_name' => 'navigation',
29124   'mlid' => '178',
29125   'plid' => '158',
29126   'link_path' => 'node/add/article',
29127   'router_path' => 'node/add/article',
29128   'link_title' => 'Article',
29129   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"An <em>article</em>, content type.";}}',
29130   'module' => 'system',
29131   'hidden' => '0',
29132   'external' => '0',
29133   'has_children' => '0',
29134   'expanded' => '0',
29135   'weight' => '0',
29136   'depth' => '2',
29137   'customized' => '0',
29138   'p1' => '158',
29139   'p2' => '178',
29140   'p3' => '0',
29141   'p4' => '0',
29142   'p5' => '0',
29143   'p6' => '0',
29144   'p7' => '0',
29145   'p8' => '0',
29146   'p9' => '0',
29147   'updated' => '0',
29148 ))
29149 ->values(array(
29150   'menu_name' => 'navigation',
29151   'mlid' => '179',
29152   'plid' => '166',
29153   'link_path' => 'admin/build/block',
29154   'router_path' => 'admin/build/block',
29155   'link_title' => 'Blocks',
29156   '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.\";}}",
29157   'module' => 'system',
29158   'hidden' => '0',
29159   'external' => '0',
29160   'has_children' => '0',
29161   'expanded' => '0',
29162   'weight' => '0',
29163   'depth' => '3',
29164   'customized' => '0',
29165   'p1' => '144',
29166   'p2' => '166',
29167   'p3' => '179',
29168   'p4' => '0',
29169   'p5' => '0',
29170   'p6' => '0',
29171   'p7' => '0',
29172   'p8' => '0',
29173   'p9' => '0',
29174   'updated' => '0',
29175 ))
29176 ->values(array(
29177   'menu_name' => 'navigation',
29178   'mlid' => '180',
29179   'plid' => '167',
29180   'link_path' => 'admin/settings/clean-urls',
29181   'router_path' => 'admin/settings/clean-urls',
29182   'link_title' => 'Clean URLs',
29183   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
29184   'module' => 'system',
29185   'hidden' => '0',
29186   'external' => '0',
29187   'has_children' => '0',
29188   'expanded' => '0',
29189   'weight' => '0',
29190   'depth' => '3',
29191   'customized' => '0',
29192   'p1' => '144',
29193   'p2' => '167',
29194   'p3' => '180',
29195   'p4' => '0',
29196   'p5' => '0',
29197   'p6' => '0',
29198   'p7' => '0',
29199   'p8' => '0',
29200   'p9' => '0',
29201   'updated' => '0',
29202 ))
29203 ->values(array(
29204   'menu_name' => 'navigation',
29205   'mlid' => '181',
29206   'plid' => '157',
29207   'link_path' => 'admin/content/comment',
29208   'router_path' => 'admin/content/comment',
29209   'link_title' => 'Comments',
29210   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"List and edit site comments and the comment moderation queue.";}}',
29211   'module' => 'system',
29212   'hidden' => '0',
29213   'external' => '0',
29214   'has_children' => '0',
29215   'expanded' => '0',
29216   'weight' => '0',
29217   'depth' => '3',
29218   'customized' => '0',
29219   'p1' => '144',
29220   'p2' => '157',
29221   'p3' => '181',
29222   'p4' => '0',
29223   'p5' => '0',
29224   'p6' => '0',
29225   'p7' => '0',
29226   'p8' => '0',
29227   'p9' => '0',
29228   'updated' => '0',
29229 ))
29230 ->values(array(
29231   'menu_name' => 'navigation',
29232   'mlid' => '182',
29233   'plid' => '158',
29234   'link_path' => 'node/add/company',
29235   'router_path' => 'node/add/company',
29236   'link_title' => 'Company',
29237   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Company node type";}}',
29238   'module' => 'system',
29239   'hidden' => '0',
29240   'external' => '0',
29241   'has_children' => '0',
29242   'expanded' => '0',
29243   'weight' => '0',
29244   'depth' => '2',
29245   'customized' => '0',
29246   'p1' => '158',
29247   'p2' => '182',
29248   'p3' => '0',
29249   'p4' => '0',
29250   'p5' => '0',
29251   'p6' => '0',
29252   'p7' => '0',
29253   'p8' => '0',
29254   'p9' => '0',
29255   'updated' => '0',
29256 ))
29257 ->values(array(
29258   'menu_name' => 'navigation',
29259   'mlid' => '183',
29260   'plid' => '166',
29261   'link_path' => 'admin/build/contact',
29262   'router_path' => 'admin/build/contact',
29263   'link_title' => 'Contact form',
29264   '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.";}}',
29265   'module' => 'system',
29266   'hidden' => '0',
29267   'external' => '0',
29268   'has_children' => '0',
29269   'expanded' => '0',
29270   'weight' => '0',
29271   'depth' => '3',
29272   'customized' => '0',
29273   'p1' => '144',
29274   'p2' => '166',
29275   'p3' => '183',
29276   'p4' => '0',
29277   'p5' => '0',
29278   'p6' => '0',
29279   'p7' => '0',
29280   'p8' => '0',
29281   'p9' => '0',
29282   'updated' => '0',
29283 ))
29284 ->values(array(
29285   'menu_name' => 'navigation',
29286   'mlid' => '184',
29287   'plid' => '157',
29288   'link_path' => 'admin/content/node',
29289   'router_path' => 'admin/content/node',
29290   'link_title' => 'Content',
29291   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}",
29292   'module' => 'system',
29293   'hidden' => '0',
29294   'external' => '0',
29295   'has_children' => '0',
29296   'expanded' => '0',
29297   'weight' => '0',
29298   'depth' => '3',
29299   'customized' => '0',
29300   'p1' => '144',
29301   'p2' => '157',
29302   'p3' => '184',
29303   'p4' => '0',
29304   'p5' => '0',
29305   'p6' => '0',
29306   'p7' => '0',
29307   'p8' => '0',
29308   'p9' => '0',
29309   'updated' => '0',
29310 ))
29311 ->values(array(
29312   'menu_name' => 'navigation',
29313   'mlid' => '185',
29314   'plid' => '157',
29315   'link_path' => 'admin/content/types',
29316   'router_path' => 'admin/content/types',
29317   'link_title' => 'Content types',
29318   '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.";}}',
29319   'module' => 'system',
29320   'hidden' => '0',
29321   'external' => '0',
29322   'has_children' => '0',
29323   'expanded' => '0',
29324   'weight' => '0',
29325   'depth' => '3',
29326   'customized' => '0',
29327   'p1' => '144',
29328   'p2' => '157',
29329   'p3' => '185',
29330   'p4' => '0',
29331   'p5' => '0',
29332   'p6' => '0',
29333   'p7' => '0',
29334   'p8' => '0',
29335   'p9' => '0',
29336   'updated' => '0',
29337 ))
29338 ->values(array(
29339   'menu_name' => 'navigation',
29340   'mlid' => '186',
29341   'plid' => '167',
29342   'link_path' => 'admin/settings/date-time',
29343   'router_path' => 'admin/settings/date-time',
29344   'link_title' => 'Date and time',
29345   '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.\";}}",
29346   'module' => 'system',
29347   'hidden' => '0',
29348   'external' => '0',
29349   'has_children' => '0',
29350   'expanded' => '0',
29351   'weight' => '0',
29352   'depth' => '3',
29353   'customized' => '0',
29354   'p1' => '144',
29355   'p2' => '167',
29356   'p3' => '186',
29357   'p4' => '0',
29358   'p5' => '0',
29359   'p6' => '0',
29360   'p7' => '0',
29361   'p8' => '0',
29362   'p9' => '0',
29363   'updated' => '0',
29364 ))
29365 ->values(array(
29366   'menu_name' => 'navigation',
29367   'mlid' => '187',
29368   'plid' => '0',
29369   'link_path' => 'node/%/delete',
29370   'router_path' => 'node/%/delete',
29371   'link_title' => 'Delete',
29372   'options' => 'a:0:{}',
29373   'module' => 'system',
29374   'hidden' => '-1',
29375   'external' => '0',
29376   'has_children' => '0',
29377   'expanded' => '0',
29378   'weight' => '1',
29379   'depth' => '1',
29380   'customized' => '0',
29381   'p1' => '187',
29382   'p2' => '0',
29383   'p3' => '0',
29384   'p4' => '0',
29385   'p5' => '0',
29386   'p6' => '0',
29387   'p7' => '0',
29388   'p8' => '0',
29389   'p9' => '0',
29390   'updated' => '0',
29391 ))
29392 ->values(array(
29393   'menu_name' => 'navigation',
29394   'mlid' => '188',
29395   'plid' => '172',
29396   'link_path' => 'user/%/delete',
29397   'router_path' => 'user/%/delete',
29398   'link_title' => 'Delete',
29399   'options' => 'a:0:{}',
29400   'module' => 'system',
29401   'hidden' => '-1',
29402   'external' => '0',
29403   'has_children' => '0',
29404   'expanded' => '0',
29405   'weight' => '0',
29406   'depth' => '2',
29407   'customized' => '0',
29408   'p1' => '172',
29409   'p2' => '188',
29410   'p3' => '0',
29411   'p4' => '0',
29412   'p5' => '0',
29413   'p6' => '0',
29414   'p7' => '0',
29415   'p8' => '0',
29416   'p9' => '0',
29417   'updated' => '0',
29418 ))
29419 ->values(array(
29420   'menu_name' => 'navigation',
29421   'mlid' => '189',
29422   'plid' => '158',
29423   'link_path' => 'node/add/employee',
29424   'router_path' => 'node/add/employee',
29425   'link_title' => 'Employee',
29426   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Employee node type";}}',
29427   'module' => 'system',
29428   'hidden' => '0',
29429   'external' => '0',
29430   'has_children' => '0',
29431   'expanded' => '0',
29432   'weight' => '0',
29433   'depth' => '2',
29434   'customized' => '0',
29435   'p1' => '158',
29436   'p2' => '189',
29437   'p3' => '0',
29438   'p4' => '0',
29439   'p5' => '0',
29440   'p6' => '0',
29441   'p7' => '0',
29442   'p8' => '0',
29443   'p9' => '0',
29444   'updated' => '0',
29445 ))
29446 ->values(array(
29447   'menu_name' => 'navigation',
29448   'mlid' => '190',
29449   'plid' => '167',
29450   'link_path' => 'admin/settings/error-reporting',
29451   'router_path' => 'admin/settings/error-reporting',
29452   'link_title' => 'Error reporting',
29453   '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.";}}',
29454   'module' => 'system',
29455   'hidden' => '0',
29456   'external' => '0',
29457   'has_children' => '0',
29458   'expanded' => '0',
29459   'weight' => '0',
29460   'depth' => '3',
29461   'customized' => '0',
29462   'p1' => '144',
29463   'p2' => '167',
29464   'p3' => '190',
29465   'p4' => '0',
29466   'p5' => '0',
29467   'p6' => '0',
29468   'p7' => '0',
29469   'p8' => '0',
29470   'p9' => '0',
29471   'updated' => '0',
29472 ))
29473 ->values(array(
29474   'menu_name' => 'navigation',
29475   'mlid' => '192',
29476   'plid' => '167',
29477   'link_path' => 'admin/settings/file-system',
29478   'router_path' => 'admin/settings/file-system',
29479   'link_title' => 'File system',
29480   '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.";}}',
29481   'module' => 'system',
29482   'hidden' => '0',
29483   'external' => '0',
29484   'has_children' => '0',
29485   'expanded' => '0',
29486   'weight' => '0',
29487   'depth' => '3',
29488   'customized' => '0',
29489   'p1' => '144',
29490   'p2' => '167',
29491   'p3' => '192',
29492   'p4' => '0',
29493   'p5' => '0',
29494   'p6' => '0',
29495   'p7' => '0',
29496   'p8' => '0',
29497   'p9' => '0',
29498   'updated' => '0',
29499 ))
29500 ->values(array(
29501   'menu_name' => 'navigation',
29502   'mlid' => '193',
29503   'plid' => '167',
29504   'link_path' => 'admin/settings/uploads',
29505   'router_path' => 'admin/settings/uploads',
29506   'link_title' => 'File uploads',
29507   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Control how files may be attached to content.";}}',
29508   'module' => 'system',
29509   'hidden' => '0',
29510   'external' => '0',
29511   'has_children' => '0',
29512   'expanded' => '0',
29513   'weight' => '0',
29514   'depth' => '3',
29515   'customized' => '0',
29516   'p1' => '144',
29517   'p2' => '167',
29518   'p3' => '193',
29519   'p4' => '0',
29520   'p5' => '0',
29521   'p6' => '0',
29522   'p7' => '0',
29523   'p8' => '0',
29524   'p9' => '0',
29525   'updated' => '0',
29526 ))
29527 ->values(array(
29528   'menu_name' => 'navigation',
29529   'mlid' => '194',
29530   'plid' => '167',
29531   'link_path' => 'admin/settings/image-toolkit',
29532   'router_path' => 'admin/settings/image-toolkit',
29533   'link_title' => 'Image toolkit',
29534   '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.";}}',
29535   'module' => 'system',
29536   'hidden' => '0',
29537   'external' => '0',
29538   'has_children' => '0',
29539   'expanded' => '0',
29540   'weight' => '0',
29541   'depth' => '3',
29542   'customized' => '0',
29543   'p1' => '144',
29544   'p2' => '167',
29545   'p3' => '194',
29546   'p4' => '0',
29547   'p5' => '0',
29548   'p6' => '0',
29549   'p7' => '0',
29550   'p8' => '0',
29551   'p9' => '0',
29552   'updated' => '0',
29553 ))
29554 ->values(array(
29555   'menu_name' => 'navigation',
29556   'mlid' => '195',
29557   'plid' => '167',
29558   'link_path' => 'admin/settings/filters',
29559   'router_path' => 'admin/settings/filters',
29560   'link_title' => 'Input formats',
29561   '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.";}}',
29562   'module' => 'system',
29563   'hidden' => '0',
29564   'external' => '0',
29565   'has_children' => '0',
29566   'expanded' => '0',
29567   'weight' => '0',
29568   'depth' => '3',
29569   'customized' => '0',
29570   'p1' => '144',
29571   'p2' => '167',
29572   'p3' => '195',
29573   'p4' => '0',
29574   'p5' => '0',
29575   'p6' => '0',
29576   'p7' => '0',
29577   'p8' => '0',
29578   'p9' => '0',
29579   'updated' => '0',
29580 ))
29581 ->values(array(
29582   'menu_name' => 'navigation',
29583   'mlid' => '196',
29584   'plid' => '167',
29585   'link_path' => 'admin/settings/logging',
29586   'router_path' => 'admin/settings/logging',
29587   'link_title' => 'Logging and alerts',
29588   '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.\";}}",
29589   'module' => 'system',
29590   'hidden' => '0',
29591   'external' => '0',
29592   'has_children' => '0',
29593   'expanded' => '0',
29594   'weight' => '0',
29595   'depth' => '3',
29596   'customized' => '0',
29597   'p1' => '144',
29598   'p2' => '167',
29599   'p3' => '196',
29600   'p4' => '0',
29601   'p5' => '0',
29602   'p6' => '0',
29603   'p7' => '0',
29604   'p8' => '0',
29605   'p9' => '0',
29606   'updated' => '0',
29607 ))
29608 ->values(array(
29609   'menu_name' => 'navigation',
29610   'mlid' => '197',
29611   'plid' => '166',
29612   'link_path' => 'admin/build/menu',
29613   'router_path' => 'admin/build/menu',
29614   'link_title' => 'Menus',
29615   '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.\";}}",
29616   'module' => 'system',
29617   'hidden' => '0',
29618   'external' => '0',
29619   'has_children' => '0',
29620   'expanded' => '0',
29621   'weight' => '0',
29622   'depth' => '3',
29623   'customized' => '0',
29624   'p1' => '144',
29625   'p2' => '166',
29626   'p3' => '197',
29627   'p4' => '0',
29628   'p5' => '0',
29629   'p6' => '0',
29630   'p7' => '0',
29631   'p8' => '0',
29632   'p9' => '0',
29633   'updated' => '0',
29634 ))
29635 ->values(array(
29636   'menu_name' => 'navigation',
29637   'mlid' => '198',
29638   'plid' => '158',
29639   'link_path' => 'node/add/test-event',
29640   'router_path' => 'node/add/test-event',
29641   'link_title' => 'Migrate test event',
29642   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:27:"test event description here";}}',
29643   'module' => 'system',
29644   'hidden' => '0',
29645   'external' => '0',
29646   'has_children' => '0',
29647   'expanded' => '0',
29648   'weight' => '0',
29649   'depth' => '2',
29650   'customized' => '0',
29651   'p1' => '158',
29652   'p2' => '198',
29653   'p3' => '0',
29654   'p4' => '0',
29655   'p5' => '0',
29656   'p6' => '0',
29657   'p7' => '0',
29658   'p8' => '0',
29659   'p9' => '0',
29660   'updated' => '0',
29661 ))
29662 ->values(array(
29663   'menu_name' => 'navigation',
29664   'mlid' => '199',
29665   'plid' => '158',
29666   'link_path' => 'node/add/test-page',
29667   'router_path' => 'node/add/test-page',
29668   'link_title' => 'Migrate test page',
29669   '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.\";}}",
29670   'module' => 'system',
29671   'hidden' => '0',
29672   'external' => '0',
29673   'has_children' => '0',
29674   'expanded' => '0',
29675   'weight' => '0',
29676   'depth' => '2',
29677   'customized' => '0',
29678   'p1' => '158',
29679   'p2' => '199',
29680   'p3' => '0',
29681   'p4' => '0',
29682   'p5' => '0',
29683   'p6' => '0',
29684   'p7' => '0',
29685   'p8' => '0',
29686   'p9' => '0',
29687   'updated' => '0',
29688 ))
29689 ->values(array(
29690   'menu_name' => 'navigation',
29691   'mlid' => '200',
29692   'plid' => '158',
29693   'link_path' => 'node/add/test-planet',
29694   'router_path' => 'node/add/test-planet',
29695   'link_title' => 'Migrate test planet',
29696   '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.\";}}",
29697   'module' => 'system',
29698   'hidden' => '0',
29699   'external' => '0',
29700   'has_children' => '0',
29701   'expanded' => '0',
29702   'weight' => '0',
29703   'depth' => '2',
29704   'customized' => '0',
29705   'p1' => '158',
29706   'p2' => '200',
29707   'p3' => '0',
29708   'p4' => '0',
29709   'p5' => '0',
29710   'p6' => '0',
29711   'p7' => '0',
29712   'p8' => '0',
29713   'p9' => '0',
29714   'updated' => '0',
29715 ))
29716 ->values(array(
29717   'menu_name' => 'navigation',
29718   'mlid' => '201',
29719   'plid' => '158',
29720   'link_path' => 'node/add/test-story',
29721   'router_path' => 'node/add/test-story',
29722   'link_title' => 'Migrate test story',
29723   '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.\";}}",
29724   'module' => 'system',
29725   'hidden' => '0',
29726   'external' => '0',
29727   'has_children' => '0',
29728   'expanded' => '0',
29729   'weight' => '0',
29730   'depth' => '2',
29731   'customized' => '0',
29732   'p1' => '158',
29733   'p2' => '201',
29734   'p3' => '0',
29735   'p4' => '0',
29736   'p5' => '0',
29737   'p6' => '0',
29738   'p7' => '0',
29739   'p8' => '0',
29740   'p9' => '0',
29741   'updated' => '0',
29742 ))
29743 ->values(array(
29744   'menu_name' => 'navigation',
29745   'mlid' => '202',
29746   'plid' => '166',
29747   'link_path' => 'admin/build/modules',
29748   'router_path' => 'admin/build/modules',
29749   'link_title' => 'Modules',
29750   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}',
29751   'module' => 'system',
29752   'hidden' => '0',
29753   'external' => '0',
29754   'has_children' => '0',
29755   'expanded' => '0',
29756   'weight' => '0',
29757   'depth' => '3',
29758   'customized' => '0',
29759   'p1' => '144',
29760   'p2' => '166',
29761   'p3' => '202',
29762   'p4' => '0',
29763   'p5' => '0',
29764   'p6' => '0',
29765   'p7' => '0',
29766   'p8' => '0',
29767   'p9' => '0',
29768   'updated' => '0',
29769 ))
29770 ->values(array(
29771   'menu_name' => 'navigation',
29772   'mlid' => '203',
29773   'plid' => '167',
29774   'link_path' => 'admin/settings/performance',
29775   'router_path' => 'admin/settings/performance',
29776   'link_title' => 'Performance',
29777   '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.";}}',
29778   'module' => 'system',
29779   'hidden' => '0',
29780   'external' => '0',
29781   'has_children' => '0',
29782   'expanded' => '0',
29783   'weight' => '0',
29784   'depth' => '3',
29785   'customized' => '0',
29786   'p1' => '144',
29787   'p2' => '167',
29788   'p3' => '203',
29789   'p4' => '0',
29790   'p5' => '0',
29791   'p6' => '0',
29792   'p7' => '0',
29793   'p8' => '0',
29794   'p9' => '0',
29795   'updated' => '0',
29796 ))
29797 ->values(array(
29798   'menu_name' => 'navigation',
29799   'mlid' => '204',
29800   'plid' => '170',
29801   'link_path' => 'admin/user/permissions',
29802   'router_path' => 'admin/user/permissions',
29803   'link_title' => 'Permissions',
29804   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
29805   'module' => 'system',
29806   'hidden' => '0',
29807   'external' => '0',
29808   'has_children' => '0',
29809   'expanded' => '0',
29810   'weight' => '0',
29811   'depth' => '3',
29812   'customized' => '0',
29813   'p1' => '144',
29814   'p2' => '170',
29815   'p3' => '204',
29816   'p4' => '0',
29817   'p5' => '0',
29818   'p6' => '0',
29819   'p7' => '0',
29820   'p8' => '0',
29821   'p9' => '0',
29822   'updated' => '0',
29823 ))
29824 ->values(array(
29825   'menu_name' => 'navigation',
29826   'mlid' => '205',
29827   'plid' => '157',
29828   'link_path' => 'admin/content/node-settings',
29829   'router_path' => 'admin/content/node-settings',
29830   'link_title' => 'Post settings',
29831   '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.";}}',
29832   'module' => 'system',
29833   'hidden' => '0',
29834   'external' => '0',
29835   'has_children' => '0',
29836   'expanded' => '0',
29837   'weight' => '0',
29838   'depth' => '3',
29839   'customized' => '0',
29840   'p1' => '144',
29841   'p2' => '157',
29842   'p3' => '205',
29843   'p4' => '0',
29844   'p5' => '0',
29845   'p6' => '0',
29846   'p7' => '0',
29847   'p8' => '0',
29848   'p9' => '0',
29849   'updated' => '0',
29850 ))
29851 ->values(array(
29852   'menu_name' => 'navigation',
29853   'mlid' => '206',
29854   'plid' => '170',
29855   'link_path' => 'admin/user/profile',
29856   'router_path' => 'admin/user/profile',
29857   'link_title' => 'Profiles',
29858   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"Create customizable fields for your users.";}}',
29859   'module' => 'system',
29860   'hidden' => '0',
29861   'external' => '0',
29862   'has_children' => '0',
29863   'expanded' => '0',
29864   'weight' => '0',
29865   'depth' => '3',
29866   'customized' => '0',
29867   'p1' => '144',
29868   'p2' => '170',
29869   'p3' => '206',
29870   'p4' => '0',
29871   'p5' => '0',
29872   'p6' => '0',
29873   'p7' => '0',
29874   'p8' => '0',
29875   'p9' => '0',
29876   'updated' => '0',
29877 ))
29878 ->values(array(
29879   'menu_name' => 'navigation',
29880   'mlid' => '207',
29881   'plid' => '157',
29882   'link_path' => 'admin/content/rss-publishing',
29883   'router_path' => 'admin/content/rss-publishing',
29884   'link_title' => 'RSS publishing',
29885   '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.";}}',
29886   'module' => 'system',
29887   'hidden' => '0',
29888   'external' => '0',
29889   'has_children' => '0',
29890   'expanded' => '0',
29891   'weight' => '0',
29892   'depth' => '3',
29893   'customized' => '0',
29894   'p1' => '144',
29895   'p2' => '157',
29896   'p3' => '207',
29897   'p4' => '0',
29898   'p5' => '0',
29899   'p6' => '0',
29900   'p7' => '0',
29901   'p8' => '0',
29902   'p9' => '0',
29903   'updated' => '0',
29904 ))
29905 ->values(array(
29906   'menu_name' => 'navigation',
29907   'mlid' => '208',
29908   'plid' => '0',
29909   'link_path' => 'comment/reply/%',
29910   'router_path' => 'comment/reply/%',
29911   'link_title' => 'Reply to comment',
29912   'options' => 'a:0:{}',
29913   'module' => 'system',
29914   'hidden' => '-1',
29915   'external' => '0',
29916   'has_children' => '0',
29917   'expanded' => '0',
29918   'weight' => '0',
29919   'depth' => '1',
29920   'customized' => '0',
29921   'p1' => '208',
29922   'p2' => '0',
29923   'p3' => '0',
29924   'p4' => '0',
29925   'p5' => '0',
29926   'p6' => '0',
29927   'p7' => '0',
29928   'p8' => '0',
29929   'p9' => '0',
29930   'updated' => '0',
29931 ))
29932 ->values(array(
29933   'menu_name' => 'navigation',
29934   'mlid' => '209',
29935   'plid' => '170',
29936   'link_path' => 'admin/user/roles',
29937   'router_path' => 'admin/user/roles',
29938   'link_title' => 'Roles',
29939   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
29940   'module' => 'system',
29941   'hidden' => '0',
29942   'external' => '0',
29943   'has_children' => '0',
29944   'expanded' => '0',
29945   'weight' => '0',
29946   'depth' => '3',
29947   'customized' => '0',
29948   'p1' => '144',
29949   'p2' => '170',
29950   'p3' => '209',
29951   'p4' => '0',
29952   'p5' => '0',
29953   'p6' => '0',
29954   'p7' => '0',
29955   'p8' => '0',
29956   'p9' => '0',
29957   'updated' => '0',
29958 ))
29959 ->values(array(
29960   'menu_name' => 'navigation',
29961   'mlid' => '210',
29962   'plid' => '167',
29963   'link_path' => 'admin/settings/site-information',
29964   'router_path' => 'admin/settings/site-information',
29965   'link_title' => 'Site information',
29966   '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.";}}',
29967   'module' => 'system',
29968   'hidden' => '0',
29969   'external' => '0',
29970   'has_children' => '0',
29971   'expanded' => '0',
29972   'weight' => '0',
29973   'depth' => '3',
29974   'customized' => '0',
29975   'p1' => '144',
29976   'p2' => '167',
29977   'p3' => '210',
29978   'p4' => '0',
29979   'p5' => '0',
29980   'p6' => '0',
29981   'p7' => '0',
29982   'p8' => '0',
29983   'p9' => '0',
29984   'updated' => '0',
29985 ))
29986 ->values(array(
29987   'menu_name' => 'navigation',
29988   'mlid' => '211',
29989   'plid' => '167',
29990   'link_path' => 'admin/settings/site-maintenance',
29991   'router_path' => 'admin/settings/site-maintenance',
29992   'link_title' => 'Site maintenance',
29993   '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.";}}',
29994   'module' => 'system',
29995   'hidden' => '0',
29996   'external' => '0',
29997   'has_children' => '0',
29998   'expanded' => '0',
29999   'weight' => '0',
30000   'depth' => '3',
30001   'customized' => '0',
30002   'p1' => '144',
30003   'p2' => '167',
30004   'p3' => '211',
30005   'p4' => '0',
30006   'p5' => '0',
30007   'p6' => '0',
30008   'p7' => '0',
30009   'p8' => '0',
30010   'p9' => '0',
30011   'updated' => '0',
30012 ))
30013 ->values(array(
30014   'menu_name' => 'navigation',
30015   'mlid' => '212',
30016   'plid' => '158',
30017   'link_path' => 'node/add/sponsor',
30018   'router_path' => 'node/add/sponsor',
30019   'link_title' => 'Sponsor',
30020   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Sponsor node type";}}',
30021   'module' => 'system',
30022   'hidden' => '0',
30023   'external' => '0',
30024   'has_children' => '0',
30025   'expanded' => '0',
30026   'weight' => '0',
30027   'depth' => '2',
30028   'customized' => '0',
30029   'p1' => '158',
30030   'p2' => '212',
30031   'p3' => '0',
30032   'p4' => '0',
30033   'p5' => '0',
30034   'p6' => '0',
30035   'p7' => '0',
30036   'p8' => '0',
30037   'p9' => '0',
30038   'updated' => '0',
30039 ))
30040 ->values(array(
30041   'menu_name' => 'navigation',
30042   'mlid' => '213',
30043   'plid' => '165',
30044   'link_path' => 'admin/reports/status',
30045   'router_path' => 'admin/reports/status',
30046   'link_title' => 'Status report',
30047   '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.\";}}",
30048   'module' => 'system',
30049   'hidden' => '0',
30050   'external' => '0',
30051   'has_children' => '0',
30052   'expanded' => '0',
30053   'weight' => '10',
30054   'depth' => '3',
30055   'customized' => '0',
30056   'p1' => '144',
30057   'p2' => '165',
30058   'p3' => '213',
30059   'p4' => '0',
30060   'p5' => '0',
30061   'p6' => '0',
30062   'p7' => '0',
30063   'p8' => '0',
30064   'p9' => '0',
30065   'updated' => '0',
30066 ))
30067 ->values(array(
30068   'menu_name' => 'navigation',
30069   'mlid' => '214',
30070   'plid' => '157',
30071   'link_path' => 'admin/content/taxonomy',
30072   'router_path' => 'admin/content/taxonomy',
30073   'link_title' => 'Taxonomy',
30074   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
30075   'module' => 'system',
30076   'hidden' => '0',
30077   'external' => '0',
30078   'has_children' => '0',
30079   'expanded' => '0',
30080   'weight' => '0',
30081   'depth' => '3',
30082   'customized' => '0',
30083   'p1' => '144',
30084   'p2' => '157',
30085   'p3' => '214',
30086   'p4' => '0',
30087   'p5' => '0',
30088   'p6' => '0',
30089   'p7' => '0',
30090   'p8' => '0',
30091   'p9' => '0',
30092   'updated' => '0',
30093 ))
30094 ->values(array(
30095   'menu_name' => 'navigation',
30096   'mlid' => '215',
30097   'plid' => '0',
30098   'link_path' => 'taxonomy/term/%',
30099   'router_path' => 'taxonomy/term/%',
30100   'link_title' => 'Taxonomy term',
30101   'options' => 'a:0:{}',
30102   'module' => 'system',
30103   'hidden' => '-1',
30104   'external' => '0',
30105   'has_children' => '0',
30106   'expanded' => '0',
30107   'weight' => '0',
30108   'depth' => '1',
30109   'customized' => '0',
30110   'p1' => '215',
30111   'p2' => '0',
30112   'p3' => '0',
30113   'p4' => '0',
30114   'p5' => '0',
30115   'p6' => '0',
30116   'p7' => '0',
30117   'p8' => '0',
30118   'p9' => '0',
30119   'updated' => '0',
30120 ))
30121 ->values(array(
30122   'menu_name' => 'navigation',
30123   'mlid' => '216',
30124   'plid' => '166',
30125   'link_path' => 'admin/build/themes',
30126   'router_path' => 'admin/build/themes',
30127   'link_title' => 'Themes',
30128   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}',
30129   'module' => 'system',
30130   'hidden' => '0',
30131   'external' => '0',
30132   'has_children' => '0',
30133   'expanded' => '0',
30134   'weight' => '0',
30135   'depth' => '3',
30136   'customized' => '0',
30137   'p1' => '144',
30138   'p2' => '166',
30139   'p3' => '216',
30140   'p4' => '0',
30141   'p5' => '0',
30142   'p6' => '0',
30143   'p7' => '0',
30144   'p8' => '0',
30145   'p9' => '0',
30146   'updated' => '0',
30147 ))
30148 ->values(array(
30149   'menu_name' => 'navigation',
30150   'mlid' => '217',
30151   'plid' => '170',
30152   'link_path' => 'admin/user/settings',
30153   'router_path' => 'admin/user/settings',
30154   'link_title' => 'User settings',
30155   '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.";}}',
30156   'module' => 'system',
30157   'hidden' => '0',
30158   'external' => '0',
30159   'has_children' => '0',
30160   'expanded' => '0',
30161   'weight' => '0',
30162   'depth' => '3',
30163   'customized' => '0',
30164   'p1' => '144',
30165   'p2' => '170',
30166   'p3' => '217',
30167   'p4' => '0',
30168   'p5' => '0',
30169   'p6' => '0',
30170   'p7' => '0',
30171   'p8' => '0',
30172   'p9' => '0',
30173   'updated' => '0',
30174 ))
30175 ->values(array(
30176   'menu_name' => 'navigation',
30177   'mlid' => '218',
30178   'plid' => '170',
30179   'link_path' => 'admin/user/user',
30180   'router_path' => 'admin/user/user',
30181   'link_title' => 'Users',
30182   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}',
30183   'module' => 'system',
30184   'hidden' => '0',
30185   'external' => '0',
30186   'has_children' => '0',
30187   'expanded' => '0',
30188   'weight' => '0',
30189   'depth' => '3',
30190   'customized' => '0',
30191   'p1' => '144',
30192   'p2' => '170',
30193   'p3' => '218',
30194   'p4' => '0',
30195   'p5' => '0',
30196   'p6' => '0',
30197   'p7' => '0',
30198   'p8' => '0',
30199   'p9' => '0',
30200   'updated' => '0',
30201 ))
30202 ->values(array(
30203   'menu_name' => 'navigation',
30204   'mlid' => '219',
30205   'plid' => '195',
30206   'link_path' => 'admin/settings/filters/%',
30207   'router_path' => 'admin/settings/filters/%',
30208   'link_title' => '',
30209   'options' => 'a:0:{}',
30210   'module' => 'system',
30211   'hidden' => '-1',
30212   'external' => '0',
30213   'has_children' => '0',
30214   'expanded' => '0',
30215   'weight' => '0',
30216   'depth' => '4',
30217   'customized' => '0',
30218   'p1' => '144',
30219   'p2' => '167',
30220   'p3' => '195',
30221   'p4' => '219',
30222   'p5' => '0',
30223   'p6' => '0',
30224   'p7' => '0',
30225   'p8' => '0',
30226   'p9' => '0',
30227   'updated' => '0',
30228 ))
30229 ->values(array(
30230   'menu_name' => 'navigation',
30231   'mlid' => '220',
30232   'plid' => '206',
30233   'link_path' => 'admin/user/profile/add',
30234   'router_path' => 'admin/user/profile/add',
30235   'link_title' => 'Add field',
30236   'options' => 'a:0:{}',
30237   'module' => 'system',
30238   'hidden' => '-1',
30239   'external' => '0',
30240   'has_children' => '0',
30241   'expanded' => '0',
30242   'weight' => '0',
30243   'depth' => '4',
30244   'customized' => '0',
30245   'p1' => '144',
30246   'p2' => '170',
30247   'p3' => '206',
30248   'p4' => '220',
30249   'p5' => '0',
30250   'p6' => '0',
30251   'p7' => '0',
30252   'p8' => '0',
30253   'p9' => '0',
30254   'updated' => '0',
30255 ))
30256 ->values(array(
30257   'menu_name' => 'navigation',
30258   'mlid' => '221',
30259   'plid' => '157',
30260   'link_path' => 'admin/content/node-type/article',
30261   'router_path' => 'admin/content/node-type/article',
30262   'link_title' => 'Article',
30263   'options' => 'a:0:{}',
30264   'module' => 'system',
30265   'hidden' => '-1',
30266   'external' => '0',
30267   'has_children' => '0',
30268   'expanded' => '0',
30269   'weight' => '0',
30270   'depth' => '3',
30271   'customized' => '0',
30272   'p1' => '144',
30273   'p2' => '157',
30274   'p3' => '221',
30275   'p4' => '0',
30276   'p5' => '0',
30277   'p6' => '0',
30278   'p7' => '0',
30279   'p8' => '0',
30280   'p9' => '0',
30281   'updated' => '0',
30282 ))
30283 ->values(array(
30284   'menu_name' => 'navigation',
30285   'mlid' => '222',
30286   'plid' => '180',
30287   'link_path' => 'admin/settings/clean-urls/check',
30288   'router_path' => 'admin/settings/clean-urls/check',
30289   'link_title' => 'Clean URL check',
30290   'options' => 'a:0:{}',
30291   'module' => 'system',
30292   'hidden' => '-1',
30293   'external' => '0',
30294   'has_children' => '0',
30295   'expanded' => '0',
30296   'weight' => '0',
30297   'depth' => '4',
30298   'customized' => '0',
30299   'p1' => '144',
30300   'p2' => '167',
30301   'p3' => '180',
30302   'p4' => '222',
30303   'p5' => '0',
30304   'p6' => '0',
30305   'p7' => '0',
30306   'p8' => '0',
30307   'p9' => '0',
30308   'updated' => '0',
30309 ))
30310 ->values(array(
30311   'menu_name' => 'navigation',
30312   'mlid' => '223',
30313   'plid' => '157',
30314   'link_path' => 'admin/content/node-type/company',
30315   'router_path' => 'admin/content/node-type/company',
30316   'link_title' => 'Company',
30317   'options' => 'a:0:{}',
30318   'module' => 'system',
30319   'hidden' => '-1',
30320   'external' => '0',
30321   'has_children' => '0',
30322   'expanded' => '0',
30323   'weight' => '0',
30324   'depth' => '3',
30325   'customized' => '0',
30326   'p1' => '144',
30327   'p2' => '157',
30328   'p3' => '223',
30329   'p4' => '0',
30330   'p5' => '0',
30331   'p6' => '0',
30332   'p7' => '0',
30333   'p8' => '0',
30334   'p9' => '0',
30335   'updated' => '0',
30336 ))
30337 ->values(array(
30338   'menu_name' => 'navigation',
30339   'mlid' => '224',
30340   'plid' => '176',
30341   'link_path' => 'admin/settings/actions/configure',
30342   'router_path' => 'admin/settings/actions/configure',
30343   'link_title' => 'Configure an advanced action',
30344   'options' => 'a:0:{}',
30345   'module' => 'system',
30346   'hidden' => '-1',
30347   'external' => '0',
30348   'has_children' => '0',
30349   'expanded' => '0',
30350   'weight' => '0',
30351   'depth' => '4',
30352   'customized' => '0',
30353   'p1' => '144',
30354   'p2' => '167',
30355   'p3' => '176',
30356   'p4' => '224',
30357   'p5' => '0',
30358   'p6' => '0',
30359   'p7' => '0',
30360   'p8' => '0',
30361   'p9' => '0',
30362   'updated' => '0',
30363 ))
30364 ->values(array(
30365   'menu_name' => 'navigation',
30366   'mlid' => '225',
30367   'plid' => '179',
30368   'link_path' => 'admin/build/block/configure',
30369   'router_path' => 'admin/build/block/configure',
30370   'link_title' => 'Configure block',
30371   'options' => 'a:0:{}',
30372   'module' => 'system',
30373   'hidden' => '-1',
30374   'external' => '0',
30375   'has_children' => '0',
30376   'expanded' => '0',
30377   'weight' => '0',
30378   'depth' => '4',
30379   'customized' => '0',
30380   'p1' => '144',
30381   'p2' => '166',
30382   'p3' => '179',
30383   'p4' => '225',
30384   'p5' => '0',
30385   'p6' => '0',
30386   'p7' => '0',
30387   'p8' => '0',
30388   'p9' => '0',
30389   'updated' => '0',
30390 ))
30391 ->values(array(
30392   'menu_name' => 'navigation',
30393   'mlid' => '226',
30394   'plid' => '166',
30395   'link_path' => 'admin/build/menu-customize/%',
30396   'router_path' => 'admin/build/menu-customize/%',
30397   'link_title' => 'Customize menu',
30398   'options' => 'a:0:{}',
30399   'module' => 'system',
30400   'hidden' => '-1',
30401   'external' => '0',
30402   'has_children' => '0',
30403   'expanded' => '0',
30404   'weight' => '0',
30405   'depth' => '3',
30406   'customized' => '0',
30407   'p1' => '144',
30408   'p2' => '166',
30409   'p3' => '226',
30410   'p4' => '0',
30411   'p5' => '0',
30412   'p6' => '0',
30413   'p7' => '0',
30414   'p8' => '0',
30415   'p9' => '0',
30416   'updated' => '0',
30417 ))
30418 ->values(array(
30419   'menu_name' => 'navigation',
30420   'mlid' => '227',
30421   'plid' => '186',
30422   'link_path' => 'admin/settings/date-time/lookup',
30423   'router_path' => 'admin/settings/date-time/lookup',
30424   'link_title' => 'Date and time lookup',
30425   'options' => 'a:0:{}',
30426   'module' => 'system',
30427   'hidden' => '-1',
30428   'external' => '0',
30429   'has_children' => '0',
30430   'expanded' => '0',
30431   'weight' => '0',
30432   'depth' => '4',
30433   'customized' => '0',
30434   'p1' => '144',
30435   'p2' => '167',
30436   'p3' => '186',
30437   'p4' => '227',
30438   'p5' => '0',
30439   'p6' => '0',
30440   'p7' => '0',
30441   'p8' => '0',
30442   'p9' => '0',
30443   'updated' => '0',
30444 ))
30445 ->values(array(
30446   'menu_name' => 'navigation',
30447   'mlid' => '228',
30448   'plid' => '179',
30449   'link_path' => 'admin/build/block/delete',
30450   'router_path' => 'admin/build/block/delete',
30451   'link_title' => 'Delete block',
30452   'options' => 'a:0:{}',
30453   'module' => 'system',
30454   'hidden' => '-1',
30455   'external' => '0',
30456   'has_children' => '0',
30457   'expanded' => '0',
30458   'weight' => '0',
30459   'depth' => '4',
30460   'customized' => '0',
30461   'p1' => '144',
30462   'p2' => '166',
30463   'p3' => '179',
30464   'p4' => '228',
30465   'p5' => '0',
30466   'p6' => '0',
30467   'p7' => '0',
30468   'p8' => '0',
30469   'p9' => '0',
30470   'updated' => '0',
30471 ))
30472 ->values(array(
30473   'menu_name' => 'navigation',
30474   'mlid' => '229',
30475   'plid' => '206',
30476   'link_path' => 'admin/user/profile/delete',
30477   'router_path' => 'admin/user/profile/delete',
30478   'link_title' => 'Delete field',
30479   'options' => 'a:0:{}',
30480   'module' => 'system',
30481   'hidden' => '-1',
30482   'external' => '0',
30483   'has_children' => '0',
30484   'expanded' => '0',
30485   'weight' => '0',
30486   'depth' => '4',
30487   'customized' => '0',
30488   'p1' => '144',
30489   'p2' => '170',
30490   'p3' => '206',
30491   'p4' => '229',
30492   'p5' => '0',
30493   'p6' => '0',
30494   'p7' => '0',
30495   'p8' => '0',
30496   'p9' => '0',
30497   'updated' => '0',
30498 ))
30499 ->values(array(
30500   'menu_name' => 'navigation',
30501   'mlid' => '230',
30502   'plid' => '195',
30503   'link_path' => 'admin/settings/filters/delete',
30504   'router_path' => 'admin/settings/filters/delete',
30505   'link_title' => 'Delete input format',
30506   'options' => 'a:0:{}',
30507   'module' => 'system',
30508   'hidden' => '-1',
30509   'external' => '0',
30510   'has_children' => '0',
30511   'expanded' => '0',
30512   'weight' => '0',
30513   'depth' => '4',
30514   'customized' => '0',
30515   'p1' => '144',
30516   'p2' => '167',
30517   'p3' => '195',
30518   'p4' => '230',
30519   'p5' => '0',
30520   'p6' => '0',
30521   'p7' => '0',
30522   'p8' => '0',
30523   'p9' => '0',
30524   'updated' => '0',
30525 ))
30526 ->values(array(
30527   'menu_name' => 'navigation',
30528   'mlid' => '231',
30529   'plid' => '175',
30530   'link_path' => 'admin/user/rules/delete',
30531   'router_path' => 'admin/user/rules/delete',
30532   'link_title' => 'Delete rule',
30533   'options' => 'a:0:{}',
30534   'module' => 'system',
30535   'hidden' => '-1',
30536   'external' => '0',
30537   'has_children' => '0',
30538   'expanded' => '0',
30539   'weight' => '0',
30540   'depth' => '4',
30541   'customized' => '0',
30542   'p1' => '144',
30543   'p2' => '170',
30544   'p3' => '175',
30545   'p4' => '231',
30546   'p5' => '0',
30547   'p6' => '0',
30548   'p7' => '0',
30549   'p8' => '0',
30550   'p9' => '0',
30551   'updated' => '0',
30552 ))
30553 ->values(array(
30554   'menu_name' => 'navigation',
30555   'mlid' => '232',
30556   'plid' => '206',
30557   'link_path' => 'admin/user/profile/edit',
30558   'router_path' => 'admin/user/profile/edit',
30559   'link_title' => 'Edit field',
30560   'options' => 'a:0:{}',
30561   'module' => 'system',
30562   'hidden' => '-1',
30563   'external' => '0',
30564   'has_children' => '0',
30565   'expanded' => '0',
30566   'weight' => '0',
30567   'depth' => '4',
30568   'customized' => '0',
30569   'p1' => '144',
30570   'p2' => '170',
30571   'p3' => '206',
30572   'p4' => '232',
30573   'p5' => '0',
30574   'p6' => '0',
30575   'p7' => '0',
30576   'p8' => '0',
30577   'p9' => '0',
30578   'updated' => '0',
30579 ))
30580 ->values(array(
30581   'menu_name' => 'navigation',
30582   'mlid' => '233',
30583   'plid' => '209',
30584   'link_path' => 'admin/user/roles/edit',
30585   'router_path' => 'admin/user/roles/edit',
30586   'link_title' => 'Edit role',
30587   'options' => 'a:0:{}',
30588   'module' => 'system',
30589   'hidden' => '-1',
30590   'external' => '0',
30591   'has_children' => '0',
30592   'expanded' => '0',
30593   'weight' => '0',
30594   'depth' => '4',
30595   'customized' => '0',
30596   'p1' => '144',
30597   'p2' => '170',
30598   'p3' => '209',
30599   'p4' => '233',
30600   'p5' => '0',
30601   'p6' => '0',
30602   'p7' => '0',
30603   'p8' => '0',
30604   'p9' => '0',
30605   'updated' => '0',
30606 ))
30607 ->values(array(
30608   'menu_name' => 'navigation',
30609   'mlid' => '234',
30610   'plid' => '175',
30611   'link_path' => 'admin/user/rules/edit',
30612   'router_path' => 'admin/user/rules/edit',
30613   'link_title' => 'Edit rule',
30614   'options' => 'a:0:{}',
30615   'module' => 'system',
30616   'hidden' => '-1',
30617   'external' => '0',
30618   'has_children' => '0',
30619   'expanded' => '0',
30620   'weight' => '0',
30621   'depth' => '4',
30622   'customized' => '0',
30623   'p1' => '144',
30624   'p2' => '170',
30625   'p3' => '175',
30626   'p4' => '234',
30627   'p5' => '0',
30628   'p6' => '0',
30629   'p7' => '0',
30630   'p8' => '0',
30631   'p9' => '0',
30632   'updated' => '0',
30633 ))
30634 ->values(array(
30635   'menu_name' => 'navigation',
30636   'mlid' => '235',
30637   'plid' => '157',
30638   'link_path' => 'admin/content/node-type/employee',
30639   'router_path' => 'admin/content/node-type/employee',
30640   'link_title' => 'Employee',
30641   'options' => 'a:0:{}',
30642   'module' => 'system',
30643   'hidden' => '-1',
30644   'external' => '0',
30645   'has_children' => '0',
30646   'expanded' => '0',
30647   'weight' => '0',
30648   'depth' => '3',
30649   'customized' => '0',
30650   'p1' => '144',
30651   'p2' => '157',
30652   'p3' => '235',
30653   'p4' => '0',
30654   'p5' => '0',
30655   'p6' => '0',
30656   'p7' => '0',
30657   'p8' => '0',
30658   'p9' => '0',
30659   'updated' => '0',
30660 ))
30661 ->values(array(
30662   'menu_name' => 'navigation',
30663   'mlid' => '236',
30664   'plid' => '214',
30665   'link_path' => 'admin/content/taxonomy/%',
30666   'router_path' => 'admin/content/taxonomy/%',
30667   'link_title' => 'List terms',
30668   'options' => 'a:0:{}',
30669   'module' => 'system',
30670   'hidden' => '-1',
30671   'external' => '0',
30672   'has_children' => '0',
30673   'expanded' => '0',
30674   'weight' => '0',
30675   'depth' => '4',
30676   'customized' => '0',
30677   'p1' => '144',
30678   'p2' => '157',
30679   'p3' => '214',
30680   'p4' => '236',
30681   'p5' => '0',
30682   'p6' => '0',
30683   'p7' => '0',
30684   'p8' => '0',
30685   'p9' => '0',
30686   'updated' => '0',
30687 ))
30688 ->values(array(
30689   'menu_name' => 'navigation',
30690   'mlid' => '237',
30691   'plid' => '157',
30692   'link_path' => 'admin/content/node-type/test-event',
30693   'router_path' => 'admin/content/node-type/test-event',
30694   'link_title' => 'Migrate test event',
30695   'options' => 'a:0:{}',
30696   'module' => 'system',
30697   'hidden' => '-1',
30698   'external' => '0',
30699   'has_children' => '0',
30700   'expanded' => '0',
30701   'weight' => '0',
30702   'depth' => '3',
30703   'customized' => '0',
30704   'p1' => '144',
30705   'p2' => '157',
30706   'p3' => '237',
30707   'p4' => '0',
30708   'p5' => '0',
30709   'p6' => '0',
30710   'p7' => '0',
30711   'p8' => '0',
30712   'p9' => '0',
30713   'updated' => '0',
30714 ))
30715 ->values(array(
30716   'menu_name' => 'navigation',
30717   'mlid' => '238',
30718   'plid' => '157',
30719   'link_path' => 'admin/content/node-type/test-page',
30720   'router_path' => 'admin/content/node-type/test-page',
30721   'link_title' => 'Migrate test page',
30722   'options' => 'a:0:{}',
30723   'module' => 'system',
30724   'hidden' => '-1',
30725   'external' => '0',
30726   'has_children' => '0',
30727   'expanded' => '0',
30728   'weight' => '0',
30729   'depth' => '3',
30730   'customized' => '0',
30731   'p1' => '144',
30732   'p2' => '157',
30733   'p3' => '238',
30734   'p4' => '0',
30735   'p5' => '0',
30736   'p6' => '0',
30737   'p7' => '0',
30738   'p8' => '0',
30739   'p9' => '0',
30740   'updated' => '0',
30741 ))
30742 ->values(array(
30743   'menu_name' => 'navigation',
30744   'mlid' => '239',
30745   'plid' => '157',
30746   'link_path' => 'admin/content/node-type/test-planet',
30747   'router_path' => 'admin/content/node-type/test-planet',
30748   'link_title' => 'Migrate test planet',
30749   'options' => 'a:0:{}',
30750   'module' => 'system',
30751   'hidden' => '-1',
30752   'external' => '0',
30753   'has_children' => '0',
30754   'expanded' => '0',
30755   'weight' => '0',
30756   'depth' => '3',
30757   'customized' => '0',
30758   'p1' => '144',
30759   'p2' => '157',
30760   'p3' => '239',
30761   'p4' => '0',
30762   'p5' => '0',
30763   'p6' => '0',
30764   'p7' => '0',
30765   'p8' => '0',
30766   'p9' => '0',
30767   'updated' => '0',
30768 ))
30769 ->values(array(
30770   'menu_name' => 'navigation',
30771   'mlid' => '240',
30772   'plid' => '157',
30773   'link_path' => 'admin/content/node-type/test-story',
30774   'router_path' => 'admin/content/node-type/test-story',
30775   'link_title' => 'Migrate test story',
30776   'options' => 'a:0:{}',
30777   'module' => 'system',
30778   'hidden' => '-1',
30779   'external' => '0',
30780   'has_children' => '0',
30781   'expanded' => '0',
30782   'weight' => '0',
30783   'depth' => '3',
30784   'customized' => '0',
30785   'p1' => '144',
30786   'p2' => '157',
30787   'p3' => '240',
30788   'p4' => '0',
30789   'p5' => '0',
30790   'p6' => '0',
30791   'p7' => '0',
30792   'p8' => '0',
30793   'p9' => '0',
30794   'updated' => '0',
30795 ))
30796 ->values(array(
30797   'menu_name' => 'navigation',
30798   'mlid' => '241',
30799   'plid' => '213',
30800   'link_path' => 'admin/reports/status/php',
30801   'router_path' => 'admin/reports/status/php',
30802   'link_title' => 'PHP',
30803   'options' => 'a:0:{}',
30804   'module' => 'system',
30805   'hidden' => '-1',
30806   'external' => '0',
30807   'has_children' => '0',
30808   'expanded' => '0',
30809   'weight' => '0',
30810   'depth' => '4',
30811   'customized' => '0',
30812   'p1' => '144',
30813   'p2' => '165',
30814   'p3' => '213',
30815   'p4' => '241',
30816   'p5' => '0',
30817   'p6' => '0',
30818   'p7' => '0',
30819   'p8' => '0',
30820   'p9' => '0',
30821   'updated' => '0',
30822 ))
30823 ->values(array(
30824   'menu_name' => 'navigation',
30825   'mlid' => '242',
30826   'plid' => '206',
30827   'link_path' => 'admin/user/profile/autocomplete',
30828   'router_path' => 'admin/user/profile/autocomplete',
30829   'link_title' => 'Profile category autocomplete',
30830   'options' => 'a:0:{}',
30831   'module' => 'system',
30832   'hidden' => '-1',
30833   'external' => '0',
30834   'has_children' => '0',
30835   'expanded' => '0',
30836   'weight' => '0',
30837   'depth' => '4',
30838   'customized' => '0',
30839   'p1' => '144',
30840   'p2' => '170',
30841   'p3' => '206',
30842   'p4' => '242',
30843   'p5' => '0',
30844   'p6' => '0',
30845   'p7' => '0',
30846   'p8' => '0',
30847   'p9' => '0',
30848   'updated' => '0',
30849 ))
30850 ->values(array(
30851   'menu_name' => 'navigation',
30852   'mlid' => '243',
30853   'plid' => '205',
30854   'link_path' => 'admin/content/node-settings/rebuild',
30855   'router_path' => 'admin/content/node-settings/rebuild',
30856   'link_title' => 'Rebuild permissions',
30857   'options' => 'a:0:{}',
30858   'module' => 'system',
30859   'hidden' => '-1',
30860   'external' => '0',
30861   'has_children' => '0',
30862   'expanded' => '0',
30863   'weight' => '0',
30864   'depth' => '4',
30865   'customized' => '0',
30866   'p1' => '144',
30867   'p2' => '157',
30868   'p3' => '205',
30869   'p4' => '243',
30870   'p5' => '0',
30871   'p6' => '0',
30872   'p7' => '0',
30873   'p8' => '0',
30874   'p9' => '0',
30875   'updated' => '0',
30876 ))
30877 ->values(array(
30878   'menu_name' => 'navigation',
30879   'mlid' => '244',
30880   'plid' => '176',
30881   'link_path' => 'admin/settings/actions/orphan',
30882   'router_path' => 'admin/settings/actions/orphan',
30883   'link_title' => 'Remove orphans',
30884   'options' => 'a:0:{}',
30885   'module' => 'system',
30886   'hidden' => '-1',
30887   'external' => '0',
30888   'has_children' => '0',
30889   'expanded' => '0',
30890   'weight' => '0',
30891   'depth' => '4',
30892   'customized' => '0',
30893   'p1' => '144',
30894   'p2' => '167',
30895   'p3' => '176',
30896   'p4' => '244',
30897   'p5' => '0',
30898   'p6' => '0',
30899   'p7' => '0',
30900   'p8' => '0',
30901   'p9' => '0',
30902   'updated' => '0',
30903 ))
30904 ->values(array(
30905   'menu_name' => 'navigation',
30906   'mlid' => '245',
30907   'plid' => '213',
30908   'link_path' => 'admin/reports/status/run-cron',
30909   'router_path' => 'admin/reports/status/run-cron',
30910   'link_title' => 'Run cron',
30911   'options' => 'a:0:{}',
30912   'module' => 'system',
30913   'hidden' => '-1',
30914   'external' => '0',
30915   'has_children' => '0',
30916   'expanded' => '0',
30917   'weight' => '0',
30918   'depth' => '4',
30919   'customized' => '0',
30920   'p1' => '144',
30921   'p2' => '165',
30922   'p3' => '213',
30923   'p4' => '245',
30924   'p5' => '0',
30925   'p6' => '0',
30926   'p7' => '0',
30927   'p8' => '0',
30928   'p9' => '0',
30929   'updated' => '0',
30930 ))
30931 ->values(array(
30932   'menu_name' => 'navigation',
30933   'mlid' => '246',
30934   'plid' => '213',
30935   'link_path' => 'admin/reports/status/sql',
30936   'router_path' => 'admin/reports/status/sql',
30937   'link_title' => 'SQL',
30938   'options' => 'a:0:{}',
30939   'module' => 'system',
30940   'hidden' => '-1',
30941   'external' => '0',
30942   'has_children' => '0',
30943   'expanded' => '0',
30944   'weight' => '0',
30945   'depth' => '4',
30946   'customized' => '0',
30947   'p1' => '144',
30948   'p2' => '165',
30949   'p3' => '213',
30950   'p4' => '246',
30951   'p5' => '0',
30952   'p6' => '0',
30953   'p7' => '0',
30954   'p8' => '0',
30955   'p9' => '0',
30956   'updated' => '0',
30957 ))
30958 ->values(array(
30959   'menu_name' => 'navigation',
30960   'mlid' => '247',
30961   'plid' => '157',
30962   'link_path' => 'admin/content/node-type/sponsor',
30963   'router_path' => 'admin/content/node-type/sponsor',
30964   'link_title' => 'Sponsor',
30965   'options' => 'a:0:{}',
30966   'module' => 'system',
30967   'hidden' => '-1',
30968   'external' => '0',
30969   'has_children' => '0',
30970   'expanded' => '0',
30971   'weight' => '0',
30972   'depth' => '3',
30973   'customized' => '0',
30974   'p1' => '144',
30975   'p2' => '157',
30976   'p3' => '247',
30977   'p4' => '0',
30978   'p5' => '0',
30979   'p6' => '0',
30980   'p7' => '0',
30981   'p8' => '0',
30982   'p9' => '0',
30983   'updated' => '0',
30984 ))
30985 ->values(array(
30986   'menu_name' => 'navigation',
30987   'mlid' => '248',
30988   'plid' => '186',
30989   'link_path' => 'admin/settings/date-time/formats/lookup',
30990   'router_path' => 'admin/settings/date-time/formats/lookup',
30991   'link_title' => 'Date and time lookup',
30992   'options' => 'a:0:{}',
30993   'module' => 'system',
30994   'hidden' => '-1',
30995   'external' => '0',
30996   'has_children' => '0',
30997   'expanded' => '0',
30998   'weight' => '0',
30999   'depth' => '4',
31000   'customized' => '0',
31001   'p1' => '144',
31002   'p2' => '167',
31003   'p3' => '186',
31004   'p4' => '248',
31005   'p5' => '0',
31006   'p6' => '0',
31007   'p7' => '0',
31008   'p8' => '0',
31009   'p9' => '0',
31010   'updated' => '0',
31011 ))
31012 ->values(array(
31013   'menu_name' => 'navigation',
31014   'mlid' => '249',
31015   'plid' => '0',
31016   'link_path' => 'admin/content/node-type/article/delete',
31017   'router_path' => 'admin/content/node-type/article/delete',
31018   'link_title' => 'Delete',
31019   'options' => 'a:0:{}',
31020   'module' => 'system',
31021   'hidden' => '-1',
31022   'external' => '0',
31023   'has_children' => '0',
31024   'expanded' => '0',
31025   'weight' => '0',
31026   'depth' => '1',
31027   'customized' => '0',
31028   'p1' => '249',
31029   'p2' => '0',
31030   'p3' => '0',
31031   'p4' => '0',
31032   'p5' => '0',
31033   'p6' => '0',
31034   'p7' => '0',
31035   'p8' => '0',
31036   'p9' => '0',
31037   'updated' => '0',
31038 ))
31039 ->values(array(
31040   'menu_name' => 'navigation',
31041   'mlid' => '250',
31042   'plid' => '0',
31043   'link_path' => 'admin/content/node-type/company/delete',
31044   'router_path' => 'admin/content/node-type/company/delete',
31045   'link_title' => 'Delete',
31046   'options' => 'a:0:{}',
31047   'module' => 'system',
31048   'hidden' => '-1',
31049   'external' => '0',
31050   'has_children' => '0',
31051   'expanded' => '0',
31052   'weight' => '0',
31053   'depth' => '1',
31054   'customized' => '0',
31055   'p1' => '250',
31056   'p2' => '0',
31057   'p3' => '0',
31058   'p4' => '0',
31059   'p5' => '0',
31060   'p6' => '0',
31061   'p7' => '0',
31062   'p8' => '0',
31063   'p9' => '0',
31064   'updated' => '0',
31065 ))
31066 ->values(array(
31067   'menu_name' => 'navigation',
31068   'mlid' => '251',
31069   'plid' => '0',
31070   'link_path' => 'admin/content/node-type/employee/delete',
31071   'router_path' => 'admin/content/node-type/employee/delete',
31072   'link_title' => 'Delete',
31073   'options' => 'a:0:{}',
31074   'module' => 'system',
31075   'hidden' => '-1',
31076   'external' => '0',
31077   'has_children' => '0',
31078   'expanded' => '0',
31079   'weight' => '0',
31080   'depth' => '1',
31081   'customized' => '0',
31082   'p1' => '251',
31083   'p2' => '0',
31084   'p3' => '0',
31085   'p4' => '0',
31086   'p5' => '0',
31087   'p6' => '0',
31088   'p7' => '0',
31089   'p8' => '0',
31090   'p9' => '0',
31091   'updated' => '0',
31092 ))
31093 ->values(array(
31094   'menu_name' => 'navigation',
31095   'mlid' => '252',
31096   'plid' => '0',
31097   'link_path' => 'admin/content/node-type/sponsor/delete',
31098   'router_path' => 'admin/content/node-type/sponsor/delete',
31099   'link_title' => 'Delete',
31100   'options' => 'a:0:{}',
31101   'module' => 'system',
31102   'hidden' => '-1',
31103   'external' => '0',
31104   'has_children' => '0',
31105   'expanded' => '0',
31106   'weight' => '0',
31107   'depth' => '1',
31108   'customized' => '0',
31109   'p1' => '252',
31110   'p2' => '0',
31111   'p3' => '0',
31112   'p4' => '0',
31113   'p5' => '0',
31114   'p6' => '0',
31115   'p7' => '0',
31116   'p8' => '0',
31117   'p9' => '0',
31118   'updated' => '0',
31119 ))
31120 ->values(array(
31121   'menu_name' => 'navigation',
31122   'mlid' => '253',
31123   'plid' => '0',
31124   'link_path' => 'admin/content/node-type/test-event/delete',
31125   'router_path' => 'admin/content/node-type/test-event/delete',
31126   'link_title' => 'Delete',
31127   'options' => 'a:0:{}',
31128   'module' => 'system',
31129   'hidden' => '-1',
31130   'external' => '0',
31131   'has_children' => '0',
31132   'expanded' => '0',
31133   'weight' => '0',
31134   'depth' => '1',
31135   'customized' => '0',
31136   'p1' => '253',
31137   'p2' => '0',
31138   'p3' => '0',
31139   'p4' => '0',
31140   'p5' => '0',
31141   'p6' => '0',
31142   'p7' => '0',
31143   'p8' => '0',
31144   'p9' => '0',
31145   'updated' => '0',
31146 ))
31147 ->values(array(
31148   'menu_name' => 'navigation',
31149   'mlid' => '254',
31150   'plid' => '0',
31151   'link_path' => 'admin/content/node-type/test-page/delete',
31152   'router_path' => 'admin/content/node-type/test-page/delete',
31153   'link_title' => 'Delete',
31154   'options' => 'a:0:{}',
31155   'module' => 'system',
31156   'hidden' => '-1',
31157   'external' => '0',
31158   'has_children' => '0',
31159   'expanded' => '0',
31160   'weight' => '0',
31161   'depth' => '1',
31162   'customized' => '0',
31163   'p1' => '254',
31164   'p2' => '0',
31165   'p3' => '0',
31166   'p4' => '0',
31167   'p5' => '0',
31168   'p6' => '0',
31169   'p7' => '0',
31170   'p8' => '0',
31171   'p9' => '0',
31172   'updated' => '0',
31173 ))
31174 ->values(array(
31175   'menu_name' => 'navigation',
31176   'mlid' => '255',
31177   'plid' => '0',
31178   'link_path' => 'admin/content/node-type/test-planet/delete',
31179   'router_path' => 'admin/content/node-type/test-planet/delete',
31180   'link_title' => 'Delete',
31181   'options' => 'a:0:{}',
31182   'module' => 'system',
31183   'hidden' => '-1',
31184   'external' => '0',
31185   'has_children' => '0',
31186   'expanded' => '0',
31187   'weight' => '0',
31188   'depth' => '1',
31189   'customized' => '0',
31190   'p1' => '255',
31191   'p2' => '0',
31192   'p3' => '0',
31193   'p4' => '0',
31194   'p5' => '0',
31195   'p6' => '0',
31196   'p7' => '0',
31197   'p8' => '0',
31198   'p9' => '0',
31199   'updated' => '0',
31200 ))
31201 ->values(array(
31202   'menu_name' => 'navigation',
31203   'mlid' => '256',
31204   'plid' => '0',
31205   'link_path' => 'admin/content/node-type/test-story/delete',
31206   'router_path' => 'admin/content/node-type/test-story/delete',
31207   'link_title' => 'Delete',
31208   'options' => 'a:0:{}',
31209   'module' => 'system',
31210   'hidden' => '-1',
31211   'external' => '0',
31212   'has_children' => '0',
31213   'expanded' => '0',
31214   'weight' => '0',
31215   'depth' => '1',
31216   'customized' => '0',
31217   'p1' => '256',
31218   'p2' => '0',
31219   'p3' => '0',
31220   'p4' => '0',
31221   'p5' => '0',
31222   'p6' => '0',
31223   'p7' => '0',
31224   'p8' => '0',
31225   'p9' => '0',
31226   'updated' => '0',
31227 ))
31228 ->values(array(
31229   'menu_name' => 'navigation',
31230   'mlid' => '257',
31231   'plid' => '176',
31232   'link_path' => 'admin/settings/actions/delete/%',
31233   'router_path' => 'admin/settings/actions/delete/%',
31234   'link_title' => 'Delete action',
31235   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
31236   'module' => 'system',
31237   'hidden' => '-1',
31238   'external' => '0',
31239   'has_children' => '0',
31240   'expanded' => '0',
31241   'weight' => '0',
31242   'depth' => '4',
31243   'customized' => '0',
31244   'p1' => '144',
31245   'p2' => '167',
31246   'p3' => '176',
31247   'p4' => '257',
31248   'p5' => '0',
31249   'p6' => '0',
31250   'p7' => '0',
31251   'p8' => '0',
31252   'p9' => '0',
31253   'updated' => '0',
31254 ))
31255 ->values(array(
31256   'menu_name' => 'navigation',
31257   'mlid' => '258',
31258   'plid' => '183',
31259   'link_path' => 'admin/build/contact/delete/%',
31260   'router_path' => 'admin/build/contact/delete/%',
31261   'link_title' => 'Delete contact',
31262   'options' => 'a:0:{}',
31263   'module' => 'system',
31264   'hidden' => '-1',
31265   'external' => '0',
31266   'has_children' => '0',
31267   'expanded' => '0',
31268   'weight' => '0',
31269   'depth' => '4',
31270   'customized' => '0',
31271   'p1' => '144',
31272   'p2' => '166',
31273   'p3' => '183',
31274   'p4' => '258',
31275   'p5' => '0',
31276   'p6' => '0',
31277   'p7' => '0',
31278   'p8' => '0',
31279   'p9' => '0',
31280   'updated' => '0',
31281 ))
31282 ->values(array(
31283   'menu_name' => 'navigation',
31284   'mlid' => '259',
31285   'plid' => '186',
31286   'link_path' => 'admin/settings/date-time/delete/%',
31287   'router_path' => 'admin/settings/date-time/delete/%',
31288   'link_title' => 'Delete date format type',
31289   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:52:"Allow users to delete a configured date format type.";}}',
31290   'module' => 'system',
31291   'hidden' => '-1',
31292   'external' => '0',
31293   'has_children' => '0',
31294   'expanded' => '0',
31295   'weight' => '0',
31296   'depth' => '4',
31297   'customized' => '0',
31298   'p1' => '144',
31299   'p2' => '167',
31300   'p3' => '186',
31301   'p4' => '259',
31302   'p5' => '0',
31303   'p6' => '0',
31304   'p7' => '0',
31305   'p8' => '0',
31306   'p9' => '0',
31307   'updated' => '0',
31308 ))
31309 ->values(array(
31310   'menu_name' => 'navigation',
31311   'mlid' => '260',
31312   'plid' => '0',
31313   'link_path' => 'admin/build/menu-customize/%/delete',
31314   'router_path' => 'admin/build/menu-customize/%/delete',
31315   'link_title' => 'Delete menu',
31316   'options' => 'a:0:{}',
31317   'module' => 'system',
31318   'hidden' => '-1',
31319   'external' => '0',
31320   'has_children' => '0',
31321   'expanded' => '0',
31322   'weight' => '0',
31323   'depth' => '1',
31324   'customized' => '0',
31325   'p1' => '260',
31326   'p2' => '0',
31327   'p3' => '0',
31328   'p4' => '0',
31329   'p5' => '0',
31330   'p6' => '0',
31331   'p7' => '0',
31332   'p8' => '0',
31333   'p9' => '0',
31334   'updated' => '0',
31335 ))
31336 ->values(array(
31337   'menu_name' => 'navigation',
31338   'mlid' => '261',
31339   'plid' => '183',
31340   'link_path' => 'admin/build/contact/edit/%',
31341   'router_path' => 'admin/build/contact/edit/%',
31342   'link_title' => 'Edit contact category',
31343   'options' => 'a:0:{}',
31344   'module' => 'system',
31345   'hidden' => '-1',
31346   'external' => '0',
31347   'has_children' => '0',
31348   'expanded' => '0',
31349   'weight' => '0',
31350   'depth' => '4',
31351   'customized' => '0',
31352   'p1' => '144',
31353   'p2' => '166',
31354   'p3' => '183',
31355   'p4' => '261',
31356   'p5' => '0',
31357   'p6' => '0',
31358   'p7' => '0',
31359   'p8' => '0',
31360   'p9' => '0',
31361   'updated' => '0',
31362 ))
31363 ->values(array(
31364   'menu_name' => 'navigation',
31365   'mlid' => '262',
31366   'plid' => '214',
31367   'link_path' => 'admin/content/taxonomy/edit/term',
31368   'router_path' => 'admin/content/taxonomy/edit/term',
31369   'link_title' => 'Edit term',
31370   'options' => 'a:0:{}',
31371   'module' => 'system',
31372   'hidden' => '-1',
31373   'external' => '0',
31374   'has_children' => '0',
31375   'expanded' => '0',
31376   'weight' => '0',
31377   'depth' => '4',
31378   'customized' => '0',
31379   'p1' => '144',
31380   'p2' => '157',
31381   'p3' => '214',
31382   'p4' => '262',
31383   'p5' => '0',
31384   'p6' => '0',
31385   'p7' => '0',
31386   'p8' => '0',
31387   'p9' => '0',
31388   'updated' => '0',
31389 ))
31390 ->values(array(
31391   'menu_name' => 'navigation',
31392   'mlid' => '263',
31393   'plid' => '179',
31394   'link_path' => 'admin/build/block/list/js',
31395   'router_path' => 'admin/build/block/list/js',
31396   'link_title' => 'JavaScript List Form',
31397   'options' => 'a:0:{}',
31398   'module' => 'system',
31399   'hidden' => '-1',
31400   'external' => '0',
31401   'has_children' => '0',
31402   'expanded' => '0',
31403   'weight' => '0',
31404   'depth' => '4',
31405   'customized' => '0',
31406   'p1' => '144',
31407   'p2' => '166',
31408   'p3' => '179',
31409   'p4' => '263',
31410   'p5' => '0',
31411   'p6' => '0',
31412   'p7' => '0',
31413   'p8' => '0',
31414   'p9' => '0',
31415   'updated' => '0',
31416 ))
31417 ->values(array(
31418   'menu_name' => 'navigation',
31419   'mlid' => '264',
31420   'plid' => '202',
31421   'link_path' => 'admin/build/modules/list/confirm',
31422   'router_path' => 'admin/build/modules/list/confirm',
31423   'link_title' => 'List',
31424   'options' => 'a:0:{}',
31425   'module' => 'system',
31426   'hidden' => '-1',
31427   'external' => '0',
31428   'has_children' => '0',
31429   'expanded' => '0',
31430   'weight' => '0',
31431   'depth' => '4',
31432   'customized' => '0',
31433   'p1' => '144',
31434   'p2' => '166',
31435   'p3' => '202',
31436   'p4' => '264',
31437   'p5' => '0',
31438   'p6' => '0',
31439   'p7' => '0',
31440   'p8' => '0',
31441   'p9' => '0',
31442   'updated' => '0',
31443 ))
31444 ->values(array(
31445   'menu_name' => 'navigation',
31446   'mlid' => '266',
31447   'plid' => '0',
31448   'link_path' => 'user/reset/%/%/%',
31449   'router_path' => 'user/reset/%/%/%',
31450   'link_title' => 'Reset password',
31451   'options' => 'a:0:{}',
31452   'module' => 'system',
31453   'hidden' => '-1',
31454   'external' => '0',
31455   'has_children' => '0',
31456   'expanded' => '0',
31457   'weight' => '0',
31458   'depth' => '1',
31459   'customized' => '0',
31460   'p1' => '266',
31461   'p2' => '0',
31462   'p3' => '0',
31463   'p4' => '0',
31464   'p5' => '0',
31465   'p6' => '0',
31466   'p7' => '0',
31467   'p8' => '0',
31468   'p9' => '0',
31469   'updated' => '0',
31470 ))
31471 ->values(array(
31472   'menu_name' => 'navigation',
31473   'mlid' => '267',
31474   'plid' => '202',
31475   'link_path' => 'admin/build/modules/uninstall/confirm',
31476   'router_path' => 'admin/build/modules/uninstall/confirm',
31477   'link_title' => 'Uninstall',
31478   'options' => 'a:0:{}',
31479   'module' => 'system',
31480   'hidden' => '-1',
31481   'external' => '0',
31482   'has_children' => '0',
31483   'expanded' => '0',
31484   'weight' => '0',
31485   'depth' => '4',
31486   'customized' => '0',
31487   'p1' => '144',
31488   'p2' => '166',
31489   'p3' => '202',
31490   'p4' => '267',
31491   'p5' => '0',
31492   'p6' => '0',
31493   'p7' => '0',
31494   'p8' => '0',
31495   'p9' => '0',
31496   'updated' => '0',
31497 ))
31498 ->values(array(
31499   'menu_name' => 'navigation',
31500   'mlid' => '269',
31501   'plid' => '0',
31502   'link_path' => 'node/%/revisions/%/delete',
31503   'router_path' => 'node/%/revisions/%/delete',
31504   'link_title' => 'Delete earlier revision',
31505   'options' => 'a:0:{}',
31506   'module' => 'system',
31507   'hidden' => '-1',
31508   'external' => '0',
31509   'has_children' => '0',
31510   'expanded' => '0',
31511   'weight' => '0',
31512   'depth' => '1',
31513   'customized' => '0',
31514   'p1' => '269',
31515   'p2' => '0',
31516   'p3' => '0',
31517   'p4' => '0',
31518   'p5' => '0',
31519   'p6' => '0',
31520   'p7' => '0',
31521   'p8' => '0',
31522   'p9' => '0',
31523   'updated' => '0',
31524 ))
31525 ->values(array(
31526   'menu_name' => 'navigation',
31527   'mlid' => '270',
31528   'plid' => '0',
31529   'link_path' => 'node/%/revisions/%/revert',
31530   'router_path' => 'node/%/revisions/%/revert',
31531   'link_title' => 'Revert to earlier revision',
31532   'options' => 'a:0:{}',
31533   'module' => 'system',
31534   'hidden' => '-1',
31535   'external' => '0',
31536   'has_children' => '0',
31537   'expanded' => '0',
31538   'weight' => '0',
31539   'depth' => '1',
31540   'customized' => '0',
31541   'p1' => '270',
31542   'p2' => '0',
31543   'p3' => '0',
31544   'p4' => '0',
31545   'p5' => '0',
31546   'p6' => '0',
31547   'p7' => '0',
31548   'p8' => '0',
31549   'p9' => '0',
31550   'updated' => '0',
31551 ))
31552 ->values(array(
31553   'menu_name' => 'navigation',
31554   'mlid' => '271',
31555   'plid' => '0',
31556   'link_path' => 'node/%/revisions/%/view',
31557   'router_path' => 'node/%/revisions/%/view',
31558   'link_title' => 'Revisions',
31559   'options' => 'a:0:{}',
31560   'module' => 'system',
31561   'hidden' => '-1',
31562   'external' => '0',
31563   'has_children' => '0',
31564   'expanded' => '0',
31565   'weight' => '0',
31566   'depth' => '1',
31567   'customized' => '0',
31568   'p1' => '271',
31569   'p2' => '0',
31570   'p3' => '0',
31571   'p4' => '0',
31572   'p5' => '0',
31573   'p6' => '0',
31574   'p7' => '0',
31575   'p8' => '0',
31576   'p9' => '0',
31577   'updated' => '0',
31578 ))
31579 ->values(array(
31580   'menu_name' => 'navigation',
31581   'mlid' => '272',
31582   'plid' => '186',
31583   'link_path' => 'admin/settings/date-time/formats/delete/%',
31584   'router_path' => 'admin/settings/date-time/formats/delete/%',
31585   'link_title' => 'Delete date format',
31586   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Allow users to delete a configured date format.";}}',
31587   'module' => 'system',
31588   'hidden' => '-1',
31589   'external' => '0',
31590   'has_children' => '0',
31591   'expanded' => '0',
31592   'weight' => '0',
31593   'depth' => '4',
31594   'customized' => '0',
31595   'p1' => '144',
31596   'p2' => '167',
31597   'p3' => '186',
31598   'p4' => '272',
31599   'p5' => '0',
31600   'p6' => '0',
31601   'p7' => '0',
31602   'p8' => '0',
31603   'p9' => '0',
31604   'updated' => '0',
31605 ))
31606 ->values(array(
31607   'menu_name' => 'navigation',
31608   'mlid' => '273',
31609   'plid' => '197',
31610   'link_path' => 'admin/build/menu/item/%/delete',
31611   'router_path' => 'admin/build/menu/item/%/delete',
31612   'link_title' => 'Delete menu item',
31613   'options' => 'a:0:{}',
31614   'module' => 'system',
31615   'hidden' => '-1',
31616   'external' => '0',
31617   'has_children' => '0',
31618   'expanded' => '0',
31619   'weight' => '0',
31620   'depth' => '4',
31621   'customized' => '0',
31622   'p1' => '144',
31623   'p2' => '166',
31624   'p3' => '197',
31625   'p4' => '273',
31626   'p5' => '0',
31627   'p6' => '0',
31628   'p7' => '0',
31629   'p8' => '0',
31630   'p9' => '0',
31631   'updated' => '0',
31632 ))
31633 ->values(array(
31634   'menu_name' => 'navigation',
31635   'mlid' => '276',
31636   'plid' => '197',
31637   'link_path' => 'admin/build/menu/item/%/edit',
31638   'router_path' => 'admin/build/menu/item/%/edit',
31639   'link_title' => 'Edit menu item',
31640   'options' => 'a:0:{}',
31641   'module' => 'system',
31642   'hidden' => '-1',
31643   'external' => '0',
31644   'has_children' => '0',
31645   'expanded' => '0',
31646   'weight' => '0',
31647   'depth' => '4',
31648   'customized' => '0',
31649   'p1' => '144',
31650   'p2' => '166',
31651   'p3' => '197',
31652   'p4' => '276',
31653   'p5' => '0',
31654   'p6' => '0',
31655   'p7' => '0',
31656   'p8' => '0',
31657   'p9' => '0',
31658   'updated' => '0',
31659 ))
31660 ->values(array(
31661   'menu_name' => 'navigation',
31662   'mlid' => '277',
31663   'plid' => '214',
31664   'link_path' => 'admin/content/taxonomy/edit/vocabulary/%',
31665   'router_path' => 'admin/content/taxonomy/edit/vocabulary/%',
31666   'link_title' => 'Edit vocabulary',
31667   'options' => 'a:0:{}',
31668   'module' => 'system',
31669   'hidden' => '-1',
31670   'external' => '0',
31671   'has_children' => '0',
31672   'expanded' => '0',
31673   'weight' => '0',
31674   'depth' => '4',
31675   'customized' => '0',
31676   'p1' => '144',
31677   'p2' => '157',
31678   'p3' => '214',
31679   'p4' => '277',
31680   'p5' => '0',
31681   'p6' => '0',
31682   'p7' => '0',
31683   'p8' => '0',
31684   'p9' => '0',
31685   'updated' => '0',
31686 ))
31687 ->values(array(
31688   'menu_name' => 'navigation',
31689   'mlid' => '278',
31690   'plid' => '197',
31691   'link_path' => 'admin/build/menu/item/%/reset',
31692   'router_path' => 'admin/build/menu/item/%/reset',
31693   'link_title' => 'Reset menu item',
31694   'options' => 'a:0:{}',
31695   'module' => 'system',
31696   'hidden' => '-1',
31697   'external' => '0',
31698   'has_children' => '0',
31699   'expanded' => '0',
31700   'weight' => '0',
31701   'depth' => '4',
31702   'customized' => '0',
31703   'p1' => '144',
31704   'p2' => '166',
31705   'p3' => '197',
31706   'p4' => '278',
31707   'p5' => '0',
31708   'p6' => '0',
31709   'p7' => '0',
31710   'p8' => '0',
31711   'p9' => '0',
31712   'updated' => '0',
31713 ))
31714 ->values(array(
31715   'menu_name' => 'navigation',
31716   'mlid' => '299',
31717   'plid' => '0',
31718   'link_path' => 'event',
31719   'router_path' => 'event',
31720   'link_title' => 'Events',
31721   'options' => 'a:0:{}',
31722   'module' => 'system',
31723   'hidden' => '1',
31724   'external' => '0',
31725   'has_children' => '0',
31726   'expanded' => '0',
31727   'weight' => '0',
31728   'depth' => '1',
31729   'customized' => '0',
31730   'p1' => '299',
31731   'p2' => '0',
31732   'p3' => '0',
31733   'p4' => '0',
31734   'p5' => '0',
31735   'p6' => '0',
31736   'p7' => '0',
31737   'p8' => '0',
31738   'p9' => '0',
31739   'updated' => '0',
31740 ))
31741 ->values(array(
31742   'menu_name' => 'navigation',
31743   'mlid' => '300',
31744   'plid' => '299',
31745   'link_path' => 'event/dst',
31746   'router_path' => 'event/dst',
31747   'link_title' => 'Event dst view',
31748   'options' => 'a:0:{}',
31749   'module' => 'system',
31750   'hidden' => '-1',
31751   'external' => '0',
31752   'has_children' => '0',
31753   'expanded' => '0',
31754   'weight' => '0',
31755   'depth' => '2',
31756   'customized' => '0',
31757   'p1' => '299',
31758   'p2' => '300',
31759   'p3' => '0',
31760   'p4' => '0',
31761   'p5' => '0',
31762   'p6' => '0',
31763   'p7' => '0',
31764   'p8' => '0',
31765   'p9' => '0',
31766   'updated' => '0',
31767 ))
31768 ->values(array(
31769   'menu_name' => 'navigation',
31770   'mlid' => '301',
31771   'plid' => '299',
31772   'link_path' => 'event/ical',
31773   'router_path' => 'event/ical',
31774   'link_title' => 'Event ical feed',
31775   'options' => 'a:0:{}',
31776   'module' => 'system',
31777   'hidden' => '-1',
31778   'external' => '0',
31779   'has_children' => '0',
31780   'expanded' => '0',
31781   'weight' => '0',
31782   'depth' => '2',
31783   'customized' => '0',
31784   'p1' => '299',
31785   'p2' => '301',
31786   'p3' => '0',
31787   'p4' => '0',
31788   'p5' => '0',
31789   'p6' => '0',
31790   'p7' => '0',
31791   'p8' => '0',
31792   'p9' => '0',
31793   'updated' => '0',
31794 ))
31795 ->values(array(
31796   'menu_name' => 'navigation',
31797   'mlid' => '302',
31798   'plid' => '299',
31799   'link_path' => 'event/feed',
31800   'router_path' => 'event/feed',
31801   'link_title' => 'Event rss feed',
31802   'options' => 'a:0:{}',
31803   'module' => 'system',
31804   'hidden' => '-1',
31805   'external' => '0',
31806   'has_children' => '0',
31807   'expanded' => '0',
31808   'weight' => '0',
31809   'depth' => '2',
31810   'customized' => '0',
31811   'p1' => '299',
31812   'p2' => '302',
31813   'p3' => '0',
31814   'p4' => '0',
31815   'p5' => '0',
31816   'p6' => '0',
31817   'p7' => '0',
31818   'p8' => '0',
31819   'p9' => '0',
31820   'updated' => '0',
31821 ))
31822 ->values(array(
31823   'menu_name' => 'navigation',
31824   'mlid' => '303',
31825   'plid' => '299',
31826   'link_path' => 'event/type',
31827   'router_path' => 'event/type',
31828   'link_title' => 'Filter by content type',
31829   'options' => 'a:0:{}',
31830   'module' => 'system',
31831   'hidden' => '-1',
31832   'external' => '0',
31833   'has_children' => '0',
31834   'expanded' => '0',
31835   'weight' => '0',
31836   'depth' => '2',
31837   'customized' => '0',
31838   'p1' => '299',
31839   'p2' => '303',
31840   'p3' => '0',
31841   'p4' => '0',
31842   'p5' => '0',
31843   'p6' => '0',
31844   'p7' => '0',
31845   'p8' => '0',
31846   'p9' => '0',
31847   'updated' => '0',
31848 ))
31849 ->values(array(
31850   'menu_name' => 'navigation',
31851   'mlid' => '304',
31852   'plid' => '299',
31853   'link_path' => 'event/term',
31854   'router_path' => 'event/term',
31855   'link_title' => 'Filter by taxonomy',
31856   'options' => 'a:0:{}',
31857   'module' => 'system',
31858   'hidden' => '-1',
31859   'external' => '0',
31860   'has_children' => '0',
31861   'expanded' => '0',
31862   'weight' => '0',
31863   'depth' => '2',
31864   'customized' => '0',
31865   'p1' => '299',
31866   'p2' => '304',
31867   'p3' => '0',
31868   'p4' => '0',
31869   'p5' => '0',
31870   'p6' => '0',
31871   'p7' => '0',
31872   'p8' => '0',
31873   'p9' => '0',
31874   'updated' => '0',
31875 ))
31876 ->values(array(
31877   'menu_name' => 'navigation',
31878   'mlid' => '305',
31879   'plid' => '0',
31880   'link_path' => 'node/%/ical',
31881   'router_path' => 'node/%/ical',
31882   'link_title' => 'Event ical',
31883   'options' => 'a:0:{}',
31884   'module' => 'system',
31885   'hidden' => '-1',
31886   'external' => '0',
31887   'has_children' => '0',
31888   'expanded' => '0',
31889   'weight' => '0',
31890   'depth' => '1',
31891   'customized' => '0',
31892   'p1' => '305',
31893   'p2' => '0',
31894   'p3' => '0',
31895   'p4' => '0',
31896   'p5' => '0',
31897   'p6' => '0',
31898   'p7' => '0',
31899   'p8' => '0',
31900   'p9' => '0',
31901   'updated' => '0',
31902 ))
31903 ->values(array(
31904   'menu_name' => 'navigation',
31905   'mlid' => '306',
31906   'plid' => '167',
31907   'link_path' => 'admin/settings/event',
31908   'router_path' => 'admin/settings/event',
31909   'link_title' => 'Events',
31910   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Set up how your site handles events.";}}',
31911   'module' => 'system',
31912   'hidden' => '0',
31913   'external' => '0',
31914   'has_children' => '1',
31915   'expanded' => '0',
31916   'weight' => '0',
31917   'depth' => '3',
31918   'customized' => '0',
31919   'p1' => '144',
31920   'p2' => '167',
31921   'p3' => '306',
31922   'p4' => '0',
31923   'p5' => '0',
31924   'p6' => '0',
31925   'p7' => '0',
31926   'p8' => '0',
31927   'p9' => '0',
31928   'updated' => '0',
31929 ))
31930 ->values(array(
31931   'menu_name' => 'navigation',
31932   'mlid' => '307',
31933   'plid' => '306',
31934   'link_path' => 'admin/settings/event/overview',
31935   'router_path' => 'admin/settings/event/overview',
31936   'link_title' => 'Event overview',
31937   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Change how event summary information is displayed.";}}',
31938   'module' => 'system',
31939   'hidden' => '0',
31940   'external' => '0',
31941   'has_children' => '0',
31942   'expanded' => '0',
31943   'weight' => '0',
31944   'depth' => '4',
31945   'customized' => '0',
31946   'p1' => '144',
31947   'p2' => '167',
31948   'p3' => '306',
31949   'p4' => '307',
31950   'p5' => '0',
31951   'p6' => '0',
31952   'p7' => '0',
31953   'p8' => '0',
31954   'p9' => '0',
31955   'updated' => '0',
31956 ))
31957 ->values(array(
31958   'menu_name' => 'navigation',
31959   'mlid' => '308',
31960   'plid' => '306',
31961   'link_path' => 'admin/settings/event/timezone',
31962   'router_path' => 'admin/settings/event/timezone',
31963   'link_title' => 'Timezone handling',
31964   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Change how timezone information is saved and displayed.";}}',
31965   'module' => 'system',
31966   'hidden' => '0',
31967   'external' => '0',
31968   'has_children' => '0',
31969   'expanded' => '0',
31970   'weight' => '0',
31971   'depth' => '4',
31972   'customized' => '0',
31973   'p1' => '144',
31974   'p2' => '167',
31975   'p3' => '306',
31976   'p4' => '308',
31977   'p5' => '0',
31978   'p6' => '0',
31979   'p7' => '0',
31980   'p8' => '0',
31981   'p9' => '0',
31982   'updated' => '0',
31983 ))
31984 ->values(array(
31985   'menu_name' => 'navigation',
31986   'mlid' => '309',
31987   'plid' => '158',
31988   'link_path' => 'node/add/story',
31989   'router_path' => 'node/add/story',
31990   'link_title' => 'Story',
31991   '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.\";}}",
31992   'module' => 'system',
31993   'hidden' => '0',
31994   'external' => '0',
31995   'has_children' => '0',
31996   'expanded' => '0',
31997   'weight' => '0',
31998   'depth' => '2',
31999   'customized' => '0',
32000   'p1' => '158',
32001   'p2' => '309',
32002   'p3' => '0',
32003   'p4' => '0',
32004   'p5' => '0',
32005   'p6' => '0',
32006   'p7' => '0',
32007   'p8' => '0',
32008   'p9' => '0',
32009   'updated' => '0',
32010 ))
32011 ->values(array(
32012   'menu_name' => 'navigation',
32013   'mlid' => '310',
32014   'plid' => '157',
32015   'link_path' => 'admin/content/node-type/story',
32016   'router_path' => 'admin/content/node-type/story',
32017   'link_title' => 'Story',
32018   'options' => 'a:0:{}',
32019   'module' => 'system',
32020   'hidden' => '-1',
32021   'external' => '0',
32022   'has_children' => '0',
32023   'expanded' => '0',
32024   'weight' => '0',
32025   'depth' => '3',
32026   'customized' => '0',
32027   'p1' => '144',
32028   'p2' => '157',
32029   'p3' => '310',
32030   'p4' => '0',
32031   'p5' => '0',
32032   'p6' => '0',
32033   'p7' => '0',
32034   'p8' => '0',
32035   'p9' => '0',
32036   'updated' => '0',
32037 ))
32038 ->values(array(
32039   'menu_name' => 'navigation',
32040   'mlid' => '311',
32041   'plid' => '0',
32042   'link_path' => 'admin/content/node-type/story/delete',
32043   'router_path' => 'admin/content/node-type/story/delete',
32044   'link_title' => 'Delete',
32045   'options' => 'a:0:{}',
32046   'module' => 'system',
32047   'hidden' => '-1',
32048   'external' => '0',
32049   'has_children' => '0',
32050   'expanded' => '0',
32051   'weight' => '0',
32052   'depth' => '1',
32053   'customized' => '0',
32054   'p1' => '311',
32055   'p2' => '0',
32056   'p3' => '0',
32057   'p4' => '0',
32058   'p5' => '0',
32059   'p6' => '0',
32060   'p7' => '0',
32061   'p8' => '0',
32062   'p9' => '0',
32063   'updated' => '0',
32064 ))
32065 ->values(array(
32066   'menu_name' => 'navigation',
32067   'mlid' => '328',
32068   'plid' => '0',
32069   'link_path' => 'filefield/progress',
32070   'router_path' => 'filefield/progress',
32071   'link_title' => '',
32072   'options' => 'a:0:{}',
32073   'module' => 'system',
32074   'hidden' => '-1',
32075   'external' => '0',
32076   'has_children' => '0',
32077   'expanded' => '0',
32078   'weight' => '0',
32079   'depth' => '1',
32080   'customized' => '0',
32081   'p1' => '328',
32082   'p2' => '0',
32083   'p3' => '0',
32084   'p4' => '0',
32085   'p5' => '0',
32086   'p6' => '0',
32087   'p7' => '0',
32088   'p8' => '0',
32089   'p9' => '0',
32090   'updated' => '0',
32091 ))
32092 ->values(array(
32093   'menu_name' => 'navigation',
32094   'mlid' => '329',
32095   'plid' => '0',
32096   'link_path' => 'filefield/ahah/%/%/%',
32097   'router_path' => 'filefield/ahah/%/%/%',
32098   'link_title' => '',
32099   'options' => 'a:0:{}',
32100   'module' => 'system',
32101   'hidden' => '-1',
32102   'external' => '0',
32103   'has_children' => '0',
32104   'expanded' => '0',
32105   'weight' => '0',
32106   'depth' => '1',
32107   'customized' => '0',
32108   'p1' => '329',
32109   'p2' => '0',
32110   'p3' => '0',
32111   'p4' => '0',
32112   'p5' => '0',
32113   'p6' => '0',
32114   'p7' => '0',
32115   'p8' => '0',
32116   'p9' => '0',
32117   'updated' => '0',
32118 ))
32119 ->values(array(
32120   'menu_name' => 'navigation',
32121   'mlid' => '333',
32122   'plid' => '167',
32123   'link_path' => 'admin/settings/email',
32124   'router_path' => 'admin/settings/email',
32125   'link_title' => 'CCK Email Contact Form Settings',
32126   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Administer flood control settings for email contact forms";}}',
32127   'module' => 'system',
32128   'hidden' => '0',
32129   'external' => '0',
32130   'has_children' => '0',
32131   'expanded' => '0',
32132   'weight' => '0',
32133   'depth' => '3',
32134   'customized' => '0',
32135   'p1' => '144',
32136   'p2' => '167',
32137   'p3' => '333',
32138   'p4' => '0',
32139   'p5' => '0',
32140   'p6' => '0',
32141   'p7' => '0',
32142   'p8' => '0',
32143   'p9' => '0',
32144   'updated' => '0',
32145 ))
32146 ->values(array(
32147   'menu_name' => 'navigation',
32148   'mlid' => '334',
32149   'plid' => '0',
32150   'link_path' => 'email/%/%',
32151   'router_path' => 'email/%/%',
32152   'link_title' => 'Email Contact Form',
32153   'options' => 'a:0:{}',
32154   'module' => 'system',
32155   'hidden' => '-1',
32156   'external' => '0',
32157   'has_children' => '0',
32158   'expanded' => '0',
32159   'weight' => '0',
32160   'depth' => '1',
32161   'customized' => '0',
32162   'p1' => '334',
32163   'p2' => '0',
32164   'p3' => '0',
32165   'p4' => '0',
32166   'p5' => '0',
32167   'p6' => '0',
32168   'p7' => '0',
32169   'p8' => '0',
32170   'p9' => '0',
32171   'updated' => '0',
32172 ))
32173 ->values(array(
32174   'menu_name' => 'navigation',
32175   'mlid' => '350',
32176   'plid' => '0',
32177   'link_path' => 'aggregator',
32178   'router_path' => 'aggregator',
32179   'link_title' => 'Feed aggregator',
32180   'options' => 'a:0:{}',
32181   'module' => 'system',
32182   'hidden' => '0',
32183   'external' => '0',
32184   'has_children' => '1',
32185   'expanded' => '0',
32186   'weight' => '5',
32187   'depth' => '1',
32188   'customized' => '0',
32189   'p1' => '350',
32190   'p2' => '0',
32191   'p3' => '0',
32192   'p4' => '0',
32193   'p5' => '0',
32194   'p6' => '0',
32195   'p7' => '0',
32196   'p8' => '0',
32197   'p9' => '0',
32198   'updated' => '0',
32199 ))
32200 ->values(array(
32201   'menu_name' => 'navigation',
32202   'mlid' => '351',
32203   'plid' => '350',
32204   'link_path' => 'aggregator/categories',
32205   'router_path' => 'aggregator/categories',
32206   'link_title' => 'Categories',
32207   'options' => 'a:0:{}',
32208   'module' => 'system',
32209   'hidden' => '0',
32210   'external' => '0',
32211   'has_children' => '1',
32212   'expanded' => '0',
32213   'weight' => '0',
32214   'depth' => '2',
32215   'customized' => '0',
32216   'p1' => '350',
32217   'p2' => '351',
32218   'p3' => '0',
32219   'p4' => '0',
32220   'p5' => '0',
32221   'p6' => '0',
32222   'p7' => '0',
32223   'p8' => '0',
32224   'p9' => '0',
32225   'updated' => '0',
32226 ))
32227 ->values(array(
32228   'menu_name' => 'navigation',
32229   'mlid' => '352',
32230   'plid' => '350',
32231   'link_path' => 'aggregator/opml',
32232   'router_path' => 'aggregator/opml',
32233   'link_title' => 'OPML feed',
32234   'options' => 'a:0:{}',
32235   'module' => 'system',
32236   'hidden' => '-1',
32237   'external' => '0',
32238   'has_children' => '0',
32239   'expanded' => '0',
32240   'weight' => '0',
32241   'depth' => '2',
32242   'customized' => '0',
32243   'p1' => '350',
32244   'p2' => '352',
32245   'p3' => '0',
32246   'p4' => '0',
32247   'p5' => '0',
32248   'p6' => '0',
32249   'p7' => '0',
32250   'p8' => '0',
32251   'p9' => '0',
32252   'updated' => '0',
32253 ))
32254 ->values(array(
32255   'menu_name' => 'navigation',
32256   'mlid' => '353',
32257   'plid' => '350',
32258   'link_path' => 'aggregator/rss',
32259   'router_path' => 'aggregator/rss',
32260   'link_title' => 'RSS feed',
32261   'options' => 'a:0:{}',
32262   'module' => 'system',
32263   'hidden' => '-1',
32264   'external' => '0',
32265   'has_children' => '0',
32266   'expanded' => '0',
32267   'weight' => '0',
32268   'depth' => '2',
32269   'customized' => '0',
32270   'p1' => '350',
32271   'p2' => '353',
32272   'p3' => '0',
32273   'p4' => '0',
32274   'p5' => '0',
32275   'p6' => '0',
32276   'p7' => '0',
32277   'p8' => '0',
32278   'p9' => '0',
32279   'updated' => '0',
32280 ))
32281 ->values(array(
32282   'menu_name' => 'navigation',
32283   'mlid' => '354',
32284   'plid' => '350',
32285   'link_path' => 'aggregator/sources',
32286   'router_path' => 'aggregator/sources',
32287   'link_title' => 'Sources',
32288   'options' => 'a:0:{}',
32289   'module' => 'system',
32290   'hidden' => '0',
32291   'external' => '0',
32292   'has_children' => '0',
32293   'expanded' => '0',
32294   'weight' => '0',
32295   'depth' => '2',
32296   'customized' => '0',
32297   'p1' => '350',
32298   'p2' => '354',
32299   'p3' => '0',
32300   'p4' => '0',
32301   'p5' => '0',
32302   'p6' => '0',
32303   'p7' => '0',
32304   'p8' => '0',
32305   'p9' => '0',
32306   'updated' => '0',
32307 ))
32308 ->values(array(
32309   'menu_name' => 'navigation',
32310   'mlid' => '355',
32311   'plid' => '351',
32312   'link_path' => 'aggregator/categories/%',
32313   'router_path' => 'aggregator/categories/%',
32314   'link_title' => '',
32315   'options' => 'a:0:{}',
32316   'module' => 'system',
32317   'hidden' => '0',
32318   'external' => '0',
32319   'has_children' => '0',
32320   'expanded' => '0',
32321   'weight' => '0',
32322   'depth' => '3',
32323   'customized' => '0',
32324   'p1' => '350',
32325   'p2' => '351',
32326   'p3' => '355',
32327   'p4' => '0',
32328   'p5' => '0',
32329   'p6' => '0',
32330   'p7' => '0',
32331   'p8' => '0',
32332   'p9' => '0',
32333   'updated' => '0',
32334 ))
32335 ->values(array(
32336   'menu_name' => 'navigation',
32337   'mlid' => '356',
32338   'plid' => '354',
32339   'link_path' => 'aggregator/sources/%',
32340   'router_path' => 'aggregator/sources/%',
32341   'link_title' => '',
32342   'options' => 'a:0:{}',
32343   'module' => 'system',
32344   'hidden' => '-1',
32345   'external' => '0',
32346   'has_children' => '0',
32347   'expanded' => '0',
32348   'weight' => '0',
32349   'depth' => '3',
32350   'customized' => '0',
32351   'p1' => '350',
32352   'p2' => '354',
32353   'p3' => '356',
32354   'p4' => '0',
32355   'p5' => '0',
32356   'p6' => '0',
32357   'p7' => '0',
32358   'p8' => '0',
32359   'p9' => '0',
32360   'updated' => '0',
32361 ))
32362 ->values(array(
32363   'menu_name' => 'navigation',
32364   'mlid' => '357',
32365   'plid' => '157',
32366   'link_path' => 'admin/content/aggregator',
32367   'router_path' => 'admin/content/aggregator',
32368   'link_title' => 'Feed aggregator',
32369   '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.\";}}",
32370   'module' => 'system',
32371   'hidden' => '0',
32372   'external' => '0',
32373   'has_children' => '0',
32374   'expanded' => '0',
32375   'weight' => '0',
32376   'depth' => '3',
32377   'customized' => '0',
32378   'p1' => '144',
32379   'p2' => '157',
32380   'p3' => '357',
32381   'p4' => '0',
32382   'p5' => '0',
32383   'p6' => '0',
32384   'p7' => '0',
32385   'p8' => '0',
32386   'p9' => '0',
32387   'updated' => '0',
32388 ))
32389 ->values(array(
32390   'menu_name' => 'navigation',
32391   'mlid' => '358',
32392   'plid' => '357',
32393   'link_path' => 'admin/content/aggregator/remove/%',
32394   'router_path' => 'admin/content/aggregator/remove/%',
32395   'link_title' => 'Remove items',
32396   'options' => 'a:0:{}',
32397   'module' => 'system',
32398   'hidden' => '-1',
32399   'external' => '0',
32400   'has_children' => '0',
32401   'expanded' => '0',
32402   'weight' => '0',
32403   'depth' => '4',
32404   'customized' => '0',
32405   'p1' => '144',
32406   'p2' => '157',
32407   'p3' => '357',
32408   'p4' => '358',
32409   'p5' => '0',
32410   'p6' => '0',
32411   'p7' => '0',
32412   'p8' => '0',
32413   'p9' => '0',
32414   'updated' => '0',
32415 ))
32416 ->values(array(
32417   'menu_name' => 'navigation',
32418   'mlid' => '359',
32419   'plid' => '357',
32420   'link_path' => 'admin/content/aggregator/update/%',
32421   'router_path' => 'admin/content/aggregator/update/%',
32422   'link_title' => 'Update items',
32423   'options' => 'a:0:{}',
32424   'module' => 'system',
32425   'hidden' => '-1',
32426   'external' => '0',
32427   'has_children' => '0',
32428   'expanded' => '0',
32429   'weight' => '0',
32430   'depth' => '4',
32431   'customized' => '0',
32432   'p1' => '144',
32433   'p2' => '157',
32434   'p3' => '357',
32435   'p4' => '359',
32436   'p5' => '0',
32437   'p6' => '0',
32438   'p7' => '0',
32439   'p8' => '0',
32440   'p9' => '0',
32441   'updated' => '0',
32442 ))
32443 ->values(array(
32444   'menu_name' => 'navigation',
32445   'mlid' => '360',
32446   'plid' => '357',
32447   'link_path' => 'admin/content/aggregator/edit/category/%',
32448   'router_path' => 'admin/content/aggregator/edit/category/%',
32449   'link_title' => 'Edit category',
32450   'options' => 'a:0:{}',
32451   'module' => 'system',
32452   'hidden' => '-1',
32453   'external' => '0',
32454   'has_children' => '0',
32455   'expanded' => '0',
32456   'weight' => '0',
32457   'depth' => '4',
32458   'customized' => '0',
32459   'p1' => '144',
32460   'p2' => '157',
32461   'p3' => '357',
32462   'p4' => '360',
32463   'p5' => '0',
32464   'p6' => '0',
32465   'p7' => '0',
32466   'p8' => '0',
32467   'p9' => '0',
32468   'updated' => '0',
32469 ))
32470 ->values(array(
32471   'menu_name' => 'navigation',
32472   'mlid' => '361',
32473   'plid' => '357',
32474   'link_path' => 'admin/content/aggregator/edit/feed/%',
32475   'router_path' => 'admin/content/aggregator/edit/feed/%',
32476   'link_title' => 'Edit feed',
32477   'options' => 'a:0:{}',
32478   'module' => 'system',
32479   'hidden' => '-1',
32480   'external' => '0',
32481   'has_children' => '0',
32482   'expanded' => '0',
32483   'weight' => '0',
32484   'depth' => '4',
32485   'customized' => '0',
32486   'p1' => '144',
32487   'p2' => '157',
32488   'p3' => '357',
32489   'p4' => '361',
32490   'p5' => '0',
32491   'p6' => '0',
32492   'p7' => '0',
32493   'p8' => '0',
32494   'p9' => '0',
32495   'updated' => '0',
32496 ))
32497 ->values(array(
32498   'menu_name' => 'navigation',
32499   'mlid' => '363',
32500   'plid' => '0',
32501   'link_path' => 'book',
32502   'router_path' => 'book',
32503   'link_title' => 'Books',
32504   'options' => 'a:0:{}',
32505   'module' => 'system',
32506   'hidden' => '1',
32507   'external' => '0',
32508   'has_children' => '0',
32509   'expanded' => '0',
32510   'weight' => '0',
32511   'depth' => '1',
32512   'customized' => '0',
32513   'p1' => '363',
32514   'p2' => '0',
32515   'p3' => '0',
32516   'p4' => '0',
32517   'p5' => '0',
32518   'p6' => '0',
32519   'p7' => '0',
32520   'p8' => '0',
32521   'p9' => '0',
32522   'updated' => '0',
32523 ))
32524 ->values(array(
32525   'menu_name' => 'navigation',
32526   'mlid' => '364',
32527   'plid' => '363',
32528   'link_path' => 'book/js/form',
32529   'router_path' => 'book/js/form',
32530   'link_title' => '',
32531   'options' => 'a:0:{}',
32532   'module' => 'system',
32533   'hidden' => '-1',
32534   'external' => '0',
32535   'has_children' => '0',
32536   'expanded' => '0',
32537   'weight' => '0',
32538   'depth' => '2',
32539   'customized' => '0',
32540   'p1' => '363',
32541   'p2' => '364',
32542   'p3' => '0',
32543   'p4' => '0',
32544   'p5' => '0',
32545   'p6' => '0',
32546   'p7' => '0',
32547   'p8' => '0',
32548   'p9' => '0',
32549   'updated' => '0',
32550 ))
32551 ->values(array(
32552   'menu_name' => 'navigation',
32553   'mlid' => '366',
32554   'plid' => '157',
32555   'link_path' => 'admin/content/book',
32556   'router_path' => 'admin/content/book',
32557   'link_title' => 'Books',
32558   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}",
32559   'module' => 'system',
32560   'hidden' => '0',
32561   'external' => '0',
32562   'has_children' => '0',
32563   'expanded' => '0',
32564   'weight' => '0',
32565   'depth' => '3',
32566   'customized' => '0',
32567   'p1' => '144',
32568   'p2' => '157',
32569   'p3' => '366',
32570   'p4' => '0',
32571   'p5' => '0',
32572   'p6' => '0',
32573   'p7' => '0',
32574   'p8' => '0',
32575   'p9' => '0',
32576   'updated' => '0',
32577 ))
32578 ->values(array(
32579   'menu_name' => 'navigation',
32580   'mlid' => '367',
32581   'plid' => '363',
32582   'link_path' => 'book/export/%/%',
32583   'router_path' => 'book/export/%/%',
32584   'link_title' => '',
32585   'options' => 'a:0:{}',
32586   'module' => 'system',
32587   'hidden' => '-1',
32588   'external' => '0',
32589   'has_children' => '0',
32590   'expanded' => '0',
32591   'weight' => '0',
32592   'depth' => '2',
32593   'customized' => '0',
32594   'p1' => '363',
32595   'p2' => '367',
32596   'p3' => '0',
32597   'p4' => '0',
32598   'p5' => '0',
32599   'p6' => '0',
32600   'p7' => '0',
32601   'p8' => '0',
32602   'p9' => '0',
32603   'updated' => '0',
32604 ))
32605 ->values(array(
32606   'menu_name' => 'navigation',
32607   'mlid' => '369',
32608   'plid' => '366',
32609   'link_path' => 'admin/content/book/%',
32610   'router_path' => 'admin/content/book/%',
32611   'link_title' => 'Re-order book pages and change titles',
32612   'options' => 'a:0:{}',
32613   'module' => 'system',
32614   'hidden' => '-1',
32615   'external' => '0',
32616   'has_children' => '0',
32617   'expanded' => '0',
32618   'weight' => '0',
32619   'depth' => '4',
32620   'customized' => '0',
32621   'p1' => '144',
32622   'p2' => '157',
32623   'p3' => '366',
32624   'p4' => '369',
32625   'p5' => '0',
32626   'p6' => '0',
32627   'p7' => '0',
32628   'p8' => '0',
32629   'p9' => '0',
32630   'updated' => '0',
32631 ))
32632 ->values(array(
32633   'menu_name' => 'navigation',
32634   'mlid' => '370',
32635   'plid' => '0',
32636   'link_path' => 'node/%/outline/remove',
32637   'router_path' => 'node/%/outline/remove',
32638   'link_title' => 'Remove from outline',
32639   'options' => 'a:0:{}',
32640   'module' => 'system',
32641   'hidden' => '-1',
32642   'external' => '0',
32643   'has_children' => '0',
32644   'expanded' => '0',
32645   'weight' => '0',
32646   'depth' => '1',
32647   'customized' => '0',
32648   'p1' => '370',
32649   'p2' => '0',
32650   'p3' => '0',
32651   'p4' => '0',
32652   'p5' => '0',
32653   'p6' => '0',
32654   'p7' => '0',
32655   'p8' => '0',
32656   'p9' => '0',
32657   'updated' => '0',
32658 ))
32659 ->values(array(
32660   'menu_name' => 'secondary-links',
32661   'mlid' => '393',
32662   'plid' => '0',
32663   'link_path' => 'user/login',
32664   'router_path' => 'user/login',
32665   'link_title' => 'Test 3',
32666   'options' => 'a:0:{}',
32667   'module' => 'menu',
32668   'hidden' => '0',
32669   'external' => '0',
32670   'has_children' => '1',
32671   'expanded' => '0',
32672   'weight' => '-47',
32673   'depth' => '1',
32674   'customized' => '1',
32675   'p1' => '393',
32676   'p2' => '0',
32677   'p3' => '0',
32678   'p4' => '0',
32679   'p5' => '0',
32680   'p6' => '0',
32681   'p7' => '0',
32682   'p8' => '0',
32683   'p9' => '0',
32684   'updated' => '0',
32685 ))
32686 ->values(array(
32687   'menu_name' => 'navigation',
32688   'mlid' => '394',
32689   'plid' => '166',
32690   'link_path' => 'admin/build/path',
32691   'router_path' => 'admin/build/path',
32692   'link_title' => 'URL aliases',
32693   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
32694   'module' => 'system',
32695   'hidden' => '0',
32696   'external' => '0',
32697   'has_children' => '0',
32698   'expanded' => '0',
32699   'weight' => '0',
32700   'depth' => '3',
32701   'customized' => '0',
32702   'p1' => '144',
32703   'p2' => '166',
32704   'p3' => '394',
32705   'p4' => '0',
32706   'p5' => '0',
32707   'p6' => '0',
32708   'p7' => '0',
32709   'p8' => '0',
32710   'p9' => '0',
32711   'updated' => '0',
32712 ))
32713 ->values(array(
32714   'menu_name' => 'navigation',
32715   'mlid' => '395',
32716   'plid' => '394',
32717   'link_path' => 'admin/build/path/delete',
32718   'router_path' => 'admin/build/path/delete',
32719   'link_title' => 'Delete alias',
32720   'options' => 'a:0:{}',
32721   'module' => 'system',
32722   'hidden' => '-1',
32723   'external' => '0',
32724   'has_children' => '0',
32725   'expanded' => '0',
32726   'weight' => '0',
32727   'depth' => '4',
32728   'customized' => '0',
32729   'p1' => '144',
32730   'p2' => '166',
32731   'p3' => '394',
32732   'p4' => '395',
32733   'p5' => '0',
32734   'p6' => '0',
32735   'p7' => '0',
32736   'p8' => '0',
32737   'p9' => '0',
32738   'updated' => '0',
32739 ))
32740 ->values(array(
32741   'menu_name' => 'navigation',
32742   'mlid' => '396',
32743   'plid' => '394',
32744   'link_path' => 'admin/build/path/edit',
32745   'router_path' => 'admin/build/path/edit',
32746   'link_title' => 'Edit alias',
32747   'options' => 'a:0:{}',
32748   'module' => 'system',
32749   'hidden' => '-1',
32750   'external' => '0',
32751   'has_children' => '0',
32752   'expanded' => '0',
32753   'weight' => '0',
32754   'depth' => '4',
32755   'customized' => '0',
32756   'p1' => '144',
32757   'p2' => '166',
32758   'p3' => '394',
32759   'p4' => '396',
32760   'p5' => '0',
32761   'p6' => '0',
32762   'p7' => '0',
32763   'p8' => '0',
32764   'p9' => '0',
32765   'updated' => '0',
32766 ))
32767 ->values(array(
32768   'menu_name' => 'navigation',
32769   'mlid' => '397',
32770   'plid' => '0',
32771   'link_path' => 'system/files/imagecache',
32772   'router_path' => 'system/files/imagecache',
32773   'link_title' => '',
32774   'options' => 'a:0:{}',
32775   'module' => 'system',
32776   'hidden' => '-1',
32777   'external' => '0',
32778   'has_children' => '0',
32779   'expanded' => '0',
32780   'weight' => '0',
32781   'depth' => '1',
32782   'customized' => '0',
32783   'p1' => '397',
32784   'p2' => '0',
32785   'p3' => '0',
32786   'p4' => '0',
32787   'p5' => '0',
32788   'p6' => '0',
32789   'p7' => '0',
32790   'p8' => '0',
32791   'p9' => '0',
32792   'updated' => '0',
32793 ))
32794 ->values(array(
32795   'menu_name' => 'navigation',
32796   'mlid' => '398',
32797   'plid' => '167',
32798   'link_path' => 'admin/settings/imageapi',
32799   'router_path' => 'admin/settings/imageapi',
32800   'link_title' => 'ImageAPI',
32801   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"Configure ImageAPI.";}}',
32802   'module' => 'system',
32803   'hidden' => '0',
32804   'external' => '0',
32805   'has_children' => '0',
32806   'expanded' => '0',
32807   'weight' => '0',
32808   'depth' => '3',
32809   'customized' => '0',
32810   'p1' => '144',
32811   'p2' => '167',
32812   'p3' => '398',
32813   'p4' => '0',
32814   'p5' => '0',
32815   'p6' => '0',
32816   'p7' => '0',
32817   'p8' => '0',
32818   'p9' => '0',
32819   'updated' => '0',
32820 ))
32821 ->values(array(
32822   'menu_name' => 'navigation',
32823   'mlid' => '399',
32824   'plid' => '167',
32825   'link_path' => 'admin/settings/language',
32826   'router_path' => 'admin/settings/language',
32827   'link_title' => 'Languages',
32828   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}',
32829   'module' => 'system',
32830   'hidden' => '0',
32831   'external' => '0',
32832   'has_children' => '0',
32833   'expanded' => '0',
32834   'weight' => '0',
32835   'depth' => '3',
32836   'customized' => '0',
32837   'p1' => '144',
32838   'p2' => '167',
32839   'p3' => '399',
32840   'p4' => '0',
32841   'p5' => '0',
32842   'p6' => '0',
32843   'p7' => '0',
32844   'p8' => '0',
32845   'p9' => '0',
32846   'updated' => '0',
32847 ))
32848 ->values(array(
32849   'menu_name' => 'navigation',
32850   'mlid' => '400',
32851   'plid' => '166',
32852   'link_path' => 'admin/build/translate',
32853   'router_path' => 'admin/build/translate',
32854   'link_title' => 'Translate interface',
32855   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}',
32856   'module' => 'system',
32857   'hidden' => '0',
32858   'external' => '0',
32859   'has_children' => '0',
32860   'expanded' => '0',
32861   'weight' => '0',
32862   'depth' => '3',
32863   'customized' => '0',
32864   'p1' => '144',
32865   'p2' => '166',
32866   'p3' => '400',
32867   'p4' => '0',
32868   'p5' => '0',
32869   'p6' => '0',
32870   'p7' => '0',
32871   'p8' => '0',
32872   'p9' => '0',
32873   'updated' => '0',
32874 ))
32875 ->values(array(
32876   'menu_name' => 'navigation',
32877   'mlid' => '401',
32878   'plid' => '399',
32879   'link_path' => 'admin/settings/language/delete/%',
32880   'router_path' => 'admin/settings/language/delete/%',
32881   'link_title' => 'Confirm',
32882   'options' => 'a:0:{}',
32883   'module' => 'system',
32884   'hidden' => '-1',
32885   'external' => '0',
32886   'has_children' => '0',
32887   'expanded' => '0',
32888   'weight' => '0',
32889   'depth' => '4',
32890   'customized' => '0',
32891   'p1' => '144',
32892   'p2' => '167',
32893   'p3' => '399',
32894   'p4' => '401',
32895   'p5' => '0',
32896   'p6' => '0',
32897   'p7' => '0',
32898   'p8' => '0',
32899   'p9' => '0',
32900   'updated' => '0',
32901 ))
32902 ->values(array(
32903   'menu_name' => 'navigation',
32904   'mlid' => '403',
32905   'plid' => '400',
32906   'link_path' => 'admin/build/translate/delete/%',
32907   'router_path' => 'admin/build/translate/delete/%',
32908   'link_title' => 'Delete string',
32909   'options' => 'a:0:{}',
32910   'module' => 'system',
32911   'hidden' => '-1',
32912   'external' => '0',
32913   'has_children' => '0',
32914   'expanded' => '0',
32915   'weight' => '0',
32916   'depth' => '4',
32917   'customized' => '0',
32918   'p1' => '144',
32919   'p2' => '166',
32920   'p3' => '400',
32921   'p4' => '403',
32922   'p5' => '0',
32923   'p6' => '0',
32924   'p7' => '0',
32925   'p8' => '0',
32926   'p9' => '0',
32927   'updated' => '0',
32928 ))
32929 ->values(array(
32930   'menu_name' => 'navigation',
32931   'mlid' => '404',
32932   'plid' => '399',
32933   'link_path' => 'admin/settings/language/edit/%',
32934   'router_path' => 'admin/settings/language/edit/%',
32935   'link_title' => 'Edit language',
32936   'options' => 'a:0:{}',
32937   'module' => 'system',
32938   'hidden' => '-1',
32939   'external' => '0',
32940   'has_children' => '0',
32941   'expanded' => '0',
32942   'weight' => '0',
32943   'depth' => '4',
32944   'customized' => '0',
32945   'p1' => '144',
32946   'p2' => '167',
32947   'p3' => '399',
32948   'p4' => '404',
32949   'p5' => '0',
32950   'p6' => '0',
32951   'p7' => '0',
32952   'p8' => '0',
32953   'p9' => '0',
32954   'updated' => '0',
32955 ))
32956 ->values(array(
32957   'menu_name' => 'navigation',
32958   'mlid' => '405',
32959   'plid' => '400',
32960   'link_path' => 'admin/build/translate/edit/%',
32961   'router_path' => 'admin/build/translate/edit/%',
32962   'link_title' => 'Edit string',
32963   'options' => 'a:0:{}',
32964   'module' => 'system',
32965   'hidden' => '-1',
32966   'external' => '0',
32967   'has_children' => '0',
32968   'expanded' => '0',
32969   'weight' => '0',
32970   'depth' => '4',
32971   'customized' => '0',
32972   'p1' => '144',
32973   'p2' => '166',
32974   'p3' => '400',
32975   'p4' => '405',
32976   'p5' => '0',
32977   'p6' => '0',
32978   'p7' => '0',
32979   'p8' => '0',
32980   'p9' => '0',
32981   'updated' => '0',
32982 ))
32983 ->values(array(
32984   'menu_name' => 'navigation',
32985   'mlid' => '407',
32986   'plid' => '0',
32987   'link_path' => 'i18nstrings/save',
32988   'router_path' => 'i18nstrings/save',
32989   'link_title' => 'Save string',
32990   'options' => 'a:0:{}',
32991   'module' => 'system',
32992   'hidden' => '-1',
32993   'external' => '0',
32994   'has_children' => '0',
32995   'expanded' => '0',
32996   'weight' => '0',
32997   'depth' => '1',
32998   'customized' => '0',
32999   'p1' => '407',
33000   'p2' => '0',
33001   'p3' => '0',
33002   'p4' => '0',
33003   'p5' => '0',
33004   'p6' => '0',
33005   'p7' => '0',
33006   'p8' => '0',
33007   'p9' => '0',
33008   'updated' => '0',
33009 ))
33010 ->values(array(
33011   'menu_name' => 'navigation',
33012   'mlid' => '408',
33013   'plid' => '0',
33014   'link_path' => 'i18n/node/autocomplete',
33015   'router_path' => 'i18n/node/autocomplete',
33016   'link_title' => 'Node title autocomplete',
33017   'options' => 'a:0:{}',
33018   'module' => 'system',
33019   'hidden' => '-1',
33020   'external' => '0',
33021   'has_children' => '0',
33022   'expanded' => '0',
33023   'weight' => '0',
33024   'depth' => '1',
33025   'customized' => '0',
33026   'p1' => '408',
33027   'p2' => '0',
33028   'p3' => '0',
33029   'p4' => '0',
33030   'p5' => '0',
33031   'p6' => '0',
33032   'p7' => '0',
33033   'p8' => '0',
33034   'p9' => '0',
33035   'updated' => '0',
33036 ))
33037 ->values(array(
33038   'menu_name' => 'navigation',
33039   'mlid' => '411',
33040   'plid' => '0',
33041   'link_path' => 'core/modules/simpletest/files/imagecache',
33042   'router_path' => 'core/modules/simpletest/files/imagecache',
33043   'link_title' => '',
33044   'options' => 'a:0:{}',
33045   'module' => 'system',
33046   'hidden' => '-1',
33047   'external' => '0',
33048   'has_children' => '0',
33049   'expanded' => '0',
33050   'weight' => '0',
33051   'depth' => '1',
33052   'customized' => '0',
33053   'p1' => '411',
33054   'p2' => '0',
33055   'p3' => '0',
33056   'p4' => '0',
33057   'p5' => '0',
33058   'p6' => '0',
33059   'p7' => '0',
33060   'p8' => '0',
33061   'p9' => '0',
33062   'updated' => '0',
33063 ))
33064 ->values(array(
33065   'menu_name' => 'navigation',
33066   'mlid' => '412',
33067   'plid' => '0',
33068   'link_path' => 'admin/content/node-type/story/fields/field_test/remove',
33069   'router_path' => 'admin/content/node-type/story/fields/field_test/remove',
33070   'link_title' => 'Remove field',
33071   'options' => 'a:0:{}',
33072   'module' => 'system',
33073   'hidden' => '-1',
33074   'external' => '0',
33075   'has_children' => '0',
33076   'expanded' => '0',
33077   'weight' => '0',
33078   'depth' => '1',
33079   'customized' => '0',
33080   'p1' => '412',
33081   'p2' => '0',
33082   'p3' => '0',
33083   'p4' => '0',
33084   'p5' => '0',
33085   'p6' => '0',
33086   'p7' => '0',
33087   'p8' => '0',
33088   'p9' => '0',
33089   'updated' => '0',
33090 ))
33091 ->values(array(
33092   'menu_name' => 'navigation',
33093   'mlid' => '413',
33094   'plid' => '0',
33095   'link_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
33096   'router_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
33097   'link_title' => 'Remove field',
33098   'options' => 'a:0:{}',
33099   'module' => 'system',
33100   'hidden' => '-1',
33101   'external' => '0',
33102   'has_children' => '0',
33103   'expanded' => '0',
33104   'weight' => '0',
33105   'depth' => '1',
33106   'customized' => '0',
33107   'p1' => '413',
33108   'p2' => '0',
33109   'p3' => '0',
33110   'p4' => '0',
33111   'p5' => '0',
33112   'p6' => '0',
33113   'p7' => '0',
33114   'p8' => '0',
33115   'p9' => '0',
33116   'updated' => '0',
33117 ))
33118 ->values(array(
33119   'menu_name' => 'navigation',
33120   'mlid' => '414',
33121   'plid' => '0',
33122   'link_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
33123   'router_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
33124   'link_title' => 'Remove field',
33125   'options' => 'a:0:{}',
33126   'module' => 'system',
33127   'hidden' => '-1',
33128   'external' => '0',
33129   'has_children' => '0',
33130   'expanded' => '0',
33131   'weight' => '0',
33132   'depth' => '1',
33133   'customized' => '0',
33134   'p1' => '414',
33135   'p2' => '0',
33136   'p3' => '0',
33137   'p4' => '0',
33138   'p5' => '0',
33139   'p6' => '0',
33140   'p7' => '0',
33141   'p8' => '0',
33142   'p9' => '0',
33143   'updated' => '0',
33144 ))
33145 ->values(array(
33146   'menu_name' => 'navigation',
33147   'mlid' => '415',
33148   'plid' => '0',
33149   'link_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
33150   'router_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
33151   'link_title' => 'Remove field',
33152   'options' => 'a:0:{}',
33153   'module' => 'system',
33154   'hidden' => '-1',
33155   'external' => '0',
33156   'has_children' => '0',
33157   'expanded' => '0',
33158   'weight' => '0',
33159   'depth' => '1',
33160   'customized' => '0',
33161   'p1' => '415',
33162   'p2' => '0',
33163   'p3' => '0',
33164   'p4' => '0',
33165   'p5' => '0',
33166   'p6' => '0',
33167   'p7' => '0',
33168   'p8' => '0',
33169   'p9' => '0',
33170   'updated' => '0',
33171 ))
33172 ->values(array(
33173   'menu_name' => 'navigation',
33174   'mlid' => '416',
33175   'plid' => '0',
33176   'link_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
33177   'router_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
33178   'link_title' => 'Remove field',
33179   'options' => 'a:0:{}',
33180   'module' => 'system',
33181   'hidden' => '-1',
33182   'external' => '0',
33183   'has_children' => '0',
33184   'expanded' => '0',
33185   'weight' => '0',
33186   'depth' => '1',
33187   'customized' => '0',
33188   'p1' => '416',
33189   'p2' => '0',
33190   'p3' => '0',
33191   'p4' => '0',
33192   'p5' => '0',
33193   'p6' => '0',
33194   'p7' => '0',
33195   'p8' => '0',
33196   'p9' => '0',
33197   'updated' => '0',
33198 ))
33199 ->values(array(
33200   'menu_name' => 'navigation',
33201   'mlid' => '417',
33202   'plid' => '0',
33203   'link_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
33204   'router_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
33205   'link_title' => 'Remove field',
33206   'options' => 'a:0:{}',
33207   'module' => 'system',
33208   'hidden' => '-1',
33209   'external' => '0',
33210   'has_children' => '0',
33211   'expanded' => '0',
33212   'weight' => '0',
33213   'depth' => '1',
33214   'customized' => '0',
33215   'p1' => '417',
33216   'p2' => '0',
33217   'p3' => '0',
33218   'p4' => '0',
33219   'p5' => '0',
33220   'p6' => '0',
33221   'p7' => '0',
33222   'p8' => '0',
33223   'p9' => '0',
33224   'updated' => '0',
33225 ))
33226 ->values(array(
33227   'menu_name' => 'navigation',
33228   'mlid' => '418',
33229   'plid' => '0',
33230   'link_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
33231   'router_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
33232   'link_title' => 'Remove field',
33233   'options' => 'a:0:{}',
33234   'module' => 'system',
33235   'hidden' => '-1',
33236   'external' => '0',
33237   'has_children' => '0',
33238   'expanded' => '0',
33239   'weight' => '0',
33240   'depth' => '1',
33241   'customized' => '0',
33242   'p1' => '418',
33243   'p2' => '0',
33244   'p3' => '0',
33245   'p4' => '0',
33246   'p5' => '0',
33247   'p6' => '0',
33248   'p7' => '0',
33249   'p8' => '0',
33250   'p9' => '0',
33251   'updated' => '0',
33252 ))
33253 ->values(array(
33254   'menu_name' => 'navigation',
33255   'mlid' => '419',
33256   'plid' => '0',
33257   'link_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
33258   'router_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
33259   'link_title' => 'Remove field',
33260   'options' => 'a:0:{}',
33261   'module' => 'system',
33262   'hidden' => '-1',
33263   'external' => '0',
33264   'has_children' => '0',
33265   'expanded' => '0',
33266   'weight' => '0',
33267   'depth' => '1',
33268   'customized' => '0',
33269   'p1' => '419',
33270   'p2' => '0',
33271   'p3' => '0',
33272   'p4' => '0',
33273   'p5' => '0',
33274   'p6' => '0',
33275   'p7' => '0',
33276   'p8' => '0',
33277   'p9' => '0',
33278   'updated' => '0',
33279 ))
33280 ->values(array(
33281   'menu_name' => 'navigation',
33282   'mlid' => '420',
33283   'plid' => '0',
33284   'link_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
33285   'router_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
33286   'link_title' => 'Remove field',
33287   'options' => 'a:0:{}',
33288   'module' => 'system',
33289   'hidden' => '-1',
33290   'external' => '0',
33291   'has_children' => '0',
33292   'expanded' => '0',
33293   'weight' => '0',
33294   'depth' => '1',
33295   'customized' => '0',
33296   'p1' => '420',
33297   'p2' => '0',
33298   'p3' => '0',
33299   'p4' => '0',
33300   'p5' => '0',
33301   'p6' => '0',
33302   'p7' => '0',
33303   'p8' => '0',
33304   'p9' => '0',
33305   'updated' => '0',
33306 ))
33307 ->values(array(
33308   'menu_name' => 'navigation',
33309   'mlid' => '421',
33310   'plid' => '0',
33311   'link_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
33312   'router_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
33313   'link_title' => 'Remove field',
33314   'options' => 'a:0:{}',
33315   'module' => 'system',
33316   'hidden' => '-1',
33317   'external' => '0',
33318   'has_children' => '0',
33319   'expanded' => '0',
33320   'weight' => '0',
33321   'depth' => '1',
33322   'customized' => '0',
33323   'p1' => '421',
33324   'p2' => '0',
33325   'p3' => '0',
33326   'p4' => '0',
33327   'p5' => '0',
33328   'p6' => '0',
33329   'p7' => '0',
33330   'p8' => '0',
33331   'p9' => '0',
33332   'updated' => '0',
33333 ))
33334 ->values(array(
33335   'menu_name' => 'navigation',
33336   'mlid' => '422',
33337   'plid' => '0',
33338   'link_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
33339   'router_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
33340   'link_title' => 'Remove field',
33341   'options' => 'a:0:{}',
33342   'module' => 'system',
33343   'hidden' => '-1',
33344   'external' => '0',
33345   'has_children' => '0',
33346   'expanded' => '0',
33347   'weight' => '0',
33348   'depth' => '1',
33349   'customized' => '0',
33350   'p1' => '422',
33351   'p2' => '0',
33352   'p3' => '0',
33353   'p4' => '0',
33354   'p5' => '0',
33355   'p6' => '0',
33356   'p7' => '0',
33357   'p8' => '0',
33358   'p9' => '0',
33359   'updated' => '0',
33360 ))
33361 ->values(array(
33362   'menu_name' => 'navigation',
33363   'mlid' => '423',
33364   'plid' => '0',
33365   'link_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
33366   'router_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
33367   'link_title' => 'Remove field',
33368   'options' => 'a:0:{}',
33369   'module' => 'system',
33370   'hidden' => '-1',
33371   'external' => '0',
33372   'has_children' => '0',
33373   'expanded' => '0',
33374   'weight' => '0',
33375   'depth' => '1',
33376   'customized' => '0',
33377   'p1' => '423',
33378   'p2' => '0',
33379   'p3' => '0',
33380   'p4' => '0',
33381   'p5' => '0',
33382   'p6' => '0',
33383   'p7' => '0',
33384   'p8' => '0',
33385   'p9' => '0',
33386   'updated' => '0',
33387 ))
33388 ->values(array(
33389   'menu_name' => 'navigation',
33390   'mlid' => '424',
33391   'plid' => '0',
33392   'link_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
33393   'router_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
33394   'link_title' => 'Remove field',
33395   'options' => 'a:0:{}',
33396   'module' => 'system',
33397   'hidden' => '-1',
33398   'external' => '0',
33399   'has_children' => '0',
33400   'expanded' => '0',
33401   'weight' => '0',
33402   'depth' => '1',
33403   'customized' => '0',
33404   'p1' => '424',
33405   'p2' => '0',
33406   'p3' => '0',
33407   'p4' => '0',
33408   'p5' => '0',
33409   'p6' => '0',
33410   'p7' => '0',
33411   'p8' => '0',
33412   'p9' => '0',
33413   'updated' => '0',
33414 ))
33415 ->values(array(
33416   'menu_name' => 'navigation',
33417   'mlid' => '425',
33418   'plid' => '0',
33419   'link_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
33420   'router_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
33421   'link_title' => 'Remove field',
33422   'options' => 'a:0:{}',
33423   'module' => 'system',
33424   'hidden' => '-1',
33425   'external' => '0',
33426   'has_children' => '0',
33427   'expanded' => '0',
33428   'weight' => '0',
33429   'depth' => '1',
33430   'customized' => '0',
33431   'p1' => '425',
33432   'p2' => '0',
33433   'p3' => '0',
33434   'p4' => '0',
33435   'p5' => '0',
33436   'p6' => '0',
33437   'p7' => '0',
33438   'p8' => '0',
33439   'p9' => '0',
33440   'updated' => '0',
33441 ))
33442 ->values(array(
33443   'menu_name' => 'navigation',
33444   'mlid' => '426',
33445   'plid' => '0',
33446   'link_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
33447   'router_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
33448   'link_title' => 'Remove field',
33449   'options' => 'a:0:{}',
33450   'module' => 'system',
33451   'hidden' => '-1',
33452   'external' => '0',
33453   'has_children' => '0',
33454   'expanded' => '0',
33455   'weight' => '0',
33456   'depth' => '1',
33457   'customized' => '0',
33458   'p1' => '426',
33459   'p2' => '0',
33460   'p3' => '0',
33461   'p4' => '0',
33462   'p5' => '0',
33463   'p6' => '0',
33464   'p7' => '0',
33465   'p8' => '0',
33466   'p9' => '0',
33467   'updated' => '0',
33468 ))
33469 ->values(array(
33470   'menu_name' => 'navigation',
33471   'mlid' => '427',
33472   'plid' => '0',
33473   'link_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
33474   'router_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
33475   'link_title' => 'Remove field',
33476   'options' => 'a:0:{}',
33477   'module' => 'system',
33478   'hidden' => '-1',
33479   'external' => '0',
33480   'has_children' => '0',
33481   'expanded' => '0',
33482   'weight' => '0',
33483   'depth' => '1',
33484   'customized' => '0',
33485   'p1' => '427',
33486   'p2' => '0',
33487   'p3' => '0',
33488   'p4' => '0',
33489   'p5' => '0',
33490   'p6' => '0',
33491   'p7' => '0',
33492   'p8' => '0',
33493   'p9' => '0',
33494   'updated' => '0',
33495 ))
33496 ->values(array(
33497   'menu_name' => 'navigation',
33498   'mlid' => '428',
33499   'plid' => '0',
33500   'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
33501   'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
33502   'link_title' => 'Remove field',
33503   'options' => 'a:0:{}',
33504   'module' => 'system',
33505   'hidden' => '-1',
33506   'external' => '0',
33507   'has_children' => '0',
33508   'expanded' => '0',
33509   'weight' => '0',
33510   'depth' => '1',
33511   'customized' => '0',
33512   'p1' => '428',
33513   'p2' => '0',
33514   'p3' => '0',
33515   'p4' => '0',
33516   'p5' => '0',
33517   'p6' => '0',
33518   'p7' => '0',
33519   'p8' => '0',
33520   'p9' => '0',
33521   'updated' => '0',
33522 ))
33523 ->values(array(
33524   'menu_name' => 'navigation',
33525   'mlid' => '429',
33526   'plid' => '0',
33527   'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
33528   'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
33529   'link_title' => 'Remove field',
33530   'options' => 'a:0:{}',
33531   'module' => 'system',
33532   'hidden' => '-1',
33533   'external' => '0',
33534   'has_children' => '0',
33535   'expanded' => '0',
33536   'weight' => '0',
33537   'depth' => '1',
33538   'customized' => '0',
33539   'p1' => '429',
33540   'p2' => '0',
33541   'p3' => '0',
33542   'p4' => '0',
33543   'p5' => '0',
33544   'p6' => '0',
33545   'p7' => '0',
33546   'p8' => '0',
33547   'p9' => '0',
33548   'updated' => '0',
33549 ))
33550 ->values(array(
33551   'menu_name' => 'navigation',
33552   'mlid' => '430',
33553   'plid' => '0',
33554   'link_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
33555   'router_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
33556   'link_title' => 'Remove field',
33557   'options' => 'a:0:{}',
33558   'module' => 'system',
33559   'hidden' => '-1',
33560   'external' => '0',
33561   'has_children' => '0',
33562   'expanded' => '0',
33563   'weight' => '0',
33564   'depth' => '1',
33565   'customized' => '0',
33566   'p1' => '430',
33567   'p2' => '0',
33568   'p3' => '0',
33569   'p4' => '0',
33570   'p5' => '0',
33571   'p6' => '0',
33572   'p7' => '0',
33573   'p8' => '0',
33574   'p9' => '0',
33575   'updated' => '0',
33576 ))
33577 ->values(array(
33578   'menu_name' => 'navigation',
33579   'mlid' => '431',
33580   'plid' => '0',
33581   'link_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
33582   'router_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
33583   'link_title' => 'Remove field',
33584   'options' => 'a:0:{}',
33585   'module' => 'system',
33586   'hidden' => '-1',
33587   'external' => '0',
33588   'has_children' => '0',
33589   'expanded' => '0',
33590   'weight' => '0',
33591   'depth' => '1',
33592   'customized' => '0',
33593   'p1' => '431',
33594   'p2' => '0',
33595   'p3' => '0',
33596   'p4' => '0',
33597   'p5' => '0',
33598   'p6' => '0',
33599   'p7' => '0',
33600   'p8' => '0',
33601   'p9' => '0',
33602   'updated' => '0',
33603 ))
33604 ->values(array(
33605   'menu_name' => 'navigation',
33606   'mlid' => '432',
33607   'plid' => '0',
33608   'link_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
33609   'router_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
33610   'link_title' => 'Remove field',
33611   'options' => 'a:0:{}',
33612   'module' => 'system',
33613   'hidden' => '-1',
33614   'external' => '0',
33615   'has_children' => '0',
33616   'expanded' => '0',
33617   'weight' => '0',
33618   'depth' => '1',
33619   'customized' => '0',
33620   'p1' => '432',
33621   'p2' => '0',
33622   'p3' => '0',
33623   'p4' => '0',
33624   'p5' => '0',
33625   'p6' => '0',
33626   'p7' => '0',
33627   'p8' => '0',
33628   'p9' => '0',
33629   'updated' => '0',
33630 ))
33631 ->values(array(
33632   'menu_name' => 'navigation',
33633   'mlid' => '433',
33634   'plid' => '0',
33635   'link_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
33636   'router_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
33637   'link_title' => 'Remove field',
33638   'options' => 'a:0:{}',
33639   'module' => 'system',
33640   'hidden' => '-1',
33641   'external' => '0',
33642   'has_children' => '0',
33643   'expanded' => '0',
33644   'weight' => '0',
33645   'depth' => '1',
33646   'customized' => '0',
33647   'p1' => '433',
33648   'p2' => '0',
33649   'p3' => '0',
33650   'p4' => '0',
33651   'p5' => '0',
33652   'p6' => '0',
33653   'p7' => '0',
33654   'p8' => '0',
33655   'p9' => '0',
33656   'updated' => '0',
33657 ))
33658 ->values(array(
33659   'menu_name' => 'navigation',
33660   'mlid' => '434',
33661   'plid' => '0',
33662   'link_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
33663   'router_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
33664   'link_title' => 'Remove field',
33665   'options' => 'a:0:{}',
33666   'module' => 'system',
33667   'hidden' => '-1',
33668   'external' => '0',
33669   'has_children' => '0',
33670   'expanded' => '0',
33671   'weight' => '0',
33672   'depth' => '1',
33673   'customized' => '0',
33674   'p1' => '434',
33675   'p2' => '0',
33676   'p3' => '0',
33677   'p4' => '0',
33678   'p5' => '0',
33679   'p6' => '0',
33680   'p7' => '0',
33681   'p8' => '0',
33682   'p9' => '0',
33683   'updated' => '0',
33684 ))
33685 ->values(array(
33686   'menu_name' => 'navigation',
33687   'mlid' => '438',
33688   'plid' => '167',
33689   'link_path' => 'admin/settings/variable',
33690   'router_path' => 'admin/settings/variable',
33691   'link_title' => 'Variables',
33692   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Edit and delete site variables.";}}',
33693   'module' => 'system',
33694   'hidden' => '0',
33695   'external' => '0',
33696   'has_children' => '1',
33697   'expanded' => '0',
33698   'weight' => '0',
33699   'depth' => '3',
33700   'customized' => '0',
33701   'p1' => '144',
33702   'p2' => '167',
33703   'p3' => '438',
33704   'p4' => '0',
33705   'p5' => '0',
33706   'p6' => '0',
33707   'p7' => '0',
33708   'p8' => '0',
33709   'p9' => '0',
33710   'updated' => '0',
33711 ))
33712 ->values(array(
33713   'menu_name' => 'navigation',
33714   'mlid' => '439',
33715   'plid' => '438',
33716   'link_path' => 'admin/settings/variable/edit/%',
33717   'router_path' => 'admin/settings/variable/edit/%',
33718   'link_title' => 'Edit variable',
33719   'options' => 'a:0:{}',
33720   'module' => 'system',
33721   'hidden' => '0',
33722   'external' => '0',
33723   'has_children' => '0',
33724   'expanded' => '0',
33725   'weight' => '0',
33726   'depth' => '4',
33727   'customized' => '0',
33728   'p1' => '144',
33729   'p2' => '167',
33730   'p3' => '438',
33731   'p4' => '439',
33732   'p5' => '0',
33733   'p6' => '0',
33734   'p7' => '0',
33735   'p8' => '0',
33736   'p9' => '0',
33737   'updated' => '0',
33738 ))
33739 ->values(array(
33740   'menu_name' => 'navigation',
33741   'mlid' => '440',
33742   'plid' => '438',
33743   'link_path' => 'admin/settings/variable/group/%',
33744   'router_path' => 'admin/settings/variable/group/%',
33745   'link_title' => 'Variables group',
33746   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Edit and delete group variables.";}}',
33747   'module' => 'system',
33748   'hidden' => '0',
33749   'external' => '0',
33750   'has_children' => '0',
33751   'expanded' => '0',
33752   'weight' => '0',
33753   'depth' => '4',
33754   'customized' => '0',
33755   'p1' => '144',
33756   'p2' => '167',
33757   'p3' => '438',
33758   'p4' => '440',
33759   'p5' => '0',
33760   'p6' => '0',
33761   'p7' => '0',
33762   'p8' => '0',
33763   'p9' => '0',
33764   'updated' => '0',
33765 ))
33766 ->values(array(
33767   'menu_name' => 'navigation',
33768   'mlid' => '441',
33769   'plid' => '0',
33770   'link_path' => 'forum',
33771   'router_path' => 'forum',
33772   'link_title' => 'Forums',
33773   'options' => 'a:0:{}',
33774   'module' => 'system',
33775   'hidden' => '1',
33776   'external' => '0',
33777   'has_children' => '0',
33778   'expanded' => '0',
33779   'weight' => '0',
33780   'depth' => '1',
33781   'customized' => '0',
33782   'p1' => '441',
33783   'p2' => '0',
33784   'p3' => '0',
33785   'p4' => '0',
33786   'p5' => '0',
33787   'p6' => '0',
33788   'p7' => '0',
33789   'p8' => '0',
33790   'p9' => '0',
33791   'updated' => '0',
33792 ))
33793 ->values(array(
33794   'menu_name' => 'navigation',
33795   'mlid' => '442',
33796   'plid' => '165',
33797   'link_path' => 'admin/reports/settings',
33798   'router_path' => 'admin/reports/settings',
33799   'link_title' => 'Access log settings',
33800   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Control details about what and how your site logs.";}}',
33801   'module' => 'system',
33802   'hidden' => '0',
33803   'external' => '0',
33804   'has_children' => '0',
33805   'expanded' => '0',
33806   'weight' => '3',
33807   'depth' => '3',
33808   'customized' => '0',
33809   'p1' => '144',
33810   'p2' => '165',
33811   'p3' => '442',
33812   'p4' => '0',
33813   'p5' => '0',
33814   'p6' => '0',
33815   'p7' => '0',
33816   'p8' => '0',
33817   'p9' => '0',
33818   'updated' => '0',
33819 ))
33820 ->values(array(
33821   'menu_name' => 'navigation',
33822   'mlid' => '443',
33823   'plid' => '158',
33824   'link_path' => 'node/add/forum',
33825   'router_path' => 'node/add/forum',
33826   'link_title' => 'Forum topic',
33827   '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.";}}',
33828   'module' => 'system',
33829   'hidden' => '0',
33830   'external' => '0',
33831   'has_children' => '0',
33832   'expanded' => '0',
33833   'weight' => '0',
33834   'depth' => '2',
33835   'customized' => '0',
33836   'p1' => '158',
33837   'p2' => '443',
33838   'p3' => '0',
33839   'p4' => '0',
33840   'p5' => '0',
33841   'p6' => '0',
33842   'p7' => '0',
33843   'p8' => '0',
33844   'p9' => '0',
33845   'updated' => '0',
33846 ))
33847 ->values(array(
33848   'menu_name' => 'navigation',
33849   'mlid' => '444',
33850   'plid' => '157',
33851   'link_path' => 'admin/content/forum',
33852   'router_path' => 'admin/content/forum',
33853   'link_title' => 'Forums',
33854   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"Control forums and their hierarchy and change forum settings.";}}',
33855   'module' => 'system',
33856   'hidden' => '0',
33857   'external' => '0',
33858   'has_children' => '0',
33859   'expanded' => '0',
33860   'weight' => '0',
33861   'depth' => '3',
33862   'customized' => '0',
33863   'p1' => '144',
33864   'p2' => '157',
33865   'p3' => '444',
33866   'p4' => '0',
33867   'p5' => '0',
33868   'p6' => '0',
33869   'p7' => '0',
33870   'p8' => '0',
33871   'p9' => '0',
33872   'updated' => '0',
33873 ))
33874 ->values(array(
33875   'menu_name' => 'navigation',
33876   'mlid' => '445',
33877   'plid' => '165',
33878   'link_path' => 'admin/reports/hits',
33879   'router_path' => 'admin/reports/hits',
33880   'link_title' => 'Recent hits',
33881   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View pages that have recently been visited.";}}',
33882   'module' => 'system',
33883   'hidden' => '0',
33884   'external' => '0',
33885   'has_children' => '0',
33886   'expanded' => '0',
33887   'weight' => '0',
33888   'depth' => '3',
33889   'customized' => '0',
33890   'p1' => '144',
33891   'p2' => '165',
33892   'p3' => '445',
33893   'p4' => '0',
33894   'p5' => '0',
33895   'p6' => '0',
33896   'p7' => '0',
33897   'p8' => '0',
33898   'p9' => '0',
33899   'updated' => '0',
33900 ))
33901 ->values(array(
33902   'menu_name' => 'navigation',
33903   'mlid' => '446',
33904   'plid' => '165',
33905   'link_path' => 'admin/reports/pages',
33906   'router_path' => 'admin/reports/pages',
33907   'link_title' => 'Top pages',
33908   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"View pages that have been hit frequently.";}}',
33909   'module' => 'system',
33910   'hidden' => '0',
33911   'external' => '0',
33912   'has_children' => '0',
33913   'expanded' => '0',
33914   'weight' => '1',
33915   'depth' => '3',
33916   'customized' => '0',
33917   'p1' => '144',
33918   'p2' => '165',
33919   'p3' => '446',
33920   'p4' => '0',
33921   'p5' => '0',
33922   'p6' => '0',
33923   'p7' => '0',
33924   'p8' => '0',
33925   'p9' => '0',
33926   'updated' => '0',
33927 ))
33928 ->values(array(
33929   'menu_name' => 'navigation',
33930   'mlid' => '447',
33931   'plid' => '165',
33932   'link_path' => 'admin/reports/referrers',
33933   'router_path' => 'admin/reports/referrers',
33934   'link_title' => 'Top referrers',
33935   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"View top referrers.";}}',
33936   'module' => 'system',
33937   'hidden' => '0',
33938   'external' => '0',
33939   'has_children' => '0',
33940   'expanded' => '0',
33941   'weight' => '0',
33942   'depth' => '3',
33943   'customized' => '0',
33944   'p1' => '144',
33945   'p2' => '165',
33946   'p3' => '447',
33947   'p4' => '0',
33948   'p5' => '0',
33949   'p6' => '0',
33950   'p7' => '0',
33951   'p8' => '0',
33952   'p9' => '0',
33953   'updated' => '0',
33954 ))
33955 ->values(array(
33956   'menu_name' => 'navigation',
33957   'mlid' => '448',
33958   'plid' => '165',
33959   'link_path' => 'admin/reports/visitors',
33960   'router_path' => 'admin/reports/visitors',
33961   'link_title' => 'Top visitors',
33962   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View visitors that hit many pages.";}}',
33963   'module' => 'system',
33964   'hidden' => '0',
33965   'external' => '0',
33966   'has_children' => '0',
33967   'expanded' => '0',
33968   'weight' => '2',
33969   'depth' => '3',
33970   'customized' => '0',
33971   'p1' => '144',
33972   'p2' => '165',
33973   'p3' => '448',
33974   'p4' => '0',
33975   'p5' => '0',
33976   'p6' => '0',
33977   'p7' => '0',
33978   'p8' => '0',
33979   'p9' => '0',
33980   'updated' => '0',
33981 ))
33982 ->values(array(
33983   'menu_name' => 'navigation',
33984   'mlid' => '449',
33985   'plid' => '165',
33986   'link_path' => 'admin/reports/access/%',
33987   'router_path' => 'admin/reports/access/%',
33988   'link_title' => 'Details',
33989   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"View access log.";}}',
33990   'module' => 'system',
33991   'hidden' => '-1',
33992   'external' => '0',
33993   'has_children' => '0',
33994   'expanded' => '0',
33995   'weight' => '0',
33996   'depth' => '3',
33997   'customized' => '0',
33998   'p1' => '144',
33999   'p2' => '165',
34000   'p3' => '449',
34001   'p4' => '0',
34002   'p5' => '0',
34003   'p6' => '0',
34004   'p7' => '0',
34005   'p8' => '0',
34006   'p9' => '0',
34007   'updated' => '0',
34008 ))
34009 ->values(array(
34010   'menu_name' => 'navigation',
34011   'mlid' => '450',
34012   'plid' => '157',
34013   'link_path' => 'admin/content/node-type/forum',
34014   'router_path' => 'admin/content/node-type/forum',
34015   'link_title' => 'Forum topic',
34016   'options' => 'a:0:{}',
34017   'module' => 'system',
34018   'hidden' => '-1',
34019   'external' => '0',
34020   'has_children' => '0',
34021   'expanded' => '0',
34022   'weight' => '0',
34023   'depth' => '3',
34024   'customized' => '0',
34025   'p1' => '144',
34026   'p2' => '157',
34027   'p3' => '450',
34028   'p4' => '0',
34029   'p5' => '0',
34030   'p6' => '0',
34031   'p7' => '0',
34032   'p8' => '0',
34033   'p9' => '0',
34034   'updated' => '0',
34035 ))
34036 ->values(array(
34037   'menu_name' => 'navigation',
34038   'mlid' => '451',
34039   'plid' => '444',
34040   'link_path' => 'admin/content/forum/edit/%',
34041   'router_path' => 'admin/content/forum/edit/%',
34042   'link_title' => '',
34043   'options' => 'a:0:{}',
34044   'module' => 'system',
34045   'hidden' => '-1',
34046   'external' => '0',
34047   'has_children' => '0',
34048   'expanded' => '0',
34049   'weight' => '0',
34050   'depth' => '4',
34051   'customized' => '0',
34052   'p1' => '144',
34053   'p2' => '157',
34054   'p3' => '444',
34055   'p4' => '451',
34056   'p5' => '0',
34057   'p6' => '0',
34058   'p7' => '0',
34059   'p8' => '0',
34060   'p9' => '0',
34061   'updated' => '0',
34062 ))
34063 ->values(array(
34064   'menu_name' => 'navigation',
34065   'mlid' => '452',
34066   'plid' => '0',
34067   'link_path' => 'admin/content/node-type/forum/delete',
34068   'router_path' => 'admin/content/node-type/forum/delete',
34069   'link_title' => 'Delete',
34070   'options' => 'a:0:{}',
34071   'module' => 'system',
34072   'hidden' => '-1',
34073   'external' => '0',
34074   'has_children' => '0',
34075   'expanded' => '0',
34076   'weight' => '0',
34077   'depth' => '1',
34078   'customized' => '0',
34079   'p1' => '452',
34080   'p2' => '0',
34081   'p3' => '0',
34082   'p4' => '0',
34083   'p5' => '0',
34084   'p6' => '0',
34085   'p7' => '0',
34086   'p8' => '0',
34087   'p9' => '0',
34088   'updated' => '0',
34089 ))
34090 ->values(array(
34091   'menu_name' => 'navigation',
34092   'mlid' => '453',
34093   'plid' => '444',
34094   'link_path' => 'admin/content/forum/edit/container/%',
34095   'router_path' => 'admin/content/forum/edit/container/%',
34096   'link_title' => 'Edit container',
34097   'options' => 'a:0:{}',
34098   'module' => 'system',
34099   'hidden' => '-1',
34100   'external' => '0',
34101   'has_children' => '0',
34102   'expanded' => '0',
34103   'weight' => '0',
34104   'depth' => '4',
34105   'customized' => '0',
34106   'p1' => '144',
34107   'p2' => '157',
34108   'p3' => '444',
34109   'p4' => '453',
34110   'p5' => '0',
34111   'p6' => '0',
34112   'p7' => '0',
34113   'p8' => '0',
34114   'p9' => '0',
34115   'updated' => '0',
34116 ))
34117 ->values(array(
34118   'menu_name' => 'navigation',
34119   'mlid' => '454',
34120   'plid' => '444',
34121   'link_path' => 'admin/content/forum/edit/forum/%',
34122   'router_path' => 'admin/content/forum/edit/forum/%',
34123   'link_title' => 'Edit forum',
34124   'options' => 'a:0:{}',
34125   'module' => 'system',
34126   'hidden' => '-1',
34127   'external' => '0',
34128   'has_children' => '0',
34129   'expanded' => '0',
34130   'weight' => '0',
34131   'depth' => '4',
34132   'customized' => '0',
34133   'p1' => '144',
34134   'p2' => '157',
34135   'p3' => '444',
34136   'p4' => '454',
34137   'p5' => '0',
34138   'p6' => '0',
34139   'p7' => '0',
34140   'p8' => '0',
34141   'p9' => '0',
34142   'updated' => '0',
34143 ))
34144 ->values(array(
34145   'menu_name' => 'navigation',
34146   'mlid' => '455',
34147   'plid' => '0',
34148   'link_path' => 'nodereference/autocomplete',
34149   'router_path' => 'nodereference/autocomplete',
34150   'link_title' => 'Nodereference autocomplete',
34151   'options' => 'a:0:{}',
34152   'module' => 'system',
34153   'hidden' => '-1',
34154   'external' => '0',
34155   'has_children' => '0',
34156   'expanded' => '0',
34157   'weight' => '0',
34158   'depth' => '1',
34159   'customized' => '0',
34160   'p1' => '455',
34161   'p2' => '0',
34162   'p3' => '0',
34163   'p4' => '0',
34164   'p5' => '0',
34165   'p6' => '0',
34166   'p7' => '0',
34167   'p8' => '0',
34168   'p9' => '0',
34169   'updated' => '0',
34170 ))
34171 ->values(array(
34172   'menu_name' => 'navigation',
34173   'mlid' => '456',
34174   'plid' => '0',
34175   'link_path' => 'admin/content/node-type/employee/fields/field_company/remove',
34176   'router_path' => 'admin/content/node-type/employee/fields/field_company/remove',
34177   'link_title' => 'Remove field',
34178   'options' => 'a:0:{}',
34179   'module' => 'system',
34180   'hidden' => '-1',
34181   'external' => '0',
34182   'has_children' => '0',
34183   'expanded' => '0',
34184   'weight' => '0',
34185   'depth' => '1',
34186   'customized' => '0',
34187   'p1' => '456',
34188   'p2' => '0',
34189   'p3' => '0',
34190   'p4' => '0',
34191   'p5' => '0',
34192   'p6' => '0',
34193   'p7' => '0',
34194   'p8' => '0',
34195   'p9' => '0',
34196   'updated' => '0',
34197 ))
34198 ->values(array(
34199   'menu_name' => 'navigation',
34200   'mlid' => '457',
34201   'plid' => '0',
34202   'link_path' => 'userreference/autocomplete',
34203   'router_path' => 'userreference/autocomplete',
34204   'link_title' => 'Userreference autocomplete',
34205   'options' => 'a:0:{}',
34206   'module' => 'system',
34207   'hidden' => '-1',
34208   'external' => '0',
34209   'has_children' => '0',
34210   'expanded' => '0',
34211   'weight' => '0',
34212   'depth' => '1',
34213   'customized' => '0',
34214   'p1' => '457',
34215   'p2' => '0',
34216   'p3' => '0',
34217   'p4' => '0',
34218   'p5' => '0',
34219   'p6' => '0',
34220   'p7' => '0',
34221   'p8' => '0',
34222   'p9' => '0',
34223   'updated' => '0',
34224 ))
34225 ->values(array(
34226   'menu_name' => 'navigation',
34227   'mlid' => '458',
34228   'plid' => '0',
34229   'link_path' => 'admin/content/node-type/employee/fields/field_commander/remove',
34230   'router_path' => 'admin/content/node-type/employee/fields/field_commander/remove',
34231   'link_title' => 'Remove field',
34232   'options' => 'a:0:{}',
34233   'module' => 'system',
34234   'hidden' => '-1',
34235   'external' => '0',
34236   'has_children' => '0',
34237   'expanded' => '0',
34238   'weight' => '0',
34239   'depth' => '1',
34240   'customized' => '0',
34241   'p1' => '458',
34242   'p2' => '0',
34243   'p3' => '0',
34244   'p4' => '0',
34245   'p5' => '0',
34246   'p6' => '0',
34247   'p7' => '0',
34248   'p8' => '0',
34249   'p9' => '0',
34250   'updated' => '0',
34251 ))
34252 ->values(array(
34253   'menu_name' => 'primary-links',
34254   'mlid' => '459',
34255   'plid' => '0',
34256   'link_path' => 'node/10',
34257   'router_path' => 'node/%',
34258   'link_title' => 'The Real McCoy',
34259   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34260   'module' => 'menu',
34261   'hidden' => '0',
34262   'external' => '0',
34263   'has_children' => '0',
34264   'expanded' => '0',
34265   'weight' => '0',
34266   'depth' => '1',
34267   'customized' => '1',
34268   'p1' => '459',
34269   'p2' => '0',
34270   'p3' => '0',
34271   'p4' => '0',
34272   'p5' => '0',
34273   'p6' => '0',
34274   'p7' => '0',
34275   'p8' => '0',
34276   'p9' => '0',
34277   'updated' => '0',
34278 ))
34279 ->values(array(
34280   'menu_name' => 'primary-links',
34281   'mlid' => '460',
34282   'plid' => '0',
34283   'link_path' => 'node/11',
34284   'router_path' => 'node/%',
34285   'link_title' => 'Le Vrai McCoy',
34286   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34287   'module' => 'menu',
34288   'hidden' => '0',
34289   'external' => '0',
34290   'has_children' => '0',
34291   'expanded' => '0',
34292   'weight' => '0',
34293   'depth' => '1',
34294   'customized' => '1',
34295   'p1' => '460',
34296   'p2' => '0',
34297   'p3' => '0',
34298   'p4' => '0',
34299   'p5' => '0',
34300   'p6' => '0',
34301   'p7' => '0',
34302   'p8' => '0',
34303   'p9' => '0',
34304   'updated' => '0',
34305 ))
34306 ->values(array(
34307   'menu_name' => 'primary-links',
34308   'mlid' => '461',
34309   'plid' => '0',
34310   'link_path' => 'node/12',
34311   'router_path' => 'node/%',
34312   'link_title' => 'Abantu zulu',
34313   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34314   'module' => 'menu',
34315   'hidden' => '0',
34316   'external' => '0',
34317   'has_children' => '0',
34318   'expanded' => '0',
34319   'weight' => '0',
34320   'depth' => '1',
34321   'customized' => '1',
34322   'p1' => '461',
34323   'p2' => '0',
34324   'p3' => '0',
34325   'p4' => '0',
34326   'p5' => '0',
34327   'p6' => '0',
34328   'p7' => '0',
34329   'p8' => '0',
34330   'p9' => '0',
34331   'updated' => '0',
34332 ))
34333 ->values(array(
34334   'menu_name' => 'primary-links',
34335   'mlid' => '462',
34336   'plid' => '0',
34337   'link_path' => 'node/13',
34338   'router_path' => 'node/%',
34339   'link_title' => 'The Zulu People',
34340   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34341   'module' => 'menu',
34342   'hidden' => '0',
34343   'external' => '0',
34344   'has_children' => '0',
34345   'expanded' => '0',
34346   'weight' => '0',
34347   'depth' => '1',
34348   'customized' => '1',
34349   'p1' => '462',
34350   'p2' => '0',
34351   'p3' => '0',
34352   'p4' => '0',
34353   'p5' => '0',
34354   'p6' => '0',
34355   'p7' => '0',
34356   'p8' => '0',
34357   'p9' => '0',
34358   'updated' => '0',
34359 ))
34360 ->values(array(
34361   'menu_name' => 'secondary-links',
34362   'mlid' => '463',
34363   'plid' => '139',
34364   'link_path' => 'user/login',
34365   'router_path' => 'user/login',
34366   'link_title' => 'fr - Test 1',
34367   'options' => 'a:3:{s:10:"attributes";a:1:{s:5:"title";s:21:"fr - Test menu link 1";}s:8:"langcode";s:2:"fr";s:5:"alter";b:1;}',
34368   'module' => 'menu',
34369   'hidden' => '0',
34370   'external' => '0',
34371   'has_children' => '0',
34372   'expanded' => '0',
34373   'weight' => '-49',
34374   'depth' => '2',
34375   'customized' => '1',
34376   'p1' => '139',
34377   'p2' => '459',
34378   'p3' => '0',
34379   'p4' => '0',
34380   'p5' => '0',
34381   'p6' => '0',
34382   'p7' => '0',
34383   'p8' => '0',
34384   'p9' => '0',
34385   'updated' => '0',
34386 ))
34387 ->execute();
34388
34389 $connection->schema()->createTable('menu_router', array(
34390   'fields' => array(
34391     'path' => array(
34392       'type' => 'varchar',
34393       'not null' => TRUE,
34394       'length' => '255',
34395       'default' => '',
34396     ),
34397     'load_functions' => array(
34398       'type' => 'text',
34399       'not null' => TRUE,
34400       'size' => 'normal',
34401     ),
34402     'to_arg_functions' => array(
34403       'type' => 'text',
34404       'not null' => TRUE,
34405       'size' => 'normal',
34406     ),
34407     'access_callback' => array(
34408       'type' => 'varchar',
34409       'not null' => TRUE,
34410       'length' => '255',
34411       'default' => '',
34412     ),
34413     'access_arguments' => array(
34414       'type' => 'text',
34415       'not null' => FALSE,
34416       'size' => 'normal',
34417     ),
34418     'page_callback' => array(
34419       'type' => 'varchar',
34420       'not null' => TRUE,
34421       'length' => '255',
34422       'default' => '',
34423     ),
34424     'page_arguments' => array(
34425       'type' => 'text',
34426       'not null' => FALSE,
34427       'size' => 'normal',
34428     ),
34429     'fit' => array(
34430       'type' => 'int',
34431       'not null' => TRUE,
34432       'size' => 'normal',
34433       'default' => '0',
34434     ),
34435     'number_parts' => array(
34436       'type' => 'int',
34437       'not null' => TRUE,
34438       'size' => 'normal',
34439       'default' => '0',
34440     ),
34441     'tab_parent' => array(
34442       'type' => 'varchar',
34443       'not null' => TRUE,
34444       'length' => '255',
34445       'default' => '',
34446     ),
34447     'tab_root' => array(
34448       'type' => 'varchar',
34449       'not null' => TRUE,
34450       'length' => '255',
34451       'default' => '',
34452     ),
34453     'title' => array(
34454       'type' => 'varchar',
34455       'not null' => TRUE,
34456       'length' => '255',
34457       'default' => '',
34458     ),
34459     'title_callback' => array(
34460       'type' => 'varchar',
34461       'not null' => TRUE,
34462       'length' => '255',
34463       'default' => '',
34464     ),
34465     'title_arguments' => array(
34466       'type' => 'varchar',
34467       'not null' => TRUE,
34468       'length' => '255',
34469       'default' => '',
34470     ),
34471     'type' => array(
34472       'type' => 'int',
34473       'not null' => TRUE,
34474       'size' => 'normal',
34475       'default' => '0',
34476     ),
34477     'block_callback' => array(
34478       'type' => 'varchar',
34479       'not null' => TRUE,
34480       'length' => '255',
34481       'default' => '',
34482     ),
34483     'description' => array(
34484       'type' => 'text',
34485       'not null' => TRUE,
34486       'size' => 'normal',
34487     ),
34488     'position' => array(
34489       'type' => 'varchar',
34490       'not null' => TRUE,
34491       'length' => '255',
34492       'default' => '',
34493     ),
34494     'weight' => array(
34495       'type' => 'int',
34496       'not null' => TRUE,
34497       'size' => 'normal',
34498       'default' => '0',
34499     ),
34500     'file' => array(
34501       'type' => 'text',
34502       'not null' => FALSE,
34503       'size' => 'normal',
34504     ),
34505   ),
34506   'primary key' => array(
34507     'path',
34508   ),
34509   'mysql_character_set' => 'utf8',
34510 ));
34511
34512 $connection->insert('menu_router')
34513 ->fields(array(
34514   'path',
34515   'load_functions',
34516   'to_arg_functions',
34517   'access_callback',
34518   'access_arguments',
34519   'page_callback',
34520   'page_arguments',
34521   'fit',
34522   'number_parts',
34523   'tab_parent',
34524   'tab_root',
34525   'title',
34526   'title_callback',
34527   'title_arguments',
34528   'type',
34529   'block_callback',
34530   'description',
34531   'position',
34532   'weight',
34533   'file',
34534 ))
34535 ->values(array(
34536   'path' => 'admin',
34537   'load_functions' => '',
34538   'to_arg_functions' => '',
34539   'access_callback' => 'user_access',
34540   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
34541   'page_callback' => 'system_main_admin_page',
34542   'page_arguments' => 'a:0:{}',
34543   'fit' => '1',
34544   'number_parts' => '1',
34545   'tab_parent' => '',
34546   'tab_root' => 'admin',
34547   'title' => 'Administer',
34548   'title_callback' => 't',
34549   'title_arguments' => '',
34550   'type' => '6',
34551   'block_callback' => '',
34552   'description' => '',
34553   'position' => '',
34554   'weight' => '9',
34555   'file' => 'modules/system/system.admin.inc',
34556 ))
34557 ->values(array(
34558   'path' => 'admin/build',
34559   'load_functions' => '',
34560   'to_arg_functions' => '',
34561   'access_callback' => 'user_access',
34562   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
34563   'page_callback' => 'system_admin_menu_block_page',
34564   'page_arguments' => 'a:0:{}',
34565   'fit' => '3',
34566   'number_parts' => '2',
34567   'tab_parent' => '',
34568   'tab_root' => 'admin/build',
34569   'title' => 'Site building',
34570   'title_callback' => 't',
34571   'title_arguments' => '',
34572   'type' => '6',
34573   'block_callback' => '',
34574   'description' => 'Control how your site looks and feels.',
34575   'position' => 'right',
34576   'weight' => '-10',
34577   'file' => 'modules/system/system.admin.inc',
34578 ))
34579 ->values(array(
34580   'path' => 'admin/build/block',
34581   'load_functions' => '',
34582   'to_arg_functions' => '',
34583   'access_callback' => 'user_access',
34584   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34585   'page_callback' => 'block_admin_display',
34586   'page_arguments' => 'a:0:{}',
34587   'fit' => '7',
34588   'number_parts' => '3',
34589   'tab_parent' => '',
34590   'tab_root' => 'admin/build/block',
34591   'title' => 'Blocks',
34592   'title_callback' => 't',
34593   'title_arguments' => '',
34594   'type' => '6',
34595   'block_callback' => '',
34596   'description' => "Configure what block content appears in your site's sidebars and other regions.",
34597   'position' => '',
34598   'weight' => '0',
34599   'file' => 'modules/block/block.admin.inc',
34600 ))
34601 ->values(array(
34602   'path' => 'admin/build/block/add',
34603   'load_functions' => '',
34604   'to_arg_functions' => '',
34605   'access_callback' => 'user_access',
34606   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34607   'page_callback' => 'drupal_get_form',
34608   'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
34609   'fit' => '15',
34610   'number_parts' => '4',
34611   'tab_parent' => 'admin/build/block',
34612   'tab_root' => 'admin/build/block',
34613   'title' => 'Add block',
34614   'title_callback' => 't',
34615   'title_arguments' => '',
34616   'type' => '128',
34617   'block_callback' => '',
34618   'description' => '',
34619   'position' => '',
34620   'weight' => '0',
34621   'file' => 'modules/block/block.admin.inc',
34622 ))
34623 ->values(array(
34624   'path' => 'admin/build/block/configure',
34625   'load_functions' => '',
34626   'to_arg_functions' => '',
34627   'access_callback' => 'user_access',
34628   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34629   'page_callback' => 'drupal_get_form',
34630   'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
34631   'fit' => '15',
34632   'number_parts' => '4',
34633   'tab_parent' => '',
34634   'tab_root' => 'admin/build/block/configure',
34635   'title' => 'Configure block',
34636   'title_callback' => 't',
34637   'title_arguments' => '',
34638   'type' => '4',
34639   'block_callback' => '',
34640   'description' => '',
34641   'position' => '',
34642   'weight' => '0',
34643   'file' => 'modules/block/block.admin.inc',
34644 ))
34645 ->values(array(
34646   'path' => 'admin/build/block/delete',
34647   'load_functions' => '',
34648   'to_arg_functions' => '',
34649   'access_callback' => 'user_access',
34650   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34651   'page_callback' => 'drupal_get_form',
34652   'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
34653   'fit' => '15',
34654   'number_parts' => '4',
34655   'tab_parent' => '',
34656   'tab_root' => 'admin/build/block/delete',
34657   'title' => 'Delete block',
34658   'title_callback' => 't',
34659   'title_arguments' => '',
34660   'type' => '4',
34661   'block_callback' => '',
34662   'description' => '',
34663   'position' => '',
34664   'weight' => '0',
34665   'file' => 'modules/block/block.admin.inc',
34666 ))
34667 ->values(array(
34668   'path' => 'admin/build/block/list',
34669   'load_functions' => '',
34670   'to_arg_functions' => '',
34671   'access_callback' => 'user_access',
34672   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34673   'page_callback' => 'block_admin_display',
34674   'page_arguments' => 'a:0:{}',
34675   'fit' => '15',
34676   'number_parts' => '4',
34677   'tab_parent' => 'admin/build/block',
34678   'tab_root' => 'admin/build/block',
34679   'title' => 'List',
34680   'title_callback' => 't',
34681   'title_arguments' => '',
34682   'type' => '136',
34683   'block_callback' => '',
34684   'description' => '',
34685   'position' => '',
34686   'weight' => '-10',
34687   'file' => 'modules/block/block.admin.inc',
34688 ))
34689 ->values(array(
34690   'path' => 'admin/build/block/list/bluemarine',
34691   'load_functions' => '',
34692   'to_arg_functions' => '',
34693   'access_callback' => '_block_themes_access',
34694   '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";}}',
34695   'page_callback' => 'block_admin_display',
34696   'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
34697   'fit' => '31',
34698   'number_parts' => '5',
34699   'tab_parent' => 'admin/build/block/list',
34700   'tab_root' => 'admin/build/block',
34701   'title' => 'Bluemarine',
34702   'title_callback' => 't',
34703   'title_arguments' => '',
34704   'type' => '128',
34705   'block_callback' => '',
34706   'description' => '',
34707   'position' => '',
34708   'weight' => '0',
34709   'file' => 'modules/block/block.admin.inc',
34710 ))
34711 ->values(array(
34712   'path' => 'admin/build/block/list/chameleon',
34713   'load_functions' => '',
34714   'to_arg_functions' => '',
34715   'access_callback' => '_block_themes_access',
34716   '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";}}}}',
34717   'page_callback' => 'block_admin_display',
34718   'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
34719   'fit' => '31',
34720   'number_parts' => '5',
34721   'tab_parent' => 'admin/build/block/list',
34722   'tab_root' => 'admin/build/block',
34723   'title' => 'Chameleon',
34724   'title_callback' => 't',
34725   'title_arguments' => '',
34726   'type' => '128',
34727   'block_callback' => '',
34728   'description' => '',
34729   'position' => '',
34730   'weight' => '0',
34731   'file' => 'modules/block/block.admin.inc',
34732 ))
34733 ->values(array(
34734   'path' => 'admin/build/block/list/garland',
34735   'load_functions' => '',
34736   'to_arg_functions' => '',
34737   'access_callback' => '_block_themes_access',
34738   '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";}}',
34739   'page_callback' => 'block_admin_display',
34740   'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
34741   'fit' => '31',
34742   'number_parts' => '5',
34743   'tab_parent' => 'admin/build/block/list',
34744   'tab_root' => 'admin/build/block',
34745   'title' => 'Garland',
34746   'title_callback' => 't',
34747   'title_arguments' => '',
34748   'type' => '136',
34749   'block_callback' => '',
34750   'description' => '',
34751   'position' => '',
34752   'weight' => '-10',
34753   'file' => 'modules/block/block.admin.inc',
34754 ))
34755 ->values(array(
34756   'path' => 'admin/build/block/list/js',
34757   'load_functions' => '',
34758   'to_arg_functions' => '',
34759   'access_callback' => 'user_access',
34760   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34761   'page_callback' => 'block_admin_display_js',
34762   'page_arguments' => 'a:0:{}',
34763   'fit' => '31',
34764   'number_parts' => '5',
34765   'tab_parent' => '',
34766   'tab_root' => 'admin/build/block/list/js',
34767   'title' => 'JavaScript List Form',
34768   'title_callback' => 't',
34769   'title_arguments' => '',
34770   'type' => '4',
34771   'block_callback' => '',
34772   'description' => '',
34773   'position' => '',
34774   'weight' => '0',
34775   'file' => 'modules/block/block.admin.inc',
34776 ))
34777 ->values(array(
34778   'path' => 'admin/build/block/list/marvin',
34779   'load_functions' => '',
34780   'to_arg_functions' => '',
34781   'access_callback' => '_block_themes_access',
34782   '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";}}',
34783   'page_callback' => 'block_admin_display',
34784   'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
34785   'fit' => '31',
34786   'number_parts' => '5',
34787   'tab_parent' => 'admin/build/block/list',
34788   'tab_root' => 'admin/build/block',
34789   'title' => 'Marvin',
34790   'title_callback' => 't',
34791   'title_arguments' => '',
34792   'type' => '128',
34793   'block_callback' => '',
34794   'description' => '',
34795   'position' => '',
34796   'weight' => '0',
34797   'file' => 'modules/block/block.admin.inc',
34798 ))
34799 ->values(array(
34800   'path' => 'admin/build/block/list/minnelli',
34801   'load_functions' => '',
34802   'to_arg_functions' => '',
34803   'access_callback' => '_block_themes_access',
34804   '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";}}',
34805   'page_callback' => 'block_admin_display',
34806   'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
34807   'fit' => '31',
34808   'number_parts' => '5',
34809   'tab_parent' => 'admin/build/block/list',
34810   'tab_root' => 'admin/build/block',
34811   'title' => 'Minnelli',
34812   'title_callback' => 't',
34813   'title_arguments' => '',
34814   'type' => '128',
34815   'block_callback' => '',
34816   'description' => '',
34817   'position' => '',
34818   'weight' => '0',
34819   'file' => 'modules/block/block.admin.inc',
34820 ))
34821 ->values(array(
34822   'path' => 'admin/build/block/list/pushbutton',
34823   'load_functions' => '',
34824   'to_arg_functions' => '',
34825   'access_callback' => '_block_themes_access',
34826   '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";}}',
34827   'page_callback' => 'block_admin_display',
34828   'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
34829   'fit' => '31',
34830   'number_parts' => '5',
34831   'tab_parent' => 'admin/build/block/list',
34832   'tab_root' => 'admin/build/block',
34833   'title' => 'Pushbutton',
34834   'title_callback' => 't',
34835   'title_arguments' => '',
34836   'type' => '128',
34837   'block_callback' => '',
34838   'description' => '',
34839   'position' => '',
34840   'weight' => '0',
34841   'file' => 'modules/block/block.admin.inc',
34842 ))
34843 ->values(array(
34844   'path' => 'admin/build/contact',
34845   'load_functions' => '',
34846   'to_arg_functions' => '',
34847   'access_callback' => 'user_access',
34848   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34849   'page_callback' => 'contact_admin_categories',
34850   'page_arguments' => 'a:0:{}',
34851   'fit' => '7',
34852   'number_parts' => '3',
34853   'tab_parent' => '',
34854   'tab_root' => 'admin/build/contact',
34855   'title' => 'Contact form',
34856   'title_callback' => 't',
34857   'title_arguments' => '',
34858   'type' => '6',
34859   'block_callback' => '',
34860   'description' => 'Create a system contact form and set up categories for the form to use.',
34861   'position' => '',
34862   'weight' => '0',
34863   'file' => 'modules/contact/contact.admin.inc',
34864 ))
34865 ->values(array(
34866   'path' => 'admin/build/contact/add',
34867   'load_functions' => '',
34868   'to_arg_functions' => '',
34869   'access_callback' => 'user_access',
34870   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34871   'page_callback' => 'drupal_get_form',
34872   'page_arguments' => 'a:2:{i:0;s:18:"contact_admin_edit";i:1;i:3;}',
34873   'fit' => '15',
34874   'number_parts' => '4',
34875   'tab_parent' => 'admin/build/contact',
34876   'tab_root' => 'admin/build/contact',
34877   'title' => 'Add category',
34878   'title_callback' => 't',
34879   'title_arguments' => '',
34880   'type' => '128',
34881   'block_callback' => '',
34882   'description' => '',
34883   'position' => '',
34884   'weight' => '1',
34885   'file' => 'modules/contact/contact.admin.inc',
34886 ))
34887 ->values(array(
34888   'path' => 'admin/build/contact/delete/%',
34889   'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
34890   'to_arg_functions' => '',
34891   'access_callback' => 'user_access',
34892   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34893   'page_callback' => 'drupal_get_form',
34894   'page_arguments' => 'a:2:{i:0;s:20:"contact_admin_delete";i:1;i:4;}',
34895   'fit' => '30',
34896   'number_parts' => '5',
34897   'tab_parent' => '',
34898   'tab_root' => 'admin/build/contact/delete/%',
34899   'title' => 'Delete contact',
34900   'title_callback' => 't',
34901   'title_arguments' => '',
34902   'type' => '4',
34903   'block_callback' => '',
34904   'description' => '',
34905   'position' => '',
34906   'weight' => '0',
34907   'file' => 'modules/contact/contact.admin.inc',
34908 ))
34909 ->values(array(
34910   'path' => 'admin/build/contact/edit/%',
34911   'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
34912   'to_arg_functions' => '',
34913   'access_callback' => 'user_access',
34914   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34915   'page_callback' => 'drupal_get_form',
34916   'page_arguments' => 'a:3:{i:0;s:18:"contact_admin_edit";i:1;i:3;i:2;i:4;}',
34917   'fit' => '30',
34918   'number_parts' => '5',
34919   'tab_parent' => '',
34920   'tab_root' => 'admin/build/contact/edit/%',
34921   'title' => 'Edit contact category',
34922   'title_callback' => 't',
34923   'title_arguments' => '',
34924   'type' => '4',
34925   'block_callback' => '',
34926   'description' => '',
34927   'position' => '',
34928   'weight' => '0',
34929   'file' => 'modules/contact/contact.admin.inc',
34930 ))
34931 ->values(array(
34932   'path' => 'admin/build/contact/list',
34933   'load_functions' => '',
34934   'to_arg_functions' => '',
34935   'access_callback' => 'user_access',
34936   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34937   'page_callback' => 'contact_admin_categories',
34938   'page_arguments' => 'a:0:{}',
34939   'fit' => '15',
34940   'number_parts' => '4',
34941   'tab_parent' => 'admin/build/contact',
34942   'tab_root' => 'admin/build/contact',
34943   'title' => 'List',
34944   'title_callback' => 't',
34945   'title_arguments' => '',
34946   'type' => '136',
34947   'block_callback' => '',
34948   'description' => '',
34949   'position' => '',
34950   'weight' => '0',
34951   'file' => 'modules/contact/contact.admin.inc',
34952 ))
34953 ->values(array(
34954   'path' => 'admin/build/contact/settings',
34955   'load_functions' => '',
34956   'to_arg_functions' => '',
34957   'access_callback' => 'user_access',
34958   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34959   'page_callback' => 'drupal_get_form',
34960   'page_arguments' => 'a:1:{i:0;s:22:"contact_admin_settings";}',
34961   'fit' => '15',
34962   'number_parts' => '4',
34963   'tab_parent' => 'admin/build/contact',
34964   'tab_root' => 'admin/build/contact',
34965   'title' => 'Settings',
34966   'title_callback' => 't',
34967   'title_arguments' => '',
34968   'type' => '128',
34969   'block_callback' => '',
34970   'description' => '',
34971   'position' => '',
34972   'weight' => '2',
34973   'file' => 'modules/contact/contact.admin.inc',
34974 ))
34975 ->values(array(
34976   'path' => 'admin/build/menu',
34977   'load_functions' => '',
34978   'to_arg_functions' => '',
34979   'access_callback' => 'user_access',
34980   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
34981   'page_callback' => 'menu_overview_page',
34982   'page_arguments' => 'a:0:{}',
34983   'fit' => '7',
34984   'number_parts' => '3',
34985   'tab_parent' => '',
34986   'tab_root' => 'admin/build/menu',
34987   'title' => 'Menus',
34988   'title_callback' => 't',
34989   'title_arguments' => '',
34990   'type' => '6',
34991   'block_callback' => '',
34992   'description' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
34993   'position' => '',
34994   'weight' => '0',
34995   'file' => 'modules/menu/menu.admin.inc',
34996 ))
34997 ->values(array(
34998   'path' => 'admin/build/menu-customize/%',
34999   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35000   'to_arg_functions' => '',
35001   'access_callback' => 'user_access',
35002   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35003   'page_callback' => 'drupal_get_form',
35004   'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
35005   'fit' => '14',
35006   'number_parts' => '4',
35007   'tab_parent' => '',
35008   'tab_root' => 'admin/build/menu-customize/%',
35009   'title' => 'Customize menu',
35010   'title_callback' => 'menu_overview_title',
35011   'title_arguments' => 'a:1:{i:0;i:3;}',
35012   'type' => '4',
35013   'block_callback' => '',
35014   'description' => '',
35015   'position' => '',
35016   'weight' => '0',
35017   'file' => 'modules/menu/menu.admin.inc',
35018 ))
35019 ->values(array(
35020   'path' => 'admin/build/menu-customize/%/add',
35021   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35022   'to_arg_functions' => '',
35023   'access_callback' => 'user_access',
35024   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35025   'page_callback' => 'drupal_get_form',
35026   'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:3;}',
35027   'fit' => '29',
35028   'number_parts' => '5',
35029   'tab_parent' => 'admin/build/menu-customize/%',
35030   'tab_root' => 'admin/build/menu-customize/%',
35031   'title' => 'Add item',
35032   'title_callback' => 't',
35033   'title_arguments' => '',
35034   'type' => '128',
35035   'block_callback' => '',
35036   'description' => '',
35037   'position' => '',
35038   'weight' => '0',
35039   'file' => 'modules/menu/menu.admin.inc',
35040 ))
35041 ->values(array(
35042   'path' => 'admin/build/menu-customize/%/delete',
35043   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35044   'to_arg_functions' => '',
35045   'access_callback' => 'user_access',
35046   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35047   'page_callback' => 'menu_delete_menu_page',
35048   'page_arguments' => 'a:1:{i:0;i:3;}',
35049   'fit' => '29',
35050   'number_parts' => '5',
35051   'tab_parent' => '',
35052   'tab_root' => 'admin/build/menu-customize/%/delete',
35053   'title' => 'Delete menu',
35054   'title_callback' => 't',
35055   'title_arguments' => '',
35056   'type' => '4',
35057   'block_callback' => '',
35058   'description' => '',
35059   'position' => '',
35060   'weight' => '0',
35061   'file' => 'modules/menu/menu.admin.inc',
35062 ))
35063 ->values(array(
35064   'path' => 'admin/build/menu-customize/%/edit',
35065   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35066   'to_arg_functions' => '',
35067   'access_callback' => 'user_access',
35068   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35069   'page_callback' => 'drupal_get_form',
35070   'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:3;}',
35071   'fit' => '29',
35072   'number_parts' => '5',
35073   'tab_parent' => 'admin/build/menu-customize/%',
35074   'tab_root' => 'admin/build/menu-customize/%',
35075   'title' => 'Edit menu',
35076   'title_callback' => 't',
35077   'title_arguments' => '',
35078   'type' => '128',
35079   'block_callback' => '',
35080   'description' => '',
35081   'position' => '',
35082   'weight' => '0',
35083   'file' => 'modules/menu/menu.admin.inc',
35084 ))
35085 ->values(array(
35086   'path' => 'admin/build/menu-customize/%/list',
35087   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35088   'to_arg_functions' => '',
35089   'access_callback' => 'user_access',
35090   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35091   'page_callback' => 'drupal_get_form',
35092   'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
35093   'fit' => '29',
35094   'number_parts' => '5',
35095   'tab_parent' => 'admin/build/menu-customize/%',
35096   'tab_root' => 'admin/build/menu-customize/%',
35097   'title' => 'List items',
35098   'title_callback' => 't',
35099   'title_arguments' => '',
35100   'type' => '136',
35101   'block_callback' => '',
35102   'description' => '',
35103   'position' => '',
35104   'weight' => '-10',
35105   'file' => 'modules/menu/menu.admin.inc',
35106 ))
35107 ->values(array(
35108   'path' => 'admin/build/menu/add',
35109   'load_functions' => '',
35110   'to_arg_functions' => '',
35111   'access_callback' => 'user_access',
35112   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35113   'page_callback' => 'drupal_get_form',
35114   'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
35115   'fit' => '15',
35116   'number_parts' => '4',
35117   'tab_parent' => 'admin/build/menu',
35118   'tab_root' => 'admin/build/menu',
35119   'title' => 'Add menu',
35120   'title_callback' => 't',
35121   'title_arguments' => '',
35122   'type' => '128',
35123   'block_callback' => '',
35124   'description' => '',
35125   'position' => '',
35126   'weight' => '0',
35127   'file' => 'modules/menu/menu.admin.inc',
35128 ))
35129 ->values(array(
35130   'path' => 'admin/build/menu/item/%/delete',
35131   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
35132   'to_arg_functions' => '',
35133   'access_callback' => 'user_access',
35134   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35135   'page_callback' => 'menu_item_delete_page',
35136   'page_arguments' => 'a:1:{i:0;i:4;}',
35137   'fit' => '61',
35138   'number_parts' => '6',
35139   'tab_parent' => '',
35140   'tab_root' => 'admin/build/menu/item/%/delete',
35141   'title' => 'Delete menu item',
35142   'title_callback' => 't',
35143   'title_arguments' => '',
35144   'type' => '4',
35145   'block_callback' => '',
35146   'description' => '',
35147   'position' => '',
35148   'weight' => '0',
35149   'file' => 'modules/menu/menu.admin.inc',
35150 ))
35151 ->values(array(
35152   'path' => 'admin/build/menu/item/%/edit',
35153   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
35154   'to_arg_functions' => '',
35155   'access_callback' => 'user_access',
35156   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35157   'page_callback' => 'drupal_get_form',
35158   'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
35159   'fit' => '61',
35160   'number_parts' => '6',
35161   'tab_parent' => '',
35162   'tab_root' => 'admin/build/menu/item/%/edit',
35163   'title' => 'Edit menu item',
35164   'title_callback' => 't',
35165   'title_arguments' => '',
35166   'type' => '4',
35167   'block_callback' => '',
35168   'description' => '',
35169   'position' => '',
35170   'weight' => '0',
35171   'file' => 'modules/menu/menu.admin.inc',
35172 ))
35173 ->values(array(
35174   'path' => 'admin/build/menu/item/%/reset',
35175   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
35176   'to_arg_functions' => '',
35177   'access_callback' => 'user_access',
35178   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35179   'page_callback' => 'drupal_get_form',
35180   'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
35181   'fit' => '61',
35182   'number_parts' => '6',
35183   'tab_parent' => '',
35184   'tab_root' => 'admin/build/menu/item/%/reset',
35185   'title' => 'Reset menu item',
35186   'title_callback' => 't',
35187   'title_arguments' => '',
35188   'type' => '4',
35189   'block_callback' => '',
35190   'description' => '',
35191   'position' => '',
35192   'weight' => '0',
35193   'file' => 'modules/menu/menu.admin.inc',
35194 ))
35195 ->values(array(
35196   'path' => 'admin/build/menu/list',
35197   'load_functions' => '',
35198   'to_arg_functions' => '',
35199   'access_callback' => 'user_access',
35200   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35201   'page_callback' => 'menu_overview_page',
35202   'page_arguments' => 'a:0:{}',
35203   'fit' => '15',
35204   'number_parts' => '4',
35205   'tab_parent' => 'admin/build/menu',
35206   'tab_root' => 'admin/build/menu',
35207   'title' => 'List menus',
35208   'title_callback' => 't',
35209   'title_arguments' => '',
35210   'type' => '136',
35211   'block_callback' => '',
35212   'description' => '',
35213   'position' => '',
35214   'weight' => '-10',
35215   'file' => 'modules/menu/menu.admin.inc',
35216 ))
35217 ->values(array(
35218   'path' => 'admin/build/menu/settings',
35219   'load_functions' => '',
35220   'to_arg_functions' => '',
35221   'access_callback' => 'user_access',
35222   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35223   'page_callback' => 'drupal_get_form',
35224   'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
35225   'fit' => '15',
35226   'number_parts' => '4',
35227   'tab_parent' => 'admin/build/menu',
35228   'tab_root' => 'admin/build/menu',
35229   'title' => 'Settings',
35230   'title_callback' => 't',
35231   'title_arguments' => '',
35232   'type' => '128',
35233   'block_callback' => '',
35234   'description' => '',
35235   'position' => '',
35236   'weight' => '5',
35237   'file' => 'modules/menu/menu.admin.inc',
35238 ))
35239 ->values(array(
35240   'path' => 'admin/build/modules',
35241   'load_functions' => '',
35242   'to_arg_functions' => '',
35243   'access_callback' => 'user_access',
35244   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35245   'page_callback' => 'drupal_get_form',
35246   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
35247   'fit' => '7',
35248   'number_parts' => '3',
35249   'tab_parent' => '',
35250   'tab_root' => 'admin/build/modules',
35251   'title' => 'Modules',
35252   'title_callback' => 't',
35253   'title_arguments' => '',
35254   'type' => '6',
35255   'block_callback' => '',
35256   'description' => 'Enable or disable add-on modules for your site.',
35257   'position' => '',
35258   'weight' => '0',
35259   'file' => 'modules/system/system.admin.inc',
35260 ))
35261 ->values(array(
35262   'path' => 'admin/build/modules/list',
35263   'load_functions' => '',
35264   'to_arg_functions' => '',
35265   'access_callback' => 'user_access',
35266   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35267   'page_callback' => 'drupal_get_form',
35268   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
35269   'fit' => '15',
35270   'number_parts' => '4',
35271   'tab_parent' => 'admin/build/modules',
35272   'tab_root' => 'admin/build/modules',
35273   'title' => 'List',
35274   'title_callback' => 't',
35275   'title_arguments' => '',
35276   'type' => '136',
35277   'block_callback' => '',
35278   'description' => '',
35279   'position' => '',
35280   'weight' => '0',
35281   'file' => 'modules/system/system.admin.inc',
35282 ))
35283 ->values(array(
35284   'path' => 'admin/build/modules/list/confirm',
35285   'load_functions' => '',
35286   'to_arg_functions' => '',
35287   'access_callback' => 'user_access',
35288   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35289   'page_callback' => 'drupal_get_form',
35290   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
35291   'fit' => '31',
35292   'number_parts' => '5',
35293   'tab_parent' => '',
35294   'tab_root' => 'admin/build/modules/list/confirm',
35295   'title' => 'List',
35296   'title_callback' => 't',
35297   'title_arguments' => '',
35298   'type' => '4',
35299   'block_callback' => '',
35300   'description' => '',
35301   'position' => '',
35302   'weight' => '0',
35303   'file' => 'modules/system/system.admin.inc',
35304 ))
35305 ->values(array(
35306   'path' => 'admin/build/modules/uninstall',
35307   'load_functions' => '',
35308   'to_arg_functions' => '',
35309   'access_callback' => 'user_access',
35310   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35311   'page_callback' => 'drupal_get_form',
35312   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
35313   'fit' => '15',
35314   'number_parts' => '4',
35315   'tab_parent' => 'admin/build/modules',
35316   'tab_root' => 'admin/build/modules',
35317   'title' => 'Uninstall',
35318   'title_callback' => 't',
35319   'title_arguments' => '',
35320   'type' => '128',
35321   'block_callback' => '',
35322   'description' => '',
35323   'position' => '',
35324   'weight' => '0',
35325   'file' => 'modules/system/system.admin.inc',
35326 ))
35327 ->values(array(
35328   'path' => 'admin/build/modules/uninstall/confirm',
35329   'load_functions' => '',
35330   'to_arg_functions' => '',
35331   'access_callback' => 'user_access',
35332   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35333   'page_callback' => 'drupal_get_form',
35334   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
35335   'fit' => '31',
35336   'number_parts' => '5',
35337   'tab_parent' => '',
35338   'tab_root' => 'admin/build/modules/uninstall/confirm',
35339   'title' => 'Uninstall',
35340   'title_callback' => 't',
35341   'title_arguments' => '',
35342   'type' => '4',
35343   'block_callback' => '',
35344   'description' => '',
35345   'position' => '',
35346   'weight' => '0',
35347   'file' => 'modules/system/system.admin.inc',
35348 ))
35349 ->values(array(
35350   'path' => 'admin/build/path',
35351   'load_functions' => '',
35352   'to_arg_functions' => '',
35353   'access_callback' => 'user_access',
35354   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35355   'page_callback' => 'path_admin_overview',
35356   'page_arguments' => 'a:0:{}',
35357   'fit' => '7',
35358   'number_parts' => '3',
35359   'tab_parent' => '',
35360   'tab_root' => 'admin/build/path',
35361   'title' => 'URL aliases',
35362   'title_callback' => 't',
35363   'title_arguments' => '',
35364   'type' => '6',
35365   'block_callback' => '',
35366   'description' => "Change your site's URL paths by aliasing them.",
35367   'position' => '',
35368   'weight' => '0',
35369   'file' => 'modules/path/path.admin.inc',
35370 ))
35371 ->values(array(
35372   'path' => 'admin/build/path/add',
35373   'load_functions' => '',
35374   'to_arg_functions' => '',
35375   'access_callback' => 'user_access',
35376   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35377   'page_callback' => 'path_admin_edit',
35378   'page_arguments' => 'a:0:{}',
35379   'fit' => '15',
35380   'number_parts' => '4',
35381   'tab_parent' => 'admin/build/path',
35382   'tab_root' => 'admin/build/path',
35383   'title' => 'Add alias',
35384   'title_callback' => 't',
35385   'title_arguments' => '',
35386   'type' => '128',
35387   'block_callback' => '',
35388   'description' => '',
35389   'position' => '',
35390   'weight' => '0',
35391   'file' => 'modules/path/path.admin.inc',
35392 ))
35393 ->values(array(
35394   'path' => 'admin/build/path/delete',
35395   'load_functions' => '',
35396   'to_arg_functions' => '',
35397   'access_callback' => 'user_access',
35398   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35399   'page_callback' => 'drupal_get_form',
35400   'page_arguments' => 'a:1:{i:0;s:25:"path_admin_delete_confirm";}',
35401   'fit' => '15',
35402   'number_parts' => '4',
35403   'tab_parent' => '',
35404   'tab_root' => 'admin/build/path/delete',
35405   'title' => 'Delete alias',
35406   'title_callback' => 't',
35407   'title_arguments' => '',
35408   'type' => '4',
35409   'block_callback' => '',
35410   'description' => '',
35411   'position' => '',
35412   'weight' => '0',
35413   'file' => 'modules/path/path.admin.inc',
35414 ))
35415 ->values(array(
35416   'path' => 'admin/build/path/edit',
35417   'load_functions' => '',
35418   'to_arg_functions' => '',
35419   'access_callback' => 'user_access',
35420   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35421   'page_callback' => 'path_admin_edit',
35422   'page_arguments' => 'a:0:{}',
35423   'fit' => '15',
35424   'number_parts' => '4',
35425   'tab_parent' => '',
35426   'tab_root' => 'admin/build/path/edit',
35427   'title' => 'Edit alias',
35428   'title_callback' => 't',
35429   'title_arguments' => '',
35430   'type' => '4',
35431   'block_callback' => '',
35432   'description' => '',
35433   'position' => '',
35434   'weight' => '0',
35435   'file' => 'modules/path/path.admin.inc',
35436 ))
35437 ->values(array(
35438   'path' => 'admin/build/path/list',
35439   'load_functions' => '',
35440   'to_arg_functions' => '',
35441   'access_callback' => 'user_access',
35442   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35443   'page_callback' => 'path_admin_overview',
35444   'page_arguments' => 'a:0:{}',
35445   'fit' => '15',
35446   'number_parts' => '4',
35447   'tab_parent' => 'admin/build/path',
35448   'tab_root' => 'admin/build/path',
35449   'title' => 'List',
35450   'title_callback' => 't',
35451   'title_arguments' => '',
35452   'type' => '136',
35453   'block_callback' => '',
35454   'description' => '',
35455   'position' => '',
35456   'weight' => '-10',
35457   'file' => 'modules/path/path.admin.inc',
35458 ))
35459 ->values(array(
35460   'path' => 'admin/build/themes',
35461   'load_functions' => '',
35462   'to_arg_functions' => '',
35463   'access_callback' => 'user_access',
35464   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35465   'page_callback' => 'drupal_get_form',
35466   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
35467   'fit' => '7',
35468   'number_parts' => '3',
35469   'tab_parent' => '',
35470   'tab_root' => 'admin/build/themes',
35471   'title' => 'Themes',
35472   'title_callback' => 't',
35473   'title_arguments' => '',
35474   'type' => '6',
35475   'block_callback' => '',
35476   'description' => 'Change which theme your site uses or allows users to set.',
35477   'position' => '',
35478   'weight' => '0',
35479   'file' => 'modules/system/system.admin.inc',
35480 ))
35481 ->values(array(
35482   'path' => 'admin/build/themes/select',
35483   'load_functions' => '',
35484   'to_arg_functions' => '',
35485   'access_callback' => 'user_access',
35486   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35487   'page_callback' => 'drupal_get_form',
35488   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
35489   'fit' => '15',
35490   'number_parts' => '4',
35491   'tab_parent' => 'admin/build/themes',
35492   'tab_root' => 'admin/build/themes',
35493   'title' => 'List',
35494   'title_callback' => 't',
35495   'title_arguments' => '',
35496   'type' => '136',
35497   'block_callback' => '',
35498   'description' => 'Select the default theme.',
35499   'position' => '',
35500   'weight' => '-1',
35501   'file' => 'modules/system/system.admin.inc',
35502 ))
35503 ->values(array(
35504   'path' => 'admin/build/themes/settings',
35505   'load_functions' => '',
35506   'to_arg_functions' => '',
35507   'access_callback' => 'user_access',
35508   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35509   'page_callback' => 'drupal_get_form',
35510   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
35511   'fit' => '15',
35512   'number_parts' => '4',
35513   'tab_parent' => 'admin/build/themes',
35514   'tab_root' => 'admin/build/themes',
35515   'title' => 'Configure',
35516   'title_callback' => 't',
35517   'title_arguments' => '',
35518   'type' => '128',
35519   'block_callback' => '',
35520   'description' => '',
35521   'position' => '',
35522   'weight' => '0',
35523   'file' => 'modules/system/system.admin.inc',
35524 ))
35525 ->values(array(
35526   'path' => 'admin/build/themes/settings/bluemarine',
35527   'load_functions' => '',
35528   'to_arg_functions' => '',
35529   'access_callback' => '_system_themes_access',
35530   '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";}}',
35531   'page_callback' => 'drupal_get_form',
35532   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
35533   'fit' => '31',
35534   'number_parts' => '5',
35535   'tab_parent' => 'admin/build/themes/settings',
35536   'tab_root' => 'admin/build/themes',
35537   'title' => 'Bluemarine',
35538   'title_callback' => 't',
35539   'title_arguments' => '',
35540   'type' => '128',
35541   'block_callback' => '',
35542   'description' => '',
35543   'position' => '',
35544   'weight' => '0',
35545   'file' => 'modules/system/system.admin.inc',
35546 ))
35547 ->values(array(
35548   'path' => 'admin/build/themes/settings/chameleon',
35549   'load_functions' => '',
35550   'to_arg_functions' => '',
35551   'access_callback' => '_system_themes_access',
35552   '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";}}}}',
35553   'page_callback' => 'drupal_get_form',
35554   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
35555   'fit' => '31',
35556   'number_parts' => '5',
35557   'tab_parent' => 'admin/build/themes/settings',
35558   'tab_root' => 'admin/build/themes',
35559   'title' => 'Chameleon',
35560   'title_callback' => 't',
35561   'title_arguments' => '',
35562   'type' => '128',
35563   'block_callback' => '',
35564   'description' => '',
35565   'position' => '',
35566   'weight' => '0',
35567   'file' => 'modules/system/system.admin.inc',
35568 ))
35569 ->values(array(
35570   'path' => 'admin/build/themes/settings/garland',
35571   'load_functions' => '',
35572   'to_arg_functions' => '',
35573   'access_callback' => '_system_themes_access',
35574   '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";}}',
35575   'page_callback' => 'drupal_get_form',
35576   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
35577   'fit' => '31',
35578   'number_parts' => '5',
35579   'tab_parent' => 'admin/build/themes/settings',
35580   'tab_root' => 'admin/build/themes',
35581   'title' => 'Garland',
35582   'title_callback' => 't',
35583   'title_arguments' => '',
35584   'type' => '128',
35585   'block_callback' => '',
35586   'description' => '',
35587   'position' => '',
35588   'weight' => '0',
35589   'file' => 'modules/system/system.admin.inc',
35590 ))
35591 ->values(array(
35592   'path' => 'admin/build/themes/settings/global',
35593   'load_functions' => '',
35594   'to_arg_functions' => '',
35595   'access_callback' => 'user_access',
35596   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35597   'page_callback' => 'drupal_get_form',
35598   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
35599   'fit' => '31',
35600   'number_parts' => '5',
35601   'tab_parent' => 'admin/build/themes/settings',
35602   'tab_root' => 'admin/build/themes',
35603   'title' => 'Global settings',
35604   'title_callback' => 't',
35605   'title_arguments' => '',
35606   'type' => '136',
35607   'block_callback' => '',
35608   'description' => '',
35609   'position' => '',
35610   'weight' => '-1',
35611   'file' => 'modules/system/system.admin.inc',
35612 ))
35613 ->values(array(
35614   'path' => 'admin/build/themes/settings/marvin',
35615   'load_functions' => '',
35616   'to_arg_functions' => '',
35617   'access_callback' => '_system_themes_access',
35618   '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";}}',
35619   'page_callback' => 'drupal_get_form',
35620   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
35621   'fit' => '31',
35622   'number_parts' => '5',
35623   'tab_parent' => 'admin/build/themes/settings',
35624   'tab_root' => 'admin/build/themes',
35625   'title' => 'Marvin',
35626   'title_callback' => 't',
35627   'title_arguments' => '',
35628   'type' => '128',
35629   'block_callback' => '',
35630   'description' => '',
35631   'position' => '',
35632   'weight' => '0',
35633   'file' => 'modules/system/system.admin.inc',
35634 ))
35635 ->values(array(
35636   'path' => 'admin/build/themes/settings/minnelli',
35637   'load_functions' => '',
35638   'to_arg_functions' => '',
35639   'access_callback' => '_system_themes_access',
35640   '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";}}',
35641   'page_callback' => 'drupal_get_form',
35642   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
35643   'fit' => '31',
35644   'number_parts' => '5',
35645   'tab_parent' => 'admin/build/themes/settings',
35646   'tab_root' => 'admin/build/themes',
35647   'title' => 'Minnelli',
35648   'title_callback' => 't',
35649   'title_arguments' => '',
35650   'type' => '128',
35651   'block_callback' => '',
35652   'description' => '',
35653   'position' => '',
35654   'weight' => '0',
35655   'file' => 'modules/system/system.admin.inc',
35656 ))
35657 ->values(array(
35658   'path' => 'admin/build/themes/settings/pushbutton',
35659   'load_functions' => '',
35660   'to_arg_functions' => '',
35661   'access_callback' => '_system_themes_access',
35662   '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";}}',
35663   'page_callback' => 'drupal_get_form',
35664   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
35665   'fit' => '31',
35666   'number_parts' => '5',
35667   'tab_parent' => 'admin/build/themes/settings',
35668   'tab_root' => 'admin/build/themes',
35669   'title' => 'Pushbutton',
35670   'title_callback' => 't',
35671   'title_arguments' => '',
35672   'type' => '128',
35673   'block_callback' => '',
35674   'description' => '',
35675   'position' => '',
35676   'weight' => '0',
35677   'file' => 'modules/system/system.admin.inc',
35678 ))
35679 ->values(array(
35680   'path' => 'admin/build/translate',
35681   'load_functions' => '',
35682   'to_arg_functions' => '',
35683   'access_callback' => 'user_access',
35684   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35685   'page_callback' => 'locale_inc_callback',
35686   'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
35687   'fit' => '7',
35688   'number_parts' => '3',
35689   'tab_parent' => '',
35690   'tab_root' => 'admin/build/translate',
35691   'title' => 'Translate interface',
35692   'title_callback' => 't',
35693   'title_arguments' => '',
35694   'type' => '6',
35695   'block_callback' => '',
35696   'description' => 'Translate the built in interface and optionally other text.',
35697   'position' => '',
35698   'weight' => '0',
35699   'file' => '',
35700 ))
35701 ->values(array(
35702   'path' => 'admin/build/translate/delete/%',
35703   'load_functions' => 'a:1:{i:4;N;}',
35704   'to_arg_functions' => '',
35705   'access_callback' => 'user_access',
35706   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35707   'page_callback' => 'locale_inc_callback',
35708   'page_arguments' => 'a:2:{i:0;s:28:"locale_translate_delete_page";i:1;i:4;}',
35709   'fit' => '30',
35710   'number_parts' => '5',
35711   'tab_parent' => '',
35712   'tab_root' => 'admin/build/translate/delete/%',
35713   'title' => 'Delete string',
35714   'title_callback' => 't',
35715   'title_arguments' => '',
35716   'type' => '4',
35717   'block_callback' => '',
35718   'description' => '',
35719   'position' => '',
35720   'weight' => '0',
35721   'file' => '',
35722 ))
35723 ->values(array(
35724   'path' => 'admin/build/translate/edit/%',
35725   'load_functions' => 'a:1:{i:4;N;}',
35726   'to_arg_functions' => '',
35727   'access_callback' => 'user_access',
35728   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35729   'page_callback' => 'locale_inc_callback',
35730   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_translate_edit_form";i:2;i:4;}',
35731   'fit' => '30',
35732   'number_parts' => '5',
35733   'tab_parent' => '',
35734   'tab_root' => 'admin/build/translate/edit/%',
35735   'title' => 'Edit string',
35736   'title_callback' => 't',
35737   'title_arguments' => '',
35738   'type' => '4',
35739   'block_callback' => '',
35740   'description' => '',
35741   'position' => '',
35742   'weight' => '0',
35743   'file' => '',
35744 ))
35745 ->values(array(
35746   'path' => 'admin/build/translate/export',
35747   'load_functions' => '',
35748   'to_arg_functions' => '',
35749   'access_callback' => 'user_access',
35750   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35751   'page_callback' => 'locale_inc_callback',
35752   'page_arguments' => 'a:1:{i:0;s:30:"locale_translate_export_screen";}',
35753   'fit' => '15',
35754   'number_parts' => '4',
35755   'tab_parent' => 'admin/build/translate',
35756   'tab_root' => 'admin/build/translate',
35757   'title' => 'Export',
35758   'title_callback' => 't',
35759   'title_arguments' => '',
35760   'type' => '128',
35761   'block_callback' => '',
35762   'description' => '',
35763   'position' => '',
35764   'weight' => '30',
35765   'file' => '',
35766 ))
35767 ->values(array(
35768   'path' => 'admin/build/translate/import',
35769   'load_functions' => '',
35770   'to_arg_functions' => '',
35771   'access_callback' => 'user_access',
35772   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35773   'page_callback' => 'locale_inc_callback',
35774   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_translate_import_form";}',
35775   'fit' => '15',
35776   'number_parts' => '4',
35777   'tab_parent' => 'admin/build/translate',
35778   'tab_root' => 'admin/build/translate',
35779   'title' => 'Import',
35780   'title_callback' => 't',
35781   'title_arguments' => '',
35782   'type' => '128',
35783   'block_callback' => '',
35784   'description' => '',
35785   'position' => '',
35786   'weight' => '20',
35787   'file' => '',
35788 ))
35789 ->values(array(
35790   'path' => 'admin/build/translate/overview',
35791   'load_functions' => '',
35792   'to_arg_functions' => '',
35793   'access_callback' => 'user_access',
35794   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35795   'page_callback' => 'locale_inc_callback',
35796   'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
35797   'fit' => '15',
35798   'number_parts' => '4',
35799   'tab_parent' => 'admin/build/translate',
35800   'tab_root' => 'admin/build/translate',
35801   'title' => 'Overview',
35802   'title_callback' => 't',
35803   'title_arguments' => '',
35804   'type' => '136',
35805   'block_callback' => '',
35806   'description' => '',
35807   'position' => '',
35808   'weight' => '0',
35809   'file' => '',
35810 ))
35811 ->values(array(
35812   'path' => 'admin/build/translate/refresh',
35813   'load_functions' => '',
35814   'to_arg_functions' => '',
35815   'access_callback' => 'user_access',
35816   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35817   'page_callback' => 'i18nstrings_admin_refresh_page',
35818   'page_arguments' => 'a:0:{}',
35819   'fit' => '15',
35820   'number_parts' => '4',
35821   'tab_parent' => 'admin/build/translate',
35822   'tab_root' => 'admin/build/translate',
35823   'title' => 'Refresh',
35824   'title_callback' => 't',
35825   'title_arguments' => '',
35826   'type' => '128',
35827   'block_callback' => '',
35828   'description' => '',
35829   'position' => '',
35830   'weight' => '20',
35831   'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
35832 ))
35833 ->values(array(
35834   'path' => 'admin/build/translate/search',
35835   'load_functions' => '',
35836   'to_arg_functions' => '',
35837   'access_callback' => 'user_access',
35838   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35839   'page_callback' => 'locale_inc_callback',
35840   'page_arguments' => 'a:1:{i:0;s:28:"locale_translate_seek_screen";}',
35841   'fit' => '15',
35842   'number_parts' => '4',
35843   'tab_parent' => 'admin/build/translate',
35844   'tab_root' => 'admin/build/translate',
35845   'title' => 'Search',
35846   'title_callback' => 't',
35847   'title_arguments' => '',
35848   'type' => '128',
35849   'block_callback' => '',
35850   'description' => '',
35851   'position' => '',
35852   'weight' => '10',
35853   'file' => '',
35854 ))
35855 ->values(array(
35856   'path' => 'admin/by-module',
35857   'load_functions' => '',
35858   'to_arg_functions' => '',
35859   'access_callback' => 'user_access',
35860   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35861   'page_callback' => 'system_admin_by_module',
35862   'page_arguments' => 'a:0:{}',
35863   'fit' => '3',
35864   'number_parts' => '2',
35865   'tab_parent' => 'admin',
35866   'tab_root' => 'admin',
35867   'title' => 'By module',
35868   'title_callback' => 't',
35869   'title_arguments' => '',
35870   'type' => '128',
35871   'block_callback' => '',
35872   'description' => '',
35873   'position' => '',
35874   'weight' => '2',
35875   'file' => 'modules/system/system.admin.inc',
35876 ))
35877 ->values(array(
35878   'path' => 'admin/by-task',
35879   'load_functions' => '',
35880   'to_arg_functions' => '',
35881   'access_callback' => 'user_access',
35882   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35883   'page_callback' => 'system_main_admin_page',
35884   'page_arguments' => 'a:0:{}',
35885   'fit' => '3',
35886   'number_parts' => '2',
35887   'tab_parent' => 'admin',
35888   'tab_root' => 'admin',
35889   'title' => 'By task',
35890   'title_callback' => 't',
35891   'title_arguments' => '',
35892   'type' => '136',
35893   'block_callback' => '',
35894   'description' => '',
35895   'position' => '',
35896   'weight' => '0',
35897   'file' => 'modules/system/system.admin.inc',
35898 ))
35899 ->values(array(
35900   'path' => 'admin/compact',
35901   'load_functions' => '',
35902   'to_arg_functions' => '',
35903   'access_callback' => 'user_access',
35904   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35905   'page_callback' => 'system_admin_compact_page',
35906   'page_arguments' => 'a:0:{}',
35907   'fit' => '3',
35908   'number_parts' => '2',
35909   'tab_parent' => '',
35910   'tab_root' => 'admin/compact',
35911   'title' => 'Compact mode',
35912   'title_callback' => 't',
35913   'title_arguments' => '',
35914   'type' => '4',
35915   'block_callback' => '',
35916   'description' => '',
35917   'position' => '',
35918   'weight' => '0',
35919   'file' => 'modules/system/system.admin.inc',
35920 ))
35921 ->values(array(
35922   'path' => 'admin/content',
35923   'load_functions' => '',
35924   'to_arg_functions' => '',
35925   'access_callback' => 'user_access',
35926   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35927   'page_callback' => 'system_admin_menu_block_page',
35928   'page_arguments' => 'a:0:{}',
35929   'fit' => '3',
35930   'number_parts' => '2',
35931   'tab_parent' => '',
35932   'tab_root' => 'admin/content',
35933   'title' => 'Content management',
35934   'title_callback' => 't',
35935   'title_arguments' => '',
35936   'type' => '6',
35937   'block_callback' => '',
35938   'description' => "Manage your site's content.",
35939   'position' => 'left',
35940   'weight' => '-10',
35941   'file' => 'modules/system/system.admin.inc',
35942 ))
35943 ->values(array(
35944   'path' => 'admin/content/aggregator',
35945   'load_functions' => '',
35946   'to_arg_functions' => '',
35947   'access_callback' => 'user_access',
35948   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35949   'page_callback' => 'aggregator_admin_overview',
35950   'page_arguments' => 'a:0:{}',
35951   'fit' => '7',
35952   'number_parts' => '3',
35953   'tab_parent' => '',
35954   'tab_root' => 'admin/content/aggregator',
35955   'title' => 'Feed aggregator',
35956   'title_callback' => 't',
35957   'title_arguments' => '',
35958   'type' => '6',
35959   'block_callback' => '',
35960   'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
35961   'position' => '',
35962   'weight' => '0',
35963   'file' => 'modules/aggregator/aggregator.admin.inc',
35964 ))
35965 ->values(array(
35966   'path' => 'admin/content/aggregator/add/category',
35967   'load_functions' => '',
35968   'to_arg_functions' => '',
35969   'access_callback' => 'user_access',
35970   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35971   'page_callback' => 'drupal_get_form',
35972   'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}',
35973   'fit' => '31',
35974   'number_parts' => '5',
35975   'tab_parent' => 'admin/content/aggregator',
35976   'tab_root' => 'admin/content/aggregator',
35977   'title' => 'Add category',
35978   'title_callback' => 't',
35979   'title_arguments' => '',
35980   'type' => '128',
35981   'block_callback' => '',
35982   'description' => '',
35983   'position' => '',
35984   'weight' => '0',
35985   'file' => 'modules/aggregator/aggregator.admin.inc',
35986 ))
35987 ->values(array(
35988   'path' => 'admin/content/aggregator/add/feed',
35989   'load_functions' => '',
35990   'to_arg_functions' => '',
35991   'access_callback' => 'user_access',
35992   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
35993   'page_callback' => 'drupal_get_form',
35994   'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}',
35995   'fit' => '31',
35996   'number_parts' => '5',
35997   'tab_parent' => 'admin/content/aggregator',
35998   'tab_root' => 'admin/content/aggregator',
35999   'title' => 'Add feed',
36000   'title_callback' => 't',
36001   'title_arguments' => '',
36002   'type' => '128',
36003   'block_callback' => '',
36004   'description' => '',
36005   'position' => '',
36006   'weight' => '0',
36007   'file' => 'modules/aggregator/aggregator.admin.inc',
36008 ))
36009 ->values(array(
36010   'path' => 'admin/content/aggregator/edit/category/%',
36011   'load_functions' => 'a:1:{i:5;s:24:"aggregator_category_load";}',
36012   'to_arg_functions' => '',
36013   'access_callback' => 'user_access',
36014   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36015   'page_callback' => 'drupal_get_form',
36016   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:5;}',
36017   'fit' => '62',
36018   'number_parts' => '6',
36019   'tab_parent' => '',
36020   'tab_root' => 'admin/content/aggregator/edit/category/%',
36021   'title' => 'Edit category',
36022   'title_callback' => 't',
36023   'title_arguments' => '',
36024   'type' => '4',
36025   'block_callback' => '',
36026   'description' => '',
36027   'position' => '',
36028   'weight' => '0',
36029   'file' => 'modules/aggregator/aggregator.admin.inc',
36030 ))
36031 ->values(array(
36032   'path' => 'admin/content/aggregator/edit/feed/%',
36033   'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}',
36034   'to_arg_functions' => '',
36035   'access_callback' => 'user_access',
36036   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36037   'page_callback' => 'drupal_get_form',
36038   'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:5;}',
36039   'fit' => '62',
36040   'number_parts' => '6',
36041   'tab_parent' => '',
36042   'tab_root' => 'admin/content/aggregator/edit/feed/%',
36043   'title' => 'Edit feed',
36044   'title_callback' => 't',
36045   'title_arguments' => '',
36046   'type' => '4',
36047   'block_callback' => '',
36048   'description' => '',
36049   'position' => '',
36050   'weight' => '0',
36051   'file' => 'modules/aggregator/aggregator.admin.inc',
36052 ))
36053 ->values(array(
36054   'path' => 'admin/content/aggregator/list',
36055   'load_functions' => '',
36056   'to_arg_functions' => '',
36057   'access_callback' => 'user_access',
36058   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36059   'page_callback' => 'aggregator_admin_overview',
36060   'page_arguments' => 'a:0:{}',
36061   'fit' => '15',
36062   'number_parts' => '4',
36063   'tab_parent' => 'admin/content/aggregator',
36064   'tab_root' => 'admin/content/aggregator',
36065   'title' => 'List',
36066   'title_callback' => 't',
36067   'title_arguments' => '',
36068   'type' => '136',
36069   'block_callback' => '',
36070   'description' => '',
36071   'position' => '',
36072   'weight' => '-10',
36073   'file' => 'modules/aggregator/aggregator.admin.inc',
36074 ))
36075 ->values(array(
36076   'path' => 'admin/content/aggregator/remove/%',
36077   'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
36078   'to_arg_functions' => '',
36079   'access_callback' => 'user_access',
36080   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36081   'page_callback' => 'drupal_get_form',
36082   'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:4;}',
36083   'fit' => '30',
36084   'number_parts' => '5',
36085   'tab_parent' => '',
36086   'tab_root' => 'admin/content/aggregator/remove/%',
36087   'title' => 'Remove items',
36088   'title_callback' => 't',
36089   'title_arguments' => '',
36090   'type' => '4',
36091   'block_callback' => '',
36092   'description' => '',
36093   'position' => '',
36094   'weight' => '0',
36095   'file' => 'modules/aggregator/aggregator.admin.inc',
36096 ))
36097 ->values(array(
36098   'path' => 'admin/content/aggregator/settings',
36099   'load_functions' => '',
36100   'to_arg_functions' => '',
36101   'access_callback' => 'user_access',
36102   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36103   'page_callback' => 'drupal_get_form',
36104   'page_arguments' => 'a:1:{i:0;s:25:"aggregator_admin_settings";}',
36105   'fit' => '15',
36106   'number_parts' => '4',
36107   'tab_parent' => 'admin/content/aggregator',
36108   'tab_root' => 'admin/content/aggregator',
36109   'title' => 'Settings',
36110   'title_callback' => 't',
36111   'title_arguments' => '',
36112   'type' => '128',
36113   'block_callback' => '',
36114   'description' => '',
36115   'position' => '',
36116   'weight' => '10',
36117   'file' => 'modules/aggregator/aggregator.admin.inc',
36118 ))
36119 ->values(array(
36120   'path' => 'admin/content/aggregator/update/%',
36121   'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
36122   'to_arg_functions' => '',
36123   'access_callback' => 'user_access',
36124   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36125   'page_callback' => 'aggregator_admin_refresh_feed',
36126   'page_arguments' => 'a:1:{i:0;i:4;}',
36127   'fit' => '30',
36128   'number_parts' => '5',
36129   'tab_parent' => '',
36130   'tab_root' => 'admin/content/aggregator/update/%',
36131   'title' => 'Update items',
36132   'title_callback' => 't',
36133   'title_arguments' => '',
36134   'type' => '4',
36135   'block_callback' => '',
36136   'description' => '',
36137   'position' => '',
36138   'weight' => '0',
36139   'file' => 'modules/aggregator/aggregator.admin.inc',
36140 ))
36141 ->values(array(
36142   'path' => 'admin/content/book',
36143   'load_functions' => '',
36144   'to_arg_functions' => '',
36145   'access_callback' => 'user_access',
36146   'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
36147   'page_callback' => 'book_admin_overview',
36148   'page_arguments' => 'a:0:{}',
36149   'fit' => '7',
36150   'number_parts' => '3',
36151   'tab_parent' => '',
36152   'tab_root' => 'admin/content/book',
36153   'title' => 'Books',
36154   'title_callback' => 't',
36155   'title_arguments' => '',
36156   'type' => '6',
36157   'block_callback' => '',
36158   'description' => "Manage your site's book outlines.",
36159   'position' => '',
36160   'weight' => '0',
36161   'file' => 'modules/book/book.admin.inc',
36162 ))
36163 ->values(array(
36164   'path' => 'admin/content/book/%',
36165   'load_functions' => 'a:1:{i:3;s:9:"node_load";}',
36166   'to_arg_functions' => '',
36167   'access_callback' => '_book_outline_access',
36168   'access_arguments' => 'a:1:{i:0;i:3;}',
36169   'page_callback' => 'drupal_get_form',
36170   'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}',
36171   'fit' => '14',
36172   'number_parts' => '4',
36173   'tab_parent' => '',
36174   'tab_root' => 'admin/content/book/%',
36175   'title' => 'Re-order book pages and change titles',
36176   'title_callback' => 't',
36177   'title_arguments' => '',
36178   'type' => '4',
36179   'block_callback' => '',
36180   'description' => '',
36181   'position' => '',
36182   'weight' => '0',
36183   'file' => 'modules/book/book.admin.inc',
36184 ))
36185 ->values(array(
36186   'path' => 'admin/content/book/list',
36187   'load_functions' => '',
36188   'to_arg_functions' => '',
36189   'access_callback' => 'user_access',
36190   'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
36191   'page_callback' => 'book_admin_overview',
36192   'page_arguments' => 'a:0:{}',
36193   'fit' => '15',
36194   'number_parts' => '4',
36195   'tab_parent' => 'admin/content/book',
36196   'tab_root' => 'admin/content/book',
36197   'title' => 'List',
36198   'title_callback' => 't',
36199   'title_arguments' => '',
36200   'type' => '136',
36201   'block_callback' => '',
36202   'description' => '',
36203   'position' => '',
36204   'weight' => '0',
36205   'file' => 'modules/book/book.admin.inc',
36206 ))
36207 ->values(array(
36208   'path' => 'admin/content/book/settings',
36209   'load_functions' => '',
36210   'to_arg_functions' => '',
36211   'access_callback' => 'user_access',
36212   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
36213   'page_callback' => 'drupal_get_form',
36214   'page_arguments' => 'a:1:{i:0;s:19:"book_admin_settings";}',
36215   'fit' => '15',
36216   'number_parts' => '4',
36217   'tab_parent' => 'admin/content/book',
36218   'tab_root' => 'admin/content/book',
36219   'title' => 'Settings',
36220   'title_callback' => 't',
36221   'title_arguments' => '',
36222   'type' => '128',
36223   'block_callback' => '',
36224   'description' => '',
36225   'position' => '',
36226   'weight' => '8',
36227   'file' => 'modules/book/book.admin.inc',
36228 ))
36229 ->values(array(
36230   'path' => 'admin/content/comment',
36231   'load_functions' => '',
36232   'to_arg_functions' => '',
36233   'access_callback' => 'user_access',
36234   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
36235   'page_callback' => 'comment_admin',
36236   'page_arguments' => 'a:0:{}',
36237   'fit' => '7',
36238   'number_parts' => '3',
36239   'tab_parent' => '',
36240   'tab_root' => 'admin/content/comment',
36241   'title' => 'Comments',
36242   'title_callback' => 't',
36243   'title_arguments' => '',
36244   'type' => '6',
36245   'block_callback' => '',
36246   'description' => 'List and edit site comments and the comment moderation queue.',
36247   'position' => '',
36248   'weight' => '0',
36249   'file' => 'modules/comment/comment.admin.inc',
36250 ))
36251 ->values(array(
36252   'path' => 'admin/content/comment/approval',
36253   'load_functions' => '',
36254   'to_arg_functions' => '',
36255   'access_callback' => 'user_access',
36256   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
36257   'page_callback' => 'comment_admin',
36258   'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
36259   'fit' => '15',
36260   'number_parts' => '4',
36261   'tab_parent' => 'admin/content/comment',
36262   'tab_root' => 'admin/content/comment',
36263   'title' => 'Approval queue',
36264   'title_callback' => 't',
36265   'title_arguments' => '',
36266   'type' => '128',
36267   'block_callback' => '',
36268   'description' => '',
36269   'position' => '',
36270   'weight' => '0',
36271   'file' => 'modules/comment/comment.admin.inc',
36272 ))
36273 ->values(array(
36274   'path' => 'admin/content/comment/new',
36275   'load_functions' => '',
36276   'to_arg_functions' => '',
36277   'access_callback' => 'user_access',
36278   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
36279   'page_callback' => 'comment_admin',
36280   'page_arguments' => 'a:0:{}',
36281   'fit' => '15',
36282   'number_parts' => '4',
36283   'tab_parent' => 'admin/content/comment',
36284   'tab_root' => 'admin/content/comment',
36285   'title' => 'Published comments',
36286   'title_callback' => 't',
36287   'title_arguments' => '',
36288   'type' => '136',
36289   'block_callback' => '',
36290   'description' => '',
36291   'position' => '',
36292   'weight' => '-10',
36293   'file' => 'modules/comment/comment.admin.inc',
36294 ))
36295 ->values(array(
36296   'path' => 'admin/content/forum',
36297   'load_functions' => '',
36298   'to_arg_functions' => '',
36299   'access_callback' => 'user_access',
36300   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36301   'page_callback' => 'drupal_get_form',
36302   'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
36303   'fit' => '7',
36304   'number_parts' => '3',
36305   'tab_parent' => '',
36306   'tab_root' => 'admin/content/forum',
36307   'title' => 'Forums',
36308   'title_callback' => 't',
36309   'title_arguments' => '',
36310   'type' => '6',
36311   'block_callback' => '',
36312   'description' => 'Control forums and their hierarchy and change forum settings.',
36313   'position' => '',
36314   'weight' => '0',
36315   'file' => 'modules/forum/forum.admin.inc',
36316 ))
36317 ->values(array(
36318   'path' => 'admin/content/forum/add/container',
36319   'load_functions' => '',
36320   'to_arg_functions' => '',
36321   'access_callback' => 'user_access',
36322   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36323   'page_callback' => 'forum_form_main',
36324   'page_arguments' => 'a:1:{i:0;s:9:"container";}',
36325   'fit' => '31',
36326   'number_parts' => '5',
36327   'tab_parent' => 'admin/content/forum',
36328   'tab_root' => 'admin/content/forum',
36329   'title' => 'Add container',
36330   'title_callback' => 't',
36331   'title_arguments' => '',
36332   'type' => '128',
36333   'block_callback' => '',
36334   'description' => '',
36335   'position' => '',
36336   'weight' => '0',
36337   'file' => 'modules/forum/forum.admin.inc',
36338 ))
36339 ->values(array(
36340   'path' => 'admin/content/forum/add/forum',
36341   'load_functions' => '',
36342   'to_arg_functions' => '',
36343   'access_callback' => 'user_access',
36344   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36345   'page_callback' => 'forum_form_main',
36346   'page_arguments' => 'a:1:{i:0;s:5:"forum";}',
36347   'fit' => '31',
36348   'number_parts' => '5',
36349   'tab_parent' => 'admin/content/forum',
36350   'tab_root' => 'admin/content/forum',
36351   'title' => 'Add forum',
36352   'title_callback' => 't',
36353   'title_arguments' => '',
36354   'type' => '128',
36355   'block_callback' => '',
36356   'description' => '',
36357   'position' => '',
36358   'weight' => '0',
36359   'file' => 'modules/forum/forum.admin.inc',
36360 ))
36361 ->values(array(
36362   'path' => 'admin/content/forum/edit/%',
36363   'load_functions' => 'a:1:{i:4;s:15:"forum_term_load";}',
36364   'to_arg_functions' => '',
36365   'access_callback' => 'user_access',
36366   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36367   'page_callback' => 'forum_form_main',
36368   'page_arguments' => 'a:0:{}',
36369   'fit' => '30',
36370   'number_parts' => '5',
36371   'tab_parent' => '',
36372   'tab_root' => 'admin/content/forum/edit/%',
36373   'title' => '',
36374   'title_callback' => 't',
36375   'title_arguments' => '',
36376   'type' => '4',
36377   'block_callback' => '',
36378   'description' => '',
36379   'position' => '',
36380   'weight' => '0',
36381   'file' => 'modules/forum/forum.admin.inc',
36382 ))
36383 ->values(array(
36384   'path' => 'admin/content/forum/edit/container/%',
36385   'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
36386   'to_arg_functions' => '',
36387   'access_callback' => 'user_access',
36388   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36389   'page_callback' => 'forum_form_main',
36390   'page_arguments' => 'a:2:{i:0;s:9:"container";i:1;i:5;}',
36391   'fit' => '62',
36392   'number_parts' => '6',
36393   'tab_parent' => '',
36394   'tab_root' => 'admin/content/forum/edit/container/%',
36395   'title' => 'Edit container',
36396   'title_callback' => 't',
36397   'title_arguments' => '',
36398   'type' => '4',
36399   'block_callback' => '',
36400   'description' => '',
36401   'position' => '',
36402   'weight' => '0',
36403   'file' => 'modules/forum/forum.admin.inc',
36404 ))
36405 ->values(array(
36406   'path' => 'admin/content/forum/edit/forum/%',
36407   'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
36408   'to_arg_functions' => '',
36409   'access_callback' => 'user_access',
36410   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36411   'page_callback' => 'forum_form_main',
36412   'page_arguments' => 'a:2:{i:0;s:5:"forum";i:1;i:5;}',
36413   'fit' => '62',
36414   'number_parts' => '6',
36415   'tab_parent' => '',
36416   'tab_root' => 'admin/content/forum/edit/forum/%',
36417   'title' => 'Edit forum',
36418   'title_callback' => 't',
36419   'title_arguments' => '',
36420   'type' => '4',
36421   'block_callback' => '',
36422   'description' => '',
36423   'position' => '',
36424   'weight' => '0',
36425   'file' => 'modules/forum/forum.admin.inc',
36426 ))
36427 ->values(array(
36428   'path' => 'admin/content/forum/list',
36429   'load_functions' => '',
36430   'to_arg_functions' => '',
36431   'access_callback' => 'user_access',
36432   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36433   'page_callback' => 'drupal_get_form',
36434   'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
36435   'fit' => '15',
36436   'number_parts' => '4',
36437   'tab_parent' => 'admin/content/forum',
36438   'tab_root' => 'admin/content/forum',
36439   'title' => 'List',
36440   'title_callback' => 't',
36441   'title_arguments' => '',
36442   'type' => '136',
36443   'block_callback' => '',
36444   'description' => '',
36445   'position' => '',
36446   'weight' => '-10',
36447   'file' => 'modules/forum/forum.admin.inc',
36448 ))
36449 ->values(array(
36450   'path' => 'admin/content/forum/settings',
36451   'load_functions' => '',
36452   'to_arg_functions' => '',
36453   'access_callback' => 'user_access',
36454   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36455   'page_callback' => 'drupal_get_form',
36456   'page_arguments' => 'a:1:{i:0;s:20:"forum_admin_settings";}',
36457   'fit' => '15',
36458   'number_parts' => '4',
36459   'tab_parent' => 'admin/content/forum',
36460   'tab_root' => 'admin/content/forum',
36461   'title' => 'Settings',
36462   'title_callback' => 't',
36463   'title_arguments' => '',
36464   'type' => '128',
36465   'block_callback' => '',
36466   'description' => '',
36467   'position' => '',
36468   'weight' => '5',
36469   'file' => 'modules/forum/forum.admin.inc',
36470 ))
36471 ->values(array(
36472   'path' => 'admin/content/node',
36473   'load_functions' => '',
36474   'to_arg_functions' => '',
36475   'access_callback' => 'user_access',
36476   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
36477   'page_callback' => 'drupal_get_form',
36478   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
36479   'fit' => '7',
36480   'number_parts' => '3',
36481   'tab_parent' => '',
36482   'tab_root' => 'admin/content/node',
36483   'title' => 'Content',
36484   'title_callback' => 't',
36485   'title_arguments' => '',
36486   'type' => '6',
36487   'block_callback' => '',
36488   'description' => "View, edit, and delete your site's content.",
36489   'position' => '',
36490   'weight' => '0',
36491   'file' => 'modules/node/node.admin.inc',
36492 ))
36493 ->values(array(
36494   'path' => 'admin/content/node-settings',
36495   'load_functions' => '',
36496   'to_arg_functions' => '',
36497   'access_callback' => 'user_access',
36498   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
36499   'page_callback' => 'drupal_get_form',
36500   'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
36501   'fit' => '7',
36502   'number_parts' => '3',
36503   'tab_parent' => '',
36504   'tab_root' => 'admin/content/node-settings',
36505   'title' => 'Post settings',
36506   'title_callback' => 't',
36507   'title_arguments' => '',
36508   'type' => '6',
36509   'block_callback' => '',
36510   'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
36511   'position' => '',
36512   'weight' => '0',
36513   'file' => 'modules/node/node.admin.inc',
36514 ))
36515 ->values(array(
36516   'path' => 'admin/content/node-settings/rebuild',
36517   'load_functions' => '',
36518   'to_arg_functions' => '',
36519   'access_callback' => 'user_access',
36520   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
36521   'page_callback' => 'drupal_get_form',
36522   'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
36523   'fit' => '15',
36524   'number_parts' => '4',
36525   'tab_parent' => '',
36526   'tab_root' => 'admin/content/node-settings/rebuild',
36527   'title' => 'Rebuild permissions',
36528   'title_callback' => 't',
36529   'title_arguments' => '',
36530   'type' => '4',
36531   'block_callback' => '',
36532   'description' => '',
36533   'position' => '',
36534   'weight' => '0',
36535   'file' => 'modules/node/node.admin.inc',
36536 ))
36537 ->values(array(
36538   'path' => 'admin/content/node-type/article',
36539   'load_functions' => '',
36540   'to_arg_functions' => '',
36541   'access_callback' => 'user_access',
36542   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36543   'page_callback' => 'drupal_get_form',
36544   '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";}}',
36545   'fit' => '15',
36546   'number_parts' => '4',
36547   'tab_parent' => '',
36548   'tab_root' => 'admin/content/node-type/article',
36549   'title' => 'Article',
36550   'title_callback' => 't',
36551   'title_arguments' => '',
36552   'type' => '4',
36553   'block_callback' => '',
36554   'description' => '',
36555   'position' => '',
36556   'weight' => '0',
36557   'file' => 'modules/node/content_types.inc',
36558 ))
36559 ->values(array(
36560   'path' => 'admin/content/node-type/article/delete',
36561   'load_functions' => '',
36562   'to_arg_functions' => '',
36563   'access_callback' => 'user_access',
36564   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36565   'page_callback' => 'drupal_get_form',
36566   '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";}}',
36567   'fit' => '31',
36568   'number_parts' => '5',
36569   'tab_parent' => '',
36570   'tab_root' => 'admin/content/node-type/article/delete',
36571   'title' => 'Delete',
36572   'title_callback' => 't',
36573   'title_arguments' => '',
36574   'type' => '4',
36575   'block_callback' => '',
36576   'description' => '',
36577   'position' => '',
36578   'weight' => '0',
36579   'file' => 'modules/node/content_types.inc',
36580 ))
36581 ->values(array(
36582   'path' => 'admin/content/node-type/article/display',
36583   'load_functions' => '',
36584   'to_arg_functions' => '',
36585   'access_callback' => 'user_access',
36586   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36587   'page_callback' => 'drupal_get_form',
36588   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";}',
36589   'fit' => '31',
36590   'number_parts' => '5',
36591   'tab_parent' => 'admin/content/node-type/article',
36592   'tab_root' => 'admin/content/node-type/article',
36593   'title' => 'Display fields',
36594   'title_callback' => 't',
36595   'title_arguments' => '',
36596   'type' => '128',
36597   'block_callback' => '',
36598   'description' => '',
36599   'position' => '',
36600   'weight' => '2',
36601   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36602 ))
36603 ->values(array(
36604   'path' => 'admin/content/node-type/article/display/basic',
36605   'load_functions' => '',
36606   'to_arg_functions' => '',
36607   'access_callback' => 'user_access',
36608   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36609   'page_callback' => 'drupal_get_form',
36610   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"basic";}',
36611   'fit' => '63',
36612   'number_parts' => '6',
36613   'tab_parent' => 'admin/content/node-type/article/display',
36614   'tab_root' => 'admin/content/node-type/article',
36615   'title' => 'Basic',
36616   'title_callback' => 't',
36617   'title_arguments' => '',
36618   'type' => '136',
36619   'block_callback' => '',
36620   'description' => '',
36621   'position' => '',
36622   'weight' => '0',
36623   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36624 ))
36625 ->values(array(
36626   'path' => 'admin/content/node-type/article/display/print',
36627   'load_functions' => '',
36628   'to_arg_functions' => '',
36629   'access_callback' => 'user_access',
36630   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36631   'page_callback' => 'drupal_get_form',
36632   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"print";}',
36633   'fit' => '63',
36634   'number_parts' => '6',
36635   'tab_parent' => 'admin/content/node-type/article/display',
36636   'tab_root' => 'admin/content/node-type/article',
36637   'title' => 'Print',
36638   'title_callback' => 't',
36639   'title_arguments' => '',
36640   'type' => '128',
36641   'block_callback' => '',
36642   'description' => '',
36643   'position' => '',
36644   'weight' => '1',
36645   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36646 ))
36647 ->values(array(
36648   'path' => 'admin/content/node-type/article/display/rss',
36649   'load_functions' => '',
36650   'to_arg_functions' => '',
36651   'access_callback' => 'user_access',
36652   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36653   'page_callback' => 'drupal_get_form',
36654   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:3:"rss";}',
36655   'fit' => '63',
36656   'number_parts' => '6',
36657   'tab_parent' => 'admin/content/node-type/article/display',
36658   'tab_root' => 'admin/content/node-type/article',
36659   'title' => 'RSS',
36660   'title_callback' => 't',
36661   'title_arguments' => '',
36662   'type' => '128',
36663   'block_callback' => '',
36664   'description' => '',
36665   'position' => '',
36666   'weight' => '1',
36667   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36668 ))
36669 ->values(array(
36670   'path' => 'admin/content/node-type/article/edit',
36671   'load_functions' => '',
36672   'to_arg_functions' => '',
36673   'access_callback' => 'user_access',
36674   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36675   'page_callback' => 'drupal_get_form',
36676   '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";}}',
36677   'fit' => '31',
36678   'number_parts' => '5',
36679   'tab_parent' => 'admin/content/node-type/article',
36680   'tab_root' => 'admin/content/node-type/article',
36681   'title' => 'Edit',
36682   'title_callback' => 't',
36683   'title_arguments' => '',
36684   'type' => '136',
36685   'block_callback' => '',
36686   'description' => '',
36687   'position' => '',
36688   'weight' => '0',
36689   'file' => 'modules/node/content_types.inc',
36690 ))
36691 ->values(array(
36692   'path' => 'admin/content/node-type/article/fields',
36693   'load_functions' => '',
36694   'to_arg_functions' => '',
36695   'access_callback' => 'user_access',
36696   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36697   'page_callback' => 'drupal_get_form',
36698   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"article";}',
36699   'fit' => '31',
36700   'number_parts' => '5',
36701   'tab_parent' => 'admin/content/node-type/article',
36702   'tab_root' => 'admin/content/node-type/article',
36703   'title' => 'Manage fields',
36704   'title_callback' => 't',
36705   'title_arguments' => '',
36706   'type' => '128',
36707   'block_callback' => '',
36708   'description' => '',
36709   'position' => '',
36710   'weight' => '1',
36711   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36712 ))
36713 ->values(array(
36714   'path' => 'admin/content/node-type/company',
36715   'load_functions' => '',
36716   'to_arg_functions' => '',
36717   'access_callback' => 'user_access',
36718   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36719   'page_callback' => 'drupal_get_form',
36720   '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";}}',
36721   'fit' => '15',
36722   'number_parts' => '4',
36723   'tab_parent' => '',
36724   'tab_root' => 'admin/content/node-type/company',
36725   'title' => 'Company',
36726   'title_callback' => 't',
36727   'title_arguments' => '',
36728   'type' => '4',
36729   'block_callback' => '',
36730   'description' => '',
36731   'position' => '',
36732   'weight' => '0',
36733   'file' => 'modules/node/content_types.inc',
36734 ))
36735 ->values(array(
36736   'path' => 'admin/content/node-type/company/delete',
36737   'load_functions' => '',
36738   'to_arg_functions' => '',
36739   'access_callback' => 'user_access',
36740   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36741   'page_callback' => 'drupal_get_form',
36742   '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";}}',
36743   'fit' => '31',
36744   'number_parts' => '5',
36745   'tab_parent' => '',
36746   'tab_root' => 'admin/content/node-type/company/delete',
36747   'title' => 'Delete',
36748   'title_callback' => 't',
36749   'title_arguments' => '',
36750   'type' => '4',
36751   'block_callback' => '',
36752   'description' => '',
36753   'position' => '',
36754   'weight' => '0',
36755   'file' => 'modules/node/content_types.inc',
36756 ))
36757 ->values(array(
36758   'path' => 'admin/content/node-type/company/display',
36759   'load_functions' => '',
36760   'to_arg_functions' => '',
36761   'access_callback' => 'user_access',
36762   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36763   'page_callback' => 'drupal_get_form',
36764   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";}',
36765   'fit' => '31',
36766   'number_parts' => '5',
36767   'tab_parent' => 'admin/content/node-type/company',
36768   'tab_root' => 'admin/content/node-type/company',
36769   'title' => 'Display fields',
36770   'title_callback' => 't',
36771   'title_arguments' => '',
36772   'type' => '128',
36773   'block_callback' => '',
36774   'description' => '',
36775   'position' => '',
36776   'weight' => '2',
36777   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36778 ))
36779 ->values(array(
36780   'path' => 'admin/content/node-type/company/display/basic',
36781   'load_functions' => '',
36782   'to_arg_functions' => '',
36783   'access_callback' => 'user_access',
36784   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36785   'page_callback' => 'drupal_get_form',
36786   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"basic";}',
36787   'fit' => '63',
36788   'number_parts' => '6',
36789   'tab_parent' => 'admin/content/node-type/company/display',
36790   'tab_root' => 'admin/content/node-type/company',
36791   'title' => 'Basic',
36792   'title_callback' => 't',
36793   'title_arguments' => '',
36794   'type' => '136',
36795   'block_callback' => '',
36796   'description' => '',
36797   'position' => '',
36798   'weight' => '0',
36799   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36800 ))
36801 ->values(array(
36802   'path' => 'admin/content/node-type/company/display/print',
36803   'load_functions' => '',
36804   'to_arg_functions' => '',
36805   'access_callback' => 'user_access',
36806   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36807   'page_callback' => 'drupal_get_form',
36808   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"print";}',
36809   'fit' => '63',
36810   'number_parts' => '6',
36811   'tab_parent' => 'admin/content/node-type/company/display',
36812   'tab_root' => 'admin/content/node-type/company',
36813   'title' => 'Print',
36814   'title_callback' => 't',
36815   'title_arguments' => '',
36816   'type' => '128',
36817   'block_callback' => '',
36818   'description' => '',
36819   'position' => '',
36820   'weight' => '1',
36821   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36822 ))
36823 ->values(array(
36824   'path' => 'admin/content/node-type/company/display/rss',
36825   'load_functions' => '',
36826   'to_arg_functions' => '',
36827   'access_callback' => 'user_access',
36828   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36829   'page_callback' => 'drupal_get_form',
36830   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:3:"rss";}',
36831   'fit' => '63',
36832   'number_parts' => '6',
36833   'tab_parent' => 'admin/content/node-type/company/display',
36834   'tab_root' => 'admin/content/node-type/company',
36835   'title' => 'RSS',
36836   'title_callback' => 't',
36837   'title_arguments' => '',
36838   'type' => '128',
36839   'block_callback' => '',
36840   'description' => '',
36841   'position' => '',
36842   'weight' => '1',
36843   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36844 ))
36845 ->values(array(
36846   'path' => 'admin/content/node-type/company/edit',
36847   'load_functions' => '',
36848   'to_arg_functions' => '',
36849   'access_callback' => 'user_access',
36850   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36851   'page_callback' => 'drupal_get_form',
36852   '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";}}',
36853   'fit' => '31',
36854   'number_parts' => '5',
36855   'tab_parent' => 'admin/content/node-type/company',
36856   'tab_root' => 'admin/content/node-type/company',
36857   'title' => 'Edit',
36858   'title_callback' => 't',
36859   'title_arguments' => '',
36860   'type' => '136',
36861   'block_callback' => '',
36862   'description' => '',
36863   'position' => '',
36864   'weight' => '0',
36865   'file' => 'modules/node/content_types.inc',
36866 ))
36867 ->values(array(
36868   'path' => 'admin/content/node-type/company/fields',
36869   'load_functions' => '',
36870   'to_arg_functions' => '',
36871   'access_callback' => 'user_access',
36872   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36873   'page_callback' => 'drupal_get_form',
36874   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"company";}',
36875   'fit' => '31',
36876   'number_parts' => '5',
36877   'tab_parent' => 'admin/content/node-type/company',
36878   'tab_root' => 'admin/content/node-type/company',
36879   'title' => 'Manage fields',
36880   'title_callback' => 't',
36881   'title_arguments' => '',
36882   'type' => '128',
36883   'block_callback' => '',
36884   'description' => '',
36885   'position' => '',
36886   'weight' => '1',
36887   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36888 ))
36889 ->values(array(
36890   'path' => 'admin/content/node-type/employee',
36891   'load_functions' => '',
36892   'to_arg_functions' => '',
36893   'access_callback' => 'user_access',
36894   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36895   'page_callback' => 'drupal_get_form',
36896   '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";}}',
36897   'fit' => '15',
36898   'number_parts' => '4',
36899   'tab_parent' => '',
36900   'tab_root' => 'admin/content/node-type/employee',
36901   'title' => 'Employee',
36902   'title_callback' => 't',
36903   'title_arguments' => '',
36904   'type' => '4',
36905   'block_callback' => '',
36906   'description' => '',
36907   'position' => '',
36908   'weight' => '0',
36909   'file' => 'modules/node/content_types.inc',
36910 ))
36911 ->values(array(
36912   'path' => 'admin/content/node-type/employee/delete',
36913   'load_functions' => '',
36914   'to_arg_functions' => '',
36915   'access_callback' => 'user_access',
36916   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36917   'page_callback' => 'drupal_get_form',
36918   '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";}}',
36919   'fit' => '31',
36920   'number_parts' => '5',
36921   'tab_parent' => '',
36922   'tab_root' => 'admin/content/node-type/employee/delete',
36923   'title' => 'Delete',
36924   'title_callback' => 't',
36925   'title_arguments' => '',
36926   'type' => '4',
36927   'block_callback' => '',
36928   'description' => '',
36929   'position' => '',
36930   'weight' => '0',
36931   'file' => 'modules/node/content_types.inc',
36932 ))
36933 ->values(array(
36934   'path' => 'admin/content/node-type/employee/display',
36935   'load_functions' => '',
36936   'to_arg_functions' => '',
36937   'access_callback' => 'user_access',
36938   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36939   'page_callback' => 'drupal_get_form',
36940   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";}',
36941   'fit' => '31',
36942   'number_parts' => '5',
36943   'tab_parent' => 'admin/content/node-type/employee',
36944   'tab_root' => 'admin/content/node-type/employee',
36945   'title' => 'Display fields',
36946   'title_callback' => 't',
36947   'title_arguments' => '',
36948   'type' => '128',
36949   'block_callback' => '',
36950   'description' => '',
36951   'position' => '',
36952   'weight' => '2',
36953   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36954 ))
36955 ->values(array(
36956   'path' => 'admin/content/node-type/employee/display/basic',
36957   'load_functions' => '',
36958   'to_arg_functions' => '',
36959   'access_callback' => 'user_access',
36960   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36961   'page_callback' => 'drupal_get_form',
36962   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"basic";}',
36963   'fit' => '63',
36964   'number_parts' => '6',
36965   'tab_parent' => 'admin/content/node-type/employee/display',
36966   'tab_root' => 'admin/content/node-type/employee',
36967   'title' => 'Basic',
36968   'title_callback' => 't',
36969   'title_arguments' => '',
36970   'type' => '136',
36971   'block_callback' => '',
36972   'description' => '',
36973   'position' => '',
36974   'weight' => '0',
36975   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36976 ))
36977 ->values(array(
36978   'path' => 'admin/content/node-type/employee/display/print',
36979   'load_functions' => '',
36980   'to_arg_functions' => '',
36981   'access_callback' => 'user_access',
36982   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36983   'page_callback' => 'drupal_get_form',
36984   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"print";}',
36985   'fit' => '63',
36986   'number_parts' => '6',
36987   'tab_parent' => 'admin/content/node-type/employee/display',
36988   'tab_root' => 'admin/content/node-type/employee',
36989   'title' => 'Print',
36990   'title_callback' => 't',
36991   'title_arguments' => '',
36992   'type' => '128',
36993   'block_callback' => '',
36994   'description' => '',
36995   'position' => '',
36996   'weight' => '1',
36997   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36998 ))
36999 ->values(array(
37000   'path' => 'admin/content/node-type/employee/display/rss',
37001   'load_functions' => '',
37002   'to_arg_functions' => '',
37003   'access_callback' => 'user_access',
37004   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37005   'page_callback' => 'drupal_get_form',
37006   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:3:"rss";}',
37007   'fit' => '63',
37008   'number_parts' => '6',
37009   'tab_parent' => 'admin/content/node-type/employee/display',
37010   'tab_root' => 'admin/content/node-type/employee',
37011   'title' => 'RSS',
37012   'title_callback' => 't',
37013   'title_arguments' => '',
37014   'type' => '128',
37015   'block_callback' => '',
37016   'description' => '',
37017   'position' => '',
37018   'weight' => '1',
37019   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37020 ))
37021 ->values(array(
37022   'path' => 'admin/content/node-type/employee/edit',
37023   'load_functions' => '',
37024   'to_arg_functions' => '',
37025   'access_callback' => 'user_access',
37026   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37027   'page_callback' => 'drupal_get_form',
37028   '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";}}',
37029   'fit' => '31',
37030   'number_parts' => '5',
37031   'tab_parent' => 'admin/content/node-type/employee',
37032   'tab_root' => 'admin/content/node-type/employee',
37033   'title' => 'Edit',
37034   'title_callback' => 't',
37035   'title_arguments' => '',
37036   'type' => '136',
37037   'block_callback' => '',
37038   'description' => '',
37039   'position' => '',
37040   'weight' => '0',
37041   'file' => 'modules/node/content_types.inc',
37042 ))
37043 ->values(array(
37044   'path' => 'admin/content/node-type/employee/fields',
37045   'load_functions' => '',
37046   'to_arg_functions' => '',
37047   'access_callback' => 'user_access',
37048   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37049   'page_callback' => 'drupal_get_form',
37050   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:8:"employee";}',
37051   'fit' => '31',
37052   'number_parts' => '5',
37053   'tab_parent' => 'admin/content/node-type/employee',
37054   'tab_root' => 'admin/content/node-type/employee',
37055   'title' => 'Manage fields',
37056   'title_callback' => 't',
37057   'title_arguments' => '',
37058   'type' => '128',
37059   'block_callback' => '',
37060   'description' => '',
37061   'position' => '',
37062   'weight' => '1',
37063   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37064 ))
37065 ->values(array(
37066   'path' => 'admin/content/node-type/employee/fields/field_commander',
37067   'load_functions' => '',
37068   'to_arg_functions' => '',
37069   'access_callback' => 'user_access',
37070   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37071   'page_callback' => 'drupal_get_form',
37072   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:15:"field_commander";}',
37073   'fit' => '63',
37074   'number_parts' => '6',
37075   'tab_parent' => 'admin/content/node-type/employee/fields',
37076   'tab_root' => 'admin/content/node-type/employee',
37077   'title' => 'Commanding Officer',
37078   'title_callback' => 't',
37079   'title_arguments' => '',
37080   'type' => '128',
37081   'block_callback' => '',
37082   'description' => '',
37083   'position' => '',
37084   'weight' => '0',
37085   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37086 ))
37087 ->values(array(
37088   'path' => 'admin/content/node-type/employee/fields/field_commander/remove',
37089   'load_functions' => '',
37090   'to_arg_functions' => '',
37091   'access_callback' => 'user_access',
37092   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37093   'page_callback' => 'drupal_get_form',
37094   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:8:"employee";i:2;s:15:"field_commander";}',
37095   'fit' => '127',
37096   'number_parts' => '7',
37097   'tab_parent' => '',
37098   'tab_root' => 'admin/content/node-type/employee/fields/field_commander/remove',
37099   'title' => 'Remove field',
37100   'title_callback' => 't',
37101   'title_arguments' => '',
37102   'type' => '4',
37103   'block_callback' => '',
37104   'description' => '',
37105   'position' => '',
37106   'weight' => '0',
37107   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37108 ))
37109 ->values(array(
37110   'path' => 'admin/content/node-type/employee/fields/field_company',
37111   'load_functions' => '',
37112   'to_arg_functions' => '',
37113   'access_callback' => 'user_access',
37114   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37115   'page_callback' => 'drupal_get_form',
37116   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:13:"field_company";}',
37117   'fit' => '63',
37118   'number_parts' => '6',
37119   'tab_parent' => 'admin/content/node-type/employee/fields',
37120   'tab_root' => 'admin/content/node-type/employee',
37121   'title' => 'Company',
37122   'title_callback' => 't',
37123   'title_arguments' => '',
37124   'type' => '128',
37125   'block_callback' => '',
37126   'description' => '',
37127   'position' => '',
37128   'weight' => '0',
37129   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37130 ))
37131 ->values(array(
37132   'path' => 'admin/content/node-type/employee/fields/field_company/remove',
37133   'load_functions' => '',
37134   'to_arg_functions' => '',
37135   'access_callback' => 'user_access',
37136   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37137   'page_callback' => 'drupal_get_form',
37138   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:8:"employee";i:2;s:13:"field_company";}',
37139   'fit' => '127',
37140   'number_parts' => '7',
37141   'tab_parent' => '',
37142   'tab_root' => 'admin/content/node-type/employee/fields/field_company/remove',
37143   'title' => 'Remove field',
37144   'title_callback' => 't',
37145   'title_arguments' => '',
37146   'type' => '4',
37147   'block_callback' => '',
37148   'description' => '',
37149   'position' => '',
37150   'weight' => '0',
37151   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37152 ))
37153 ->values(array(
37154   'path' => 'admin/content/node-type/forum',
37155   'load_functions' => '',
37156   'to_arg_functions' => '',
37157   'access_callback' => 'user_access',
37158   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37159   'page_callback' => 'drupal_get_form',
37160   '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;}}',
37161   'fit' => '15',
37162   'number_parts' => '4',
37163   'tab_parent' => '',
37164   'tab_root' => 'admin/content/node-type/forum',
37165   'title' => 'Forum topic',
37166   'title_callback' => 't',
37167   'title_arguments' => '',
37168   'type' => '4',
37169   'block_callback' => '',
37170   'description' => '',
37171   'position' => '',
37172   'weight' => '0',
37173   'file' => 'modules/node/content_types.inc',
37174 ))
37175 ->values(array(
37176   'path' => 'admin/content/node-type/forum/delete',
37177   'load_functions' => '',
37178   'to_arg_functions' => '',
37179   'access_callback' => 'user_access',
37180   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37181   'page_callback' => 'drupal_get_form',
37182   '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;}}',
37183   'fit' => '31',
37184   'number_parts' => '5',
37185   'tab_parent' => '',
37186   'tab_root' => 'admin/content/node-type/forum/delete',
37187   'title' => 'Delete',
37188   'title_callback' => 't',
37189   'title_arguments' => '',
37190   'type' => '4',
37191   'block_callback' => '',
37192   'description' => '',
37193   'position' => '',
37194   'weight' => '0',
37195   'file' => 'modules/node/content_types.inc',
37196 ))
37197 ->values(array(
37198   'path' => 'admin/content/node-type/forum/display',
37199   'load_functions' => '',
37200   'to_arg_functions' => '',
37201   'access_callback' => 'user_access',
37202   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37203   'page_callback' => 'drupal_get_form',
37204   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";}',
37205   'fit' => '31',
37206   'number_parts' => '5',
37207   'tab_parent' => 'admin/content/node-type/forum',
37208   'tab_root' => 'admin/content/node-type/forum',
37209   'title' => 'Display fields',
37210   'title_callback' => 't',
37211   'title_arguments' => '',
37212   'type' => '128',
37213   'block_callback' => '',
37214   'description' => '',
37215   'position' => '',
37216   'weight' => '2',
37217   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37218 ))
37219 ->values(array(
37220   'path' => 'admin/content/node-type/forum/display/basic',
37221   'load_functions' => '',
37222   'to_arg_functions' => '',
37223   'access_callback' => 'user_access',
37224   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37225   'page_callback' => 'drupal_get_form',
37226   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:5:"basic";}',
37227   'fit' => '63',
37228   'number_parts' => '6',
37229   'tab_parent' => 'admin/content/node-type/forum/display',
37230   'tab_root' => 'admin/content/node-type/forum',
37231   'title' => 'Basic',
37232   'title_callback' => 't',
37233   'title_arguments' => '',
37234   'type' => '136',
37235   'block_callback' => '',
37236   'description' => '',
37237   'position' => '',
37238   'weight' => '0',
37239   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37240 ))
37241 ->values(array(
37242   'path' => 'admin/content/node-type/forum/display/print',
37243   'load_functions' => '',
37244   'to_arg_functions' => '',
37245   'access_callback' => 'user_access',
37246   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37247   'page_callback' => 'drupal_get_form',
37248   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:5:"print";}',
37249   'fit' => '63',
37250   'number_parts' => '6',
37251   'tab_parent' => 'admin/content/node-type/forum/display',
37252   'tab_root' => 'admin/content/node-type/forum',
37253   'title' => 'Print',
37254   'title_callback' => 't',
37255   'title_arguments' => '',
37256   'type' => '128',
37257   'block_callback' => '',
37258   'description' => '',
37259   'position' => '',
37260   'weight' => '1',
37261   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37262 ))
37263 ->values(array(
37264   'path' => 'admin/content/node-type/forum/display/rss',
37265   'load_functions' => '',
37266   'to_arg_functions' => '',
37267   'access_callback' => 'user_access',
37268   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37269   'page_callback' => 'drupal_get_form',
37270   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:3:"rss";}',
37271   'fit' => '63',
37272   'number_parts' => '6',
37273   'tab_parent' => 'admin/content/node-type/forum/display',
37274   'tab_root' => 'admin/content/node-type/forum',
37275   'title' => 'RSS',
37276   'title_callback' => 't',
37277   'title_arguments' => '',
37278   'type' => '128',
37279   'block_callback' => '',
37280   'description' => '',
37281   'position' => '',
37282   'weight' => '1',
37283   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37284 ))
37285 ->values(array(
37286   'path' => 'admin/content/node-type/forum/edit',
37287   'load_functions' => '',
37288   'to_arg_functions' => '',
37289   'access_callback' => 'user_access',
37290   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37291   'page_callback' => 'drupal_get_form',
37292   '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;}}',
37293   'fit' => '31',
37294   'number_parts' => '5',
37295   'tab_parent' => 'admin/content/node-type/forum',
37296   'tab_root' => 'admin/content/node-type/forum',
37297   'title' => 'Edit',
37298   'title_callback' => 't',
37299   'title_arguments' => '',
37300   'type' => '136',
37301   'block_callback' => '',
37302   'description' => '',
37303   'position' => '',
37304   'weight' => '0',
37305   'file' => 'modules/node/content_types.inc',
37306 ))
37307 ->values(array(
37308   'path' => 'admin/content/node-type/forum/fields',
37309   'load_functions' => '',
37310   'to_arg_functions' => '',
37311   'access_callback' => 'user_access',
37312   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37313   'page_callback' => 'drupal_get_form',
37314   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"forum";}',
37315   'fit' => '31',
37316   'number_parts' => '5',
37317   'tab_parent' => 'admin/content/node-type/forum',
37318   'tab_root' => 'admin/content/node-type/forum',
37319   'title' => 'Manage fields',
37320   'title_callback' => 't',
37321   'title_arguments' => '',
37322   'type' => '128',
37323   'block_callback' => '',
37324   'description' => '',
37325   'position' => '',
37326   'weight' => '1',
37327   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37328 ))
37329 ->values(array(
37330   'path' => 'admin/content/node-type/sponsor',
37331   'load_functions' => '',
37332   'to_arg_functions' => '',
37333   'access_callback' => 'user_access',
37334   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37335   'page_callback' => 'drupal_get_form',
37336   '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:"";}}',
37337   'fit' => '15',
37338   'number_parts' => '4',
37339   'tab_parent' => '',
37340   'tab_root' => 'admin/content/node-type/sponsor',
37341   'title' => 'Sponsor',
37342   'title_callback' => 't',
37343   'title_arguments' => '',
37344   'type' => '4',
37345   'block_callback' => '',
37346   'description' => '',
37347   'position' => '',
37348   'weight' => '0',
37349   'file' => 'modules/node/content_types.inc',
37350 ))
37351 ->values(array(
37352   'path' => 'admin/content/node-type/sponsor/delete',
37353   'load_functions' => '',
37354   'to_arg_functions' => '',
37355   'access_callback' => 'user_access',
37356   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37357   'page_callback' => 'drupal_get_form',
37358   '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:"";}}',
37359   'fit' => '31',
37360   'number_parts' => '5',
37361   'tab_parent' => '',
37362   'tab_root' => 'admin/content/node-type/sponsor/delete',
37363   'title' => 'Delete',
37364   'title_callback' => 't',
37365   'title_arguments' => '',
37366   'type' => '4',
37367   'block_callback' => '',
37368   'description' => '',
37369   'position' => '',
37370   'weight' => '0',
37371   'file' => 'modules/node/content_types.inc',
37372 ))
37373 ->values(array(
37374   'path' => 'admin/content/node-type/sponsor/display',
37375   'load_functions' => '',
37376   'to_arg_functions' => '',
37377   'access_callback' => 'user_access',
37378   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37379   'page_callback' => 'drupal_get_form',
37380   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";}',
37381   'fit' => '31',
37382   'number_parts' => '5',
37383   'tab_parent' => 'admin/content/node-type/sponsor',
37384   'tab_root' => 'admin/content/node-type/sponsor',
37385   'title' => 'Display fields',
37386   'title_callback' => 't',
37387   'title_arguments' => '',
37388   'type' => '128',
37389   'block_callback' => '',
37390   'description' => '',
37391   'position' => '',
37392   'weight' => '2',
37393   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37394 ))
37395 ->values(array(
37396   'path' => 'admin/content/node-type/sponsor/display/basic',
37397   'load_functions' => '',
37398   'to_arg_functions' => '',
37399   'access_callback' => 'user_access',
37400   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37401   'page_callback' => 'drupal_get_form',
37402   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"basic";}',
37403   'fit' => '63',
37404   'number_parts' => '6',
37405   'tab_parent' => 'admin/content/node-type/sponsor/display',
37406   'tab_root' => 'admin/content/node-type/sponsor',
37407   'title' => 'Basic',
37408   'title_callback' => 't',
37409   'title_arguments' => '',
37410   'type' => '136',
37411   'block_callback' => '',
37412   'description' => '',
37413   'position' => '',
37414   'weight' => '0',
37415   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37416 ))
37417 ->values(array(
37418   'path' => 'admin/content/node-type/sponsor/display/print',
37419   'load_functions' => '',
37420   'to_arg_functions' => '',
37421   'access_callback' => 'user_access',
37422   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37423   'page_callback' => 'drupal_get_form',
37424   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"print";}',
37425   'fit' => '63',
37426   'number_parts' => '6',
37427   'tab_parent' => 'admin/content/node-type/sponsor/display',
37428   'tab_root' => 'admin/content/node-type/sponsor',
37429   'title' => 'Print',
37430   'title_callback' => 't',
37431   'title_arguments' => '',
37432   'type' => '128',
37433   'block_callback' => '',
37434   'description' => '',
37435   'position' => '',
37436   'weight' => '1',
37437   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37438 ))
37439 ->values(array(
37440   'path' => 'admin/content/node-type/sponsor/display/rss',
37441   'load_functions' => '',
37442   'to_arg_functions' => '',
37443   'access_callback' => 'user_access',
37444   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37445   'page_callback' => 'drupal_get_form',
37446   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:3:"rss";}',
37447   'fit' => '63',
37448   'number_parts' => '6',
37449   'tab_parent' => 'admin/content/node-type/sponsor/display',
37450   'tab_root' => 'admin/content/node-type/sponsor',
37451   'title' => 'RSS',
37452   'title_callback' => 't',
37453   'title_arguments' => '',
37454   'type' => '128',
37455   'block_callback' => '',
37456   'description' => '',
37457   'position' => '',
37458   'weight' => '1',
37459   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37460 ))
37461 ->values(array(
37462   'path' => 'admin/content/node-type/sponsor/edit',
37463   'load_functions' => '',
37464   'to_arg_functions' => '',
37465   'access_callback' => 'user_access',
37466   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37467   'page_callback' => 'drupal_get_form',
37468   '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:"";}}',
37469   'fit' => '31',
37470   'number_parts' => '5',
37471   'tab_parent' => 'admin/content/node-type/sponsor',
37472   'tab_root' => 'admin/content/node-type/sponsor',
37473   'title' => 'Edit',
37474   'title_callback' => 't',
37475   'title_arguments' => '',
37476   'type' => '136',
37477   'block_callback' => '',
37478   'description' => '',
37479   'position' => '',
37480   'weight' => '0',
37481   'file' => 'modules/node/content_types.inc',
37482 ))
37483 ->values(array(
37484   'path' => 'admin/content/node-type/sponsor/fields',
37485   'load_functions' => '',
37486   'to_arg_functions' => '',
37487   'access_callback' => 'user_access',
37488   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37489   'page_callback' => 'drupal_get_form',
37490   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"sponsor";}',
37491   'fit' => '31',
37492   'number_parts' => '5',
37493   'tab_parent' => 'admin/content/node-type/sponsor',
37494   'tab_root' => 'admin/content/node-type/sponsor',
37495   'title' => 'Manage fields',
37496   'title_callback' => 't',
37497   'title_arguments' => '',
37498   'type' => '128',
37499   'block_callback' => '',
37500   'description' => '',
37501   'position' => '',
37502   'weight' => '1',
37503   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37504 ))
37505 ->values(array(
37506   'path' => 'admin/content/node-type/story',
37507   'load_functions' => '',
37508   'to_arg_functions' => '',
37509   'access_callback' => 'user_access',
37510   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37511   'page_callback' => 'drupal_get_form',
37512   '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\";}}",
37513   'fit' => '15',
37514   'number_parts' => '4',
37515   'tab_parent' => '',
37516   'tab_root' => 'admin/content/node-type/story',
37517   'title' => 'Story',
37518   'title_callback' => 't',
37519   'title_arguments' => '',
37520   'type' => '4',
37521   'block_callback' => '',
37522   'description' => '',
37523   'position' => '',
37524   'weight' => '0',
37525   'file' => 'modules/node/content_types.inc',
37526 ))
37527 ->values(array(
37528   'path' => 'admin/content/node-type/story/delete',
37529   'load_functions' => '',
37530   'to_arg_functions' => '',
37531   'access_callback' => 'user_access',
37532   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37533   'page_callback' => 'drupal_get_form',
37534   '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\";}}",
37535   'fit' => '31',
37536   'number_parts' => '5',
37537   'tab_parent' => '',
37538   'tab_root' => 'admin/content/node-type/story/delete',
37539   'title' => 'Delete',
37540   'title_callback' => 't',
37541   'title_arguments' => '',
37542   'type' => '4',
37543   'block_callback' => '',
37544   'description' => '',
37545   'position' => '',
37546   'weight' => '0',
37547   'file' => 'modules/node/content_types.inc',
37548 ))
37549 ->values(array(
37550   'path' => 'admin/content/node-type/story/display',
37551   'load_functions' => '',
37552   'to_arg_functions' => '',
37553   'access_callback' => 'user_access',
37554   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37555   'page_callback' => 'drupal_get_form',
37556   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";}',
37557   'fit' => '31',
37558   'number_parts' => '5',
37559   'tab_parent' => 'admin/content/node-type/story',
37560   'tab_root' => 'admin/content/node-type/story',
37561   'title' => 'Display fields',
37562   'title_callback' => 't',
37563   'title_arguments' => '',
37564   'type' => '128',
37565   'block_callback' => '',
37566   'description' => '',
37567   'position' => '',
37568   'weight' => '2',
37569   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37570 ))
37571 ->values(array(
37572   'path' => 'admin/content/node-type/story/display/basic',
37573   'load_functions' => '',
37574   'to_arg_functions' => '',
37575   'access_callback' => 'user_access',
37576   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37577   'page_callback' => 'drupal_get_form',
37578   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"basic";}',
37579   'fit' => '63',
37580   'number_parts' => '6',
37581   'tab_parent' => 'admin/content/node-type/story/display',
37582   'tab_root' => 'admin/content/node-type/story',
37583   'title' => 'Basic',
37584   'title_callback' => 't',
37585   'title_arguments' => '',
37586   'type' => '136',
37587   'block_callback' => '',
37588   'description' => '',
37589   'position' => '',
37590   'weight' => '0',
37591   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37592 ))
37593 ->values(array(
37594   'path' => 'admin/content/node-type/story/display/print',
37595   'load_functions' => '',
37596   'to_arg_functions' => '',
37597   'access_callback' => 'user_access',
37598   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37599   'page_callback' => 'drupal_get_form',
37600   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"print";}',
37601   'fit' => '63',
37602   'number_parts' => '6',
37603   'tab_parent' => 'admin/content/node-type/story/display',
37604   'tab_root' => 'admin/content/node-type/story',
37605   'title' => 'Print',
37606   'title_callback' => 't',
37607   'title_arguments' => '',
37608   'type' => '128',
37609   'block_callback' => '',
37610   'description' => '',
37611   'position' => '',
37612   'weight' => '1',
37613   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37614 ))
37615 ->values(array(
37616   'path' => 'admin/content/node-type/story/display/rss',
37617   'load_functions' => '',
37618   'to_arg_functions' => '',
37619   'access_callback' => 'user_access',
37620   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37621   'page_callback' => 'drupal_get_form',
37622   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:3:"rss";}',
37623   'fit' => '63',
37624   'number_parts' => '6',
37625   'tab_parent' => 'admin/content/node-type/story/display',
37626   'tab_root' => 'admin/content/node-type/story',
37627   'title' => 'RSS',
37628   'title_callback' => 't',
37629   'title_arguments' => '',
37630   'type' => '128',
37631   'block_callback' => '',
37632   'description' => '',
37633   'position' => '',
37634   'weight' => '1',
37635   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37636 ))
37637 ->values(array(
37638   'path' => 'admin/content/node-type/story/edit',
37639   'load_functions' => '',
37640   'to_arg_functions' => '',
37641   'access_callback' => 'user_access',
37642   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37643   'page_callback' => 'drupal_get_form',
37644   '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\";}}",
37645   'fit' => '31',
37646   'number_parts' => '5',
37647   'tab_parent' => 'admin/content/node-type/story',
37648   'tab_root' => 'admin/content/node-type/story',
37649   'title' => 'Edit',
37650   'title_callback' => 't',
37651   'title_arguments' => '',
37652   'type' => '136',
37653   'block_callback' => '',
37654   'description' => '',
37655   'position' => '',
37656   'weight' => '0',
37657   'file' => 'modules/node/content_types.inc',
37658 ))
37659 ->values(array(
37660   'path' => 'admin/content/node-type/story/fields',
37661   'load_functions' => '',
37662   'to_arg_functions' => '',
37663   'access_callback' => 'user_access',
37664   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37665   'page_callback' => 'drupal_get_form',
37666   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"story";}',
37667   'fit' => '31',
37668   'number_parts' => '5',
37669   'tab_parent' => 'admin/content/node-type/story',
37670   'tab_root' => 'admin/content/node-type/story',
37671   'title' => 'Manage fields',
37672   'title_callback' => 't',
37673   'title_arguments' => '',
37674   'type' => '128',
37675   'block_callback' => '',
37676   'description' => '',
37677   'position' => '',
37678   'weight' => '1',
37679   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37680 ))
37681 ->values(array(
37682   'path' => 'admin/content/node-type/story/fields/field_test',
37683   'load_functions' => '',
37684   'to_arg_functions' => '',
37685   'access_callback' => 'user_access',
37686   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37687   'page_callback' => 'drupal_get_form',
37688   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
37689   'fit' => '63',
37690   'number_parts' => '6',
37691   'tab_parent' => 'admin/content/node-type/story/fields',
37692   'tab_root' => 'admin/content/node-type/story',
37693   'title' => 'Text Field',
37694   'title_callback' => 't',
37695   'title_arguments' => '',
37696   'type' => '128',
37697   'block_callback' => '',
37698   'description' => '',
37699   'position' => '',
37700   'weight' => '0',
37701   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37702 ))
37703 ->values(array(
37704   'path' => 'admin/content/node-type/story/fields/field_test/remove',
37705   'load_functions' => '',
37706   'to_arg_functions' => '',
37707   'access_callback' => 'user_access',
37708   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37709   'page_callback' => 'drupal_get_form',
37710   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
37711   'fit' => '127',
37712   'number_parts' => '7',
37713   'tab_parent' => '',
37714   'tab_root' => 'admin/content/node-type/story/fields/field_test/remove',
37715   'title' => 'Remove field',
37716   'title_callback' => 't',
37717   'title_arguments' => '',
37718   'type' => '4',
37719   'block_callback' => '',
37720   'description' => '',
37721   'position' => '',
37722   'weight' => '0',
37723   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37724 ))
37725 ->values(array(
37726   'path' => 'admin/content/node-type/story/fields/field_test_date',
37727   'load_functions' => '',
37728   'to_arg_functions' => '',
37729   'access_callback' => 'user_access',
37730   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37731   'page_callback' => 'drupal_get_form',
37732   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
37733   'fit' => '63',
37734   'number_parts' => '6',
37735   'tab_parent' => 'admin/content/node-type/story/fields',
37736   'tab_root' => 'admin/content/node-type/story',
37737   'title' => 'Date Field',
37738   'title_callback' => 't',
37739   'title_arguments' => '',
37740   'type' => '128',
37741   'block_callback' => '',
37742   'description' => '',
37743   'position' => '',
37744   'weight' => '0',
37745   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37746 ))
37747 ->values(array(
37748   'path' => 'admin/content/node-type/story/fields/field_test_date/remove',
37749   'load_functions' => '',
37750   'to_arg_functions' => '',
37751   'access_callback' => 'user_access',
37752   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37753   'page_callback' => 'drupal_get_form',
37754   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
37755   'fit' => '127',
37756   'number_parts' => '7',
37757   'tab_parent' => '',
37758   'tab_root' => 'admin/content/node-type/story/fields/field_test_date/remove',
37759   'title' => 'Remove field',
37760   'title_callback' => 't',
37761   'title_arguments' => '',
37762   'type' => '4',
37763   'block_callback' => '',
37764   'description' => '',
37765   'position' => '',
37766   'weight' => '0',
37767   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37768 ))
37769 ->values(array(
37770   'path' => 'admin/content/node-type/story/fields/field_test_datestamp',
37771   'load_functions' => '',
37772   'to_arg_functions' => '',
37773   'access_callback' => 'user_access',
37774   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37775   'page_callback' => 'drupal_get_form',
37776   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
37777   'fit' => '63',
37778   'number_parts' => '6',
37779   'tab_parent' => 'admin/content/node-type/story/fields',
37780   'tab_root' => 'admin/content/node-type/story',
37781   'title' => 'Date Stamp Field',
37782   'title_callback' => 't',
37783   'title_arguments' => '',
37784   'type' => '128',
37785   'block_callback' => '',
37786   'description' => '',
37787   'position' => '',
37788   'weight' => '0',
37789   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37790 ))
37791 ->values(array(
37792   'path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
37793   'load_functions' => '',
37794   'to_arg_functions' => '',
37795   'access_callback' => 'user_access',
37796   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37797   'page_callback' => 'drupal_get_form',
37798   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
37799   'fit' => '127',
37800   'number_parts' => '7',
37801   'tab_parent' => '',
37802   'tab_root' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
37803   'title' => 'Remove field',
37804   'title_callback' => 't',
37805   'title_arguments' => '',
37806   'type' => '4',
37807   'block_callback' => '',
37808   'description' => '',
37809   'position' => '',
37810   'weight' => '0',
37811   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37812 ))
37813 ->values(array(
37814   'path' => 'admin/content/node-type/story/fields/field_test_datetime',
37815   'load_functions' => '',
37816   'to_arg_functions' => '',
37817   'access_callback' => 'user_access',
37818   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37819   'page_callback' => 'drupal_get_form',
37820   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
37821   'fit' => '63',
37822   'number_parts' => '6',
37823   'tab_parent' => 'admin/content/node-type/story/fields',
37824   'tab_root' => 'admin/content/node-type/story',
37825   'title' => 'Datetime Field',
37826   'title_callback' => 't',
37827   'title_arguments' => '',
37828   'type' => '128',
37829   'block_callback' => '',
37830   'description' => '',
37831   'position' => '',
37832   'weight' => '0',
37833   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37834 ))
37835 ->values(array(
37836   'path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
37837   'load_functions' => '',
37838   'to_arg_functions' => '',
37839   'access_callback' => 'user_access',
37840   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37841   'page_callback' => 'drupal_get_form',
37842   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
37843   'fit' => '127',
37844   'number_parts' => '7',
37845   'tab_parent' => '',
37846   'tab_root' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
37847   'title' => 'Remove field',
37848   'title_callback' => 't',
37849   'title_arguments' => '',
37850   'type' => '4',
37851   'block_callback' => '',
37852   'description' => '',
37853   'position' => '',
37854   'weight' => '0',
37855   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37856 ))
37857 ->values(array(
37858   'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons',
37859   'load_functions' => '',
37860   'to_arg_functions' => '',
37861   'access_callback' => 'user_access',
37862   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37863   'page_callback' => 'drupal_get_form',
37864   '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";}',
37865   'fit' => '63',
37866   'number_parts' => '6',
37867   'tab_parent' => 'admin/content/node-type/story/fields',
37868   'tab_root' => 'admin/content/node-type/story',
37869   'title' => 'Decimal Radio Buttons Field',
37870   'title_callback' => 't',
37871   'title_arguments' => '',
37872   'type' => '128',
37873   'block_callback' => '',
37874   'description' => '',
37875   'position' => '',
37876   'weight' => '0',
37877   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37878 ))
37879 ->values(array(
37880   'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
37881   'load_functions' => '',
37882   'to_arg_functions' => '',
37883   'access_callback' => 'user_access',
37884   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37885   'page_callback' => 'drupal_get_form',
37886   '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";}',
37887   'fit' => '127',
37888   'number_parts' => '7',
37889   'tab_parent' => '',
37890   'tab_root' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
37891   'title' => 'Remove field',
37892   'title_callback' => 't',
37893   'title_arguments' => '',
37894   'type' => '4',
37895   'block_callback' => '',
37896   'description' => '',
37897   'position' => '',
37898   'weight' => '0',
37899   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37900 ))
37901 ->values(array(
37902   'path' => 'admin/content/node-type/story/fields/field_test_email',
37903   'load_functions' => '',
37904   'to_arg_functions' => '',
37905   'access_callback' => 'user_access',
37906   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37907   'page_callback' => 'drupal_get_form',
37908   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
37909   'fit' => '63',
37910   'number_parts' => '6',
37911   'tab_parent' => 'admin/content/node-type/story/fields',
37912   'tab_root' => 'admin/content/node-type/story',
37913   'title' => 'Email Field',
37914   'title_callback' => 't',
37915   'title_arguments' => '',
37916   'type' => '128',
37917   'block_callback' => '',
37918   'description' => '',
37919   'position' => '',
37920   'weight' => '0',
37921   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37922 ))
37923 ->values(array(
37924   'path' => 'admin/content/node-type/story/fields/field_test_email/remove',
37925   'load_functions' => '',
37926   'to_arg_functions' => '',
37927   'access_callback' => 'user_access',
37928   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37929   'page_callback' => 'drupal_get_form',
37930   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
37931   'fit' => '127',
37932   'number_parts' => '7',
37933   'tab_parent' => '',
37934   'tab_root' => 'admin/content/node-type/story/fields/field_test_email/remove',
37935   'title' => 'Remove field',
37936   'title_callback' => 't',
37937   'title_arguments' => '',
37938   'type' => '4',
37939   'block_callback' => '',
37940   'description' => '',
37941   'position' => '',
37942   'weight' => '0',
37943   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37944 ))
37945 ->values(array(
37946   'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset',
37947   'load_functions' => '',
37948   'to_arg_functions' => '',
37949   'access_callback' => 'user_access',
37950   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37951   'page_callback' => 'drupal_get_form',
37952   '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";}',
37953   'fit' => '63',
37954   'number_parts' => '6',
37955   'tab_parent' => 'admin/content/node-type/story/fields',
37956   'tab_root' => 'admin/content/node-type/story',
37957   'title' => 'Text Field',
37958   'title_callback' => 't',
37959   'title_arguments' => '',
37960   'type' => '128',
37961   'block_callback' => '',
37962   'description' => '',
37963   'position' => '',
37964   'weight' => '0',
37965   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37966 ))
37967 ->values(array(
37968   'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
37969   'load_functions' => '',
37970   'to_arg_functions' => '',
37971   'access_callback' => 'user_access',
37972   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37973   'page_callback' => 'drupal_get_form',
37974   '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";}',
37975   'fit' => '127',
37976   'number_parts' => '7',
37977   'tab_parent' => '',
37978   'tab_root' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
37979   'title' => 'Remove field',
37980   'title_callback' => 't',
37981   'title_arguments' => '',
37982   'type' => '4',
37983   'block_callback' => '',
37984   'description' => '',
37985   'position' => '',
37986   'weight' => '0',
37987   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37988 ))
37989 ->values(array(
37990   'path' => 'admin/content/node-type/story/fields/field_test_filefield',
37991   'load_functions' => '',
37992   'to_arg_functions' => '',
37993   'access_callback' => 'user_access',
37994   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37995   'page_callback' => 'drupal_get_form',
37996   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:20:"field_test_filefield";}',
37997   'fit' => '63',
37998   'number_parts' => '6',
37999   'tab_parent' => 'admin/content/node-type/story/fields',
38000   'tab_root' => 'admin/content/node-type/story',
38001   'title' => 'File Field',
38002   'title_callback' => 't',
38003   'title_arguments' => '',
38004   'type' => '128',
38005   'block_callback' => '',
38006   'description' => '',
38007   'position' => '',
38008   'weight' => '0',
38009   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38010 ))
38011 ->values(array(
38012   'path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
38013   'load_functions' => '',
38014   'to_arg_functions' => '',
38015   'access_callback' => 'user_access',
38016   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38017   'page_callback' => 'drupal_get_form',
38018   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:20:"field_test_filefield";}',
38019   'fit' => '127',
38020   'number_parts' => '7',
38021   'tab_parent' => '',
38022   'tab_root' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
38023   'title' => 'Remove field',
38024   'title_callback' => 't',
38025   'title_arguments' => '',
38026   'type' => '4',
38027   'block_callback' => '',
38028   'description' => '',
38029   'position' => '',
38030   'weight' => '0',
38031   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38032 ))
38033 ->values(array(
38034   'path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox',
38035   'load_functions' => '',
38036   'to_arg_functions' => '',
38037   'access_callback' => 'user_access',
38038   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38039   'page_callback' => 'drupal_get_form',
38040   '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";}',
38041   'fit' => '63',
38042   'number_parts' => '6',
38043   'tab_parent' => 'admin/content/node-type/story/fields',
38044   'tab_root' => 'admin/content/node-type/story',
38045   'title' => 'Float Single Checkbox Field',
38046   'title_callback' => 't',
38047   'title_arguments' => '',
38048   'type' => '128',
38049   'block_callback' => '',
38050   'description' => '',
38051   'position' => '',
38052   'weight' => '0',
38053   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38054 ))
38055 ->values(array(
38056   'path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
38057   'load_functions' => '',
38058   'to_arg_functions' => '',
38059   'access_callback' => 'user_access',
38060   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38061   'page_callback' => 'drupal_get_form',
38062   '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";}',
38063   'fit' => '127',
38064   'number_parts' => '7',
38065   'tab_parent' => '',
38066   'tab_root' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
38067   'title' => 'Remove field',
38068   'title_callback' => 't',
38069   'title_arguments' => '',
38070   'type' => '4',
38071   'block_callback' => '',
38072   'description' => '',
38073   'position' => '',
38074   'weight' => '0',
38075   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38076 ))
38077 ->values(array(
38078   'path' => 'admin/content/node-type/story/fields/field_test_four',
38079   'load_functions' => '',
38080   'to_arg_functions' => '',
38081   'access_callback' => 'user_access',
38082   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38083   'page_callback' => 'drupal_get_form',
38084   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
38085   'fit' => '63',
38086   'number_parts' => '6',
38087   'tab_parent' => 'admin/content/node-type/story/fields',
38088   'tab_root' => 'admin/content/node-type/story',
38089   'title' => 'Float Field',
38090   'title_callback' => 't',
38091   'title_arguments' => '',
38092   'type' => '128',
38093   'block_callback' => '',
38094   'description' => '',
38095   'position' => '',
38096   'weight' => '0',
38097   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38098 ))
38099 ->values(array(
38100   'path' => 'admin/content/node-type/story/fields/field_test_four/remove',
38101   'load_functions' => '',
38102   'to_arg_functions' => '',
38103   'access_callback' => 'user_access',
38104   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38105   'page_callback' => 'drupal_get_form',
38106   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
38107   'fit' => '127',
38108   'number_parts' => '7',
38109   'tab_parent' => '',
38110   'tab_root' => 'admin/content/node-type/story/fields/field_test_four/remove',
38111   'title' => 'Remove field',
38112   'title_callback' => 't',
38113   'title_arguments' => '',
38114   'type' => '4',
38115   'block_callback' => '',
38116   'description' => '',
38117   'position' => '',
38118   'weight' => '0',
38119   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38120 ))
38121 ->values(array(
38122   'path' => 'admin/content/node-type/story/fields/field_test_identical1',
38123   'load_functions' => '',
38124   'to_arg_functions' => '',
38125   'access_callback' => 'user_access',
38126   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38127   'page_callback' => 'drupal_get_form',
38128   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
38129   'fit' => '63',
38130   'number_parts' => '6',
38131   'tab_parent' => 'admin/content/node-type/story/fields',
38132   'tab_root' => 'admin/content/node-type/story',
38133   'title' => 'Integer Field',
38134   'title_callback' => 't',
38135   'title_arguments' => '',
38136   'type' => '128',
38137   'block_callback' => '',
38138   'description' => '',
38139   'position' => '',
38140   'weight' => '0',
38141   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38142 ))
38143 ->values(array(
38144   'path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
38145   'load_functions' => '',
38146   'to_arg_functions' => '',
38147   'access_callback' => 'user_access',
38148   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38149   'page_callback' => 'drupal_get_form',
38150   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
38151   'fit' => '127',
38152   'number_parts' => '7',
38153   'tab_parent' => '',
38154   'tab_root' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
38155   'title' => 'Remove field',
38156   'title_callback' => 't',
38157   'title_arguments' => '',
38158   'type' => '4',
38159   'block_callback' => '',
38160   'description' => '',
38161   'position' => '',
38162   'weight' => '0',
38163   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38164 ))
38165 ->values(array(
38166   'path' => 'admin/content/node-type/story/fields/field_test_identical2',
38167   'load_functions' => '',
38168   'to_arg_functions' => '',
38169   'access_callback' => 'user_access',
38170   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38171   'page_callback' => 'drupal_get_form',
38172   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
38173   'fit' => '63',
38174   'number_parts' => '6',
38175   'tab_parent' => 'admin/content/node-type/story/fields',
38176   'tab_root' => 'admin/content/node-type/story',
38177   'title' => 'Integer Field',
38178   'title_callback' => 't',
38179   'title_arguments' => '',
38180   'type' => '128',
38181   'block_callback' => '',
38182   'description' => '',
38183   'position' => '',
38184   'weight' => '0',
38185   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38186 ))
38187 ->values(array(
38188   'path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
38189   'load_functions' => '',
38190   'to_arg_functions' => '',
38191   'access_callback' => 'user_access',
38192   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38193   'page_callback' => 'drupal_get_form',
38194   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
38195   'fit' => '127',
38196   'number_parts' => '7',
38197   'tab_parent' => '',
38198   'tab_root' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
38199   'title' => 'Remove field',
38200   'title_callback' => 't',
38201   'title_arguments' => '',
38202   'type' => '4',
38203   'block_callback' => '',
38204   'description' => '',
38205   'position' => '',
38206   'weight' => '0',
38207   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38208 ))
38209 ->values(array(
38210   'path' => 'admin/content/node-type/story/fields/field_test_imagefield',
38211   'load_functions' => '',
38212   'to_arg_functions' => '',
38213   'access_callback' => 'user_access',
38214   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38215   'page_callback' => 'drupal_get_form',
38216   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
38217   'fit' => '63',
38218   'number_parts' => '6',
38219   'tab_parent' => 'admin/content/node-type/story/fields',
38220   'tab_root' => 'admin/content/node-type/story',
38221   'title' => 'Image Field',
38222   'title_callback' => 't',
38223   'title_arguments' => '',
38224   'type' => '128',
38225   'block_callback' => '',
38226   'description' => '',
38227   'position' => '',
38228   'weight' => '0',
38229   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38230 ))
38231 ->values(array(
38232   'path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
38233   'load_functions' => '',
38234   'to_arg_functions' => '',
38235   'access_callback' => 'user_access',
38236   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38237   'page_callback' => 'drupal_get_form',
38238   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
38239   'fit' => '127',
38240   'number_parts' => '7',
38241   'tab_parent' => '',
38242   'tab_root' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
38243   'title' => 'Remove field',
38244   'title_callback' => 't',
38245   'title_arguments' => '',
38246   'type' => '4',
38247   'block_callback' => '',
38248   'description' => '',
38249   'position' => '',
38250   'weight' => '0',
38251   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38252 ))
38253 ->values(array(
38254   'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist',
38255   'load_functions' => '',
38256   'to_arg_functions' => '',
38257   'access_callback' => 'user_access',
38258   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38259   'page_callback' => 'drupal_get_form',
38260   '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";}',
38261   'fit' => '63',
38262   'number_parts' => '6',
38263   'tab_parent' => 'admin/content/node-type/story/fields',
38264   'tab_root' => 'admin/content/node-type/story',
38265   'title' => 'Integer Select List Field',
38266   'title_callback' => 't',
38267   'title_arguments' => '',
38268   'type' => '128',
38269   'block_callback' => '',
38270   'description' => '',
38271   'position' => '',
38272   'weight' => '0',
38273   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38274 ))
38275 ->values(array(
38276   'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
38277   'load_functions' => '',
38278   'to_arg_functions' => '',
38279   'access_callback' => 'user_access',
38280   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38281   'page_callback' => 'drupal_get_form',
38282   '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";}',
38283   'fit' => '127',
38284   'number_parts' => '7',
38285   'tab_parent' => '',
38286   'tab_root' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
38287   'title' => 'Remove field',
38288   'title_callback' => 't',
38289   'title_arguments' => '',
38290   'type' => '4',
38291   'block_callback' => '',
38292   'description' => '',
38293   'position' => '',
38294   'weight' => '0',
38295   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38296 ))
38297 ->values(array(
38298   'path' => 'admin/content/node-type/story/fields/field_test_link',
38299   'load_functions' => '',
38300   'to_arg_functions' => '',
38301   'access_callback' => 'user_access',
38302   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38303   'page_callback' => 'drupal_get_form',
38304   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
38305   'fit' => '63',
38306   'number_parts' => '6',
38307   'tab_parent' => 'admin/content/node-type/story/fields',
38308   'tab_root' => 'admin/content/node-type/story',
38309   'title' => 'Link Field',
38310   'title_callback' => 't',
38311   'title_arguments' => '',
38312   'type' => '128',
38313   'block_callback' => '',
38314   'description' => '',
38315   'position' => '',
38316   'weight' => '0',
38317   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38318 ))
38319 ->values(array(
38320   'path' => 'admin/content/node-type/story/fields/field_test_link/remove',
38321   'load_functions' => '',
38322   'to_arg_functions' => '',
38323   'access_callback' => 'user_access',
38324   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38325   'page_callback' => 'drupal_get_form',
38326   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
38327   'fit' => '127',
38328   'number_parts' => '7',
38329   'tab_parent' => '',
38330   'tab_root' => 'admin/content/node-type/story/fields/field_test_link/remove',
38331   'title' => 'Remove field',
38332   'title_callback' => 't',
38333   'title_arguments' => '',
38334   'type' => '4',
38335   'block_callback' => '',
38336   'description' => '',
38337   'position' => '',
38338   'weight' => '0',
38339   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38340 ))
38341 ->values(array(
38342   'path' => 'admin/content/node-type/story/fields/field_test_phone',
38343   'load_functions' => '',
38344   'to_arg_functions' => '',
38345   'access_callback' => 'user_access',
38346   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38347   'page_callback' => 'drupal_get_form',
38348   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
38349   'fit' => '63',
38350   'number_parts' => '6',
38351   'tab_parent' => 'admin/content/node-type/story/fields',
38352   'tab_root' => 'admin/content/node-type/story',
38353   'title' => 'Phone Field',
38354   'title_callback' => 't',
38355   'title_arguments' => '',
38356   'type' => '128',
38357   'block_callback' => '',
38358   'description' => '',
38359   'position' => '',
38360   'weight' => '0',
38361   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38362 ))
38363 ->values(array(
38364   'path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
38365   'load_functions' => '',
38366   'to_arg_functions' => '',
38367   'access_callback' => 'user_access',
38368   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38369   'page_callback' => 'drupal_get_form',
38370   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
38371   'fit' => '127',
38372   'number_parts' => '7',
38373   'tab_parent' => '',
38374   'tab_root' => 'admin/content/node-type/story/fields/field_test_phone/remove',
38375   'title' => 'Remove field',
38376   'title_callback' => 't',
38377   'title_arguments' => '',
38378   'type' => '4',
38379   'block_callback' => '',
38380   'description' => '',
38381   'position' => '',
38382   'weight' => '0',
38383   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38384 ))
38385 ->values(array(
38386   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox',
38387   'load_functions' => '',
38388   'to_arg_functions' => '',
38389   'access_callback' => 'user_access',
38390   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38391   'page_callback' => 'drupal_get_form',
38392   '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";}',
38393   'fit' => '63',
38394   'number_parts' => '6',
38395   'tab_parent' => 'admin/content/node-type/story/fields',
38396   'tab_root' => 'admin/content/node-type/story',
38397   'title' => 'Text Single Checkbox Field',
38398   'title_callback' => 't',
38399   'title_arguments' => '',
38400   'type' => '128',
38401   'block_callback' => '',
38402   'description' => '',
38403   'position' => '',
38404   'weight' => '0',
38405   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38406 ))
38407 ->values(array(
38408   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
38409   'load_functions' => '',
38410   'to_arg_functions' => '',
38411   'access_callback' => 'user_access',
38412   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38413   'page_callback' => 'drupal_get_form',
38414   '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";}',
38415   'fit' => '127',
38416   'number_parts' => '7',
38417   'tab_parent' => '',
38418   'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
38419   'title' => 'Remove field',
38420   'title_callback' => 't',
38421   'title_arguments' => '',
38422   'type' => '4',
38423   'block_callback' => '',
38424   'description' => '',
38425   'position' => '',
38426   'weight' => '0',
38427   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38428 ))
38429 ->values(array(
38430   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2',
38431   'load_functions' => '',
38432   'to_arg_functions' => '',
38433   'access_callback' => 'user_access',
38434   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38435   'page_callback' => 'drupal_get_form',
38436   '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";}',
38437   'fit' => '63',
38438   'number_parts' => '6',
38439   'tab_parent' => 'admin/content/node-type/story/fields',
38440   'tab_root' => 'admin/content/node-type/story',
38441   'title' => 'Text Single Checkbox Field 2',
38442   'title_callback' => 't',
38443   'title_arguments' => '',
38444   'type' => '128',
38445   'block_callback' => '',
38446   'description' => '',
38447   'position' => '',
38448   'weight' => '0',
38449   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38450 ))
38451 ->values(array(
38452   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
38453   'load_functions' => '',
38454   'to_arg_functions' => '',
38455   'access_callback' => 'user_access',
38456   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38457   'page_callback' => 'drupal_get_form',
38458   '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";}',
38459   'fit' => '127',
38460   'number_parts' => '7',
38461   'tab_parent' => '',
38462   'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
38463   'title' => 'Remove field',
38464   'title_callback' => 't',
38465   'title_arguments' => '',
38466   'type' => '4',
38467   'block_callback' => '',
38468   'description' => '',
38469   'position' => '',
38470   'weight' => '0',
38471   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38472 ))
38473 ->values(array(
38474   'path' => 'admin/content/node-type/story/fields/field_test_three',
38475   'load_functions' => '',
38476   'to_arg_functions' => '',
38477   'access_callback' => 'user_access',
38478   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38479   'page_callback' => 'drupal_get_form',
38480   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
38481   'fit' => '63',
38482   'number_parts' => '6',
38483   'tab_parent' => 'admin/content/node-type/story/fields',
38484   'tab_root' => 'admin/content/node-type/story',
38485   'title' => 'Decimal Field',
38486   'title_callback' => 't',
38487   'title_arguments' => '',
38488   'type' => '128',
38489   'block_callback' => '',
38490   'description' => '',
38491   'position' => '',
38492   'weight' => '0',
38493   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38494 ))
38495 ->values(array(
38496   'path' => 'admin/content/node-type/story/fields/field_test_three/remove',
38497   'load_functions' => '',
38498   'to_arg_functions' => '',
38499   'access_callback' => 'user_access',
38500   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38501   'page_callback' => 'drupal_get_form',
38502   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
38503   'fit' => '127',
38504   'number_parts' => '7',
38505   'tab_parent' => '',
38506   'tab_root' => 'admin/content/node-type/story/fields/field_test_three/remove',
38507   'title' => 'Remove field',
38508   'title_callback' => 't',
38509   'title_arguments' => '',
38510   'type' => '4',
38511   'block_callback' => '',
38512   'description' => '',
38513   'position' => '',
38514   'weight' => '0',
38515   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38516 ))
38517 ->values(array(
38518   'path' => 'admin/content/node-type/story/fields/field_test_two',
38519   'load_functions' => '',
38520   'to_arg_functions' => '',
38521   'access_callback' => 'user_access',
38522   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38523   'page_callback' => 'drupal_get_form',
38524   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
38525   'fit' => '63',
38526   'number_parts' => '6',
38527   'tab_parent' => 'admin/content/node-type/story/fields',
38528   'tab_root' => 'admin/content/node-type/story',
38529   'title' => 'Integer Field',
38530   'title_callback' => 't',
38531   'title_arguments' => '',
38532   'type' => '128',
38533   'block_callback' => '',
38534   'description' => '',
38535   'position' => '',
38536   'weight' => '0',
38537   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38538 ))
38539 ->values(array(
38540   'path' => 'admin/content/node-type/story/fields/field_test_two/remove',
38541   'load_functions' => '',
38542   'to_arg_functions' => '',
38543   'access_callback' => 'user_access',
38544   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38545   'page_callback' => 'drupal_get_form',
38546   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
38547   'fit' => '127',
38548   'number_parts' => '7',
38549   'tab_parent' => '',
38550   'tab_root' => 'admin/content/node-type/story/fields/field_test_two/remove',
38551   'title' => 'Remove field',
38552   'title_callback' => 't',
38553   'title_arguments' => '',
38554   'type' => '4',
38555   'block_callback' => '',
38556   'description' => '',
38557   'position' => '',
38558   'weight' => '0',
38559   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38560 ))
38561 ->values(array(
38562   'path' => 'admin/content/node-type/test-event',
38563   'load_functions' => '',
38564   'to_arg_functions' => '',
38565   'access_callback' => 'user_access',
38566   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38567   'page_callback' => 'drupal_get_form',
38568   '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";}}',
38569   'fit' => '15',
38570   'number_parts' => '4',
38571   'tab_parent' => '',
38572   'tab_root' => 'admin/content/node-type/test-event',
38573   'title' => 'Migrate test event',
38574   'title_callback' => 't',
38575   'title_arguments' => '',
38576   'type' => '4',
38577   'block_callback' => '',
38578   'description' => '',
38579   'position' => '',
38580   'weight' => '0',
38581   'file' => 'modules/node/content_types.inc',
38582 ))
38583 ->values(array(
38584   'path' => 'admin/content/node-type/test-event/delete',
38585   'load_functions' => '',
38586   'to_arg_functions' => '',
38587   'access_callback' => 'user_access',
38588   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38589   'page_callback' => 'drupal_get_form',
38590   '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";}}',
38591   'fit' => '31',
38592   'number_parts' => '5',
38593   'tab_parent' => '',
38594   'tab_root' => 'admin/content/node-type/test-event/delete',
38595   'title' => 'Delete',
38596   'title_callback' => 't',
38597   'title_arguments' => '',
38598   'type' => '4',
38599   'block_callback' => '',
38600   'description' => '',
38601   'position' => '',
38602   'weight' => '0',
38603   'file' => 'modules/node/content_types.inc',
38604 ))
38605 ->values(array(
38606   'path' => 'admin/content/node-type/test-event/display',
38607   'load_functions' => '',
38608   'to_arg_functions' => '',
38609   'access_callback' => 'user_access',
38610   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38611   'page_callback' => 'drupal_get_form',
38612   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";}',
38613   'fit' => '31',
38614   'number_parts' => '5',
38615   'tab_parent' => 'admin/content/node-type/test-event',
38616   'tab_root' => 'admin/content/node-type/test-event',
38617   'title' => 'Display fields',
38618   'title_callback' => 't',
38619   'title_arguments' => '',
38620   'type' => '128',
38621   'block_callback' => '',
38622   'description' => '',
38623   'position' => '',
38624   'weight' => '2',
38625   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38626 ))
38627 ->values(array(
38628   'path' => 'admin/content/node-type/test-event/display/basic',
38629   'load_functions' => '',
38630   'to_arg_functions' => '',
38631   'access_callback' => 'user_access',
38632   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38633   'page_callback' => 'drupal_get_form',
38634   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"basic";}',
38635   'fit' => '63',
38636   'number_parts' => '6',
38637   'tab_parent' => 'admin/content/node-type/test-event/display',
38638   'tab_root' => 'admin/content/node-type/test-event',
38639   'title' => 'Basic',
38640   'title_callback' => 't',
38641   'title_arguments' => '',
38642   'type' => '136',
38643   'block_callback' => '',
38644   'description' => '',
38645   'position' => '',
38646   'weight' => '0',
38647   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38648 ))
38649 ->values(array(
38650   'path' => 'admin/content/node-type/test-event/display/print',
38651   'load_functions' => '',
38652   'to_arg_functions' => '',
38653   'access_callback' => 'user_access',
38654   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38655   'page_callback' => 'drupal_get_form',
38656   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"print";}',
38657   'fit' => '63',
38658   'number_parts' => '6',
38659   'tab_parent' => 'admin/content/node-type/test-event/display',
38660   'tab_root' => 'admin/content/node-type/test-event',
38661   'title' => 'Print',
38662   'title_callback' => 't',
38663   'title_arguments' => '',
38664   'type' => '128',
38665   'block_callback' => '',
38666   'description' => '',
38667   'position' => '',
38668   'weight' => '1',
38669   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38670 ))
38671 ->values(array(
38672   'path' => 'admin/content/node-type/test-event/display/rss',
38673   'load_functions' => '',
38674   'to_arg_functions' => '',
38675   'access_callback' => 'user_access',
38676   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38677   'page_callback' => 'drupal_get_form',
38678   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:3:"rss";}',
38679   'fit' => '63',
38680   'number_parts' => '6',
38681   'tab_parent' => 'admin/content/node-type/test-event/display',
38682   'tab_root' => 'admin/content/node-type/test-event',
38683   'title' => 'RSS',
38684   'title_callback' => 't',
38685   'title_arguments' => '',
38686   'type' => '128',
38687   'block_callback' => '',
38688   'description' => '',
38689   'position' => '',
38690   'weight' => '1',
38691   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38692 ))
38693 ->values(array(
38694   'path' => 'admin/content/node-type/test-event/edit',
38695   'load_functions' => '',
38696   'to_arg_functions' => '',
38697   'access_callback' => 'user_access',
38698   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38699   'page_callback' => 'drupal_get_form',
38700   '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";}}',
38701   'fit' => '31',
38702   'number_parts' => '5',
38703   'tab_parent' => 'admin/content/node-type/test-event',
38704   'tab_root' => 'admin/content/node-type/test-event',
38705   'title' => 'Edit',
38706   'title_callback' => 't',
38707   'title_arguments' => '',
38708   'type' => '136',
38709   'block_callback' => '',
38710   'description' => '',
38711   'position' => '',
38712   'weight' => '0',
38713   'file' => 'modules/node/content_types.inc',
38714 ))
38715 ->values(array(
38716   'path' => 'admin/content/node-type/test-event/fields',
38717   'load_functions' => '',
38718   'to_arg_functions' => '',
38719   'access_callback' => 'user_access',
38720   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38721   'page_callback' => 'drupal_get_form',
38722   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_event";}',
38723   'fit' => '31',
38724   'number_parts' => '5',
38725   'tab_parent' => 'admin/content/node-type/test-event',
38726   'tab_root' => 'admin/content/node-type/test-event',
38727   'title' => 'Manage fields',
38728   'title_callback' => 't',
38729   'title_arguments' => '',
38730   'type' => '128',
38731   'block_callback' => '',
38732   'description' => '',
38733   'position' => '',
38734   'weight' => '1',
38735   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38736 ))
38737 ->values(array(
38738   'path' => 'admin/content/node-type/test-page',
38739   'load_functions' => '',
38740   'to_arg_functions' => '',
38741   'access_callback' => 'user_access',
38742   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38743   'page_callback' => 'drupal_get_form',
38744   '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\";}}",
38745   'fit' => '15',
38746   'number_parts' => '4',
38747   'tab_parent' => '',
38748   'tab_root' => 'admin/content/node-type/test-page',
38749   'title' => 'Migrate test page',
38750   'title_callback' => 't',
38751   'title_arguments' => '',
38752   'type' => '4',
38753   'block_callback' => '',
38754   'description' => '',
38755   'position' => '',
38756   'weight' => '0',
38757   'file' => 'modules/node/content_types.inc',
38758 ))
38759 ->values(array(
38760   'path' => 'admin/content/node-type/test-page/delete',
38761   'load_functions' => '',
38762   'to_arg_functions' => '',
38763   'access_callback' => 'user_access',
38764   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38765   'page_callback' => 'drupal_get_form',
38766   '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\";}}",
38767   'fit' => '31',
38768   'number_parts' => '5',
38769   'tab_parent' => '',
38770   'tab_root' => 'admin/content/node-type/test-page/delete',
38771   'title' => 'Delete',
38772   'title_callback' => 't',
38773   'title_arguments' => '',
38774   'type' => '4',
38775   'block_callback' => '',
38776   'description' => '',
38777   'position' => '',
38778   'weight' => '0',
38779   'file' => 'modules/node/content_types.inc',
38780 ))
38781 ->values(array(
38782   'path' => 'admin/content/node-type/test-page/display',
38783   'load_functions' => '',
38784   'to_arg_functions' => '',
38785   'access_callback' => 'user_access',
38786   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38787   'page_callback' => 'drupal_get_form',
38788   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";}',
38789   'fit' => '31',
38790   'number_parts' => '5',
38791   'tab_parent' => 'admin/content/node-type/test-page',
38792   'tab_root' => 'admin/content/node-type/test-page',
38793   'title' => 'Display fields',
38794   'title_callback' => 't',
38795   'title_arguments' => '',
38796   'type' => '128',
38797   'block_callback' => '',
38798   'description' => '',
38799   'position' => '',
38800   'weight' => '2',
38801   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38802 ))
38803 ->values(array(
38804   'path' => 'admin/content/node-type/test-page/display/basic',
38805   'load_functions' => '',
38806   'to_arg_functions' => '',
38807   'access_callback' => 'user_access',
38808   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38809   'page_callback' => 'drupal_get_form',
38810   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"basic";}',
38811   'fit' => '63',
38812   'number_parts' => '6',
38813   'tab_parent' => 'admin/content/node-type/test-page/display',
38814   'tab_root' => 'admin/content/node-type/test-page',
38815   'title' => 'Basic',
38816   'title_callback' => 't',
38817   'title_arguments' => '',
38818   'type' => '136',
38819   'block_callback' => '',
38820   'description' => '',
38821   'position' => '',
38822   'weight' => '0',
38823   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38824 ))
38825 ->values(array(
38826   'path' => 'admin/content/node-type/test-page/display/print',
38827   'load_functions' => '',
38828   'to_arg_functions' => '',
38829   'access_callback' => 'user_access',
38830   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38831   'page_callback' => 'drupal_get_form',
38832   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"print";}',
38833   'fit' => '63',
38834   'number_parts' => '6',
38835   'tab_parent' => 'admin/content/node-type/test-page/display',
38836   'tab_root' => 'admin/content/node-type/test-page',
38837   'title' => 'Print',
38838   'title_callback' => 't',
38839   'title_arguments' => '',
38840   'type' => '128',
38841   'block_callback' => '',
38842   'description' => '',
38843   'position' => '',
38844   'weight' => '1',
38845   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38846 ))
38847 ->values(array(
38848   'path' => 'admin/content/node-type/test-page/display/rss',
38849   'load_functions' => '',
38850   'to_arg_functions' => '',
38851   'access_callback' => 'user_access',
38852   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38853   'page_callback' => 'drupal_get_form',
38854   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:3:"rss";}',
38855   'fit' => '63',
38856   'number_parts' => '6',
38857   'tab_parent' => 'admin/content/node-type/test-page/display',
38858   'tab_root' => 'admin/content/node-type/test-page',
38859   'title' => 'RSS',
38860   'title_callback' => 't',
38861   'title_arguments' => '',
38862   'type' => '128',
38863   'block_callback' => '',
38864   'description' => '',
38865   'position' => '',
38866   'weight' => '1',
38867   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38868 ))
38869 ->values(array(
38870   'path' => 'admin/content/node-type/test-page/edit',
38871   'load_functions' => '',
38872   'to_arg_functions' => '',
38873   'access_callback' => 'user_access',
38874   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38875   'page_callback' => 'drupal_get_form',
38876   '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\";}}",
38877   'fit' => '31',
38878   'number_parts' => '5',
38879   'tab_parent' => 'admin/content/node-type/test-page',
38880   'tab_root' => 'admin/content/node-type/test-page',
38881   'title' => 'Edit',
38882   'title_callback' => 't',
38883   'title_arguments' => '',
38884   'type' => '136',
38885   'block_callback' => '',
38886   'description' => '',
38887   'position' => '',
38888   'weight' => '0',
38889   'file' => 'modules/node/content_types.inc',
38890 ))
38891 ->values(array(
38892   'path' => 'admin/content/node-type/test-page/fields',
38893   'load_functions' => '',
38894   'to_arg_functions' => '',
38895   'access_callback' => 'user_access',
38896   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38897   'page_callback' => 'drupal_get_form',
38898   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:9:"test_page";}',
38899   'fit' => '31',
38900   'number_parts' => '5',
38901   'tab_parent' => 'admin/content/node-type/test-page',
38902   'tab_root' => 'admin/content/node-type/test-page',
38903   'title' => 'Manage fields',
38904   'title_callback' => 't',
38905   'title_arguments' => '',
38906   'type' => '128',
38907   'block_callback' => '',
38908   'description' => '',
38909   'position' => '',
38910   'weight' => '1',
38911   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38912 ))
38913 ->values(array(
38914   'path' => 'admin/content/node-type/test-page/fields/field_test',
38915   'load_functions' => '',
38916   'to_arg_functions' => '',
38917   'access_callback' => 'user_access',
38918   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38919   'page_callback' => 'drupal_get_form',
38920   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:9:"test_page";i:2;s:10:"field_test";}',
38921   'fit' => '63',
38922   'number_parts' => '6',
38923   'tab_parent' => 'admin/content/node-type/test-page/fields',
38924   'tab_root' => 'admin/content/node-type/test-page',
38925   'title' => 'Text Field',
38926   'title_callback' => 't',
38927   'title_arguments' => '',
38928   'type' => '128',
38929   'block_callback' => '',
38930   'description' => '',
38931   'position' => '',
38932   'weight' => '0',
38933   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38934 ))
38935 ->values(array(
38936   'path' => 'admin/content/node-type/test-page/fields/field_test/remove',
38937   'load_functions' => '',
38938   'to_arg_functions' => '',
38939   'access_callback' => 'user_access',
38940   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38941   'page_callback' => 'drupal_get_form',
38942   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:9:"test_page";i:2;s:10:"field_test";}',
38943   'fit' => '127',
38944   'number_parts' => '7',
38945   'tab_parent' => '',
38946   'tab_root' => 'admin/content/node-type/test-page/fields/field_test/remove',
38947   'title' => 'Remove field',
38948   'title_callback' => 't',
38949   'title_arguments' => '',
38950   'type' => '4',
38951   'block_callback' => '',
38952   'description' => '',
38953   'position' => '',
38954   'weight' => '0',
38955   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38956 ))
38957 ->values(array(
38958   'path' => 'admin/content/node-type/test-planet',
38959   'load_functions' => '',
38960   'to_arg_functions' => '',
38961   'access_callback' => 'user_access',
38962   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38963   'page_callback' => 'drupal_get_form',
38964   '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\";}}",
38965   'fit' => '15',
38966   'number_parts' => '4',
38967   'tab_parent' => '',
38968   'tab_root' => 'admin/content/node-type/test-planet',
38969   'title' => 'Migrate test planet',
38970   'title_callback' => 't',
38971   'title_arguments' => '',
38972   'type' => '4',
38973   'block_callback' => '',
38974   'description' => '',
38975   'position' => '',
38976   'weight' => '0',
38977   'file' => 'modules/node/content_types.inc',
38978 ))
38979 ->values(array(
38980   'path' => 'admin/content/node-type/test-planet/delete',
38981   'load_functions' => '',
38982   'to_arg_functions' => '',
38983   'access_callback' => 'user_access',
38984   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38985   'page_callback' => 'drupal_get_form',
38986   '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\";}}",
38987   'fit' => '31',
38988   'number_parts' => '5',
38989   'tab_parent' => '',
38990   'tab_root' => 'admin/content/node-type/test-planet/delete',
38991   'title' => 'Delete',
38992   'title_callback' => 't',
38993   'title_arguments' => '',
38994   'type' => '4',
38995   'block_callback' => '',
38996   'description' => '',
38997   'position' => '',
38998   'weight' => '0',
38999   'file' => 'modules/node/content_types.inc',
39000 ))
39001 ->values(array(
39002   'path' => 'admin/content/node-type/test-planet/display',
39003   'load_functions' => '',
39004   'to_arg_functions' => '',
39005   'access_callback' => 'user_access',
39006   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39007   'page_callback' => 'drupal_get_form',
39008   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";}',
39009   'fit' => '31',
39010   'number_parts' => '5',
39011   'tab_parent' => 'admin/content/node-type/test-planet',
39012   'tab_root' => 'admin/content/node-type/test-planet',
39013   'title' => 'Display fields',
39014   'title_callback' => 't',
39015   'title_arguments' => '',
39016   'type' => '128',
39017   'block_callback' => '',
39018   'description' => '',
39019   'position' => '',
39020   'weight' => '2',
39021   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39022 ))
39023 ->values(array(
39024   'path' => 'admin/content/node-type/test-planet/display/basic',
39025   'load_functions' => '',
39026   'to_arg_functions' => '',
39027   'access_callback' => 'user_access',
39028   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39029   'page_callback' => 'drupal_get_form',
39030   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"basic";}',
39031   'fit' => '63',
39032   'number_parts' => '6',
39033   'tab_parent' => 'admin/content/node-type/test-planet/display',
39034   'tab_root' => 'admin/content/node-type/test-planet',
39035   'title' => 'Basic',
39036   'title_callback' => 't',
39037   'title_arguments' => '',
39038   'type' => '136',
39039   'block_callback' => '',
39040   'description' => '',
39041   'position' => '',
39042   'weight' => '0',
39043   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39044 ))
39045 ->values(array(
39046   'path' => 'admin/content/node-type/test-planet/display/print',
39047   'load_functions' => '',
39048   'to_arg_functions' => '',
39049   'access_callback' => 'user_access',
39050   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39051   'page_callback' => 'drupal_get_form',
39052   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"print";}',
39053   'fit' => '63',
39054   'number_parts' => '6',
39055   'tab_parent' => 'admin/content/node-type/test-planet/display',
39056   'tab_root' => 'admin/content/node-type/test-planet',
39057   'title' => 'Print',
39058   'title_callback' => 't',
39059   'title_arguments' => '',
39060   'type' => '128',
39061   'block_callback' => '',
39062   'description' => '',
39063   'position' => '',
39064   'weight' => '1',
39065   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39066 ))
39067 ->values(array(
39068   'path' => 'admin/content/node-type/test-planet/display/rss',
39069   'load_functions' => '',
39070   'to_arg_functions' => '',
39071   'access_callback' => 'user_access',
39072   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39073   'page_callback' => 'drupal_get_form',
39074   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:3:"rss";}',
39075   'fit' => '63',
39076   'number_parts' => '6',
39077   'tab_parent' => 'admin/content/node-type/test-planet/display',
39078   'tab_root' => 'admin/content/node-type/test-planet',
39079   'title' => 'RSS',
39080   'title_callback' => 't',
39081   'title_arguments' => '',
39082   'type' => '128',
39083   'block_callback' => '',
39084   'description' => '',
39085   'position' => '',
39086   'weight' => '1',
39087   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39088 ))
39089 ->values(array(
39090   'path' => 'admin/content/node-type/test-planet/edit',
39091   'load_functions' => '',
39092   'to_arg_functions' => '',
39093   'access_callback' => 'user_access',
39094   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39095   'page_callback' => 'drupal_get_form',
39096   '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\";}}",
39097   'fit' => '31',
39098   'number_parts' => '5',
39099   'tab_parent' => 'admin/content/node-type/test-planet',
39100   'tab_root' => 'admin/content/node-type/test-planet',
39101   'title' => 'Edit',
39102   'title_callback' => 't',
39103   'title_arguments' => '',
39104   'type' => '136',
39105   'block_callback' => '',
39106   'description' => '',
39107   'position' => '',
39108   'weight' => '0',
39109   'file' => 'modules/node/content_types.inc',
39110 ))
39111 ->values(array(
39112   'path' => 'admin/content/node-type/test-planet/fields',
39113   'load_functions' => '',
39114   'to_arg_functions' => '',
39115   'access_callback' => 'user_access',
39116   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39117   'page_callback' => 'drupal_get_form',
39118   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:11:"test_planet";}',
39119   'fit' => '31',
39120   'number_parts' => '5',
39121   'tab_parent' => 'admin/content/node-type/test-planet',
39122   'tab_root' => 'admin/content/node-type/test-planet',
39123   'title' => 'Manage fields',
39124   'title_callback' => 't',
39125   'title_arguments' => '',
39126   'type' => '128',
39127   'block_callback' => '',
39128   'description' => '',
39129   'position' => '',
39130   'weight' => '1',
39131   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39132 ))
39133 ->values(array(
39134   'path' => 'admin/content/node-type/test-planet/fields/field_multivalue',
39135   'load_functions' => '',
39136   'to_arg_functions' => '',
39137   'access_callback' => 'user_access',
39138   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39139   'page_callback' => 'drupal_get_form',
39140   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:11:"test_planet";i:2;s:16:"field_multivalue";}',
39141   'fit' => '63',
39142   'number_parts' => '6',
39143   'tab_parent' => 'admin/content/node-type/test-planet/fields',
39144   'tab_root' => 'admin/content/node-type/test-planet',
39145   'title' => 'Decimal Field',
39146   'title_callback' => 't',
39147   'title_arguments' => '',
39148   'type' => '128',
39149   'block_callback' => '',
39150   'description' => '',
39151   'position' => '',
39152   'weight' => '0',
39153   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39154 ))
39155 ->values(array(
39156   'path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
39157   'load_functions' => '',
39158   'to_arg_functions' => '',
39159   'access_callback' => 'user_access',
39160   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39161   'page_callback' => 'drupal_get_form',
39162   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:11:"test_planet";i:2;s:16:"field_multivalue";}',
39163   'fit' => '127',
39164   'number_parts' => '7',
39165   'tab_parent' => '',
39166   'tab_root' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
39167   'title' => 'Remove field',
39168   'title_callback' => 't',
39169   'title_arguments' => '',
39170   'type' => '4',
39171   'block_callback' => '',
39172   'description' => '',
39173   'position' => '',
39174   'weight' => '0',
39175   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39176 ))
39177 ->values(array(
39178   'path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox',
39179   'load_functions' => '',
39180   'to_arg_functions' => '',
39181   'access_callback' => 'user_access',
39182   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39183   'page_callback' => 'drupal_get_form',
39184   '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";}',
39185   'fit' => '63',
39186   'number_parts' => '6',
39187   'tab_parent' => 'admin/content/node-type/test-planet/fields',
39188   'tab_root' => 'admin/content/node-type/test-planet',
39189   'title' => 'Text Single Checkbox Field',
39190   'title_callback' => 't',
39191   'title_arguments' => '',
39192   'type' => '128',
39193   'block_callback' => '',
39194   'description' => '',
39195   'position' => '',
39196   'weight' => '0',
39197   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39198 ))
39199 ->values(array(
39200   'path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
39201   'load_functions' => '',
39202   'to_arg_functions' => '',
39203   'access_callback' => 'user_access',
39204   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39205   'page_callback' => 'drupal_get_form',
39206   '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";}',
39207   'fit' => '127',
39208   'number_parts' => '7',
39209   'tab_parent' => '',
39210   'tab_root' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
39211   'title' => 'Remove field',
39212   'title_callback' => 't',
39213   'title_arguments' => '',
39214   'type' => '4',
39215   'block_callback' => '',
39216   'description' => '',
39217   'position' => '',
39218   'weight' => '0',
39219   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39220 ))
39221 ->values(array(
39222   'path' => 'admin/content/node-type/test-story',
39223   'load_functions' => '',
39224   'to_arg_functions' => '',
39225   'access_callback' => 'user_access',
39226   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39227   'page_callback' => 'drupal_get_form',
39228   '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\";}}",
39229   'fit' => '15',
39230   'number_parts' => '4',
39231   'tab_parent' => '',
39232   'tab_root' => 'admin/content/node-type/test-story',
39233   'title' => 'Migrate test story',
39234   'title_callback' => 't',
39235   'title_arguments' => '',
39236   'type' => '4',
39237   'block_callback' => '',
39238   'description' => '',
39239   'position' => '',
39240   'weight' => '0',
39241   'file' => 'modules/node/content_types.inc',
39242 ))
39243 ->values(array(
39244   'path' => 'admin/content/node-type/test-story/delete',
39245   'load_functions' => '',
39246   'to_arg_functions' => '',
39247   'access_callback' => 'user_access',
39248   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39249   'page_callback' => 'drupal_get_form',
39250   '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\";}}",
39251   'fit' => '31',
39252   'number_parts' => '5',
39253   'tab_parent' => '',
39254   'tab_root' => 'admin/content/node-type/test-story/delete',
39255   'title' => 'Delete',
39256   'title_callback' => 't',
39257   'title_arguments' => '',
39258   'type' => '4',
39259   'block_callback' => '',
39260   'description' => '',
39261   'position' => '',
39262   'weight' => '0',
39263   'file' => 'modules/node/content_types.inc',
39264 ))
39265 ->values(array(
39266   'path' => 'admin/content/node-type/test-story/display',
39267   'load_functions' => '',
39268   'to_arg_functions' => '',
39269   'access_callback' => 'user_access',
39270   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39271   'page_callback' => 'drupal_get_form',
39272   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";}',
39273   'fit' => '31',
39274   'number_parts' => '5',
39275   'tab_parent' => 'admin/content/node-type/test-story',
39276   'tab_root' => 'admin/content/node-type/test-story',
39277   'title' => 'Display fields',
39278   'title_callback' => 't',
39279   'title_arguments' => '',
39280   'type' => '128',
39281   'block_callback' => '',
39282   'description' => '',
39283   'position' => '',
39284   'weight' => '2',
39285   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39286 ))
39287 ->values(array(
39288   'path' => 'admin/content/node-type/test-story/display/basic',
39289   'load_functions' => '',
39290   'to_arg_functions' => '',
39291   'access_callback' => 'user_access',
39292   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39293   'page_callback' => 'drupal_get_form',
39294   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"basic";}',
39295   'fit' => '63',
39296   'number_parts' => '6',
39297   'tab_parent' => 'admin/content/node-type/test-story/display',
39298   'tab_root' => 'admin/content/node-type/test-story',
39299   'title' => 'Basic',
39300   'title_callback' => 't',
39301   'title_arguments' => '',
39302   'type' => '136',
39303   'block_callback' => '',
39304   'description' => '',
39305   'position' => '',
39306   'weight' => '0',
39307   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39308 ))
39309 ->values(array(
39310   'path' => 'admin/content/node-type/test-story/display/print',
39311   'load_functions' => '',
39312   'to_arg_functions' => '',
39313   'access_callback' => 'user_access',
39314   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39315   'page_callback' => 'drupal_get_form',
39316   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"print";}',
39317   'fit' => '63',
39318   'number_parts' => '6',
39319   'tab_parent' => 'admin/content/node-type/test-story/display',
39320   'tab_root' => 'admin/content/node-type/test-story',
39321   'title' => 'Print',
39322   'title_callback' => 't',
39323   'title_arguments' => '',
39324   'type' => '128',
39325   'block_callback' => '',
39326   'description' => '',
39327   'position' => '',
39328   'weight' => '1',
39329   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39330 ))
39331 ->values(array(
39332   'path' => 'admin/content/node-type/test-story/display/rss',
39333   'load_functions' => '',
39334   'to_arg_functions' => '',
39335   'access_callback' => 'user_access',
39336   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39337   'page_callback' => 'drupal_get_form',
39338   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:3:"rss";}',
39339   'fit' => '63',
39340   'number_parts' => '6',
39341   'tab_parent' => 'admin/content/node-type/test-story/display',
39342   'tab_root' => 'admin/content/node-type/test-story',
39343   'title' => 'RSS',
39344   'title_callback' => 't',
39345   'title_arguments' => '',
39346   'type' => '128',
39347   'block_callback' => '',
39348   'description' => '',
39349   'position' => '',
39350   'weight' => '1',
39351   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39352 ))
39353 ->values(array(
39354   'path' => 'admin/content/node-type/test-story/edit',
39355   'load_functions' => '',
39356   'to_arg_functions' => '',
39357   'access_callback' => 'user_access',
39358   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39359   'page_callback' => 'drupal_get_form',
39360   '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\";}}",
39361   'fit' => '31',
39362   'number_parts' => '5',
39363   'tab_parent' => 'admin/content/node-type/test-story',
39364   'tab_root' => 'admin/content/node-type/test-story',
39365   'title' => 'Edit',
39366   'title_callback' => 't',
39367   'title_arguments' => '',
39368   'type' => '136',
39369   'block_callback' => '',
39370   'description' => '',
39371   'position' => '',
39372   'weight' => '0',
39373   'file' => 'modules/node/content_types.inc',
39374 ))
39375 ->values(array(
39376   'path' => 'admin/content/node-type/test-story/fields',
39377   'load_functions' => '',
39378   'to_arg_functions' => '',
39379   'access_callback' => 'user_access',
39380   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39381   'page_callback' => 'drupal_get_form',
39382   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_story";}',
39383   'fit' => '31',
39384   'number_parts' => '5',
39385   'tab_parent' => 'admin/content/node-type/test-story',
39386   'tab_root' => 'admin/content/node-type/test-story',
39387   'title' => 'Manage fields',
39388   'title_callback' => 't',
39389   'title_arguments' => '',
39390   'type' => '128',
39391   'block_callback' => '',
39392   'description' => '',
39393   'position' => '',
39394   'weight' => '1',
39395   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39396 ))
39397 ->values(array(
39398   'path' => 'admin/content/node/overview',
39399   'load_functions' => '',
39400   'to_arg_functions' => '',
39401   'access_callback' => 'user_access',
39402   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
39403   'page_callback' => 'drupal_get_form',
39404   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
39405   'fit' => '15',
39406   'number_parts' => '4',
39407   'tab_parent' => 'admin/content/node',
39408   'tab_root' => 'admin/content/node',
39409   'title' => 'List',
39410   'title_callback' => 't',
39411   'title_arguments' => '',
39412   'type' => '136',
39413   'block_callback' => '',
39414   'description' => '',
39415   'position' => '',
39416   'weight' => '-10',
39417   'file' => 'modules/node/node.admin.inc',
39418 ))
39419 ->values(array(
39420   'path' => 'admin/content/rss-publishing',
39421   'load_functions' => '',
39422   'to_arg_functions' => '',
39423   'access_callback' => 'user_access',
39424   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39425   'page_callback' => 'drupal_get_form',
39426   'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
39427   'fit' => '7',
39428   'number_parts' => '3',
39429   'tab_parent' => '',
39430   'tab_root' => 'admin/content/rss-publishing',
39431   'title' => 'RSS publishing',
39432   'title_callback' => 't',
39433   'title_arguments' => '',
39434   'type' => '6',
39435   'block_callback' => '',
39436   'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
39437   'position' => '',
39438   'weight' => '0',
39439   'file' => 'modules/system/system.admin.inc',
39440 ))
39441 ->values(array(
39442   'path' => 'admin/content/taxonomy',
39443   'load_functions' => '',
39444   'to_arg_functions' => '',
39445   'access_callback' => 'user_access',
39446   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39447   'page_callback' => 'drupal_get_form',
39448   'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
39449   'fit' => '7',
39450   'number_parts' => '3',
39451   'tab_parent' => '',
39452   'tab_root' => 'admin/content/taxonomy',
39453   'title' => 'Taxonomy',
39454   'title_callback' => 't',
39455   'title_arguments' => '',
39456   'type' => '6',
39457   'block_callback' => '',
39458   'description' => 'Manage tagging, categorization, and classification of your content.',
39459   'position' => '',
39460   'weight' => '0',
39461   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39462 ))
39463 ->values(array(
39464   'path' => 'admin/content/taxonomy/%',
39465   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39466   'to_arg_functions' => '',
39467   'access_callback' => 'user_access',
39468   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39469   'page_callback' => 'drupal_get_form',
39470   'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
39471   'fit' => '14',
39472   'number_parts' => '4',
39473   'tab_parent' => '',
39474   'tab_root' => 'admin/content/taxonomy/%',
39475   'title' => 'List terms',
39476   'title_callback' => 't',
39477   'title_arguments' => '',
39478   'type' => '4',
39479   'block_callback' => '',
39480   'description' => '',
39481   'position' => '',
39482   'weight' => '0',
39483   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39484 ))
39485 ->values(array(
39486   'path' => 'admin/content/taxonomy/%/add/term',
39487   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39488   'to_arg_functions' => '',
39489   'access_callback' => 'user_access',
39490   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39491   'page_callback' => 'taxonomy_add_term_page',
39492   'page_arguments' => 'a:1:{i:0;i:3;}',
39493   'fit' => '59',
39494   'number_parts' => '6',
39495   'tab_parent' => 'admin/content/taxonomy/%',
39496   'tab_root' => 'admin/content/taxonomy/%',
39497   'title' => 'Add term',
39498   'title_callback' => 't',
39499   'title_arguments' => '',
39500   'type' => '128',
39501   'block_callback' => '',
39502   'description' => '',
39503   'position' => '',
39504   'weight' => '0',
39505   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39506 ))
39507 ->values(array(
39508   'path' => 'admin/content/taxonomy/%/list',
39509   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39510   'to_arg_functions' => '',
39511   'access_callback' => 'user_access',
39512   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39513   'page_callback' => 'drupal_get_form',
39514   'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
39515   'fit' => '29',
39516   'number_parts' => '5',
39517   'tab_parent' => 'admin/content/taxonomy/%',
39518   'tab_root' => 'admin/content/taxonomy/%',
39519   'title' => 'List',
39520   'title_callback' => 't',
39521   'title_arguments' => '',
39522   'type' => '136',
39523   'block_callback' => '',
39524   'description' => '',
39525   'position' => '',
39526   'weight' => '-10',
39527   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39528 ))
39529 ->values(array(
39530   'path' => 'admin/content/taxonomy/%/translation',
39531   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39532   'to_arg_functions' => '',
39533   'access_callback' => '_i18ntaxonomy_translation_tab',
39534   'access_arguments' => 'a:1:{i:0;i:3;}',
39535   'page_callback' => 'i18ntaxonomy_page_vocabulary',
39536   'page_arguments' => 'a:3:{i:0;i:3;i:1;i:5;i:2;i:6;}',
39537   'fit' => '29',
39538   'number_parts' => '5',
39539   'tab_parent' => 'admin/content/taxonomy/%',
39540   'tab_root' => 'admin/content/taxonomy/%',
39541   'title' => 'Translation',
39542   'title_callback' => 't',
39543   'title_arguments' => '',
39544   'type' => '128',
39545   'block_callback' => '',
39546   'description' => '',
39547   'position' => '',
39548   'weight' => '0',
39549   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.admin.inc',
39550 ))
39551 ->values(array(
39552   'path' => 'admin/content/taxonomy/add/vocabulary',
39553   'load_functions' => '',
39554   'to_arg_functions' => '',
39555   'access_callback' => 'user_access',
39556   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39557   'page_callback' => 'drupal_get_form',
39558   'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
39559   'fit' => '31',
39560   'number_parts' => '5',
39561   'tab_parent' => 'admin/content/taxonomy',
39562   'tab_root' => 'admin/content/taxonomy',
39563   'title' => 'Add vocabulary',
39564   'title_callback' => 't',
39565   'title_arguments' => '',
39566   'type' => '128',
39567   'block_callback' => '',
39568   'description' => '',
39569   'position' => '',
39570   'weight' => '0',
39571   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39572 ))
39573 ->values(array(
39574   'path' => 'admin/content/taxonomy/edit/term',
39575   'load_functions' => '',
39576   'to_arg_functions' => '',
39577   'access_callback' => 'user_access',
39578   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39579   'page_callback' => 'taxonomy_admin_term_edit',
39580   'page_arguments' => 'a:0:{}',
39581   'fit' => '31',
39582   'number_parts' => '5',
39583   'tab_parent' => '',
39584   'tab_root' => 'admin/content/taxonomy/edit/term',
39585   'title' => 'Edit term',
39586   'title_callback' => 't',
39587   'title_arguments' => '',
39588   'type' => '4',
39589   'block_callback' => '',
39590   'description' => '',
39591   'position' => '',
39592   'weight' => '0',
39593   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39594 ))
39595 ->values(array(
39596   'path' => 'admin/content/taxonomy/edit/vocabulary/%',
39597   'load_functions' => 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}',
39598   'to_arg_functions' => '',
39599   'access_callback' => 'user_access',
39600   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39601   'page_callback' => 'taxonomy_admin_vocabulary_edit',
39602   'page_arguments' => 'a:1:{i:0;i:5;}',
39603   'fit' => '62',
39604   'number_parts' => '6',
39605   'tab_parent' => '',
39606   'tab_root' => 'admin/content/taxonomy/edit/vocabulary/%',
39607   'title' => 'Edit vocabulary',
39608   'title_callback' => 't',
39609   'title_arguments' => '',
39610   'type' => '4',
39611   'block_callback' => '',
39612   'description' => '',
39613   'position' => '',
39614   'weight' => '0',
39615   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39616 ))
39617 ->values(array(
39618   'path' => 'admin/content/taxonomy/list',
39619   'load_functions' => '',
39620   'to_arg_functions' => '',
39621   'access_callback' => 'user_access',
39622   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39623   'page_callback' => 'drupal_get_form',
39624   'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
39625   'fit' => '15',
39626   'number_parts' => '4',
39627   'tab_parent' => 'admin/content/taxonomy',
39628   'tab_root' => 'admin/content/taxonomy',
39629   'title' => 'List',
39630   'title_callback' => 't',
39631   'title_arguments' => '',
39632   'type' => '136',
39633   'block_callback' => '',
39634   'description' => '',
39635   'position' => '',
39636   'weight' => '-10',
39637   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39638 ))
39639 ->values(array(
39640   'path' => 'admin/content/types',
39641   'load_functions' => '',
39642   'to_arg_functions' => '',
39643   'access_callback' => 'user_access',
39644   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39645   'page_callback' => 'content_types_overview',
39646   'page_arguments' => 'a:0:{}',
39647   'fit' => '7',
39648   'number_parts' => '3',
39649   'tab_parent' => '',
39650   'tab_root' => 'admin/content/types',
39651   'title' => 'Content types',
39652   'title_callback' => 't',
39653   'title_arguments' => '',
39654   'type' => '6',
39655   'block_callback' => '',
39656   'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
39657   'position' => '',
39658   'weight' => '0',
39659   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39660 ))
39661 ->values(array(
39662   'path' => 'admin/content/types/add',
39663   'load_functions' => '',
39664   'to_arg_functions' => '',
39665   'access_callback' => 'user_access',
39666   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39667   'page_callback' => 'drupal_get_form',
39668   'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
39669   'fit' => '15',
39670   'number_parts' => '4',
39671   'tab_parent' => 'admin/content/types',
39672   'tab_root' => 'admin/content/types',
39673   'title' => 'Add content type',
39674   'title_callback' => 't',
39675   'title_arguments' => '',
39676   'type' => '128',
39677   'block_callback' => '',
39678   'description' => '',
39679   'position' => '',
39680   'weight' => '0',
39681   'file' => 'modules/node/content_types.inc',
39682 ))
39683 ->values(array(
39684   'path' => 'admin/content/types/fields',
39685   'load_functions' => '',
39686   'to_arg_functions' => '',
39687   'access_callback' => 'user_access',
39688   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39689   'page_callback' => 'content_fields_list',
39690   'page_arguments' => 'a:0:{}',
39691   'fit' => '15',
39692   'number_parts' => '4',
39693   'tab_parent' => 'admin/content/types',
39694   'tab_root' => 'admin/content/types',
39695   'title' => 'Fields',
39696   'title_callback' => 't',
39697   'title_arguments' => '',
39698   'type' => '128',
39699   'block_callback' => '',
39700   'description' => '',
39701   'position' => '',
39702   'weight' => '0',
39703   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39704 ))
39705 ->values(array(
39706   'path' => 'admin/content/types/list',
39707   'load_functions' => '',
39708   'to_arg_functions' => '',
39709   'access_callback' => 'user_access',
39710   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39711   'page_callback' => 'content_types_overview',
39712   'page_arguments' => 'a:0:{}',
39713   'fit' => '15',
39714   'number_parts' => '4',
39715   'tab_parent' => 'admin/content/types',
39716   'tab_root' => 'admin/content/types',
39717   'title' => 'List',
39718   'title_callback' => 't',
39719   'title_arguments' => '',
39720   'type' => '136',
39721   'block_callback' => '',
39722   'description' => '',
39723   'position' => '',
39724   'weight' => '-10',
39725   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39726 ))
39727 ->values(array(
39728   'path' => 'admin/reports',
39729   'load_functions' => '',
39730   'to_arg_functions' => '',
39731   'access_callback' => 'user_access',
39732   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
39733   'page_callback' => 'system_admin_menu_block_page',
39734   'page_arguments' => 'a:0:{}',
39735   'fit' => '3',
39736   'number_parts' => '2',
39737   'tab_parent' => '',
39738   'tab_root' => 'admin/reports',
39739   'title' => 'Reports',
39740   'title_callback' => 't',
39741   'title_arguments' => '',
39742   'type' => '6',
39743   'block_callback' => '',
39744   'description' => 'View reports from system logs and other status information.',
39745   'position' => 'left',
39746   'weight' => '5',
39747   'file' => 'modules/system/system.admin.inc',
39748 ))
39749 ->values(array(
39750   'path' => 'admin/reports/access/%',
39751   'load_functions' => 'a:1:{i:3;N;}',
39752   'to_arg_functions' => '',
39753   'access_callback' => 'user_access',
39754   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39755   'page_callback' => 'statistics_access_log',
39756   'page_arguments' => 'a:1:{i:0;i:3;}',
39757   'fit' => '14',
39758   'number_parts' => '4',
39759   'tab_parent' => '',
39760   'tab_root' => 'admin/reports/access/%',
39761   'title' => 'Details',
39762   'title_callback' => 't',
39763   'title_arguments' => '',
39764   'type' => '4',
39765   'block_callback' => '',
39766   'description' => 'View access log.',
39767   'position' => '',
39768   'weight' => '0',
39769   'file' => 'modules/statistics/statistics.admin.inc',
39770 ))
39771 ->values(array(
39772   'path' => 'admin/reports/hits',
39773   'load_functions' => '',
39774   'to_arg_functions' => '',
39775   'access_callback' => 'user_access',
39776   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39777   'page_callback' => 'statistics_recent_hits',
39778   'page_arguments' => 'a:0:{}',
39779   'fit' => '7',
39780   'number_parts' => '3',
39781   'tab_parent' => '',
39782   'tab_root' => 'admin/reports/hits',
39783   'title' => 'Recent hits',
39784   'title_callback' => 't',
39785   'title_arguments' => '',
39786   'type' => '6',
39787   'block_callback' => '',
39788   'description' => 'View pages that have recently been visited.',
39789   'position' => '',
39790   'weight' => '0',
39791   'file' => 'modules/statistics/statistics.admin.inc',
39792 ))
39793 ->values(array(
39794   'path' => 'admin/reports/pages',
39795   'load_functions' => '',
39796   'to_arg_functions' => '',
39797   'access_callback' => 'user_access',
39798   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39799   'page_callback' => 'statistics_top_pages',
39800   'page_arguments' => 'a:0:{}',
39801   'fit' => '7',
39802   'number_parts' => '3',
39803   'tab_parent' => '',
39804   'tab_root' => 'admin/reports/pages',
39805   'title' => 'Top pages',
39806   'title_callback' => 't',
39807   'title_arguments' => '',
39808   'type' => '6',
39809   'block_callback' => '',
39810   'description' => 'View pages that have been hit frequently.',
39811   'position' => '',
39812   'weight' => '1',
39813   'file' => 'modules/statistics/statistics.admin.inc',
39814 ))
39815 ->values(array(
39816   'path' => 'admin/reports/referrers',
39817   'load_functions' => '',
39818   'to_arg_functions' => '',
39819   'access_callback' => 'user_access',
39820   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39821   'page_callback' => 'statistics_top_referrers',
39822   'page_arguments' => 'a:0:{}',
39823   'fit' => '7',
39824   'number_parts' => '3',
39825   'tab_parent' => '',
39826   'tab_root' => 'admin/reports/referrers',
39827   'title' => 'Top referrers',
39828   'title_callback' => 't',
39829   'title_arguments' => '',
39830   'type' => '6',
39831   'block_callback' => '',
39832   'description' => 'View top referrers.',
39833   'position' => '',
39834   'weight' => '0',
39835   'file' => 'modules/statistics/statistics.admin.inc',
39836 ))
39837 ->values(array(
39838   'path' => 'admin/reports/settings',
39839   'load_functions' => '',
39840   'to_arg_functions' => '',
39841   'access_callback' => 'user_access',
39842   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39843   'page_callback' => 'drupal_get_form',
39844   'page_arguments' => 'a:1:{i:0;s:34:"statistics_access_logging_settings";}',
39845   'fit' => '7',
39846   'number_parts' => '3',
39847   'tab_parent' => '',
39848   'tab_root' => 'admin/reports/settings',
39849   'title' => 'Access log settings',
39850   'title_callback' => 't',
39851   'title_arguments' => '',
39852   'type' => '6',
39853   'block_callback' => '',
39854   'description' => 'Control details about what and how your site logs.',
39855   'position' => '',
39856   'weight' => '3',
39857   'file' => 'modules/statistics/statistics.admin.inc',
39858 ))
39859 ->values(array(
39860   'path' => 'admin/reports/status',
39861   'load_functions' => '',
39862   'to_arg_functions' => '',
39863   'access_callback' => 'user_access',
39864   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39865   'page_callback' => 'system_status',
39866   'page_arguments' => 'a:0:{}',
39867   'fit' => '7',
39868   'number_parts' => '3',
39869   'tab_parent' => '',
39870   'tab_root' => 'admin/reports/status',
39871   'title' => 'Status report',
39872   'title_callback' => 't',
39873   'title_arguments' => '',
39874   'type' => '6',
39875   'block_callback' => '',
39876   'description' => "Get a status report about your site's operation and any detected problems.",
39877   'position' => '',
39878   'weight' => '10',
39879   'file' => 'modules/system/system.admin.inc',
39880 ))
39881 ->values(array(
39882   'path' => 'admin/reports/status/php',
39883   'load_functions' => '',
39884   'to_arg_functions' => '',
39885   'access_callback' => 'user_access',
39886   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39887   'page_callback' => 'system_php',
39888   'page_arguments' => 'a:0:{}',
39889   'fit' => '15',
39890   'number_parts' => '4',
39891   'tab_parent' => '',
39892   'tab_root' => 'admin/reports/status/php',
39893   'title' => 'PHP',
39894   'title_callback' => 't',
39895   'title_arguments' => '',
39896   'type' => '4',
39897   'block_callback' => '',
39898   'description' => '',
39899   'position' => '',
39900   'weight' => '0',
39901   'file' => 'modules/system/system.admin.inc',
39902 ))
39903 ->values(array(
39904   'path' => 'admin/reports/status/run-cron',
39905   'load_functions' => '',
39906   'to_arg_functions' => '',
39907   'access_callback' => 'user_access',
39908   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39909   'page_callback' => 'system_run_cron',
39910   'page_arguments' => 'a:0:{}',
39911   'fit' => '15',
39912   'number_parts' => '4',
39913   'tab_parent' => '',
39914   'tab_root' => 'admin/reports/status/run-cron',
39915   'title' => 'Run cron',
39916   'title_callback' => 't',
39917   'title_arguments' => '',
39918   'type' => '4',
39919   'block_callback' => '',
39920   'description' => '',
39921   'position' => '',
39922   'weight' => '0',
39923   'file' => 'modules/system/system.admin.inc',
39924 ))
39925 ->values(array(
39926   'path' => 'admin/reports/status/sql',
39927   'load_functions' => '',
39928   'to_arg_functions' => '',
39929   'access_callback' => 'user_access',
39930   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39931   'page_callback' => 'system_sql',
39932   'page_arguments' => 'a:0:{}',
39933   'fit' => '15',
39934   'number_parts' => '4',
39935   'tab_parent' => '',
39936   'tab_root' => 'admin/reports/status/sql',
39937   'title' => 'SQL',
39938   'title_callback' => 't',
39939   'title_arguments' => '',
39940   'type' => '4',
39941   'block_callback' => '',
39942   'description' => '',
39943   'position' => '',
39944   'weight' => '0',
39945   'file' => 'modules/system/system.admin.inc',
39946 ))
39947 ->values(array(
39948   'path' => 'admin/reports/visitors',
39949   'load_functions' => '',
39950   'to_arg_functions' => '',
39951   'access_callback' => 'user_access',
39952   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39953   'page_callback' => 'statistics_top_visitors',
39954   'page_arguments' => 'a:0:{}',
39955   'fit' => '7',
39956   'number_parts' => '3',
39957   'tab_parent' => '',
39958   'tab_root' => 'admin/reports/visitors',
39959   'title' => 'Top visitors',
39960   'title_callback' => 't',
39961   'title_arguments' => '',
39962   'type' => '6',
39963   'block_callback' => '',
39964   'description' => 'View visitors that hit many pages.',
39965   'position' => '',
39966   'weight' => '2',
39967   'file' => 'modules/statistics/statistics.admin.inc',
39968 ))
39969 ->values(array(
39970   'path' => 'admin/settings',
39971   'load_functions' => '',
39972   'to_arg_functions' => '',
39973   'access_callback' => 'user_access',
39974   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
39975   'page_callback' => 'system_settings_overview',
39976   'page_arguments' => 'a:0:{}',
39977   'fit' => '3',
39978   'number_parts' => '2',
39979   'tab_parent' => '',
39980   'tab_root' => 'admin/settings',
39981   'title' => 'Site configuration',
39982   'title_callback' => 't',
39983   'title_arguments' => '',
39984   'type' => '6',
39985   'block_callback' => '',
39986   'description' => 'Adjust basic site configuration options.',
39987   'position' => 'right',
39988   'weight' => '-5',
39989   'file' => 'modules/system/system.admin.inc',
39990 ))
39991 ->values(array(
39992   'path' => 'admin/settings/actions',
39993   'load_functions' => '',
39994   'to_arg_functions' => '',
39995   'access_callback' => 'user_access',
39996   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
39997   'page_callback' => 'system_actions_manage',
39998   'page_arguments' => 'a:0:{}',
39999   'fit' => '7',
40000   'number_parts' => '3',
40001   'tab_parent' => '',
40002   'tab_root' => 'admin/settings/actions',
40003   'title' => 'Actions',
40004   'title_callback' => 't',
40005   'title_arguments' => '',
40006   'type' => '6',
40007   'block_callback' => '',
40008   'description' => 'Manage the actions defined for your site.',
40009   'position' => '',
40010   'weight' => '0',
40011   'file' => '',
40012 ))
40013 ->values(array(
40014   'path' => 'admin/settings/actions/configure',
40015   'load_functions' => '',
40016   'to_arg_functions' => '',
40017   'access_callback' => 'user_access',
40018   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40019   'page_callback' => 'drupal_get_form',
40020   'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
40021   'fit' => '15',
40022   'number_parts' => '4',
40023   'tab_parent' => '',
40024   'tab_root' => 'admin/settings/actions/configure',
40025   'title' => 'Configure an advanced action',
40026   'title_callback' => 't',
40027   'title_arguments' => '',
40028   'type' => '4',
40029   'block_callback' => '',
40030   'description' => '',
40031   'position' => '',
40032   'weight' => '0',
40033   'file' => '',
40034 ))
40035 ->values(array(
40036   'path' => 'admin/settings/actions/delete/%',
40037   'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
40038   'to_arg_functions' => '',
40039   'access_callback' => 'user_access',
40040   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40041   'page_callback' => 'drupal_get_form',
40042   'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
40043   'fit' => '30',
40044   'number_parts' => '5',
40045   'tab_parent' => '',
40046   'tab_root' => 'admin/settings/actions/delete/%',
40047   'title' => 'Delete action',
40048   'title_callback' => 't',
40049   'title_arguments' => '',
40050   'type' => '4',
40051   'block_callback' => '',
40052   'description' => 'Delete an action.',
40053   'position' => '',
40054   'weight' => '0',
40055   'file' => '',
40056 ))
40057 ->values(array(
40058   'path' => 'admin/settings/actions/manage',
40059   'load_functions' => '',
40060   'to_arg_functions' => '',
40061   'access_callback' => 'user_access',
40062   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40063   'page_callback' => 'system_actions_manage',
40064   'page_arguments' => 'a:0:{}',
40065   'fit' => '15',
40066   'number_parts' => '4',
40067   'tab_parent' => 'admin/settings/actions',
40068   'tab_root' => 'admin/settings/actions',
40069   'title' => 'Manage actions',
40070   'title_callback' => 't',
40071   'title_arguments' => '',
40072   'type' => '136',
40073   'block_callback' => '',
40074   'description' => 'Manage the actions defined for your site.',
40075   'position' => '',
40076   'weight' => '-2',
40077   'file' => '',
40078 ))
40079 ->values(array(
40080   'path' => 'admin/settings/actions/orphan',
40081   'load_functions' => '',
40082   'to_arg_functions' => '',
40083   'access_callback' => 'user_access',
40084   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40085   'page_callback' => 'system_actions_remove_orphans',
40086   'page_arguments' => 'a:0:{}',
40087   'fit' => '15',
40088   'number_parts' => '4',
40089   'tab_parent' => '',
40090   'tab_root' => 'admin/settings/actions/orphan',
40091   'title' => 'Remove orphans',
40092   'title_callback' => 't',
40093   'title_arguments' => '',
40094   'type' => '4',
40095   'block_callback' => '',
40096   'description' => '',
40097   'position' => '',
40098   'weight' => '0',
40099   'file' => '',
40100 ))
40101 ->values(array(
40102   'path' => 'admin/settings/admin',
40103   'load_functions' => '',
40104   'to_arg_functions' => '',
40105   'access_callback' => 'user_access',
40106   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40107   'page_callback' => 'drupal_get_form',
40108   'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
40109   'fit' => '7',
40110   'number_parts' => '3',
40111   'tab_parent' => '',
40112   'tab_root' => 'admin/settings/admin',
40113   'title' => 'Administration theme',
40114   'title_callback' => 't',
40115   'title_arguments' => '',
40116   'type' => '6',
40117   'block_callback' => 'system_admin_theme_settings',
40118   'description' => 'Settings for how your administrative pages should look.',
40119   'position' => 'left',
40120   'weight' => '0',
40121   'file' => 'modules/system/system.admin.inc',
40122 ))
40123 ->values(array(
40124   'path' => 'admin/settings/clean-urls',
40125   'load_functions' => '',
40126   'to_arg_functions' => '',
40127   'access_callback' => 'user_access',
40128   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40129   'page_callback' => 'drupal_get_form',
40130   'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
40131   'fit' => '7',
40132   'number_parts' => '3',
40133   'tab_parent' => '',
40134   'tab_root' => 'admin/settings/clean-urls',
40135   'title' => 'Clean URLs',
40136   'title_callback' => 't',
40137   'title_arguments' => '',
40138   'type' => '6',
40139   'block_callback' => '',
40140   'description' => 'Enable or disable clean URLs for your site.',
40141   'position' => '',
40142   'weight' => '0',
40143   'file' => 'modules/system/system.admin.inc',
40144 ))
40145 ->values(array(
40146   'path' => 'admin/settings/clean-urls/check',
40147   'load_functions' => '',
40148   'to_arg_functions' => '',
40149   'access_callback' => '1',
40150   'access_arguments' => 'a:0:{}',
40151   'page_callback' => 'drupal_json',
40152   'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
40153   'fit' => '15',
40154   'number_parts' => '4',
40155   'tab_parent' => '',
40156   'tab_root' => 'admin/settings/clean-urls/check',
40157   'title' => 'Clean URL check',
40158   'title_callback' => 't',
40159   'title_arguments' => '',
40160   'type' => '4',
40161   'block_callback' => '',
40162   'description' => '',
40163   'position' => '',
40164   'weight' => '0',
40165   'file' => '',
40166 ))
40167 ->values(array(
40168   'path' => 'admin/settings/date-time',
40169   'load_functions' => '',
40170   'to_arg_functions' => '',
40171   'access_callback' => 'user_access',
40172   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40173   'page_callback' => 'drupal_get_form',
40174   'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
40175   'fit' => '7',
40176   'number_parts' => '3',
40177   'tab_parent' => '',
40178   'tab_root' => 'admin/settings/date-time',
40179   'title' => 'Date and time',
40180   'title_callback' => 't',
40181   'title_arguments' => '',
40182   'type' => '6',
40183   'block_callback' => '',
40184   'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
40185   'position' => '',
40186   'weight' => '0',
40187   'file' => 'modules/system/system.admin.inc',
40188 ))
40189 ->values(array(
40190   'path' => 'admin/settings/date-time/configure',
40191   'load_functions' => '',
40192   'to_arg_functions' => '',
40193   'access_callback' => 'user_access',
40194   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40195   'page_callback' => 'drupal_get_form',
40196   'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
40197   'fit' => '15',
40198   'number_parts' => '4',
40199   'tab_parent' => 'admin/settings/date-time',
40200   'tab_root' => 'admin/settings/date-time',
40201   'title' => 'Date and time',
40202   'title_callback' => 't',
40203   'title_arguments' => '',
40204   'type' => '136',
40205   'block_callback' => '',
40206   'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
40207   'position' => '',
40208   'weight' => '0',
40209   'file' => 'modules/system/system.admin.inc',
40210 ))
40211 ->values(array(
40212   'path' => 'admin/settings/date-time/delete/%',
40213   'load_functions' => 'a:1:{i:4;N;}',
40214   'to_arg_functions' => '',
40215   'access_callback' => 'user_access',
40216   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40217   'page_callback' => 'drupal_get_form',
40218   'page_arguments' => 'a:2:{i:0;s:32:"date_api_delete_format_type_form";i:1;i:4;}',
40219   'fit' => '30',
40220   'number_parts' => '5',
40221   'tab_parent' => '',
40222   'tab_root' => 'admin/settings/date-time/delete/%',
40223   'title' => 'Delete date format type',
40224   'title_callback' => 't',
40225   'title_arguments' => '',
40226   'type' => '4',
40227   'block_callback' => '',
40228   'description' => 'Allow users to delete a configured date format type.',
40229   'position' => '',
40230   'weight' => '0',
40231   'file' => 'sites/all/modules/date/date_api.admin.inc',
40232 ))
40233 ->values(array(
40234   'path' => 'admin/settings/date-time/formats',
40235   'load_functions' => '',
40236   'to_arg_functions' => '',
40237   'access_callback' => 'user_access',
40238   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40239   'page_callback' => 'drupal_get_form',
40240   'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
40241   'fit' => '15',
40242   'number_parts' => '4',
40243   'tab_parent' => 'admin/settings/date-time',
40244   'tab_root' => 'admin/settings/date-time',
40245   'title' => 'Formats',
40246   'title_callback' => 't',
40247   'title_arguments' => '',
40248   'type' => '128',
40249   'block_callback' => '',
40250   'description' => 'Allow users to configure date formats',
40251   'position' => '',
40252   'weight' => '1',
40253   'file' => 'sites/all/modules/date/date_api.admin.inc',
40254 ))
40255 ->values(array(
40256   'path' => 'admin/settings/date-time/formats/add',
40257   'load_functions' => '',
40258   'to_arg_functions' => '',
40259   'access_callback' => 'user_access',
40260   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40261   'page_callback' => 'drupal_get_form',
40262   'page_arguments' => 'a:1:{i:0;s:30:"date_api_add_date_formats_form";}',
40263   'fit' => '31',
40264   'number_parts' => '5',
40265   'tab_parent' => 'admin/settings/date-time/formats',
40266   'tab_root' => 'admin/settings/date-time',
40267   'title' => 'Add format',
40268   'title_callback' => 't',
40269   'title_arguments' => '',
40270   'type' => '128',
40271   'block_callback' => '',
40272   'description' => 'Allow users to add additional date formats.',
40273   'position' => '',
40274   'weight' => '3',
40275   'file' => 'sites/all/modules/date/date_api.admin.inc',
40276 ))
40277 ->values(array(
40278   'path' => 'admin/settings/date-time/formats/configure',
40279   'load_functions' => '',
40280   'to_arg_functions' => '',
40281   'access_callback' => 'user_access',
40282   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40283   'page_callback' => 'drupal_get_form',
40284   'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
40285   'fit' => '31',
40286   'number_parts' => '5',
40287   'tab_parent' => 'admin/settings/date-time/formats',
40288   'tab_root' => 'admin/settings/date-time',
40289   'title' => 'Configure',
40290   'title_callback' => 't',
40291   'title_arguments' => '',
40292   'type' => '136',
40293   'block_callback' => '',
40294   'description' => 'Allow users to configure date formats',
40295   'position' => '',
40296   'weight' => '1',
40297   'file' => 'sites/all/modules/date/date_api.admin.inc',
40298 ))
40299 ->values(array(
40300   'path' => 'admin/settings/date-time/formats/custom',
40301   'load_functions' => '',
40302   'to_arg_functions' => '',
40303   'access_callback' => 'user_access',
40304   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40305   'page_callback' => 'date_api_configure_custom_date_formats',
40306   'page_arguments' => 'a:0:{}',
40307   'fit' => '31',
40308   'number_parts' => '5',
40309   'tab_parent' => 'admin/settings/date-time/formats',
40310   'tab_root' => 'admin/settings/date-time',
40311   'title' => 'Custom formats',
40312   'title_callback' => 't',
40313   'title_arguments' => '',
40314   'type' => '128',
40315   'block_callback' => '',
40316   'description' => 'Allow users to configure custom date formats.',
40317   'position' => '',
40318   'weight' => '2',
40319   'file' => 'sites/all/modules/date/date_api.admin.inc',
40320 ))
40321 ->values(array(
40322   'path' => 'admin/settings/date-time/formats/delete/%',
40323   'load_functions' => 'a:1:{i:5;N;}',
40324   'to_arg_functions' => '',
40325   'access_callback' => 'user_access',
40326   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40327   'page_callback' => 'drupal_get_form',
40328   'page_arguments' => 'a:2:{i:0;s:27:"date_api_delete_format_form";i:1;i:5;}',
40329   'fit' => '62',
40330   'number_parts' => '6',
40331   'tab_parent' => '',
40332   'tab_root' => 'admin/settings/date-time/formats/delete/%',
40333   'title' => 'Delete date format',
40334   'title_callback' => 't',
40335   'title_arguments' => '',
40336   'type' => '4',
40337   'block_callback' => '',
40338   'description' => 'Allow users to delete a configured date format.',
40339   'position' => '',
40340   'weight' => '0',
40341   'file' => 'sites/all/modules/date/date_api.admin.inc',
40342 ))
40343 ->values(array(
40344   'path' => 'admin/settings/date-time/formats/lookup',
40345   'load_functions' => '',
40346   'to_arg_functions' => '',
40347   'access_callback' => 'user_access',
40348   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40349   'page_callback' => 'date_api_date_time_lookup',
40350   'page_arguments' => 'a:0:{}',
40351   'fit' => '31',
40352   'number_parts' => '5',
40353   'tab_parent' => '',
40354   'tab_root' => 'admin/settings/date-time/formats/lookup',
40355   'title' => 'Date and time lookup',
40356   'title_callback' => 't',
40357   'title_arguments' => '',
40358   'type' => '4',
40359   'block_callback' => '',
40360   'description' => '',
40361   'position' => '',
40362   'weight' => '0',
40363   'file' => '',
40364 ))
40365 ->values(array(
40366   'path' => 'admin/settings/date-time/lookup',
40367   'load_functions' => '',
40368   'to_arg_functions' => '',
40369   'access_callback' => 'user_access',
40370   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40371   'page_callback' => 'system_date_time_lookup',
40372   'page_arguments' => 'a:0:{}',
40373   'fit' => '15',
40374   'number_parts' => '4',
40375   'tab_parent' => '',
40376   'tab_root' => 'admin/settings/date-time/lookup',
40377   'title' => 'Date and time lookup',
40378   'title_callback' => 't',
40379   'title_arguments' => '',
40380   'type' => '4',
40381   'block_callback' => '',
40382   'description' => '',
40383   'position' => '',
40384   'weight' => '0',
40385   'file' => 'modules/system/system.admin.inc',
40386 ))
40387 ->values(array(
40388   'path' => 'admin/settings/email',
40389   'load_functions' => '',
40390   'to_arg_functions' => '',
40391   'access_callback' => 'user_access',
40392   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40393   'page_callback' => 'drupal_get_form',
40394   'page_arguments' => 'a:1:{i:0;s:20:"email_admin_settings";}',
40395   'fit' => '7',
40396   'number_parts' => '3',
40397   'tab_parent' => '',
40398   'tab_root' => 'admin/settings/email',
40399   'title' => 'CCK Email Contact Form Settings',
40400   'title_callback' => 't',
40401   'title_arguments' => '',
40402   'type' => '6',
40403   'block_callback' => '',
40404   'description' => 'Administer flood control settings for email contact forms',
40405   'position' => '',
40406   'weight' => '0',
40407   'file' => '',
40408 ))
40409 ->values(array(
40410   'path' => 'admin/settings/error-reporting',
40411   'load_functions' => '',
40412   'to_arg_functions' => '',
40413   'access_callback' => 'user_access',
40414   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40415   'page_callback' => 'drupal_get_form',
40416   'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
40417   'fit' => '7',
40418   'number_parts' => '3',
40419   'tab_parent' => '',
40420   'tab_root' => 'admin/settings/error-reporting',
40421   'title' => 'Error reporting',
40422   'title_callback' => 't',
40423   'title_arguments' => '',
40424   'type' => '6',
40425   'block_callback' => '',
40426   'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
40427   'position' => '',
40428   'weight' => '0',
40429   'file' => 'modules/system/system.admin.inc',
40430 ))
40431 ->values(array(
40432   'path' => 'admin/settings/event',
40433   'load_functions' => '',
40434   'to_arg_functions' => '',
40435   'access_callback' => 'user_access',
40436   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40437   'page_callback' => 'system_admin_menu_block_page',
40438   'page_arguments' => 'a:0:{}',
40439   'fit' => '7',
40440   'number_parts' => '3',
40441   'tab_parent' => '',
40442   'tab_root' => 'admin/settings/event',
40443   'title' => 'Events',
40444   'title_callback' => 't',
40445   'title_arguments' => '',
40446   'type' => '6',
40447   'block_callback' => '',
40448   'description' => 'Set up how your site handles events.',
40449   'position' => '',
40450   'weight' => '0',
40451   'file' => 'modules/system/system.admin.inc',
40452 ))
40453 ->values(array(
40454   'path' => 'admin/settings/event/overview',
40455   'load_functions' => '',
40456   'to_arg_functions' => '',
40457   'access_callback' => 'user_access',
40458   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40459   'page_callback' => 'drupal_get_form',
40460   'page_arguments' => 'a:1:{i:0;s:29:"event_admin_overview_settings";}',
40461   'fit' => '15',
40462   'number_parts' => '4',
40463   'tab_parent' => '',
40464   'tab_root' => 'admin/settings/event/overview',
40465   'title' => 'Event overview',
40466   'title_callback' => 't',
40467   'title_arguments' => '',
40468   'type' => '6',
40469   'block_callback' => '',
40470   'description' => 'Change how event summary information is displayed.',
40471   'position' => '',
40472   'weight' => '0',
40473   'file' => '',
40474 ))
40475 ->values(array(
40476   'path' => 'admin/settings/event/timezone',
40477   'load_functions' => '',
40478   'to_arg_functions' => '',
40479   'access_callback' => 'user_access',
40480   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40481   'page_callback' => 'drupal_get_form',
40482   'page_arguments' => 'a:1:{i:0;s:29:"event_admin_timezone_settings";}',
40483   'fit' => '15',
40484   'number_parts' => '4',
40485   'tab_parent' => '',
40486   'tab_root' => 'admin/settings/event/timezone',
40487   'title' => 'Timezone handling',
40488   'title_callback' => 't',
40489   'title_arguments' => '',
40490   'type' => '6',
40491   'block_callback' => '',
40492   'description' => 'Change how timezone information is saved and displayed.',
40493   'position' => '',
40494   'weight' => '0',
40495   'file' => '',
40496 ))
40497 ->values(array(
40498   'path' => 'admin/settings/file-system',
40499   'load_functions' => '',
40500   'to_arg_functions' => '',
40501   'access_callback' => 'user_access',
40502   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40503   'page_callback' => 'drupal_get_form',
40504   'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
40505   'fit' => '7',
40506   'number_parts' => '3',
40507   'tab_parent' => '',
40508   'tab_root' => 'admin/settings/file-system',
40509   'title' => 'File system',
40510   'title_callback' => 't',
40511   'title_arguments' => '',
40512   'type' => '6',
40513   'block_callback' => '',
40514   'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
40515   'position' => '',
40516   'weight' => '0',
40517   'file' => 'modules/system/system.admin.inc',
40518 ))
40519 ->values(array(
40520   'path' => 'admin/settings/filters',
40521   'load_functions' => '',
40522   'to_arg_functions' => '',
40523   'access_callback' => 'user_access',
40524   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40525   'page_callback' => 'drupal_get_form',
40526   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
40527   'fit' => '7',
40528   'number_parts' => '3',
40529   'tab_parent' => '',
40530   'tab_root' => 'admin/settings/filters',
40531   'title' => 'Input formats',
40532   'title_callback' => 't',
40533   'title_arguments' => '',
40534   'type' => '6',
40535   'block_callback' => '',
40536   'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
40537   'position' => '',
40538   'weight' => '0',
40539   'file' => 'modules/filter/filter.admin.inc',
40540 ))
40541 ->values(array(
40542   'path' => 'admin/settings/filters/%',
40543   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40544   'to_arg_functions' => '',
40545   'access_callback' => 'user_access',
40546   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40547   'page_callback' => 'filter_admin_format_page',
40548   'page_arguments' => 'a:1:{i:0;i:3;}',
40549   'fit' => '14',
40550   'number_parts' => '4',
40551   'tab_parent' => '',
40552   'tab_root' => 'admin/settings/filters/%',
40553   'title' => '',
40554   'title_callback' => 'filter_admin_format_title',
40555   'title_arguments' => 'a:1:{i:0;i:3;}',
40556   'type' => '4',
40557   'block_callback' => '',
40558   'description' => '',
40559   'position' => '',
40560   'weight' => '0',
40561   'file' => 'modules/filter/filter.admin.inc',
40562 ))
40563 ->values(array(
40564   'path' => 'admin/settings/filters/%/configure',
40565   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40566   'to_arg_functions' => '',
40567   'access_callback' => 'user_access',
40568   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40569   'page_callback' => 'filter_admin_configure_page',
40570   'page_arguments' => 'a:1:{i:0;i:3;}',
40571   'fit' => '29',
40572   'number_parts' => '5',
40573   'tab_parent' => 'admin/settings/filters/%',
40574   'tab_root' => 'admin/settings/filters/%',
40575   'title' => 'Configure',
40576   'title_callback' => 't',
40577   'title_arguments' => '',
40578   'type' => '128',
40579   'block_callback' => '',
40580   'description' => '',
40581   'position' => '',
40582   'weight' => '1',
40583   'file' => 'modules/filter/filter.admin.inc',
40584 ))
40585 ->values(array(
40586   'path' => 'admin/settings/filters/%/edit',
40587   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40588   'to_arg_functions' => '',
40589   'access_callback' => 'user_access',
40590   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40591   'page_callback' => 'filter_admin_format_page',
40592   'page_arguments' => 'a:1:{i:0;i:3;}',
40593   'fit' => '29',
40594   'number_parts' => '5',
40595   'tab_parent' => 'admin/settings/filters/%',
40596   'tab_root' => 'admin/settings/filters/%',
40597   'title' => 'Edit',
40598   'title_callback' => 't',
40599   'title_arguments' => '',
40600   'type' => '136',
40601   'block_callback' => '',
40602   'description' => '',
40603   'position' => '',
40604   'weight' => '0',
40605   'file' => 'modules/filter/filter.admin.inc',
40606 ))
40607 ->values(array(
40608   'path' => 'admin/settings/filters/%/order',
40609   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40610   'to_arg_functions' => '',
40611   'access_callback' => 'user_access',
40612   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40613   'page_callback' => 'filter_admin_order_page',
40614   'page_arguments' => 'a:1:{i:0;i:3;}',
40615   'fit' => '29',
40616   'number_parts' => '5',
40617   'tab_parent' => 'admin/settings/filters/%',
40618   'tab_root' => 'admin/settings/filters/%',
40619   'title' => 'Rearrange',
40620   'title_callback' => 't',
40621   'title_arguments' => '',
40622   'type' => '128',
40623   'block_callback' => '',
40624   'description' => '',
40625   'position' => '',
40626   'weight' => '2',
40627   'file' => 'modules/filter/filter.admin.inc',
40628 ))
40629 ->values(array(
40630   'path' => 'admin/settings/filters/add',
40631   'load_functions' => '',
40632   'to_arg_functions' => '',
40633   'access_callback' => 'user_access',
40634   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40635   'page_callback' => 'filter_admin_format_page',
40636   'page_arguments' => 'a:0:{}',
40637   'fit' => '15',
40638   'number_parts' => '4',
40639   'tab_parent' => 'admin/settings/filters',
40640   'tab_root' => 'admin/settings/filters',
40641   'title' => 'Add input format',
40642   'title_callback' => 't',
40643   'title_arguments' => '',
40644   'type' => '128',
40645   'block_callback' => '',
40646   'description' => '',
40647   'position' => '',
40648   'weight' => '1',
40649   'file' => 'modules/filter/filter.admin.inc',
40650 ))
40651 ->values(array(
40652   'path' => 'admin/settings/filters/delete',
40653   'load_functions' => '',
40654   'to_arg_functions' => '',
40655   'access_callback' => 'user_access',
40656   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40657   'page_callback' => 'drupal_get_form',
40658   'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
40659   'fit' => '15',
40660   'number_parts' => '4',
40661   'tab_parent' => '',
40662   'tab_root' => 'admin/settings/filters/delete',
40663   'title' => 'Delete input format',
40664   'title_callback' => 't',
40665   'title_arguments' => '',
40666   'type' => '4',
40667   'block_callback' => '',
40668   'description' => '',
40669   'position' => '',
40670   'weight' => '0',
40671   'file' => 'modules/filter/filter.admin.inc',
40672 ))
40673 ->values(array(
40674   'path' => 'admin/settings/filters/list',
40675   'load_functions' => '',
40676   'to_arg_functions' => '',
40677   'access_callback' => 'user_access',
40678   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40679   'page_callback' => 'drupal_get_form',
40680   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
40681   'fit' => '15',
40682   'number_parts' => '4',
40683   'tab_parent' => 'admin/settings/filters',
40684   'tab_root' => 'admin/settings/filters',
40685   'title' => 'List',
40686   'title_callback' => 't',
40687   'title_arguments' => '',
40688   'type' => '136',
40689   'block_callback' => '',
40690   'description' => '',
40691   'position' => '',
40692   'weight' => '0',
40693   'file' => 'modules/filter/filter.admin.inc',
40694 ))
40695 ->values(array(
40696   'path' => 'admin/settings/image-toolkit',
40697   'load_functions' => '',
40698   'to_arg_functions' => '',
40699   'access_callback' => 'user_access',
40700   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40701   'page_callback' => 'drupal_get_form',
40702   'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
40703   'fit' => '7',
40704   'number_parts' => '3',
40705   'tab_parent' => '',
40706   'tab_root' => 'admin/settings/image-toolkit',
40707   'title' => 'Image toolkit',
40708   'title_callback' => 't',
40709   'title_arguments' => '',
40710   'type' => '6',
40711   'block_callback' => '',
40712   'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
40713   'position' => '',
40714   'weight' => '0',
40715   'file' => 'modules/system/system.admin.inc',
40716 ))
40717 ->values(array(
40718   'path' => 'admin/settings/imageapi',
40719   'load_functions' => '',
40720   'to_arg_functions' => '',
40721   'access_callback' => 'user_access',
40722   'access_arguments' => 'a:1:{i:0;s:19:"administer imageapi";}',
40723   'page_callback' => 'drupal_get_form',
40724   'page_arguments' => 'a:1:{i:0;s:17:"imageapi_settings";}',
40725   'fit' => '7',
40726   'number_parts' => '3',
40727   'tab_parent' => '',
40728   'tab_root' => 'admin/settings/imageapi',
40729   'title' => 'ImageAPI',
40730   'title_callback' => 't',
40731   'title_arguments' => '',
40732   'type' => '6',
40733   'block_callback' => '',
40734   'description' => 'Configure ImageAPI.',
40735   'position' => '',
40736   'weight' => '0',
40737   'file' => '',
40738 ))
40739 ->values(array(
40740   'path' => 'admin/settings/language',
40741   'load_functions' => '',
40742   'to_arg_functions' => '',
40743   'access_callback' => 'user_access',
40744   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40745   'page_callback' => 'locale_inc_callback',
40746   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
40747   'fit' => '7',
40748   'number_parts' => '3',
40749   'tab_parent' => '',
40750   'tab_root' => 'admin/settings/language',
40751   'title' => 'Languages',
40752   'title_callback' => 't',
40753   'title_arguments' => '',
40754   'type' => '6',
40755   'block_callback' => '',
40756   'description' => 'Configure languages for content and the user interface.',
40757   'position' => '',
40758   'weight' => '0',
40759   'file' => '',
40760 ))
40761 ->values(array(
40762   'path' => 'admin/settings/language/add',
40763   'load_functions' => '',
40764   'to_arg_functions' => '',
40765   'access_callback' => 'user_access',
40766   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40767   'page_callback' => 'locale_inc_callback',
40768   'page_arguments' => 'a:1:{i:0;s:27:"locale_languages_add_screen";}',
40769   'fit' => '15',
40770   'number_parts' => '4',
40771   'tab_parent' => 'admin/settings/language',
40772   'tab_root' => 'admin/settings/language',
40773   'title' => 'Add language',
40774   'title_callback' => 't',
40775   'title_arguments' => '',
40776   'type' => '128',
40777   'block_callback' => '',
40778   'description' => '',
40779   'position' => '',
40780   'weight' => '5',
40781   'file' => '',
40782 ))
40783 ->values(array(
40784   'path' => 'admin/settings/language/configure',
40785   'load_functions' => '',
40786   'to_arg_functions' => '',
40787   'access_callback' => 'user_access',
40788   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40789   'page_callback' => 'locale_inc_callback',
40790   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
40791   'fit' => '15',
40792   'number_parts' => '4',
40793   'tab_parent' => 'admin/settings/language',
40794   'tab_root' => 'admin/settings/language',
40795   'title' => 'Configure',
40796   'title_callback' => 't',
40797   'title_arguments' => '',
40798   'type' => '128',
40799   'block_callback' => '',
40800   'description' => '',
40801   'position' => '',
40802   'weight' => '10',
40803   'file' => '',
40804 ))
40805 ->values(array(
40806   'path' => 'admin/settings/language/configure/language',
40807   'load_functions' => '',
40808   'to_arg_functions' => '',
40809   'access_callback' => 'user_access',
40810   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40811   'page_callback' => 'locale_inc_callback',
40812   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
40813   'fit' => '31',
40814   'number_parts' => '5',
40815   'tab_parent' => 'admin/settings/language/configure',
40816   'tab_root' => 'admin/settings/language',
40817   'title' => 'Language negotiation',
40818   'title_callback' => 't',
40819   'title_arguments' => '',
40820   'type' => '136',
40821   'block_callback' => '',
40822   'description' => '',
40823   'position' => '',
40824   'weight' => '-10',
40825   'file' => '',
40826 ))
40827 ->values(array(
40828   'path' => 'admin/settings/language/configure/strings',
40829   'load_functions' => '',
40830   'to_arg_functions' => '',
40831   'access_callback' => 'user_access',
40832   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40833   'page_callback' => 'drupal_get_form',
40834   'page_arguments' => 'a:1:{i:0;s:26:"i18nstrings_admin_settings";}',
40835   'fit' => '31',
40836   'number_parts' => '5',
40837   'tab_parent' => 'admin/settings/language/configure',
40838   'tab_root' => 'admin/settings/language',
40839   'title' => 'String translation',
40840   'title_callback' => 't',
40841   'title_arguments' => '',
40842   'type' => '128',
40843   'block_callback' => '',
40844   'description' => '',
40845   'position' => '',
40846   'weight' => '20',
40847   'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
40848 ))
40849 ->values(array(
40850   'path' => 'admin/settings/language/delete/%',
40851   'load_functions' => 'a:1:{i:4;N;}',
40852   'to_arg_functions' => '',
40853   'access_callback' => 'user_access',
40854   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40855   'page_callback' => 'locale_inc_callback',
40856   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_languages_delete_form";i:2;i:4;}',
40857   'fit' => '30',
40858   'number_parts' => '5',
40859   'tab_parent' => '',
40860   'tab_root' => 'admin/settings/language/delete/%',
40861   'title' => 'Confirm',
40862   'title_callback' => 't',
40863   'title_arguments' => '',
40864   'type' => '4',
40865   'block_callback' => '',
40866   'description' => '',
40867   'position' => '',
40868   'weight' => '0',
40869   'file' => '',
40870 ))
40871 ->values(array(
40872   'path' => 'admin/settings/language/edit/%',
40873   'load_functions' => 'a:1:{i:4;N;}',
40874   'to_arg_functions' => '',
40875   'access_callback' => 'user_access',
40876   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40877   'page_callback' => 'locale_inc_callback',
40878   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_languages_edit_form";i:2;i:4;}',
40879   'fit' => '30',
40880   'number_parts' => '5',
40881   'tab_parent' => '',
40882   'tab_root' => 'admin/settings/language/edit/%',
40883   'title' => 'Edit language',
40884   'title_callback' => 't',
40885   'title_arguments' => '',
40886   'type' => '4',
40887   'block_callback' => '',
40888   'description' => '',
40889   'position' => '',
40890   'weight' => '0',
40891   'file' => '',
40892 ))
40893 ->values(array(
40894   'path' => 'admin/settings/language/i18n',
40895   'load_functions' => '',
40896   'to_arg_functions' => '',
40897   'access_callback' => 'user_access',
40898   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40899   'page_callback' => 'drupal_get_form',
40900   'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
40901   'fit' => '15',
40902   'number_parts' => '4',
40903   'tab_parent' => 'admin/settings/language',
40904   'tab_root' => 'admin/settings/language',
40905   'title' => 'Multilingual system',
40906   'title_callback' => 't',
40907   'title_arguments' => '',
40908   'type' => '128',
40909   'block_callback' => '',
40910   'description' => 'Configure extended options for multilingual content and translations.',
40911   'position' => '',
40912   'weight' => '10',
40913   'file' => 'sites/all/modules/i18n/i18n.admin.inc',
40914 ))
40915 ->values(array(
40916   'path' => 'admin/settings/language/i18n/configure',
40917   'load_functions' => '',
40918   'to_arg_functions' => '',
40919   'access_callback' => 'user_access',
40920   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40921   'page_callback' => 'drupal_get_form',
40922   'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
40923   'fit' => '31',
40924   'number_parts' => '5',
40925   'tab_parent' => 'admin/settings/language/i18n',
40926   'tab_root' => 'admin/settings/language',
40927   'title' => 'Multilingual system',
40928   'title_callback' => 't',
40929   'title_arguments' => '',
40930   'type' => '136',
40931   'block_callback' => '',
40932   'description' => 'Configure extended options for multilingual content and translations.',
40933   'position' => '',
40934   'weight' => '0',
40935   'file' => 'sites/all/modules/i18n/i18n.admin.inc',
40936 ))
40937 ->values(array(
40938   'path' => 'admin/settings/language/overview',
40939   'load_functions' => '',
40940   'to_arg_functions' => '',
40941   'access_callback' => 'user_access',
40942   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40943   'page_callback' => 'locale_inc_callback',
40944   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
40945   'fit' => '15',
40946   'number_parts' => '4',
40947   'tab_parent' => 'admin/settings/language',
40948   'tab_root' => 'admin/settings/language',
40949   'title' => 'List',
40950   'title_callback' => 't',
40951   'title_arguments' => '',
40952   'type' => '136',
40953   'block_callback' => '',
40954   'description' => '',
40955   'position' => '',
40956   'weight' => '0',
40957   'file' => '',
40958 ))
40959 ->values(array(
40960   'path' => 'admin/settings/logging',
40961   'load_functions' => '',
40962   'to_arg_functions' => '',
40963   'access_callback' => 'user_access',
40964   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40965   'page_callback' => 'system_logging_overview',
40966   'page_arguments' => 'a:0:{}',
40967   'fit' => '7',
40968   'number_parts' => '3',
40969   'tab_parent' => '',
40970   'tab_root' => 'admin/settings/logging',
40971   'title' => 'Logging and alerts',
40972   'title_callback' => 't',
40973   'title_arguments' => '',
40974   'type' => '6',
40975   'block_callback' => '',
40976   'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
40977   'position' => '',
40978   'weight' => '0',
40979   'file' => 'modules/system/system.admin.inc',
40980 ))
40981 ->values(array(
40982   'path' => 'admin/settings/performance',
40983   'load_functions' => '',
40984   'to_arg_functions' => '',
40985   'access_callback' => 'user_access',
40986   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40987   'page_callback' => 'drupal_get_form',
40988   'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
40989   'fit' => '7',
40990   'number_parts' => '3',
40991   'tab_parent' => '',
40992   'tab_root' => 'admin/settings/performance',
40993   'title' => 'Performance',
40994   'title_callback' => 't',
40995   'title_arguments' => '',
40996   'type' => '6',
40997   'block_callback' => '',
40998   'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
40999   'position' => '',
41000   'weight' => '0',
41001   'file' => 'modules/system/system.admin.inc',
41002 ))
41003 ->values(array(
41004   'path' => 'admin/settings/site-information',
41005   'load_functions' => '',
41006   'to_arg_functions' => '',
41007   'access_callback' => 'user_access',
41008   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41009   'page_callback' => 'drupal_get_form',
41010   'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
41011   'fit' => '7',
41012   'number_parts' => '3',
41013   'tab_parent' => '',
41014   'tab_root' => 'admin/settings/site-information',
41015   'title' => 'Site information',
41016   'title_callback' => 't',
41017   'title_arguments' => '',
41018   'type' => '6',
41019   'block_callback' => '',
41020   'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
41021   'position' => '',
41022   'weight' => '0',
41023   'file' => 'modules/system/system.admin.inc',
41024 ))
41025 ->values(array(
41026   'path' => 'admin/settings/site-maintenance',
41027   'load_functions' => '',
41028   'to_arg_functions' => '',
41029   'access_callback' => 'user_access',
41030   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41031   'page_callback' => 'drupal_get_form',
41032   'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
41033   'fit' => '7',
41034   'number_parts' => '3',
41035   'tab_parent' => '',
41036   'tab_root' => 'admin/settings/site-maintenance',
41037   'title' => 'Site maintenance',
41038   'title_callback' => 't',
41039   'title_arguments' => '',
41040   'type' => '6',
41041   'block_callback' => '',
41042   'description' => 'Take the site off-line for maintenance or bring it back online.',
41043   'position' => '',
41044   'weight' => '0',
41045   'file' => 'modules/system/system.admin.inc',
41046 ))
41047 ->values(array(
41048   'path' => 'admin/settings/uploads',
41049   'load_functions' => '',
41050   'to_arg_functions' => '',
41051   'access_callback' => 'user_access',
41052   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41053   'page_callback' => 'drupal_get_form',
41054   'page_arguments' => 'a:1:{i:0;s:21:"upload_admin_settings";}',
41055   'fit' => '7',
41056   'number_parts' => '3',
41057   'tab_parent' => '',
41058   'tab_root' => 'admin/settings/uploads',
41059   'title' => 'File uploads',
41060   'title_callback' => 't',
41061   'title_arguments' => '',
41062   'type' => '6',
41063   'block_callback' => '',
41064   'description' => 'Control how files may be attached to content.',
41065   'position' => '',
41066   'weight' => '0',
41067   'file' => 'modules/upload/upload.admin.inc',
41068 ))
41069 ->values(array(
41070   'path' => 'admin/settings/variable',
41071   'load_functions' => '',
41072   'to_arg_functions' => '',
41073   'access_callback' => 'user_access',
41074   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41075   'page_callback' => 'variable_admin_page_overview',
41076   'page_arguments' => 'a:0:{}',
41077   'fit' => '7',
41078   'number_parts' => '3',
41079   'tab_parent' => '',
41080   'tab_root' => 'admin/settings/variable',
41081   'title' => 'Variables',
41082   'title_callback' => 't',
41083   'title_arguments' => '',
41084   'type' => '6',
41085   'block_callback' => '',
41086   'description' => 'Edit and delete site variables.',
41087   'position' => '',
41088   'weight' => '0',
41089   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41090 ))
41091 ->values(array(
41092   'path' => 'admin/settings/variable/edit/%',
41093   'load_functions' => 'a:1:{i:4;N;}',
41094   'to_arg_functions' => '',
41095   'access_callback' => 'variable_access',
41096   'access_arguments' => 'a:1:{i:0;i:4;}',
41097   'page_callback' => 'variable_admin_page_edit',
41098   'page_arguments' => 'a:1:{i:0;i:4;}',
41099   'fit' => '30',
41100   'number_parts' => '5',
41101   'tab_parent' => '',
41102   'tab_root' => 'admin/settings/variable/edit/%',
41103   'title' => 'Edit variable',
41104   'title_callback' => 't',
41105   'title_arguments' => '',
41106   'type' => '6',
41107   'block_callback' => '',
41108   'description' => '',
41109   'position' => '',
41110   'weight' => '0',
41111   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41112 ))
41113 ->values(array(
41114   'path' => 'admin/settings/variable/group',
41115   'load_functions' => '',
41116   'to_arg_functions' => '',
41117   'access_callback' => 'user_access',
41118   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41119   'page_callback' => 'variable_admin_page_overview',
41120   'page_arguments' => 'a:0:{}',
41121   'fit' => '15',
41122   'number_parts' => '4',
41123   'tab_parent' => 'admin/settings/variable',
41124   'tab_root' => 'admin/settings/variable',
41125   'title' => 'By group',
41126   'title_callback' => 't',
41127   'title_arguments' => '',
41128   'type' => '136',
41129   'block_callback' => '',
41130   'description' => 'Variables by group.',
41131   'position' => '',
41132   'weight' => '0',
41133   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41134 ))
41135 ->values(array(
41136   'path' => 'admin/settings/variable/group/%',
41137   'load_functions' => 'a:1:{i:4;N;}',
41138   'to_arg_functions' => '',
41139   'access_callback' => 'user_access',
41140   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41141   'page_callback' => 'variable_admin_page_group',
41142   'page_arguments' => 'a:1:{i:0;i:4;}',
41143   'fit' => '30',
41144   'number_parts' => '5',
41145   'tab_parent' => '',
41146   'tab_root' => 'admin/settings/variable/group/%',
41147   'title' => 'Variables group',
41148   'title_callback' => 't',
41149   'title_arguments' => '',
41150   'type' => '6',
41151   'block_callback' => '',
41152   'description' => 'Edit and delete group variables.',
41153   'position' => '',
41154   'weight' => '0',
41155   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41156 ))
41157 ->values(array(
41158   'path' => 'admin/settings/variable/modules',
41159   'load_functions' => '',
41160   'to_arg_functions' => '',
41161   'access_callback' => 'user_access',
41162   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41163   'page_callback' => 'variable_admin_page_modules',
41164   'page_arguments' => 'a:0:{}',
41165   'fit' => '15',
41166   'number_parts' => '4',
41167   'tab_parent' => 'admin/settings/variable',
41168   'tab_root' => 'admin/settings/variable',
41169   'title' => 'By module',
41170   'title_callback' => 't',
41171   'title_arguments' => '',
41172   'type' => '128',
41173   'block_callback' => '',
41174   'description' => 'Variables by module.',
41175   'position' => '',
41176   'weight' => '0',
41177   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41178 ))
41179 ->values(array(
41180   'path' => 'admin/settings/variable/undefined',
41181   'load_functions' => '',
41182   'to_arg_functions' => '',
41183   'access_callback' => 'user_access',
41184   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41185   'page_callback' => 'variable_admin_page_undefined',
41186   'page_arguments' => 'a:0:{}',
41187   'fit' => '15',
41188   'number_parts' => '4',
41189   'tab_parent' => 'admin/settings/variable',
41190   'tab_root' => 'admin/settings/variable',
41191   'title' => 'Undefined',
41192   'title_callback' => 't',
41193   'title_arguments' => '',
41194   'type' => '128',
41195   'block_callback' => '',
41196   'description' => 'Unknown variables.',
41197   'position' => '',
41198   'weight' => '0',
41199   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41200 ))
41201 ->values(array(
41202   'path' => 'admin/user',
41203   'load_functions' => '',
41204   'to_arg_functions' => '',
41205   'access_callback' => 'user_access',
41206   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
41207   'page_callback' => 'system_admin_menu_block_page',
41208   'page_arguments' => 'a:0:{}',
41209   'fit' => '3',
41210   'number_parts' => '2',
41211   'tab_parent' => '',
41212   'tab_root' => 'admin/user',
41213   'title' => 'User management',
41214   'title_callback' => 't',
41215   'title_arguments' => '',
41216   'type' => '6',
41217   'block_callback' => '',
41218   'description' => "Manage your site's users, groups and access to site features.",
41219   'position' => 'left',
41220   'weight' => '0',
41221   'file' => 'modules/system/system.admin.inc',
41222 ))
41223 ->values(array(
41224   'path' => 'admin/user/permissions',
41225   'load_functions' => '',
41226   'to_arg_functions' => '',
41227   'access_callback' => 'user_access',
41228   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41229   'page_callback' => 'drupal_get_form',
41230   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
41231   'fit' => '7',
41232   'number_parts' => '3',
41233   'tab_parent' => '',
41234   'tab_root' => 'admin/user/permissions',
41235   'title' => 'Permissions',
41236   'title_callback' => 't',
41237   'title_arguments' => '',
41238   'type' => '6',
41239   'block_callback' => '',
41240   'description' => 'Determine access to features by selecting permissions for roles.',
41241   'position' => '',
41242   'weight' => '0',
41243   'file' => 'modules/user/user.admin.inc',
41244 ))
41245 ->values(array(
41246   'path' => 'admin/user/profile',
41247   'load_functions' => '',
41248   'to_arg_functions' => '',
41249   'access_callback' => 'user_access',
41250   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41251   'page_callback' => 'drupal_get_form',
41252   'page_arguments' => 'a:1:{i:0;s:22:"profile_admin_overview";}',
41253   'fit' => '7',
41254   'number_parts' => '3',
41255   'tab_parent' => '',
41256   'tab_root' => 'admin/user/profile',
41257   'title' => 'Profiles',
41258   'title_callback' => 't',
41259   'title_arguments' => '',
41260   'type' => '6',
41261   'block_callback' => '',
41262   'description' => 'Create customizable fields for your users.',
41263   'position' => '',
41264   'weight' => '0',
41265   'file' => 'modules/profile/profile.admin.inc',
41266 ))
41267 ->values(array(
41268   'path' => 'admin/user/profile/add',
41269   'load_functions' => '',
41270   'to_arg_functions' => '',
41271   'access_callback' => 'user_access',
41272   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41273   'page_callback' => 'drupal_get_form',
41274   'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
41275   'fit' => '15',
41276   'number_parts' => '4',
41277   'tab_parent' => '',
41278   'tab_root' => 'admin/user/profile/add',
41279   'title' => 'Add field',
41280   'title_callback' => 't',
41281   'title_arguments' => '',
41282   'type' => '4',
41283   'block_callback' => '',
41284   'description' => '',
41285   'position' => '',
41286   'weight' => '0',
41287   'file' => 'modules/profile/profile.admin.inc',
41288 ))
41289 ->values(array(
41290   'path' => 'admin/user/profile/autocomplete',
41291   'load_functions' => '',
41292   'to_arg_functions' => '',
41293   'access_callback' => 'user_access',
41294   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41295   'page_callback' => 'profile_admin_settings_autocomplete',
41296   'page_arguments' => 'a:0:{}',
41297   'fit' => '15',
41298   'number_parts' => '4',
41299   'tab_parent' => '',
41300   'tab_root' => 'admin/user/profile/autocomplete',
41301   'title' => 'Profile category autocomplete',
41302   'title_callback' => 't',
41303   'title_arguments' => '',
41304   'type' => '4',
41305   'block_callback' => '',
41306   'description' => '',
41307   'position' => '',
41308   'weight' => '0',
41309   'file' => 'modules/profile/profile.admin.inc',
41310 ))
41311 ->values(array(
41312   'path' => 'admin/user/profile/delete',
41313   'load_functions' => '',
41314   'to_arg_functions' => '',
41315   'access_callback' => 'user_access',
41316   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41317   'page_callback' => 'drupal_get_form',
41318   'page_arguments' => 'a:1:{i:0;s:20:"profile_field_delete";}',
41319   'fit' => '15',
41320   'number_parts' => '4',
41321   'tab_parent' => '',
41322   'tab_root' => 'admin/user/profile/delete',
41323   'title' => 'Delete field',
41324   'title_callback' => 't',
41325   'title_arguments' => '',
41326   'type' => '4',
41327   'block_callback' => '',
41328   'description' => '',
41329   'position' => '',
41330   'weight' => '0',
41331   'file' => 'modules/profile/profile.admin.inc',
41332 ))
41333 ->values(array(
41334   'path' => 'admin/user/profile/edit',
41335   'load_functions' => '',
41336   'to_arg_functions' => '',
41337   'access_callback' => 'user_access',
41338   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41339   'page_callback' => 'drupal_get_form',
41340   'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
41341   'fit' => '15',
41342   'number_parts' => '4',
41343   'tab_parent' => '',
41344   'tab_root' => 'admin/user/profile/edit',
41345   'title' => 'Edit field',
41346   'title_callback' => 't',
41347   'title_arguments' => '',
41348   'type' => '4',
41349   'block_callback' => '',
41350   'description' => '',
41351   'position' => '',
41352   'weight' => '0',
41353   'file' => 'modules/profile/profile.admin.inc',
41354 ))
41355 ->values(array(
41356   'path' => 'admin/user/roles',
41357   'load_functions' => '',
41358   'to_arg_functions' => '',
41359   'access_callback' => 'user_access',
41360   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41361   'page_callback' => 'drupal_get_form',
41362   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
41363   'fit' => '7',
41364   'number_parts' => '3',
41365   'tab_parent' => '',
41366   'tab_root' => 'admin/user/roles',
41367   'title' => 'Roles',
41368   'title_callback' => 't',
41369   'title_arguments' => '',
41370   'type' => '6',
41371   'block_callback' => '',
41372   'description' => 'List, edit, or add user roles.',
41373   'position' => '',
41374   'weight' => '0',
41375   'file' => 'modules/user/user.admin.inc',
41376 ))
41377 ->values(array(
41378   'path' => 'admin/user/roles/edit',
41379   'load_functions' => '',
41380   'to_arg_functions' => '',
41381   'access_callback' => 'user_access',
41382   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41383   'page_callback' => 'drupal_get_form',
41384   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
41385   'fit' => '15',
41386   'number_parts' => '4',
41387   'tab_parent' => '',
41388   'tab_root' => 'admin/user/roles/edit',
41389   'title' => 'Edit role',
41390   'title_callback' => 't',
41391   'title_arguments' => '',
41392   'type' => '4',
41393   'block_callback' => '',
41394   'description' => '',
41395   'position' => '',
41396   'weight' => '0',
41397   'file' => 'modules/user/user.admin.inc',
41398 ))
41399 ->values(array(
41400   'path' => 'admin/user/rules',
41401   'load_functions' => '',
41402   'to_arg_functions' => '',
41403   'access_callback' => 'user_access',
41404   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41405   'page_callback' => 'user_admin_access',
41406   'page_arguments' => 'a:0:{}',
41407   'fit' => '7',
41408   'number_parts' => '3',
41409   'tab_parent' => '',
41410   'tab_root' => 'admin/user/rules',
41411   'title' => 'Access rules',
41412   'title_callback' => 't',
41413   'title_arguments' => '',
41414   'type' => '6',
41415   'block_callback' => '',
41416   'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
41417   'position' => '',
41418   'weight' => '0',
41419   'file' => 'modules/user/user.admin.inc',
41420 ))
41421 ->values(array(
41422   'path' => 'admin/user/rules/add',
41423   'load_functions' => '',
41424   'to_arg_functions' => '',
41425   'access_callback' => 'user_access',
41426   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41427   'page_callback' => 'user_admin_access_add',
41428   'page_arguments' => 'a:0:{}',
41429   'fit' => '15',
41430   'number_parts' => '4',
41431   'tab_parent' => 'admin/user/rules',
41432   'tab_root' => 'admin/user/rules',
41433   'title' => 'Add rule',
41434   'title_callback' => 't',
41435   'title_arguments' => '',
41436   'type' => '128',
41437   'block_callback' => '',
41438   'description' => '',
41439   'position' => '',
41440   'weight' => '0',
41441   'file' => 'modules/user/user.admin.inc',
41442 ))
41443 ->values(array(
41444   'path' => 'admin/user/rules/check',
41445   'load_functions' => '',
41446   'to_arg_functions' => '',
41447   'access_callback' => 'user_access',
41448   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41449   'page_callback' => 'user_admin_access_check',
41450   'page_arguments' => 'a:0:{}',
41451   'fit' => '15',
41452   'number_parts' => '4',
41453   'tab_parent' => 'admin/user/rules',
41454   'tab_root' => 'admin/user/rules',
41455   'title' => 'Check rules',
41456   'title_callback' => 't',
41457   'title_arguments' => '',
41458   'type' => '128',
41459   'block_callback' => '',
41460   'description' => '',
41461   'position' => '',
41462   'weight' => '0',
41463   'file' => 'modules/user/user.admin.inc',
41464 ))
41465 ->values(array(
41466   'path' => 'admin/user/rules/delete',
41467   'load_functions' => '',
41468   'to_arg_functions' => '',
41469   'access_callback' => 'user_access',
41470   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41471   'page_callback' => 'drupal_get_form',
41472   'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
41473   'fit' => '15',
41474   'number_parts' => '4',
41475   'tab_parent' => '',
41476   'tab_root' => 'admin/user/rules/delete',
41477   'title' => 'Delete rule',
41478   'title_callback' => 't',
41479   'title_arguments' => '',
41480   'type' => '4',
41481   'block_callback' => '',
41482   'description' => '',
41483   'position' => '',
41484   'weight' => '0',
41485   'file' => 'modules/user/user.admin.inc',
41486 ))
41487 ->values(array(
41488   'path' => 'admin/user/rules/edit',
41489   'load_functions' => '',
41490   'to_arg_functions' => '',
41491   'access_callback' => 'user_access',
41492   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41493   'page_callback' => 'user_admin_access_edit',
41494   'page_arguments' => 'a:0:{}',
41495   'fit' => '15',
41496   'number_parts' => '4',
41497   'tab_parent' => '',
41498   'tab_root' => 'admin/user/rules/edit',
41499   'title' => 'Edit rule',
41500   'title_callback' => 't',
41501   'title_arguments' => '',
41502   'type' => '4',
41503   'block_callback' => '',
41504   'description' => '',
41505   'position' => '',
41506   'weight' => '0',
41507   'file' => 'modules/user/user.admin.inc',
41508 ))
41509 ->values(array(
41510   'path' => 'admin/user/rules/list',
41511   'load_functions' => '',
41512   'to_arg_functions' => '',
41513   'access_callback' => 'user_access',
41514   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41515   'page_callback' => 'user_admin_access',
41516   'page_arguments' => 'a:0:{}',
41517   'fit' => '15',
41518   'number_parts' => '4',
41519   'tab_parent' => 'admin/user/rules',
41520   'tab_root' => 'admin/user/rules',
41521   'title' => 'List',
41522   'title_callback' => 't',
41523   'title_arguments' => '',
41524   'type' => '136',
41525   'block_callback' => '',
41526   'description' => '',
41527   'position' => '',
41528   'weight' => '-10',
41529   'file' => 'modules/user/user.admin.inc',
41530 ))
41531 ->values(array(
41532   'path' => 'admin/user/settings',
41533   'load_functions' => '',
41534   'to_arg_functions' => '',
41535   'access_callback' => 'user_access',
41536   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41537   'page_callback' => 'drupal_get_form',
41538   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
41539   'fit' => '7',
41540   'number_parts' => '3',
41541   'tab_parent' => '',
41542   'tab_root' => 'admin/user/settings',
41543   'title' => 'User settings',
41544   'title_callback' => 't',
41545   'title_arguments' => '',
41546   'type' => '6',
41547   'block_callback' => '',
41548   'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
41549   'position' => '',
41550   'weight' => '0',
41551   'file' => 'modules/user/user.admin.inc',
41552 ))
41553 ->values(array(
41554   'path' => 'admin/user/user',
41555   'load_functions' => '',
41556   'to_arg_functions' => '',
41557   'access_callback' => 'user_access',
41558   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41559   'page_callback' => 'user_admin',
41560   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
41561   'fit' => '7',
41562   'number_parts' => '3',
41563   'tab_parent' => '',
41564   'tab_root' => 'admin/user/user',
41565   'title' => 'Users',
41566   'title_callback' => 't',
41567   'title_arguments' => '',
41568   'type' => '6',
41569   'block_callback' => '',
41570   'description' => 'List, add, and edit users.',
41571   'position' => '',
41572   'weight' => '0',
41573   'file' => 'modules/user/user.admin.inc',
41574 ))
41575 ->values(array(
41576   'path' => 'admin/user/user/create',
41577   'load_functions' => '',
41578   'to_arg_functions' => '',
41579   'access_callback' => 'user_access',
41580   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41581   'page_callback' => 'user_admin',
41582   'page_arguments' => 'a:1:{i:0;s:6:"create";}',
41583   'fit' => '15',
41584   'number_parts' => '4',
41585   'tab_parent' => 'admin/user/user',
41586   'tab_root' => 'admin/user/user',
41587   'title' => 'Add user',
41588   'title_callback' => 't',
41589   'title_arguments' => '',
41590   'type' => '128',
41591   'block_callback' => '',
41592   'description' => '',
41593   'position' => '',
41594   'weight' => '0',
41595   'file' => 'modules/user/user.admin.inc',
41596 ))
41597 ->values(array(
41598   'path' => 'admin/user/user/list',
41599   'load_functions' => '',
41600   'to_arg_functions' => '',
41601   'access_callback' => 'user_access',
41602   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41603   'page_callback' => 'user_admin',
41604   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
41605   'fit' => '15',
41606   'number_parts' => '4',
41607   'tab_parent' => 'admin/user/user',
41608   'tab_root' => 'admin/user/user',
41609   'title' => 'List',
41610   'title_callback' => 't',
41611   'title_arguments' => '',
41612   'type' => '136',
41613   'block_callback' => '',
41614   'description' => '',
41615   'position' => '',
41616   'weight' => '-10',
41617   'file' => 'modules/user/user.admin.inc',
41618 ))
41619 ->values(array(
41620   'path' => 'aggregator',
41621   'load_functions' => '',
41622   'to_arg_functions' => '',
41623   'access_callback' => 'user_access',
41624   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41625   'page_callback' => 'aggregator_page_last',
41626   'page_arguments' => 'a:0:{}',
41627   'fit' => '1',
41628   'number_parts' => '1',
41629   'tab_parent' => '',
41630   'tab_root' => 'aggregator',
41631   'title' => 'Feed aggregator',
41632   'title_callback' => 't',
41633   'title_arguments' => '',
41634   'type' => '6',
41635   'block_callback' => '',
41636   'description' => '',
41637   'position' => '',
41638   'weight' => '5',
41639   'file' => 'modules/aggregator/aggregator.pages.inc',
41640 ))
41641 ->values(array(
41642   'path' => 'aggregator/categories',
41643   'load_functions' => '',
41644   'to_arg_functions' => '',
41645   'access_callback' => '_aggregator_has_categories',
41646   'access_arguments' => 'a:0:{}',
41647   'page_callback' => 'aggregator_page_categories',
41648   'page_arguments' => 'a:0:{}',
41649   'fit' => '3',
41650   'number_parts' => '2',
41651   'tab_parent' => '',
41652   'tab_root' => 'aggregator/categories',
41653   'title' => 'Categories',
41654   'title_callback' => 't',
41655   'title_arguments' => '',
41656   'type' => '6',
41657   'block_callback' => '',
41658   'description' => '',
41659   'position' => '',
41660   'weight' => '0',
41661   'file' => 'modules/aggregator/aggregator.pages.inc',
41662 ))
41663 ->values(array(
41664   'path' => 'aggregator/categories/%',
41665   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41666   'to_arg_functions' => '',
41667   'access_callback' => 'user_access',
41668   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41669   'page_callback' => 'aggregator_page_category',
41670   'page_arguments' => 'a:1:{i:0;i:2;}',
41671   'fit' => '6',
41672   'number_parts' => '3',
41673   'tab_parent' => '',
41674   'tab_root' => 'aggregator/categories/%',
41675   'title' => '',
41676   'title_callback' => '_aggregator_category_title',
41677   'title_arguments' => 'a:1:{i:0;i:2;}',
41678   'type' => '6',
41679   'block_callback' => '',
41680   'description' => '',
41681   'position' => '',
41682   'weight' => '0',
41683   'file' => 'modules/aggregator/aggregator.pages.inc',
41684 ))
41685 ->values(array(
41686   'path' => 'aggregator/categories/%/categorize',
41687   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41688   'to_arg_functions' => '',
41689   'access_callback' => 'user_access',
41690   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41691   'page_callback' => 'drupal_get_form',
41692   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_page_category";i:1;i:2;}',
41693   'fit' => '13',
41694   'number_parts' => '4',
41695   'tab_parent' => 'aggregator/categories/%',
41696   'tab_root' => 'aggregator/categories/%',
41697   'title' => 'Categorize',
41698   'title_callback' => 't',
41699   'title_arguments' => '',
41700   'type' => '128',
41701   'block_callback' => '',
41702   'description' => '',
41703   'position' => '',
41704   'weight' => '0',
41705   'file' => 'modules/aggregator/aggregator.pages.inc',
41706 ))
41707 ->values(array(
41708   'path' => 'aggregator/categories/%/configure',
41709   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41710   'to_arg_functions' => '',
41711   'access_callback' => 'user_access',
41712   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41713   'page_callback' => 'drupal_get_form',
41714   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}',
41715   'fit' => '13',
41716   'number_parts' => '4',
41717   'tab_parent' => 'aggregator/categories/%',
41718   'tab_root' => 'aggregator/categories/%',
41719   'title' => 'Configure',
41720   'title_callback' => 't',
41721   'title_arguments' => '',
41722   'type' => '128',
41723   'block_callback' => '',
41724   'description' => '',
41725   'position' => '',
41726   'weight' => '1',
41727   'file' => 'modules/aggregator/aggregator.admin.inc',
41728 ))
41729 ->values(array(
41730   'path' => 'aggregator/categories/%/view',
41731   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41732   'to_arg_functions' => '',
41733   'access_callback' => 'user_access',
41734   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41735   'page_callback' => 'aggregator_page_category',
41736   'page_arguments' => 'a:1:{i:0;i:2;}',
41737   'fit' => '13',
41738   'number_parts' => '4',
41739   'tab_parent' => 'aggregator/categories/%',
41740   'tab_root' => 'aggregator/categories/%',
41741   'title' => 'View',
41742   'title_callback' => 't',
41743   'title_arguments' => '',
41744   'type' => '136',
41745   'block_callback' => '',
41746   'description' => '',
41747   'position' => '',
41748   'weight' => '-10',
41749   'file' => 'modules/aggregator/aggregator.pages.inc',
41750 ))
41751 ->values(array(
41752   'path' => 'aggregator/opml',
41753   'load_functions' => '',
41754   'to_arg_functions' => '',
41755   'access_callback' => 'user_access',
41756   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41757   'page_callback' => 'aggregator_page_opml',
41758   'page_arguments' => 'a:0:{}',
41759   'fit' => '3',
41760   'number_parts' => '2',
41761   'tab_parent' => '',
41762   'tab_root' => 'aggregator/opml',
41763   'title' => 'OPML feed',
41764   'title_callback' => 't',
41765   'title_arguments' => '',
41766   'type' => '4',
41767   'block_callback' => '',
41768   'description' => '',
41769   'position' => '',
41770   'weight' => '0',
41771   'file' => 'modules/aggregator/aggregator.pages.inc',
41772 ))
41773 ->values(array(
41774   'path' => 'aggregator/rss',
41775   'load_functions' => '',
41776   'to_arg_functions' => '',
41777   'access_callback' => 'user_access',
41778   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41779   'page_callback' => 'aggregator_page_rss',
41780   'page_arguments' => 'a:0:{}',
41781   'fit' => '3',
41782   'number_parts' => '2',
41783   'tab_parent' => '',
41784   'tab_root' => 'aggregator/rss',
41785   'title' => 'RSS feed',
41786   'title_callback' => 't',
41787   'title_arguments' => '',
41788   'type' => '4',
41789   'block_callback' => '',
41790   'description' => '',
41791   'position' => '',
41792   'weight' => '0',
41793   'file' => 'modules/aggregator/aggregator.pages.inc',
41794 ))
41795 ->values(array(
41796   'path' => 'aggregator/sources',
41797   'load_functions' => '',
41798   'to_arg_functions' => '',
41799   'access_callback' => 'user_access',
41800   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41801   'page_callback' => 'aggregator_page_sources',
41802   'page_arguments' => 'a:0:{}',
41803   'fit' => '3',
41804   'number_parts' => '2',
41805   'tab_parent' => '',
41806   'tab_root' => 'aggregator/sources',
41807   'title' => 'Sources',
41808   'title_callback' => 't',
41809   'title_arguments' => '',
41810   'type' => '6',
41811   'block_callback' => '',
41812   'description' => '',
41813   'position' => '',
41814   'weight' => '0',
41815   'file' => 'modules/aggregator/aggregator.pages.inc',
41816 ))
41817 ->values(array(
41818   'path' => 'aggregator/sources/%',
41819   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41820   'to_arg_functions' => '',
41821   'access_callback' => 'user_access',
41822   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41823   'page_callback' => 'aggregator_page_source',
41824   'page_arguments' => 'a:1:{i:0;i:2;}',
41825   'fit' => '6',
41826   'number_parts' => '3',
41827   'tab_parent' => '',
41828   'tab_root' => 'aggregator/sources/%',
41829   'title' => '',
41830   'title_callback' => 't',
41831   'title_arguments' => '',
41832   'type' => '4',
41833   'block_callback' => '',
41834   'description' => '',
41835   'position' => '',
41836   'weight' => '0',
41837   'file' => 'modules/aggregator/aggregator.pages.inc',
41838 ))
41839 ->values(array(
41840   'path' => 'aggregator/sources/%/categorize',
41841   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41842   'to_arg_functions' => '',
41843   'access_callback' => 'user_access',
41844   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41845   'page_callback' => 'drupal_get_form',
41846   'page_arguments' => 'a:2:{i:0;s:22:"aggregator_page_source";i:1;i:2;}',
41847   'fit' => '13',
41848   'number_parts' => '4',
41849   'tab_parent' => 'aggregator/sources/%',
41850   'tab_root' => 'aggregator/sources/%',
41851   'title' => 'Categorize',
41852   'title_callback' => 't',
41853   'title_arguments' => '',
41854   'type' => '128',
41855   'block_callback' => '',
41856   'description' => '',
41857   'position' => '',
41858   'weight' => '0',
41859   'file' => 'modules/aggregator/aggregator.pages.inc',
41860 ))
41861 ->values(array(
41862   'path' => 'aggregator/sources/%/configure',
41863   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41864   'to_arg_functions' => '',
41865   'access_callback' => 'user_access',
41866   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41867   'page_callback' => 'drupal_get_form',
41868   'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}',
41869   'fit' => '13',
41870   'number_parts' => '4',
41871   'tab_parent' => 'aggregator/sources/%',
41872   'tab_root' => 'aggregator/sources/%',
41873   'title' => 'Configure',
41874   'title_callback' => 't',
41875   'title_arguments' => '',
41876   'type' => '128',
41877   'block_callback' => '',
41878   'description' => '',
41879   'position' => '',
41880   'weight' => '1',
41881   'file' => 'modules/aggregator/aggregator.admin.inc',
41882 ))
41883 ->values(array(
41884   'path' => 'aggregator/sources/%/view',
41885   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41886   'to_arg_functions' => '',
41887   'access_callback' => 'user_access',
41888   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41889   'page_callback' => 'aggregator_page_source',
41890   'page_arguments' => 'a:1:{i:0;i:2;}',
41891   'fit' => '13',
41892   'number_parts' => '4',
41893   'tab_parent' => 'aggregator/sources/%',
41894   'tab_root' => 'aggregator/sources/%',
41895   'title' => 'View',
41896   'title_callback' => 't',
41897   'title_arguments' => '',
41898   'type' => '136',
41899   'block_callback' => '',
41900   'description' => '',
41901   'position' => '',
41902   'weight' => '-10',
41903   'file' => 'modules/aggregator/aggregator.pages.inc',
41904 ))
41905 ->values(array(
41906   'path' => 'batch',
41907   'load_functions' => '',
41908   'to_arg_functions' => '',
41909   'access_callback' => '1',
41910   'access_arguments' => 'a:0:{}',
41911   'page_callback' => 'system_batch_page',
41912   'page_arguments' => 'a:0:{}',
41913   'fit' => '1',
41914   'number_parts' => '1',
41915   'tab_parent' => '',
41916   'tab_root' => 'batch',
41917   'title' => '',
41918   'title_callback' => 't',
41919   'title_arguments' => '',
41920   'type' => '4',
41921   'block_callback' => '',
41922   'description' => '',
41923   'position' => '',
41924   'weight' => '0',
41925   'file' => 'modules/system/system.admin.inc',
41926 ))
41927 ->values(array(
41928   'path' => 'book',
41929   'load_functions' => '',
41930   'to_arg_functions' => '',
41931   'access_callback' => 'user_access',
41932   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41933   'page_callback' => 'book_render',
41934   'page_arguments' => 'a:0:{}',
41935   'fit' => '1',
41936   'number_parts' => '1',
41937   'tab_parent' => '',
41938   'tab_root' => 'book',
41939   'title' => 'Books',
41940   'title_callback' => 't',
41941   'title_arguments' => '',
41942   'type' => '20',
41943   'block_callback' => '',
41944   'description' => '',
41945   'position' => '',
41946   'weight' => '0',
41947   'file' => 'modules/book/book.pages.inc',
41948 ))
41949 ->values(array(
41950   'path' => 'book/export/%/%',
41951   'load_functions' => 'a:2:{i:2;N;i:3;N;}',
41952   'to_arg_functions' => '',
41953   'access_callback' => 'user_access',
41954   'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}',
41955   'page_callback' => 'book_export',
41956   'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
41957   'fit' => '12',
41958   'number_parts' => '4',
41959   'tab_parent' => '',
41960   'tab_root' => 'book/export/%/%',
41961   'title' => '',
41962   'title_callback' => 't',
41963   'title_arguments' => '',
41964   'type' => '4',
41965   'block_callback' => '',
41966   'description' => '',
41967   'position' => '',
41968   'weight' => '0',
41969   'file' => 'modules/book/book.pages.inc',
41970 ))
41971 ->values(array(
41972   'path' => 'book/js/form',
41973   'load_functions' => '',
41974   'to_arg_functions' => '',
41975   'access_callback' => 'user_access',
41976   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
41977   'page_callback' => 'book_form_update',
41978   'page_arguments' => 'a:0:{}',
41979   'fit' => '7',
41980   'number_parts' => '3',
41981   'tab_parent' => '',
41982   'tab_root' => 'book/js/form',
41983   'title' => '',
41984   'title_callback' => 't',
41985   'title_arguments' => '',
41986   'type' => '4',
41987   'block_callback' => '',
41988   'description' => '',
41989   'position' => '',
41990   'weight' => '0',
41991   'file' => 'modules/book/book.pages.inc',
41992 ))
41993 ->values(array(
41994   'path' => 'comment/delete',
41995   'load_functions' => '',
41996   'to_arg_functions' => '',
41997   'access_callback' => 'user_access',
41998   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
41999   'page_callback' => 'comment_delete',
42000   'page_arguments' => 'a:0:{}',
42001   'fit' => '3',
42002   'number_parts' => '2',
42003   'tab_parent' => '',
42004   'tab_root' => 'comment/delete',
42005   'title' => 'Delete comment',
42006   'title_callback' => 't',
42007   'title_arguments' => '',
42008   'type' => '4',
42009   'block_callback' => '',
42010   'description' => '',
42011   'position' => '',
42012   'weight' => '0',
42013   'file' => 'modules/comment/comment.admin.inc',
42014 ))
42015 ->values(array(
42016   'path' => 'comment/edit',
42017   'load_functions' => '',
42018   'to_arg_functions' => '',
42019   'access_callback' => 'user_access',
42020   'access_arguments' => 'a:1:{i:0;s:13:"post comments";}',
42021   'page_callback' => 'comment_edit',
42022   'page_arguments' => 'a:0:{}',
42023   'fit' => '3',
42024   'number_parts' => '2',
42025   'tab_parent' => '',
42026   'tab_root' => 'comment/edit',
42027   'title' => 'Edit comment',
42028   'title_callback' => 't',
42029   'title_arguments' => '',
42030   'type' => '4',
42031   'block_callback' => '',
42032   'description' => '',
42033   'position' => '',
42034   'weight' => '0',
42035   'file' => 'modules/comment/comment.pages.inc',
42036 ))
42037 ->values(array(
42038   'path' => 'comment/reply/%',
42039   'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
42040   'to_arg_functions' => '',
42041   'access_callback' => 'node_access',
42042   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
42043   'page_callback' => 'comment_reply',
42044   'page_arguments' => 'a:1:{i:0;i:2;}',
42045   'fit' => '6',
42046   'number_parts' => '3',
42047   'tab_parent' => '',
42048   'tab_root' => 'comment/reply/%',
42049   'title' => 'Reply to comment',
42050   'title_callback' => 't',
42051   'title_arguments' => '',
42052   'type' => '4',
42053   'block_callback' => '',
42054   'description' => '',
42055   'position' => '',
42056   'weight' => '0',
42057   'file' => 'modules/comment/comment.pages.inc',
42058 ))
42059 ->values(array(
42060   'path' => 'contact',
42061   'load_functions' => '',
42062   'to_arg_functions' => '',
42063   'access_callback' => 'user_access',
42064   'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}',
42065   'page_callback' => 'contact_site_page',
42066   'page_arguments' => 'a:0:{}',
42067   'fit' => '1',
42068   'number_parts' => '1',
42069   'tab_parent' => '',
42070   'tab_root' => 'contact',
42071   'title' => 'Contact',
42072   'title_callback' => 't',
42073   'title_arguments' => '',
42074   'type' => '20',
42075   'block_callback' => '',
42076   'description' => '',
42077   'position' => '',
42078   'weight' => '0',
42079   'file' => 'modules/contact/contact.pages.inc',
42080 ))
42081 ->values(array(
42082   'path' => 'content/js_add_more',
42083   'load_functions' => '',
42084   'to_arg_functions' => '',
42085   'access_callback' => 'user_access',
42086   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42087   'page_callback' => 'content_add_more_js',
42088   'page_arguments' => 'a:0:{}',
42089   'fit' => '3',
42090   'number_parts' => '2',
42091   'tab_parent' => '',
42092   'tab_root' => 'content/js_add_more',
42093   'title' => '',
42094   'title_callback' => 't',
42095   'title_arguments' => '',
42096   'type' => '4',
42097   'block_callback' => '',
42098   'description' => '',
42099   'position' => '',
42100   'weight' => '0',
42101   'file' => 'sites/all/modules/cck/includes/content.node_form.inc',
42102 ))
42103 ->values(array(
42104   'path' => 'core/modules/simpletest/files/imagecache',
42105   'load_functions' => '',
42106   'to_arg_functions' => '',
42107   'access_callback' => '_imagecache_menu_access_public_files',
42108   'access_arguments' => 'a:0:{}',
42109   'page_callback' => 'imagecache_cache',
42110   'page_arguments' => 'a:0:{}',
42111   'fit' => '31',
42112   'number_parts' => '5',
42113   'tab_parent' => '',
42114   'tab_root' => 'core/modules/simpletest/files/imagecache',
42115   'title' => '',
42116   'title_callback' => 't',
42117   'title_arguments' => '',
42118   'type' => '4',
42119   'block_callback' => '',
42120   'description' => '',
42121   'position' => '',
42122   'weight' => '0',
42123   'file' => '',
42124 ))
42125 ->values(array(
42126   'path' => 'email/%/%',
42127   'load_functions' => 'a:2:{i:1;s:9:"node_load";i:2;N;}',
42128   'to_arg_functions' => '',
42129   'access_callback' => 'node_access',
42130   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
42131   'page_callback' => 'email_mail_page',
42132   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:2;}',
42133   'fit' => '4',
42134   'number_parts' => '3',
42135   'tab_parent' => '',
42136   'tab_root' => 'email/%/%',
42137   'title' => 'Email Contact Form',
42138   'title_callback' => 't',
42139   'title_arguments' => '',
42140   'type' => '4',
42141   'block_callback' => '',
42142   'description' => '',
42143   'position' => '',
42144   'weight' => '0',
42145   'file' => '',
42146 ))
42147 ->values(array(
42148   'path' => 'event',
42149   'load_functions' => '',
42150   'to_arg_functions' => '',
42151   'access_callback' => 'user_access',
42152   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42153   'page_callback' => 'event_page',
42154   'page_arguments' => 'a:0:{}',
42155   'fit' => '1',
42156   'number_parts' => '1',
42157   'tab_parent' => '',
42158   'tab_root' => 'event',
42159   'title' => 'Events',
42160   'title_callback' => 't',
42161   'title_arguments' => '',
42162   'type' => '20',
42163   'block_callback' => '',
42164   'description' => '',
42165   'position' => '',
42166   'weight' => '0',
42167   'file' => 'sites/all/modules/event/ical.inc',
42168 ))
42169 ->values(array(
42170   'path' => 'event/dst',
42171   'load_functions' => '',
42172   'to_arg_functions' => '',
42173   'access_callback' => 'user_access',
42174   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42175   'page_callback' => 'event_dst',
42176   'page_arguments' => 'a:0:{}',
42177   'fit' => '3',
42178   'number_parts' => '2',
42179   'tab_parent' => '',
42180   'tab_root' => 'event/dst',
42181   'title' => 'Event dst view',
42182   'title_callback' => 't',
42183   'title_arguments' => '',
42184   'type' => '4',
42185   'block_callback' => '',
42186   'description' => '',
42187   'position' => '',
42188   'weight' => '0',
42189   'file' => '',
42190 ))
42191 ->values(array(
42192   'path' => 'event/feed',
42193   'load_functions' => '',
42194   'to_arg_functions' => '',
42195   'access_callback' => 'user_access',
42196   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42197   'page_callback' => 'event_feed',
42198   'page_arguments' => 'a:0:{}',
42199   'fit' => '3',
42200   'number_parts' => '2',
42201   'tab_parent' => '',
42202   'tab_root' => 'event/feed',
42203   'title' => 'Event rss feed',
42204   'title_callback' => 't',
42205   'title_arguments' => '',
42206   'type' => '4',
42207   'block_callback' => '',
42208   'description' => '',
42209   'position' => '',
42210   'weight' => '0',
42211   'file' => '',
42212 ))
42213 ->values(array(
42214   'path' => 'event/ical',
42215   'load_functions' => '',
42216   'to_arg_functions' => '',
42217   'access_callback' => 'user_access',
42218   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42219   'page_callback' => 'event_ical',
42220   'page_arguments' => 'a:0:{}',
42221   'fit' => '3',
42222   'number_parts' => '2',
42223   'tab_parent' => '',
42224   'tab_root' => 'event/ical',
42225   'title' => 'Event ical feed',
42226   'title_callback' => 't',
42227   'title_arguments' => '',
42228   'type' => '4',
42229   'block_callback' => '',
42230   'description' => '',
42231   'position' => '',
42232   'weight' => '0',
42233   'file' => 'sites/all/modules/event/ical.inc',
42234 ))
42235 ->values(array(
42236   'path' => 'event/term',
42237   'load_functions' => '',
42238   'to_arg_functions' => '',
42239   'access_callback' => 'user_access',
42240   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42241   'page_callback' => 'event_term',
42242   'page_arguments' => 'a:0:{}',
42243   'fit' => '3',
42244   'number_parts' => '2',
42245   'tab_parent' => '',
42246   'tab_root' => 'event/term',
42247   'title' => 'Filter by taxonomy',
42248   'title_callback' => 't',
42249   'title_arguments' => '',
42250   'type' => '4',
42251   'block_callback' => '',
42252   'description' => '',
42253   'position' => '',
42254   'weight' => '0',
42255   'file' => '',
42256 ))
42257 ->values(array(
42258   'path' => 'event/type',
42259   'load_functions' => '',
42260   'to_arg_functions' => '',
42261   'access_callback' => 'user_access',
42262   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42263   'page_callback' => 'event_type',
42264   'page_arguments' => 'a:0:{}',
42265   'fit' => '3',
42266   'number_parts' => '2',
42267   'tab_parent' => '',
42268   'tab_root' => 'event/type',
42269   'title' => 'Filter by content type',
42270   'title_callback' => 't',
42271   'title_arguments' => '',
42272   'type' => '4',
42273   'block_callback' => '',
42274   'description' => '',
42275   'position' => '',
42276   'weight' => '0',
42277   'file' => '',
42278 ))
42279 ->values(array(
42280   'path' => 'filefield/ahah/%/%/%',
42281   'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
42282   'to_arg_functions' => '',
42283   'access_callback' => 'filefield_edit_access',
42284   'access_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
42285   'page_callback' => 'filefield_js',
42286   'page_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
42287   'fit' => '24',
42288   'number_parts' => '5',
42289   'tab_parent' => '',
42290   'tab_root' => 'filefield/ahah/%/%/%',
42291   'title' => '',
42292   'title_callback' => 't',
42293   'title_arguments' => '',
42294   'type' => '4',
42295   'block_callback' => '',
42296   'description' => '',
42297   'position' => '',
42298   'weight' => '0',
42299   'file' => '',
42300 ))
42301 ->values(array(
42302   'path' => 'filefield/progress',
42303   'load_functions' => '',
42304   'to_arg_functions' => '',
42305   'access_callback' => 'user_access',
42306   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42307   'page_callback' => 'filefield_progress',
42308   'page_arguments' => 'a:0:{}',
42309   'fit' => '3',
42310   'number_parts' => '2',
42311   'tab_parent' => '',
42312   'tab_root' => 'filefield/progress',
42313   'title' => '',
42314   'title_callback' => 't',
42315   'title_arguments' => '',
42316   'type' => '4',
42317   'block_callback' => '',
42318   'description' => '',
42319   'position' => '',
42320   'weight' => '0',
42321   'file' => '',
42322 ))
42323 ->values(array(
42324   'path' => 'filter/tips',
42325   'load_functions' => '',
42326   'to_arg_functions' => '',
42327   'access_callback' => '1',
42328   'access_arguments' => 'a:0:{}',
42329   'page_callback' => 'filter_tips_long',
42330   'page_arguments' => 'a:0:{}',
42331   'fit' => '3',
42332   'number_parts' => '2',
42333   'tab_parent' => '',
42334   'tab_root' => 'filter/tips',
42335   'title' => 'Compose tips',
42336   'title_callback' => 't',
42337   'title_arguments' => '',
42338   'type' => '20',
42339   'block_callback' => '',
42340   'description' => '',
42341   'position' => '',
42342   'weight' => '0',
42343   'file' => 'modules/filter/filter.pages.inc',
42344 ))
42345 ->values(array(
42346   'path' => 'forum',
42347   'load_functions' => '',
42348   'to_arg_functions' => '',
42349   'access_callback' => 'user_access',
42350   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42351   'page_callback' => 'forum_page',
42352   'page_arguments' => 'a:0:{}',
42353   'fit' => '1',
42354   'number_parts' => '1',
42355   'tab_parent' => '',
42356   'tab_root' => 'forum',
42357   'title' => 'Forums',
42358   'title_callback' => 't',
42359   'title_arguments' => '',
42360   'type' => '20',
42361   'block_callback' => '',
42362   'description' => '',
42363   'position' => '',
42364   'weight' => '0',
42365   'file' => 'modules/forum/forum.pages.inc',
42366 ))
42367 ->values(array(
42368   'path' => 'i18n/node/autocomplete',
42369   'load_functions' => '',
42370   'to_arg_functions' => '',
42371   'access_callback' => 'user_access',
42372   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42373   'page_callback' => 'i18n_node_autocomplete',
42374   'page_arguments' => 'a:0:{}',
42375   'fit' => '7',
42376   'number_parts' => '3',
42377   'tab_parent' => '',
42378   'tab_root' => 'i18n/node/autocomplete',
42379   'title' => 'Node title autocomplete',
42380   'title_callback' => 't',
42381   'title_arguments' => '',
42382   'type' => '4',
42383   'block_callback' => '',
42384   'description' => '',
42385   'position' => '',
42386   'weight' => '0',
42387   'file' => 'sites/all/modules/i18n/i18n.pages.inc',
42388 ))
42389 ->values(array(
42390   'path' => 'i18nstrings/save',
42391   'load_functions' => '',
42392   'to_arg_functions' => '',
42393   'access_callback' => 'user_access',
42394   'access_arguments' => 'a:1:{i:0;s:23:"use on-page translation";}',
42395   'page_callback' => 'i18nstrings_save_string',
42396   'page_arguments' => 'a:0:{}',
42397   'fit' => '3',
42398   'number_parts' => '2',
42399   'tab_parent' => '',
42400   'tab_root' => 'i18nstrings/save',
42401   'title' => 'Save string',
42402   'title_callback' => 't',
42403   'title_arguments' => '',
42404   'type' => '4',
42405   'block_callback' => '',
42406   'description' => '',
42407   'position' => '',
42408   'weight' => '0',
42409   'file' => '',
42410 ))
42411 ->values(array(
42412   'path' => 'logout',
42413   'load_functions' => '',
42414   'to_arg_functions' => '',
42415   'access_callback' => 'user_is_logged_in',
42416   'access_arguments' => 'a:0:{}',
42417   'page_callback' => 'user_logout',
42418   'page_arguments' => 'a:0:{}',
42419   'fit' => '1',
42420   'number_parts' => '1',
42421   'tab_parent' => '',
42422   'tab_root' => 'logout',
42423   'title' => 'Log out',
42424   'title_callback' => 't',
42425   'title_arguments' => '',
42426   'type' => '6',
42427   'block_callback' => '',
42428   'description' => '',
42429   'position' => '',
42430   'weight' => '10',
42431   'file' => 'modules/user/user.pages.inc',
42432 ))
42433 ->values(array(
42434   'path' => 'node',
42435   'load_functions' => '',
42436   'to_arg_functions' => '',
42437   'access_callback' => 'user_access',
42438   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42439   'page_callback' => 'node_page_default',
42440   'page_arguments' => 'a:0:{}',
42441   'fit' => '1',
42442   'number_parts' => '1',
42443   'tab_parent' => '',
42444   'tab_root' => 'node',
42445   'title' => 'Content',
42446   'title_callback' => 't',
42447   'title_arguments' => '',
42448   'type' => '4',
42449   'block_callback' => '',
42450   'description' => '',
42451   'position' => '',
42452   'weight' => '0',
42453   'file' => '',
42454 ))
42455 ->values(array(
42456   'path' => 'node/%',
42457   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42458   'to_arg_functions' => '',
42459   'access_callback' => 'node_access',
42460   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
42461   'page_callback' => 'node_page_view',
42462   'page_arguments' => 'a:1:{i:0;i:1;}',
42463   'fit' => '2',
42464   'number_parts' => '2',
42465   'tab_parent' => '',
42466   'tab_root' => 'node/%',
42467   'title' => '',
42468   'title_callback' => 'node_page_title',
42469   'title_arguments' => 'a:1:{i:0;i:1;}',
42470   'type' => '4',
42471   'block_callback' => '',
42472   'description' => '',
42473   'position' => '',
42474   'weight' => '0',
42475   'file' => '',
42476 ))
42477 ->values(array(
42478   'path' => 'node/%/delete',
42479   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42480   'to_arg_functions' => '',
42481   'access_callback' => 'node_access',
42482   'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
42483   'page_callback' => 'drupal_get_form',
42484   'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
42485   'fit' => '5',
42486   'number_parts' => '3',
42487   'tab_parent' => '',
42488   'tab_root' => 'node/%/delete',
42489   'title' => 'Delete',
42490   'title_callback' => 't',
42491   'title_arguments' => '',
42492   'type' => '4',
42493   'block_callback' => '',
42494   'description' => '',
42495   'position' => '',
42496   'weight' => '1',
42497   'file' => 'modules/node/node.pages.inc',
42498 ))
42499 ->values(array(
42500   'path' => 'node/%/edit',
42501   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42502   'to_arg_functions' => '',
42503   'access_callback' => 'node_access',
42504   'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
42505   'page_callback' => 'node_page_edit',
42506   'page_arguments' => 'a:1:{i:0;i:1;}',
42507   'fit' => '5',
42508   'number_parts' => '3',
42509   'tab_parent' => 'node/%',
42510   'tab_root' => 'node/%',
42511   'title' => 'Edit',
42512   'title_callback' => 't',
42513   'title_arguments' => '',
42514   'type' => '128',
42515   'block_callback' => '',
42516   'description' => '',
42517   'position' => '',
42518   'weight' => '1',
42519   'file' => 'modules/node/node.pages.inc',
42520 ))
42521 ->values(array(
42522   'path' => 'node/%/ical',
42523   'load_functions' => 'a:1:{i:1;N;}',
42524   'to_arg_functions' => '',
42525   'access_callback' => 'event_ical_access',
42526   'access_arguments' => 'a:1:{i:0;i:1;}',
42527   'page_callback' => 'event_node_ical',
42528   'page_arguments' => 'a:0:{}',
42529   'fit' => '5',
42530   'number_parts' => '3',
42531   'tab_parent' => '',
42532   'tab_root' => 'node/%/ical',
42533   'title' => 'Event ical',
42534   'title_callback' => 't',
42535   'title_arguments' => '',
42536   'type' => '4',
42537   'block_callback' => '',
42538   'description' => '',
42539   'position' => '',
42540   'weight' => '0',
42541   'file' => 'sites/all/modules/event/ical.inc',
42542 ))
42543 ->values(array(
42544   'path' => 'node/%/outline',
42545   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42546   'to_arg_functions' => '',
42547   'access_callback' => '_book_outline_access',
42548   'access_arguments' => 'a:1:{i:0;i:1;}',
42549   'page_callback' => 'book_outline',
42550   'page_arguments' => 'a:1:{i:0;i:1;}',
42551   'fit' => '5',
42552   'number_parts' => '3',
42553   'tab_parent' => 'node/%',
42554   'tab_root' => 'node/%',
42555   'title' => 'Outline',
42556   'title_callback' => 't',
42557   'title_arguments' => '',
42558   'type' => '128',
42559   'block_callback' => '',
42560   'description' => '',
42561   'position' => '',
42562   'weight' => '2',
42563   'file' => 'modules/book/book.pages.inc',
42564 ))
42565 ->values(array(
42566   'path' => 'node/%/outline/remove',
42567   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42568   'to_arg_functions' => '',
42569   'access_callback' => '_book_outline_remove_access',
42570   'access_arguments' => 'a:1:{i:0;i:1;}',
42571   'page_callback' => 'drupal_get_form',
42572   'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}',
42573   'fit' => '11',
42574   'number_parts' => '4',
42575   'tab_parent' => '',
42576   'tab_root' => 'node/%/outline/remove',
42577   'title' => 'Remove from outline',
42578   'title_callback' => 't',
42579   'title_arguments' => '',
42580   'type' => '4',
42581   'block_callback' => '',
42582   'description' => '',
42583   'position' => '',
42584   'weight' => '0',
42585   'file' => 'modules/book/book.pages.inc',
42586 ))
42587 ->values(array(
42588   'path' => 'node/%/revisions',
42589   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42590   'to_arg_functions' => '',
42591   'access_callback' => '_node_revision_access',
42592   'access_arguments' => 'a:1:{i:0;i:1;}',
42593   'page_callback' => 'node_revision_overview',
42594   'page_arguments' => 'a:1:{i:0;i:1;}',
42595   'fit' => '5',
42596   'number_parts' => '3',
42597   'tab_parent' => 'node/%',
42598   'tab_root' => 'node/%',
42599   'title' => 'Revisions',
42600   'title_callback' => 't',
42601   'title_arguments' => '',
42602   'type' => '128',
42603   'block_callback' => '',
42604   'description' => '',
42605   'position' => '',
42606   'weight' => '2',
42607   'file' => 'modules/node/node.pages.inc',
42608 ))
42609 ->values(array(
42610   'path' => 'node/%/revisions/%/delete',
42611   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
42612   'to_arg_functions' => '',
42613   'access_callback' => '_node_revision_access',
42614   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
42615   'page_callback' => 'drupal_get_form',
42616   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
42617   'fit' => '21',
42618   'number_parts' => '5',
42619   'tab_parent' => '',
42620   'tab_root' => 'node/%/revisions/%/delete',
42621   'title' => 'Delete earlier revision',
42622   'title_callback' => 't',
42623   'title_arguments' => '',
42624   'type' => '4',
42625   'block_callback' => '',
42626   'description' => '',
42627   'position' => '',
42628   'weight' => '0',
42629   'file' => 'modules/node/node.pages.inc',
42630 ))
42631 ->values(array(
42632   'path' => 'node/%/revisions/%/revert',
42633   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
42634   'to_arg_functions' => '',
42635   'access_callback' => '_node_revision_access',
42636   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
42637   'page_callback' => 'drupal_get_form',
42638   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
42639   'fit' => '21',
42640   'number_parts' => '5',
42641   'tab_parent' => '',
42642   'tab_root' => 'node/%/revisions/%/revert',
42643   'title' => 'Revert to earlier revision',
42644   'title_callback' => 't',
42645   'title_arguments' => '',
42646   'type' => '4',
42647   'block_callback' => '',
42648   'description' => '',
42649   'position' => '',
42650   'weight' => '0',
42651   'file' => 'modules/node/node.pages.inc',
42652 ))
42653 ->values(array(
42654   'path' => 'node/%/revisions/%/view',
42655   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
42656   'to_arg_functions' => '',
42657   'access_callback' => '_node_revision_access',
42658   'access_arguments' => 'a:1:{i:0;i:1;}',
42659   'page_callback' => 'node_show',
42660   'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
42661   'fit' => '21',
42662   'number_parts' => '5',
42663   'tab_parent' => '',
42664   'tab_root' => 'node/%/revisions/%/view',
42665   'title' => 'Revisions',
42666   'title_callback' => 't',
42667   'title_arguments' => '',
42668   'type' => '4',
42669   'block_callback' => '',
42670   'description' => '',
42671   'position' => '',
42672   'weight' => '0',
42673   'file' => '',
42674 ))
42675 ->values(array(
42676   'path' => 'node/%/track',
42677   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42678   'to_arg_functions' => '',
42679   'access_callback' => 'user_access',
42680   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
42681   'page_callback' => 'statistics_node_tracker',
42682   'page_arguments' => 'a:0:{}',
42683   'fit' => '5',
42684   'number_parts' => '3',
42685   'tab_parent' => 'node/%',
42686   'tab_root' => 'node/%',
42687   'title' => 'Track',
42688   'title_callback' => 't',
42689   'title_arguments' => '',
42690   'type' => '128',
42691   'block_callback' => '',
42692   'description' => '',
42693   'position' => '',
42694   'weight' => '2',
42695   'file' => 'modules/statistics/statistics.pages.inc',
42696 ))
42697 ->values(array(
42698   'path' => 'node/%/translate',
42699   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42700   'to_arg_functions' => '',
42701   'access_callback' => '_translation_tab_access',
42702   'access_arguments' => 'a:1:{i:0;i:1;}',
42703   'page_callback' => 'i18n_translation_node_overview',
42704   'page_arguments' => 'a:1:{i:0;i:1;}',
42705   'fit' => '5',
42706   'number_parts' => '3',
42707   'tab_parent' => 'node/%',
42708   'tab_root' => 'node/%',
42709   'title' => 'Translate',
42710   'title_callback' => 't',
42711   'title_arguments' => '',
42712   'type' => '128',
42713   'block_callback' => '',
42714   'description' => '',
42715   'position' => '',
42716   'weight' => '2',
42717   'file' => 'sites/all/modules/i18n/i18n.pages.inc',
42718 ))
42719 ->values(array(
42720   'path' => 'node/%/view',
42721   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42722   'to_arg_functions' => '',
42723   'access_callback' => 'node_access',
42724   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
42725   'page_callback' => 'node_page_view',
42726   'page_arguments' => 'a:1:{i:0;i:1;}',
42727   'fit' => '5',
42728   'number_parts' => '3',
42729   'tab_parent' => 'node/%',
42730   'tab_root' => 'node/%',
42731   'title' => 'View',
42732   'title_callback' => 't',
42733   'title_arguments' => '',
42734   'type' => '136',
42735   'block_callback' => '',
42736   'description' => '',
42737   'position' => '',
42738   'weight' => '-10',
42739   'file' => '',
42740 ))
42741 ->values(array(
42742   'path' => 'node/add',
42743   'load_functions' => '',
42744   'to_arg_functions' => '',
42745   'access_callback' => '_node_add_access',
42746   'access_arguments' => 'a:0:{}',
42747   'page_callback' => 'i18ncontent_node_add_page',
42748   'page_arguments' => 'a:0:{}',
42749   'fit' => '3',
42750   'number_parts' => '2',
42751   'tab_parent' => '',
42752   'tab_root' => 'node/add',
42753   'title' => 'Create content',
42754   'title_callback' => 't',
42755   'title_arguments' => '',
42756   'type' => '6',
42757   'block_callback' => '',
42758   'description' => '',
42759   'position' => '',
42760   'weight' => '1',
42761   'file' => 'modules/node/node.pages.inc',
42762 ))
42763 ->values(array(
42764   'path' => 'node/add/article',
42765   'load_functions' => '',
42766   'to_arg_functions' => '',
42767   'access_callback' => 'node_access',
42768   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
42769   'page_callback' => 'i18ncontent_node_add',
42770   'page_arguments' => 'a:1:{i:0;i:2;}',
42771   'fit' => '7',
42772   'number_parts' => '3',
42773   'tab_parent' => '',
42774   'tab_root' => 'node/add/article',
42775   'title' => 'Article',
42776   'title_callback' => 'i18nstrings_title_callback',
42777   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:article:name";i:1;s:7:"Article";}',
42778   'type' => '6',
42779   'block_callback' => '',
42780   'description' => 'An <em>article</em>, content type.',
42781   'position' => '',
42782   'weight' => '0',
42783   'file' => 'modules/node/node.pages.inc',
42784 ))
42785 ->values(array(
42786   'path' => 'node/add/company',
42787   'load_functions' => '',
42788   'to_arg_functions' => '',
42789   'access_callback' => 'node_access',
42790   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"company";}',
42791   'page_callback' => 'i18ncontent_node_add',
42792   'page_arguments' => 'a:1:{i:0;i:2;}',
42793   'fit' => '7',
42794   'number_parts' => '3',
42795   'tab_parent' => '',
42796   'tab_root' => 'node/add/company',
42797   'title' => 'Company',
42798   'title_callback' => 'i18nstrings_title_callback',
42799   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:company:name";i:1;s:7:"Company";}',
42800   'type' => '6',
42801   'block_callback' => '',
42802   'description' => 'Company node type',
42803   'position' => '',
42804   'weight' => '0',
42805   'file' => 'modules/node/node.pages.inc',
42806 ))
42807 ->values(array(
42808   'path' => 'node/add/employee',
42809   'load_functions' => '',
42810   'to_arg_functions' => '',
42811   'access_callback' => 'node_access',
42812   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:8:"employee";}',
42813   'page_callback' => 'i18ncontent_node_add',
42814   'page_arguments' => 'a:1:{i:0;i:2;}',
42815   'fit' => '7',
42816   'number_parts' => '3',
42817   'tab_parent' => '',
42818   'tab_root' => 'node/add/employee',
42819   'title' => 'Employee',
42820   'title_callback' => 'i18nstrings_title_callback',
42821   'title_arguments' => 'a:2:{i:0;s:27:"nodetype:type:employee:name";i:1;s:8:"Employee";}',
42822   'type' => '6',
42823   'block_callback' => '',
42824   'description' => 'Employee node type',
42825   'position' => '',
42826   'weight' => '0',
42827   'file' => 'modules/node/node.pages.inc',
42828 ))
42829 ->values(array(
42830   'path' => 'node/add/forum',
42831   'load_functions' => '',
42832   'to_arg_functions' => '',
42833   'access_callback' => 'node_access',
42834   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"forum";}',
42835   'page_callback' => 'i18ncontent_node_add',
42836   'page_arguments' => 'a:1:{i:0;i:2;}',
42837   'fit' => '7',
42838   'number_parts' => '3',
42839   'tab_parent' => '',
42840   'tab_root' => 'node/add/forum',
42841   'title' => 'Forum topic',
42842   'title_callback' => 'i18nstrings_title_callback',
42843   'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:forum:name";i:1;s:11:"Forum topic";}',
42844   'type' => '6',
42845   'block_callback' => '',
42846   'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
42847   'position' => '',
42848   'weight' => '0',
42849   'file' => 'modules/node/node.pages.inc',
42850 ))
42851 ->values(array(
42852   'path' => 'node/add/sponsor',
42853   'load_functions' => '',
42854   'to_arg_functions' => '',
42855   'access_callback' => 'node_access',
42856   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"sponsor";}',
42857   'page_callback' => 'i18ncontent_node_add',
42858   'page_arguments' => 'a:1:{i:0;i:2;}',
42859   'fit' => '7',
42860   'number_parts' => '3',
42861   'tab_parent' => '',
42862   'tab_root' => 'node/add/sponsor',
42863   'title' => 'Sponsor',
42864   'title_callback' => 'i18nstrings_title_callback',
42865   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:sponsor:name";i:1;s:7:"Sponsor";}',
42866   'type' => '6',
42867   'block_callback' => '',
42868   'description' => 'Sponsor node type',
42869   'position' => '',
42870   'weight' => '0',
42871   'file' => 'modules/node/node.pages.inc',
42872 ))
42873 ->values(array(
42874   'path' => 'node/add/story',
42875   'load_functions' => '',
42876   'to_arg_functions' => '',
42877   'access_callback' => 'node_access',
42878   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
42879   'page_callback' => 'i18ncontent_node_add',
42880   'page_arguments' => 'a:1:{i:0;i:2;}',
42881   'fit' => '7',
42882   'number_parts' => '3',
42883   'tab_parent' => '',
42884   'tab_root' => 'node/add/story',
42885   'title' => 'Story',
42886   'title_callback' => 'i18nstrings_title_callback',
42887   'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:story:name";i:1;s:5:"Story";}',
42888   'type' => '6',
42889   'block_callback' => '',
42890   '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.",
42891   'position' => '',
42892   'weight' => '0',
42893   'file' => 'modules/node/node.pages.inc',
42894 ))
42895 ->values(array(
42896   'path' => 'node/add/test-event',
42897   'load_functions' => '',
42898   'to_arg_functions' => '',
42899   'access_callback' => 'node_access',
42900   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_event";}',
42901   'page_callback' => 'i18ncontent_node_add',
42902   'page_arguments' => 'a:1:{i:0;i:2;}',
42903   'fit' => '7',
42904   'number_parts' => '3',
42905   'tab_parent' => '',
42906   'tab_root' => 'node/add/test-event',
42907   'title' => 'Migrate test event',
42908   'title_callback' => 'i18nstrings_title_callback',
42909   'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-event:name";i:1;s:18:"Migrate test event";}',
42910   'type' => '6',
42911   'block_callback' => '',
42912   'description' => 'test event description here',
42913   'position' => '',
42914   'weight' => '0',
42915   'file' => 'modules/node/node.pages.inc',
42916 ))
42917 ->values(array(
42918   'path' => 'node/add/test-page',
42919   'load_functions' => '',
42920   'to_arg_functions' => '',
42921   'access_callback' => 'node_access',
42922   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:9:"test_page";}',
42923   'page_callback' => 'i18ncontent_node_add',
42924   'page_arguments' => 'a:1:{i:0;i:2;}',
42925   'fit' => '7',
42926   'number_parts' => '3',
42927   'tab_parent' => '',
42928   'tab_root' => 'node/add/test-page',
42929   'title' => 'Migrate test page',
42930   'title_callback' => 'i18nstrings_title_callback',
42931   'title_arguments' => 'a:2:{i:0;s:28:"nodetype:type:test-page:name";i:1;s:17:"Migrate test page";}',
42932   'type' => '6',
42933   'block_callback' => '',
42934   '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.",
42935   'position' => '',
42936   'weight' => '0',
42937   'file' => 'modules/node/node.pages.inc',
42938 ))
42939 ->values(array(
42940   'path' => 'node/add/test-planet',
42941   'load_functions' => '',
42942   'to_arg_functions' => '',
42943   'access_callback' => 'node_access',
42944   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:11:"test_planet";}',
42945   'page_callback' => 'i18ncontent_node_add',
42946   'page_arguments' => 'a:1:{i:0;i:2;}',
42947   'fit' => '7',
42948   'number_parts' => '3',
42949   'tab_parent' => '',
42950   'tab_root' => 'node/add/test-planet',
42951   'title' => 'Migrate test planet',
42952   'title_callback' => 'i18nstrings_title_callback',
42953   'title_arguments' => 'a:2:{i:0;s:30:"nodetype:type:test-planet:name";i:1;s:19:"Migrate test planet";}',
42954   'type' => '6',
42955   'block_callback' => '',
42956   '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.",
42957   'position' => '',
42958   'weight' => '0',
42959   'file' => 'modules/node/node.pages.inc',
42960 ))
42961 ->values(array(
42962   'path' => 'node/add/test-story',
42963   'load_functions' => '',
42964   'to_arg_functions' => '',
42965   'access_callback' => 'node_access',
42966   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_story";}',
42967   'page_callback' => 'i18ncontent_node_add',
42968   'page_arguments' => 'a:1:{i:0;i:2;}',
42969   'fit' => '7',
42970   'number_parts' => '3',
42971   'tab_parent' => '',
42972   'tab_root' => 'node/add/test-story',
42973   'title' => 'Migrate test story',
42974   'title_callback' => 'i18nstrings_title_callback',
42975   'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-story:name";i:1;s:18:"Migrate test story";}',
42976   'type' => '6',
42977   'block_callback' => '',
42978   '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.",
42979   'position' => '',
42980   'weight' => '0',
42981   'file' => 'modules/node/node.pages.inc',
42982 ))
42983 ->values(array(
42984   'path' => 'nodereference/autocomplete',
42985   'load_functions' => '',
42986   'to_arg_functions' => '',
42987   'access_callback' => 'nodereference_autocomplete_access',
42988   'access_arguments' => 'a:1:{i:0;i:2;}',
42989   'page_callback' => 'nodereference_autocomplete',
42990   'page_arguments' => 'a:0:{}',
42991   'fit' => '3',
42992   'number_parts' => '2',
42993   'tab_parent' => '',
42994   'tab_root' => 'nodereference/autocomplete',
42995   'title' => 'Nodereference autocomplete',
42996   'title_callback' => 't',
42997   'title_arguments' => '',
42998   'type' => '4',
42999   'block_callback' => '',
43000   'description' => '',
43001   'position' => '',
43002   'weight' => '0',
43003   'file' => '',
43004 ))
43005 ->values(array(
43006   'path' => 'profile',
43007   'load_functions' => '',
43008   'to_arg_functions' => '',
43009   'access_callback' => 'user_access',
43010   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
43011   'page_callback' => 'profile_browse',
43012   'page_arguments' => 'a:0:{}',
43013   'fit' => '1',
43014   'number_parts' => '1',
43015   'tab_parent' => '',
43016   'tab_root' => 'profile',
43017   'title' => 'User list',
43018   'title_callback' => 't',
43019   'title_arguments' => '',
43020   'type' => '20',
43021   'block_callback' => '',
43022   'description' => '',
43023   'position' => '',
43024   'weight' => '0',
43025   'file' => 'modules/profile/profile.pages.inc',
43026 ))
43027 ->values(array(
43028   'path' => 'profile/autocomplete',
43029   'load_functions' => '',
43030   'to_arg_functions' => '',
43031   'access_callback' => 'user_access',
43032   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
43033   'page_callback' => 'profile_autocomplete',
43034   'page_arguments' => 'a:0:{}',
43035   'fit' => '3',
43036   'number_parts' => '2',
43037   'tab_parent' => '',
43038   'tab_root' => 'profile/autocomplete',
43039   'title' => 'Profile autocomplete',
43040   'title_callback' => 't',
43041   'title_arguments' => '',
43042   'type' => '4',
43043   'block_callback' => '',
43044   'description' => '',
43045   'position' => '',
43046   'weight' => '0',
43047   'file' => 'modules/profile/profile.pages.inc',
43048 ))
43049 ->values(array(
43050   'path' => 'rss.xml',
43051   'load_functions' => '',
43052   'to_arg_functions' => '',
43053   'access_callback' => 'user_access',
43054   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43055   'page_callback' => 'node_feed',
43056   'page_arguments' => 'a:0:{}',
43057   'fit' => '1',
43058   'number_parts' => '1',
43059   'tab_parent' => '',
43060   'tab_root' => 'rss.xml',
43061   'title' => 'RSS feed',
43062   'title_callback' => 't',
43063   'title_arguments' => '',
43064   'type' => '4',
43065   'block_callback' => '',
43066   'description' => '',
43067   'position' => '',
43068   'weight' => '0',
43069   'file' => '',
43070 ))
43071 ->values(array(
43072   'path' => 'system/files',
43073   'load_functions' => '',
43074   'to_arg_functions' => '',
43075   'access_callback' => '1',
43076   'access_arguments' => 'a:1:{i:0;s:19:"view uploaded files";}',
43077   'page_callback' => 'file_download',
43078   'page_arguments' => 'a:0:{}',
43079   'fit' => '3',
43080   'number_parts' => '2',
43081   'tab_parent' => '',
43082   'tab_root' => 'system/files',
43083   'title' => 'File download',
43084   'title_callback' => 't',
43085   'title_arguments' => '',
43086   'type' => '4',
43087   'block_callback' => '',
43088   'description' => '',
43089   'position' => '',
43090   'weight' => '0',
43091   'file' => '',
43092 ))
43093 ->values(array(
43094   'path' => 'system/files/imagecache',
43095   'load_functions' => '',
43096   'to_arg_functions' => '',
43097   'access_callback' => '1',
43098   'access_arguments' => 'a:0:{}',
43099   'page_callback' => 'imagecache_cache_private',
43100   'page_arguments' => 'a:0:{}',
43101   'fit' => '7',
43102   'number_parts' => '3',
43103   'tab_parent' => '',
43104   'tab_root' => 'system/files/imagecache',
43105   'title' => '',
43106   'title_callback' => 't',
43107   'title_arguments' => '',
43108   'type' => '4',
43109   'block_callback' => '',
43110   'description' => '',
43111   'position' => '',
43112   'weight' => '0',
43113   'file' => '',
43114 ))
43115 ->values(array(
43116   'path' => 'taxonomy/autocomplete',
43117   'load_functions' => '',
43118   'to_arg_functions' => '',
43119   'access_callback' => 'user_access',
43120   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43121   'page_callback' => 'i18ntaxonomy_autocomplete',
43122   'page_arguments' => 'a:0:{}',
43123   'fit' => '3',
43124   'number_parts' => '2',
43125   'tab_parent' => '',
43126   'tab_root' => 'taxonomy/autocomplete',
43127   'title' => 'Autocomplete taxonomy',
43128   'title_callback' => 't',
43129   'title_arguments' => '',
43130   'type' => '4',
43131   'block_callback' => '',
43132   'description' => '',
43133   'position' => '',
43134   'weight' => '0',
43135   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
43136 ))
43137 ->values(array(
43138   'path' => 'taxonomy/term/%',
43139   'load_functions' => 'a:1:{i:2;N;}',
43140   'to_arg_functions' => '',
43141   'access_callback' => 'user_access',
43142   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43143   'page_callback' => 'i18ntaxonomy_term_page',
43144   'page_arguments' => 'a:1:{i:0;i:2;}',
43145   'fit' => '6',
43146   'number_parts' => '3',
43147   'tab_parent' => '',
43148   'tab_root' => 'taxonomy/term/%',
43149   'title' => 'Taxonomy term',
43150   'title_callback' => 't',
43151   'title_arguments' => '',
43152   'type' => '4',
43153   'block_callback' => '',
43154   'description' => '',
43155   'position' => '',
43156   'weight' => '0',
43157   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
43158 ))
43159 ->values(array(
43160   'path' => 'upload/js',
43161   'load_functions' => '',
43162   'to_arg_functions' => '',
43163   'access_callback' => 'user_access',
43164   'access_arguments' => 'a:1:{i:0;s:12:"upload files";}',
43165   'page_callback' => 'upload_js',
43166   'page_arguments' => 'a:0:{}',
43167   'fit' => '3',
43168   'number_parts' => '2',
43169   'tab_parent' => '',
43170   'tab_root' => 'upload/js',
43171   'title' => '',
43172   'title_callback' => 't',
43173   'title_arguments' => '',
43174   'type' => '4',
43175   'block_callback' => '',
43176   'description' => '',
43177   'position' => '',
43178   'weight' => '0',
43179   'file' => '',
43180 ))
43181 ->values(array(
43182   'path' => 'user',
43183   'load_functions' => '',
43184   'to_arg_functions' => '',
43185   'access_callback' => '1',
43186   'access_arguments' => 'a:0:{}',
43187   'page_callback' => 'user_page',
43188   'page_arguments' => 'a:0:{}',
43189   'fit' => '1',
43190   'number_parts' => '1',
43191   'tab_parent' => '',
43192   'tab_root' => 'user',
43193   'title' => 'User account',
43194   'title_callback' => 't',
43195   'title_arguments' => '',
43196   'type' => '4',
43197   'block_callback' => '',
43198   'description' => '',
43199   'position' => '',
43200   'weight' => '0',
43201   'file' => 'modules/user/user.pages.inc',
43202 ))
43203 ->values(array(
43204   'path' => 'user/%',
43205   'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
43206   'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
43207   'access_callback' => 'user_view_access',
43208   'access_arguments' => 'a:1:{i:0;i:1;}',
43209   'page_callback' => 'user_view',
43210   'page_arguments' => 'a:1:{i:0;i:1;}',
43211   'fit' => '2',
43212   'number_parts' => '2',
43213   'tab_parent' => '',
43214   'tab_root' => 'user/%',
43215   'title' => 'My account',
43216   'title_callback' => 'user_page_title',
43217   'title_arguments' => 'a:1:{i:0;i:1;}',
43218   'type' => '6',
43219   'block_callback' => '',
43220   'description' => '',
43221   'position' => '',
43222   'weight' => '0',
43223   'file' => 'modules/user/user.pages.inc',
43224 ))
43225 ->values(array(
43226   'path' => 'user/%/contact',
43227   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43228   'to_arg_functions' => '',
43229   'access_callback' => '_contact_user_tab_access',
43230   'access_arguments' => 'a:1:{i:0;i:1;}',
43231   'page_callback' => 'contact_user_page',
43232   'page_arguments' => 'a:1:{i:0;i:1;}',
43233   'fit' => '5',
43234   'number_parts' => '3',
43235   'tab_parent' => 'user/%',
43236   'tab_root' => 'user/%',
43237   'title' => 'Contact',
43238   'title_callback' => 't',
43239   'title_arguments' => '',
43240   'type' => '128',
43241   'block_callback' => '',
43242   'description' => '',
43243   'position' => '',
43244   'weight' => '2',
43245   'file' => 'modules/contact/contact.pages.inc',
43246 ))
43247 ->values(array(
43248   'path' => 'user/%/delete',
43249   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43250   'to_arg_functions' => '',
43251   'access_callback' => 'user_delete_access',
43252   'access_arguments' => 'a:1:{i:0;i:1;}',
43253   'page_callback' => 'drupal_get_form',
43254   'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
43255   'fit' => '5',
43256   'number_parts' => '3',
43257   'tab_parent' => '',
43258   'tab_root' => 'user/%/delete',
43259   'title' => 'Delete',
43260   'title_callback' => 't',
43261   'title_arguments' => '',
43262   'type' => '4',
43263   'block_callback' => '',
43264   'description' => '',
43265   'position' => '',
43266   'weight' => '0',
43267   'file' => 'modules/user/user.pages.inc',
43268 ))
43269 ->values(array(
43270   'path' => 'user/%/edit',
43271   '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";}}}',
43272   'to_arg_functions' => '',
43273   'access_callback' => 'user_edit_access',
43274   'access_arguments' => 'a:1:{i:0;i:1;}',
43275   'page_callback' => 'user_edit',
43276   'page_arguments' => 'a:1:{i:0;i:1;}',
43277   'fit' => '5',
43278   'number_parts' => '3',
43279   'tab_parent' => 'user/%',
43280   'tab_root' => 'user/%',
43281   'title' => 'Edit',
43282   'title_callback' => 't',
43283   'title_arguments' => '',
43284   'type' => '128',
43285   'block_callback' => '',
43286   'description' => '',
43287   'position' => '',
43288   'weight' => '0',
43289   'file' => 'modules/user/user.pages.inc',
43290 ))
43291 ->values(array(
43292   'path' => 'user/%/edit/account',
43293   '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";}}}',
43294   'to_arg_functions' => '',
43295   'access_callback' => 'user_edit_access',
43296   'access_arguments' => 'a:1:{i:0;i:1;}',
43297   'page_callback' => 'user_edit',
43298   'page_arguments' => 'a:1:{i:0;i:1;}',
43299   'fit' => '11',
43300   'number_parts' => '4',
43301   'tab_parent' => 'user/%/edit',
43302   'tab_root' => 'user/%',
43303   'title' => 'Account',
43304   'title_callback' => 't',
43305   'title_arguments' => '',
43306   'type' => '136',
43307   'block_callback' => '',
43308   'description' => '',
43309   'position' => '',
43310   'weight' => '0',
43311   'file' => 'modules/user/user.pages.inc',
43312 ))
43313 ->values(array(
43314   'path' => 'user/%/edit/Administrative data',
43315   '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";}}}',
43316   'to_arg_functions' => '',
43317   'access_callback' => 'profile_category_access',
43318   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:19:"Administrative data";}',
43319   'page_callback' => 'user_edit',
43320   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
43321   'fit' => '11',
43322   'number_parts' => '4',
43323   'tab_parent' => 'user/%/edit',
43324   'tab_root' => 'user/%',
43325   'title' => '',
43326   'title_callback' => 'i18nprofile_translate_category',
43327   'title_arguments' => 'a:1:{i:0;s:19:"Administrative data";}',
43328   'type' => '128',
43329   'block_callback' => '',
43330   'description' => '',
43331   'position' => '',
43332   'weight' => '3',
43333   'file' => 'modules/user/user.pages.inc',
43334 ))
43335 ->values(array(
43336   'path' => 'user/%/edit/Communication preferences',
43337   '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";}}}',
43338   'to_arg_functions' => '',
43339   'access_callback' => 'profile_category_access',
43340   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:25:"Communication preferences";}',
43341   'page_callback' => 'user_edit',
43342   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
43343   'fit' => '11',
43344   'number_parts' => '4',
43345   'tab_parent' => 'user/%/edit',
43346   'tab_root' => 'user/%',
43347   'title' => '',
43348   'title_callback' => 'i18nprofile_translate_category',
43349   'title_arguments' => 'a:1:{i:0;s:25:"Communication preferences";}',
43350   'type' => '128',
43351   'block_callback' => '',
43352   'description' => '',
43353   'position' => '',
43354   'weight' => '3',
43355   'file' => 'modules/user/user.pages.inc',
43356 ))
43357 ->values(array(
43358   'path' => 'user/%/edit/Personal information',
43359   '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";}}}',
43360   'to_arg_functions' => '',
43361   'access_callback' => 'profile_category_access',
43362   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:20:"Personal information";}',
43363   'page_callback' => 'user_edit',
43364   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
43365   'fit' => '11',
43366   'number_parts' => '4',
43367   'tab_parent' => 'user/%/edit',
43368   'tab_root' => 'user/%',
43369   'title' => '',
43370   'title_callback' => 'i18nprofile_translate_category',
43371   'title_arguments' => 'a:1:{i:0;s:20:"Personal information";}',
43372   'type' => '128',
43373   'block_callback' => '',
43374   'description' => '',
43375   'position' => '',
43376   'weight' => '3',
43377   'file' => 'modules/user/user.pages.inc',
43378 ))
43379 ->values(array(
43380   'path' => 'user/%/track/navigation',
43381   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43382   'to_arg_functions' => '',
43383   'access_callback' => 'user_access',
43384   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
43385   'page_callback' => 'statistics_user_tracker',
43386   'page_arguments' => 'a:0:{}',
43387   'fit' => '11',
43388   'number_parts' => '4',
43389   'tab_parent' => 'user/%',
43390   'tab_root' => 'user/%',
43391   'title' => 'Track page visits',
43392   'title_callback' => 't',
43393   'title_arguments' => '',
43394   'type' => '128',
43395   'block_callback' => '',
43396   'description' => '',
43397   'position' => '',
43398   'weight' => '2',
43399   'file' => 'modules/statistics/statistics.pages.inc',
43400 ))
43401 ->values(array(
43402   'path' => 'user/%/view',
43403   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43404   'to_arg_functions' => '',
43405   'access_callback' => 'user_view_access',
43406   'access_arguments' => 'a:1:{i:0;i:1;}',
43407   'page_callback' => 'user_view',
43408   'page_arguments' => 'a:1:{i:0;i:1;}',
43409   'fit' => '5',
43410   'number_parts' => '3',
43411   'tab_parent' => 'user/%',
43412   'tab_root' => 'user/%',
43413   'title' => 'View',
43414   'title_callback' => 't',
43415   'title_arguments' => '',
43416   'type' => '136',
43417   'block_callback' => '',
43418   'description' => '',
43419   'position' => '',
43420   'weight' => '-10',
43421   'file' => 'modules/user/user.pages.inc',
43422 ))
43423 ->values(array(
43424   'path' => 'user/autocomplete',
43425   'load_functions' => '',
43426   'to_arg_functions' => '',
43427   'access_callback' => 'user_access',
43428   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
43429   'page_callback' => 'user_autocomplete',
43430   'page_arguments' => 'a:0:{}',
43431   'fit' => '3',
43432   'number_parts' => '2',
43433   'tab_parent' => '',
43434   'tab_root' => 'user/autocomplete',
43435   'title' => 'User autocomplete',
43436   'title_callback' => 't',
43437   'title_arguments' => '',
43438   'type' => '4',
43439   'block_callback' => '',
43440   'description' => '',
43441   'position' => '',
43442   'weight' => '0',
43443   'file' => 'modules/user/user.pages.inc',
43444 ))
43445 ->values(array(
43446   'path' => 'user/login',
43447   'load_functions' => '',
43448   'to_arg_functions' => '',
43449   'access_callback' => 'user_is_anonymous',
43450   'access_arguments' => 'a:0:{}',
43451   'page_callback' => 'user_page',
43452   'page_arguments' => 'a:0:{}',
43453   'fit' => '3',
43454   'number_parts' => '2',
43455   'tab_parent' => 'user',
43456   'tab_root' => 'user',
43457   'title' => 'Log in',
43458   'title_callback' => 't',
43459   'title_arguments' => '',
43460   'type' => '136',
43461   'block_callback' => '',
43462   'description' => '',
43463   'position' => '',
43464   'weight' => '0',
43465   'file' => 'modules/user/user.pages.inc',
43466 ))
43467 ->values(array(
43468   'path' => 'user/password',
43469   'load_functions' => '',
43470   'to_arg_functions' => '',
43471   'access_callback' => 'user_is_anonymous',
43472   'access_arguments' => 'a:0:{}',
43473   'page_callback' => 'drupal_get_form',
43474   'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
43475   'fit' => '3',
43476   'number_parts' => '2',
43477   'tab_parent' => 'user',
43478   'tab_root' => 'user',
43479   'title' => 'Request new password',
43480   'title_callback' => 't',
43481   'title_arguments' => '',
43482   'type' => '128',
43483   'block_callback' => '',
43484   'description' => '',
43485   'position' => '',
43486   'weight' => '0',
43487   'file' => 'modules/user/user.pages.inc',
43488 ))
43489 ->values(array(
43490   'path' => 'user/register',
43491   'load_functions' => '',
43492   'to_arg_functions' => '',
43493   'access_callback' => 'user_register_access',
43494   'access_arguments' => 'a:0:{}',
43495   'page_callback' => 'drupal_get_form',
43496   'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
43497   'fit' => '3',
43498   'number_parts' => '2',
43499   'tab_parent' => 'user',
43500   'tab_root' => 'user',
43501   'title' => 'Create new account',
43502   'title_callback' => 't',
43503   'title_arguments' => '',
43504   'type' => '128',
43505   'block_callback' => '',
43506   'description' => '',
43507   'position' => '',
43508   'weight' => '0',
43509   'file' => 'modules/user/user.pages.inc',
43510 ))
43511 ->values(array(
43512   'path' => 'user/reset/%/%/%',
43513   'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
43514   'to_arg_functions' => '',
43515   'access_callback' => '1',
43516   'access_arguments' => 'a:0:{}',
43517   'page_callback' => 'drupal_get_form',
43518   'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
43519   'fit' => '24',
43520   'number_parts' => '5',
43521   'tab_parent' => '',
43522   'tab_root' => 'user/reset/%/%/%',
43523   'title' => 'Reset password',
43524   'title_callback' => 't',
43525   'title_arguments' => '',
43526   'type' => '4',
43527   'block_callback' => '',
43528   'description' => '',
43529   'position' => '',
43530   'weight' => '0',
43531   'file' => 'modules/user/user.pages.inc',
43532 ))
43533 ->values(array(
43534   'path' => 'user/timezone',
43535   'load_functions' => '',
43536   'to_arg_functions' => '',
43537   'access_callback' => '1',
43538   'access_arguments' => 'a:0:{}',
43539   'page_callback' => 'user_timezone',
43540   'page_arguments' => 'a:0:{}',
43541   'fit' => '3',
43542   'number_parts' => '2',
43543   'tab_parent' => '',
43544   'tab_root' => 'user/timezone',
43545   'title' => 'User timezone',
43546   'title_callback' => 't',
43547   'title_arguments' => '',
43548   'type' => '4',
43549   'block_callback' => '',
43550   'description' => '',
43551   'position' => '',
43552   'weight' => '0',
43553   'file' => '',
43554 ))
43555 ->values(array(
43556   'path' => 'userreference/autocomplete',
43557   'load_functions' => '',
43558   'to_arg_functions' => '',
43559   'access_callback' => 'user_access',
43560   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43561   'page_callback' => 'userreference_autocomplete',
43562   'page_arguments' => 'a:0:{}',
43563   'fit' => '3',
43564   'number_parts' => '2',
43565   'tab_parent' => '',
43566   'tab_root' => 'userreference/autocomplete',
43567   'title' => 'Userreference autocomplete',
43568   'title_callback' => 't',
43569   'title_arguments' => '',
43570   'type' => '4',
43571   'block_callback' => '',
43572   'description' => '',
43573   'position' => '',
43574   'weight' => '0',
43575   'file' => '',
43576 ))
43577 ->execute();
43578
43579 $connection->schema()->createTable('node', array(
43580   'fields' => array(
43581     'nid' => array(
43582       'type' => 'serial',
43583       'not null' => TRUE,
43584       'size' => 'normal',
43585       'unsigned' => TRUE,
43586     ),
43587     'vid' => array(
43588       'type' => 'int',
43589       'not null' => TRUE,
43590       'size' => 'normal',
43591       'default' => '0',
43592       'unsigned' => TRUE,
43593     ),
43594     'type' => array(
43595       'type' => 'varchar',
43596       'not null' => TRUE,
43597       'length' => '32',
43598       'default' => '',
43599     ),
43600     'language' => array(
43601       'type' => 'varchar',
43602       'not null' => TRUE,
43603       'length' => '12',
43604       'default' => '',
43605     ),
43606     'title' => array(
43607       'type' => 'varchar',
43608       'not null' => TRUE,
43609       'length' => '255',
43610       'default' => '',
43611     ),
43612     'uid' => array(
43613       'type' => 'int',
43614       'not null' => TRUE,
43615       'size' => 'normal',
43616       'default' => '0',
43617     ),
43618     'status' => array(
43619       'type' => 'int',
43620       'not null' => TRUE,
43621       'size' => 'normal',
43622       'default' => '1',
43623     ),
43624     'created' => array(
43625       'type' => 'int',
43626       'not null' => TRUE,
43627       'size' => 'normal',
43628       'default' => '0',
43629     ),
43630     'changed' => array(
43631       'type' => 'int',
43632       'not null' => TRUE,
43633       'size' => 'normal',
43634       'default' => '0',
43635     ),
43636     'comment' => array(
43637       'type' => 'int',
43638       'not null' => TRUE,
43639       'size' => 'normal',
43640       'default' => '0',
43641     ),
43642     'promote' => array(
43643       'type' => 'int',
43644       'not null' => TRUE,
43645       'size' => 'normal',
43646       'default' => '0',
43647     ),
43648     'moderate' => array(
43649       'type' => 'int',
43650       'not null' => TRUE,
43651       'size' => 'normal',
43652       'default' => '0',
43653     ),
43654     'sticky' => array(
43655       'type' => 'int',
43656       'not null' => TRUE,
43657       'size' => 'normal',
43658       'default' => '0',
43659     ),
43660     'tnid' => array(
43661       'type' => 'int',
43662       'not null' => TRUE,
43663       'size' => 'normal',
43664       'default' => '0',
43665       'unsigned' => TRUE,
43666     ),
43667     'translate' => array(
43668       'type' => 'int',
43669       'not null' => TRUE,
43670       'size' => 'normal',
43671       'default' => '0',
43672     ),
43673   ),
43674   'primary key' => array(
43675     'nid',
43676   ),
43677   'mysql_character_set' => 'utf8',
43678 ));
43679
43680 $connection->insert('node')
43681 ->fields(array(
43682   'nid',
43683   'vid',
43684   'type',
43685   'language',
43686   'title',
43687   'uid',
43688   'status',
43689   'created',
43690   'changed',
43691   'comment',
43692   'promote',
43693   'moderate',
43694   'sticky',
43695   'tnid',
43696   'translate',
43697 ))
43698 ->values(array(
43699   'nid' => '1',
43700   'vid' => '1',
43701   'type' => 'story',
43702   'language' => '',
43703   'title' => 'Test title',
43704   'uid' => '1',
43705   'status' => '1',
43706   'created' => '1388271197',
43707   'changed' => '1420861423',
43708   'comment' => '0',
43709   'promote' => '0',
43710   'moderate' => '0',
43711   'sticky' => '0',
43712   'tnid' => '0',
43713   'translate' => '0',
43714 ))
43715 ->values(array(
43716   'nid' => '2',
43717   'vid' => '3',
43718   'type' => 'story',
43719   'language' => '',
43720   'title' => 'Test title rev 3',
43721   'uid' => '1',
43722   'status' => '1',
43723   'created' => '1388271197',
43724   'changed' => '1420718386',
43725   'comment' => '0',
43726   'promote' => '0',
43727   'moderate' => '0',
43728   'sticky' => '0',
43729   'tnid' => '0',
43730   'translate' => '0',
43731 ))
43732 ->values(array(
43733   'nid' => '3',
43734   'vid' => '4',
43735   'type' => 'test_planet',
43736   'language' => '',
43737   'title' => 'Test planet title 3',
43738   'uid' => '1',
43739   'status' => '1',
43740   'created' => '1388271527',
43741   'changed' => '1390096401',
43742   'comment' => '0',
43743   'promote' => '0',
43744   'moderate' => '0',
43745   'sticky' => '0',
43746   'tnid' => '0',
43747   'translate' => '0',
43748 ))
43749 ->values(array(
43750   'nid' => '4',
43751   'vid' => '6',
43752   'type' => 'test_planet',
43753   'language' => '',
43754   'title' => '',
43755   'uid' => '1',
43756   'status' => '1',
43757   'created' => '1388271527',
43758   'changed' => '1390096401',
43759   'comment' => '0',
43760   'promote' => '0',
43761   'moderate' => '0',
43762   'sticky' => '0',
43763   'tnid' => '0',
43764   'translate' => '0',
43765 ))
43766 ->values(array(
43767   'nid' => '5',
43768   'vid' => '7',
43769   'type' => 'test_planet',
43770   'language' => '',
43771   'title' => '',
43772   'uid' => '1',
43773   'status' => '1',
43774   'created' => '1388271527',
43775   'changed' => '1390096401',
43776   'comment' => '0',
43777   'promote' => '0',
43778   'moderate' => '0',
43779   'sticky' => '0',
43780   'tnid' => '0',
43781   'translate' => '0',
43782 ))
43783 ->values(array(
43784   'nid' => '6',
43785   'vid' => '8',
43786   'type' => 'test_planet',
43787   'language' => '',
43788   'title' => '',
43789   'uid' => '1',
43790   'status' => '1',
43791   'created' => '1388271527',
43792   'changed' => '1390096401',
43793   'comment' => '0',
43794   'promote' => '0',
43795   'moderate' => '0',
43796   'sticky' => '0',
43797   'tnid' => '0',
43798   'translate' => '0',
43799 ))
43800 ->values(array(
43801   'nid' => '7',
43802   'vid' => '9',
43803   'type' => 'test_planet',
43804   'language' => '',
43805   'title' => '',
43806   'uid' => '1',
43807   'status' => '1',
43808   'created' => '1388271527',
43809   'changed' => '1390096401',
43810   'comment' => '0',
43811   'promote' => '0',
43812   'moderate' => '0',
43813   'sticky' => '0',
43814   'tnid' => '0',
43815   'translate' => '0',
43816 ))
43817 ->values(array(
43818   'nid' => '8',
43819   'vid' => '10',
43820   'type' => 'test_planet',
43821   'language' => '',
43822   'title' => '',
43823   'uid' => '1',
43824   'status' => '1',
43825   'created' => '1388271527',
43826   'changed' => '1390096401',
43827   'comment' => '0',
43828   'promote' => '0',
43829   'moderate' => '0',
43830   'sticky' => '0',
43831   'tnid' => '0',
43832   'translate' => '0',
43833 ))
43834 ->values(array(
43835   'nid' => '9',
43836   'vid' => '12',
43837   'type' => 'story',
43838   'language' => '',
43839   'title' => 'Once upon a time',
43840   'uid' => '1',
43841   'status' => '1',
43842   'created' => '1444671588',
43843   'changed' => '1444671588',
43844   'comment' => '2',
43845   'promote' => '1',
43846   'moderate' => '0',
43847   'sticky' => '0',
43848   'tnid' => '0',
43849   'translate' => '0',
43850 ))
43851 ->values(array(
43852   'nid' => '10',
43853   'vid' => '13',
43854   'type' => 'page',
43855   'language' => 'en',
43856   'title' => 'The Real McCoy',
43857   'uid' => '1',
43858   'status' => '1',
43859   'created' => '1444238800',
43860   'changed' => '1444238808',
43861   'comment' => '2',
43862   'promote' => '1',
43863   'moderate' => '0',
43864   'sticky' => '0',
43865   'tnid' => '10',
43866   'translate' => '0',
43867 ))
43868 ->values(array(
43869   'nid' => '11',
43870   'vid' => '14',
43871   'type' => 'page',
43872   'language' => 'fr',
43873   'title' => 'Le Vrai McCoy',
43874   'uid' => '1',
43875   'status' => '1',
43876   'created' => '1444239050',
43877   'changed' => '1444239050',
43878   'comment' => '2',
43879   'promote' => '1',
43880   'moderate' => '0',
43881   'sticky' => '0',
43882   'tnid' => '10',
43883   'translate' => '0',
43884 ))
43885 ->values(array(
43886   'nid' => '12',
43887   'vid' => '15',
43888   'type' => 'page',
43889   'language' => 'zu',
43890   'title' => 'Abantu zulu',
43891   'uid' => '1',
43892   'status' => '1',
43893   'created' => '1444238800',
43894   'changed' => '1444238808',
43895   'comment' => '0',
43896   'promote' => '0',
43897   'moderate' => '0',
43898   'sticky' => '0',
43899   'tnid' => '12',
43900   'translate' => '0',
43901 ))
43902 ->values(array(
43903   'nid' => '13',
43904   'vid' => '16',
43905   'type' => 'page',
43906   'language' => 'en',
43907   'title' => 'The Zulu People',
43908   'uid' => '1',
43909   'status' => '1',
43910   'created' => '1444239050',
43911   'changed' => '1444239050',
43912   'comment' => '0',
43913   'promote' => '0',
43914   'moderate' => '0',
43915   'sticky' => '0',
43916   'tnid' => '12',
43917   'translate' => '0',
43918 ))
43919 ->values(array(
43920   'nid' => '14',
43921   'vid' => '17',
43922   'type' => 'company',
43923   'language' => '',
43924   'title' => 'United Federation of Planets',
43925   'uid' => '1',
43926   'status' => '1',
43927   'created' => '1493066668',
43928   'changed' => '1493066668',
43929   'comment' => '2',
43930   'promote' => '1',
43931   'moderate' => '0',
43932   'sticky' => '0',
43933   'tnid' => '0',
43934   'translate' => '0',
43935 ))
43936 ->values(array(
43937   'nid' => '15',
43938   'vid' => '18',
43939   'type' => 'company',
43940   'language' => '',
43941   'title' => 'Klingon Empire',
43942   'uid' => '1',
43943   'status' => '1',
43944   'created' => '1493066677',
43945   'changed' => '1493066677',
43946   'comment' => '2',
43947   'promote' => '1',
43948   'moderate' => '0',
43949   'sticky' => '0',
43950   'tnid' => '0',
43951   'translate' => '0',
43952 ))
43953 ->values(array(
43954   'nid' => '16',
43955   'vid' => '19',
43956   'type' => 'company',
43957   'language' => '',
43958   'title' => 'Romulan Empire',
43959   'uid' => '1',
43960   'status' => '1',
43961   'created' => '1493066684',
43962   'changed' => '1493066684',
43963   'comment' => '2',
43964   'promote' => '1',
43965   'moderate' => '0',
43966   'sticky' => '0',
43967   'tnid' => '0',
43968   'translate' => '0',
43969 ))
43970 ->values(array(
43971   'nid' => '17',
43972   'vid' => '20',
43973   'type' => 'company',
43974   'language' => '',
43975   'title' => 'Ferengi Commerce Authority',
43976   'uid' => '1',
43977   'status' => '1',
43978   'created' => '1493066693',
43979   'changed' => '1493066693',
43980   'comment' => '2',
43981   'promote' => '1',
43982   'moderate' => '0',
43983   'sticky' => '0',
43984   'tnid' => '0',
43985   'translate' => '0',
43986 ))
43987 ->values(array(
43988   'nid' => '18',
43989   'vid' => '21',
43990   'type' => 'employee',
43991   'language' => '',
43992   'title' => 'Ambassador Sarek',
43993   'uid' => '1',
43994   'status' => '1',
43995   'created' => '1493066711',
43996   'changed' => '1494966544',
43997   'comment' => '2',
43998   'promote' => '1',
43999   'moderate' => '0',
44000   'sticky' => '0',
44001   'tnid' => '0',
44002   'translate' => '0',
44003 ))
44004 ->values(array(
44005   'nid' => '19',
44006   'vid' => '22',
44007   'type' => 'forum',
44008   'language' => '',
44009   'title' => 'New Forum Topic',
44010   'uid' => '1',
44011   'status' => '1',
44012   'created' => '1501955771',
44013   'changed' => '1501955771',
44014   'comment' => '2',
44015   'promote' => '0',
44016   'moderate' => '0',
44017   'sticky' => '0',
44018   'tnid' => '0',
44019   'translate' => '0',
44020 ))
44021 ->values(array(
44022   'nid' => '20',
44023   'vid' => '23',
44024   'type' => 'page',
44025   'language' => 'fr',
44026   'title' => 'Le peuple zoulou',
44027   'uid' => '1',
44028   'status' => '1',
44029   'created' => '1520613038',
44030   'changed' => '1520613305',
44031   'comment' => '0',
44032   'promote' => '1',
44033   'moderate' => '0',
44034   'sticky' => '0',
44035   'tnid' => '12',
44036   'translate' => '0',
44037 ))
44038 ->values(array(
44039   'nid' => '21',
44040   'vid' => '2002',
44041   'type' => 'employee',
44042   'language' => 'en',
44043   'title' => 'John Smith - EN',
44044   'uid' => '1',
44045   'status' => '1',
44046   'created' => '1534014650',
44047   'changed' => '1534014650',
44048   'comment' => '2',
44049   'promote' => '1',
44050   'moderate' => '0',
44051   'sticky' => '0',
44052   'tnid' => '21',
44053   'translate' => '0',
44054 ))
44055 ->values(array(
44056   'nid' => '22',
44057   'vid' => '2003',
44058   'type' => 'employee',
44059   'language' => 'fr',
44060   'title' => 'John Smith - FR',
44061   'uid' => '1',
44062   'status' => '1',
44063   'created' => '1534014687',
44064   'changed' => '1534014687',
44065   'comment' => '2',
44066   'promote' => '1',
44067   'moderate' => '0',
44068   'sticky' => '0',
44069   'tnid' => '21',
44070   'translate' => '0',
44071 ))
44072 ->execute();
44073
44074 $connection->schema()->createTable('node_access', array(
44075   'fields' => array(
44076     'nid' => array(
44077       'type' => 'int',
44078       'not null' => TRUE,
44079       'size' => 'normal',
44080       'default' => '0',
44081       'unsigned' => TRUE,
44082     ),
44083     'gid' => array(
44084       'type' => 'int',
44085       'not null' => TRUE,
44086       'size' => 'normal',
44087       'default' => '0',
44088       'unsigned' => TRUE,
44089     ),
44090     'realm' => array(
44091       'type' => 'varchar',
44092       'not null' => TRUE,
44093       'length' => '255',
44094       'default' => '',
44095     ),
44096     'grant_view' => array(
44097       'type' => 'int',
44098       'not null' => TRUE,
44099       'size' => 'normal',
44100       'default' => '0',
44101       'unsigned' => TRUE,
44102     ),
44103     'grant_update' => array(
44104       'type' => 'int',
44105       'not null' => TRUE,
44106       'size' => 'normal',
44107       'default' => '0',
44108       'unsigned' => TRUE,
44109     ),
44110     'grant_delete' => array(
44111       'type' => 'int',
44112       'not null' => TRUE,
44113       'size' => 'normal',
44114       'default' => '0',
44115       'unsigned' => TRUE,
44116     ),
44117   ),
44118   'primary key' => array(
44119     'nid',
44120     'gid',
44121     'realm',
44122   ),
44123   'mysql_character_set' => 'utf8',
44124 ));
44125
44126 $connection->insert('node_access')
44127 ->fields(array(
44128   'nid',
44129   'gid',
44130   'realm',
44131   'grant_view',
44132   'grant_update',
44133   'grant_delete',
44134 ))
44135 ->values(array(
44136   'nid' => '0',
44137   'gid' => '0',
44138   'realm' => 'all',
44139   'grant_view' => '1',
44140   'grant_update' => '0',
44141   'grant_delete' => '0',
44142 ))
44143 ->execute();
44144
44145 $connection->schema()->createTable('node_comment_statistics', array(
44146   'fields' => array(
44147     'nid' => array(
44148       'type' => 'int',
44149       'not null' => TRUE,
44150       'size' => 'normal',
44151       'default' => '0',
44152       'unsigned' => TRUE,
44153     ),
44154     'last_comment_timestamp' => array(
44155       'type' => 'int',
44156       'not null' => TRUE,
44157       'size' => 'normal',
44158       'default' => '0',
44159     ),
44160     'last_comment_name' => array(
44161       'type' => 'varchar',
44162       'not null' => FALSE,
44163       'length' => '60',
44164     ),
44165     'last_comment_uid' => array(
44166       'type' => 'int',
44167       'not null' => TRUE,
44168       'size' => 'normal',
44169       'default' => '0',
44170     ),
44171     'comment_count' => array(
44172       'type' => 'int',
44173       'not null' => TRUE,
44174       'size' => 'normal',
44175       'default' => '0',
44176       'unsigned' => TRUE,
44177     ),
44178   ),
44179   'primary key' => array(
44180     'nid',
44181   ),
44182   'indexes' => array(
44183     'comment_count' => array(
44184       'comment_count',
44185     ),
44186     'last_comment_uid' => array(
44187       'last_comment_uid',
44188     ),
44189   ),
44190   'mysql_character_set' => 'utf8',
44191 ));
44192
44193 $connection->insert('node_comment_statistics')
44194 ->fields(array(
44195   'nid',
44196   'last_comment_timestamp',
44197   'last_comment_name',
44198   'last_comment_uid',
44199   'comment_count',
44200 ))
44201 ->values(array(
44202   'nid' => '0',
44203   'last_comment_timestamp' => '1468384735',
44204   'last_comment_name' => NULL,
44205   'last_comment_uid' => '1',
44206   'comment_count' => '0',
44207 ))
44208 ->values(array(
44209   'nid' => '1',
44210   'last_comment_timestamp' => '1388271197',
44211   'last_comment_name' => NULL,
44212   'last_comment_uid' => '1',
44213   'comment_count' => '0',
44214 ))
44215 ->values(array(
44216   'nid' => '2',
44217   'last_comment_timestamp' => '1389002813',
44218   'last_comment_name' => NULL,
44219   'last_comment_uid' => '1',
44220   'comment_count' => '0',
44221 ))
44222 ->values(array(
44223   'nid' => '9',
44224   'last_comment_timestamp' => '1444238800',
44225   'last_comment_name' => NULL,
44226   'last_comment_uid' => '1',
44227   'comment_count' => '0',
44228 ))
44229 ->values(array(
44230   'nid' => '10',
44231   'last_comment_timestamp' => '1444239050',
44232   'last_comment_name' => NULL,
44233   'last_comment_uid' => '1',
44234   'comment_count' => '0',
44235 ))
44236 ->values(array(
44237   'nid' => '14',
44238   'last_comment_timestamp' => '1493066668',
44239   'last_comment_name' => NULL,
44240   'last_comment_uid' => '1',
44241   'comment_count' => '0',
44242 ))
44243 ->values(array(
44244   'nid' => '15',
44245   'last_comment_timestamp' => '1493066677',
44246   'last_comment_name' => NULL,
44247   'last_comment_uid' => '1',
44248   'comment_count' => '0',
44249 ))
44250 ->values(array(
44251   'nid' => '16',
44252   'last_comment_timestamp' => '1493066684',
44253   'last_comment_name' => NULL,
44254   'last_comment_uid' => '1',
44255   'comment_count' => '0',
44256 ))
44257 ->values(array(
44258   'nid' => '17',
44259   'last_comment_timestamp' => '1493066693',
44260   'last_comment_name' => NULL,
44261   'last_comment_uid' => '1',
44262   'comment_count' => '0',
44263 ))
44264 ->values(array(
44265   'nid' => '18',
44266   'last_comment_timestamp' => '1493066711',
44267   'last_comment_name' => NULL,
44268   'last_comment_uid' => '1',
44269   'comment_count' => '0',
44270 ))
44271 ->values(array(
44272   'nid' => '19',
44273   'last_comment_timestamp' => '1501955803',
44274   'last_comment_name' => '',
44275   'last_comment_uid' => '1',
44276   'comment_count' => '3',
44277 ))
44278 ->values(array(
44279   'nid' => '21',
44280   'last_comment_timestamp' => '1534014729',
44281   'last_comment_name' => '',
44282   'last_comment_uid' => '1',
44283   'comment_count' => '1',
44284 ))
44285 ->values(array(
44286   'nid' => '22',
44287   'last_comment_timestamp' => '1534014763',
44288   'last_comment_name' => '',
44289   'last_comment_uid' => '1',
44290   'comment_count' => '1',
44291 ))
44292 ->execute();
44293
44294 $connection->schema()->createTable('node_counter', array(
44295   'fields' => array(
44296     'nid' => array(
44297       'type' => 'int',
44298       'not null' => TRUE,
44299       'size' => 'normal',
44300       'default' => '0',
44301     ),
44302     'totalcount' => array(
44303       'type' => 'int',
44304       'not null' => TRUE,
44305       'size' => 'normal',
44306       'default' => '0',
44307       'unsigned' => TRUE,
44308     ),
44309     'daycount' => array(
44310       'type' => 'int',
44311       'not null' => TRUE,
44312       'size' => 'normal',
44313       'default' => '0',
44314       'unsigned' => TRUE,
44315     ),
44316     'timestamp' => array(
44317       'type' => 'int',
44318       'not null' => TRUE,
44319       'size' => 'normal',
44320       'default' => '0',
44321       'unsigned' => TRUE,
44322     ),
44323   ),
44324   'primary key' => array(
44325     'nid',
44326   ),
44327   'mysql_character_set' => 'utf8',
44328 ));
44329
44330 $connection->insert('node_counter')
44331 ->fields(array(
44332   'nid',
44333   'totalcount',
44334   'daycount',
44335   'timestamp',
44336 ))
44337 ->values(array(
44338   'nid' => '1',
44339   'totalcount' => '2',
44340   'daycount' => '0',
44341   'timestamp' => '1421727536',
44342 ))
44343 ->values(array(
44344   'nid' => '2',
44345   'totalcount' => '1',
44346   'daycount' => '0',
44347   'timestamp' => '1471428059',
44348 ))
44349 ->values(array(
44350   'nid' => '3',
44351   'totalcount' => '1',
44352   'daycount' => '0',
44353   'timestamp' => '1471428153',
44354 ))
44355 ->values(array(
44356   'nid' => '4',
44357   'totalcount' => '1',
44358   'daycount' => '1',
44359   'timestamp' => '1478755275',
44360 ))
44361 ->values(array(
44362   'nid' => '5',
44363   'totalcount' => '1',
44364   'daycount' => '1',
44365   'timestamp' => '1478755314',
44366 ))
44367 ->values(array(
44368   'nid' => '10',
44369   'totalcount' => '5',
44370   'daycount' => '1',
44371   'timestamp' => '1521137459',
44372 ))
44373 ->values(array(
44374   'nid' => '11',
44375   'totalcount' => '3',
44376   'daycount' => '1',
44377   'timestamp' => '1521137463',
44378 ))
44379 ->values(array(
44380   'nid' => '12',
44381   'totalcount' => '3',
44382   'daycount' => '0',
44383   'timestamp' => '1521137469',
44384 ))
44385 ->values(array(
44386   'nid' => '13',
44387   'totalcount' => '2',
44388   'daycount' => '1',
44389   'timestamp' => '1521137470',
44390 ))
44391 ->values(array(
44392   'nid' => '14',
44393   'totalcount' => '1',
44394   'daycount' => '1',
44395   'timestamp' => '1493066668',
44396 ))
44397 ->values(array(
44398   'nid' => '15',
44399   'totalcount' => '1',
44400   'daycount' => '1',
44401   'timestamp' => '1493066677',
44402 ))
44403 ->values(array(
44404   'nid' => '16',
44405   'totalcount' => '1',
44406   'daycount' => '1',
44407   'timestamp' => '1493066685',
44408 ))
44409 ->values(array(
44410   'nid' => '17',
44411   'totalcount' => '1',
44412   'daycount' => '1',
44413   'timestamp' => '1493066693',
44414 ))
44415 ->values(array(
44416   'nid' => '18',
44417   'totalcount' => '1',
44418   'daycount' => '1',
44419   'timestamp' => '1493066711',
44420 ))
44421 ->values(array(
44422   'nid' => '19',
44423   'totalcount' => '4',
44424   'daycount' => '4',
44425   'timestamp' => '1501955803',
44426 ))
44427 ->values(array(
44428   'nid' => '21',
44429   'totalcount' => '3',
44430   'daycount' => '3',
44431   'timestamp' => '1534014729',
44432 ))
44433 ->values(array(
44434   'nid' => '22',
44435   'totalcount' => '3',
44436   'daycount' => '3',
44437   'timestamp' => '1534014763',
44438 ))
44439 ->execute();
44440
44441 $connection->schema()->createTable('node_revisions', array(
44442   'fields' => array(
44443     'nid' => array(
44444       'type' => 'int',
44445       'not null' => TRUE,
44446       'size' => 'normal',
44447       'default' => '0',
44448       'unsigned' => TRUE,
44449     ),
44450     'vid' => array(
44451       'type' => 'serial',
44452       'not null' => TRUE,
44453       'size' => 'normal',
44454       'unsigned' => TRUE,
44455     ),
44456     'uid' => array(
44457       'type' => 'int',
44458       'not null' => TRUE,
44459       'size' => 'normal',
44460       'default' => '0',
44461     ),
44462     'title' => array(
44463       'type' => 'varchar',
44464       'not null' => TRUE,
44465       'length' => '255',
44466       'default' => '',
44467     ),
44468     'body' => array(
44469       'type' => 'text',
44470       'not null' => TRUE,
44471       'size' => 'normal',
44472     ),
44473     'teaser' => array(
44474       'type' => 'text',
44475       'not null' => TRUE,
44476       'size' => 'normal',
44477     ),
44478     'log' => array(
44479       'type' => 'text',
44480       'not null' => TRUE,
44481       'size' => 'normal',
44482     ),
44483     'timestamp' => array(
44484       'type' => 'int',
44485       'not null' => TRUE,
44486       'size' => 'normal',
44487       'default' => '0',
44488     ),
44489     'format' => array(
44490       'type' => 'int',
44491       'not null' => TRUE,
44492       'size' => 'normal',
44493       'default' => '0',
44494     ),
44495   ),
44496   'primary key' => array(
44497     'vid',
44498   ),
44499   'mysql_character_set' => 'utf8',
44500 ));
44501
44502 $connection->insert('node_revisions')
44503 ->fields(array(
44504   'nid',
44505   'vid',
44506   'uid',
44507   'title',
44508   'body',
44509   'teaser',
44510   'log',
44511   'timestamp',
44512   'format',
44513 ))
44514 ->values(array(
44515   'nid' => '1',
44516   'vid' => '1',
44517   'uid' => '1',
44518   'title' => 'Test title',
44519   'body' => 'test',
44520   'teaser' => 'test',
44521   'log' => '',
44522   'timestamp' => '1420861423',
44523   'format' => '1',
44524 ))
44525 ->values(array(
44526   'nid' => '2',
44527   'vid' => '3',
44528   'uid' => '1',
44529   'title' => 'Test title rev 3',
44530   'body' => 'test rev 3',
44531   'teaser' => 'test rev 3',
44532   'log' => '',
44533   'timestamp' => '1420718386',
44534   'format' => '1',
44535 ))
44536 ->values(array(
44537   'nid' => '3',
44538   'vid' => '4',
44539   'uid' => '1',
44540   'title' => 'Test page title rev 4',
44541   'body' => 'test page body rev 4',
44542   'teaser' => 'test page teaser rev 4',
44543   'log' => '',
44544   'timestamp' => '1390095701',
44545   'format' => '0',
44546 ))
44547 ->values(array(
44548   'nid' => '1',
44549   'vid' => '5',
44550   'uid' => '1',
44551   'title' => 'Test title rev 3',
44552   'body' => 'body test rev 3',
44553   'teaser' => 'teaser test rev 3',
44554   'log' => 'modified rev 3',
44555   'timestamp' => '1390095703',
44556   'format' => '1',
44557 ))
44558 ->values(array(
44559   'nid' => '4',
44560   'vid' => '6',
44561   'uid' => '1',
44562   'title' => 'Node 4',
44563   'body' => 'Node 4 body',
44564   'teaser' => 'test for node 4',
44565   'log' => '',
44566   'timestamp' => '1390095701',
44567   'format' => '1',
44568 ))
44569 ->values(array(
44570   'nid' => '5',
44571   'vid' => '7',
44572   'uid' => '1',
44573   'title' => 'Node 5',
44574   'body' => 'Node 5 body',
44575   'teaser' => 'test for node 5',
44576   'log' => '',
44577   'timestamp' => '1390095701',
44578   'format' => '1',
44579 ))
44580 ->values(array(
44581   'nid' => '6',
44582   'vid' => '8',
44583   'uid' => '1',
44584   'title' => 'Node 6',
44585   'body' => 'Node 6 body',
44586   'teaser' => 'test for node 6',
44587   'log' => '',
44588   'timestamp' => '1390095701',
44589   'format' => '1',
44590 ))
44591 ->values(array(
44592   'nid' => '7',
44593   'vid' => '9',
44594   'uid' => '1',
44595   'title' => 'Node 7',
44596   'body' => 'Node 7 body',
44597   'teaser' => 'test for node 7',
44598   'log' => '',
44599   'timestamp' => '1390095701',
44600   'format' => '1',
44601 ))
44602 ->values(array(
44603   'nid' => '8',
44604   'vid' => '10',
44605   'uid' => '1',
44606   'title' => 'Node 8',
44607   'body' => 'Node 8 body',
44608   'teaser' => 'test for node 8',
44609   'log' => '',
44610   'timestamp' => '1390095701',
44611   'format' => '1',
44612 ))
44613 ->values(array(
44614   'nid' => '9',
44615   'vid' => '11',
44616   'uid' => '1',
44617   'title' => 'Node 9',
44618   'body' => 'Node 9 body',
44619   'teaser' => 'test for node 9',
44620   'log' => '',
44621   'timestamp' => '1390095701',
44622   'format' => '1',
44623 ))
44624 ->values(array(
44625   'nid' => '9',
44626   'vid' => '12',
44627   'uid' => '1',
44628   'title' => 'Once upon a time',
44629   'body' => 'Come on kid, go to sleep.',
44630   'teaser' => 'Come on kid, go to sleep.',
44631   'log' => '',
44632   'timestamp' => '1444671588',
44633   'format' => '1',
44634 ))
44635 ->values(array(
44636   'nid' => '10',
44637   'vid' => '13',
44638   'uid' => '1',
44639   'title' => 'The Real McCoy',
44640   'body' => "In the original, Queen's English.",
44641   'teaser' => "In the original, Queen's English.",
44642   'log' => '',
44643   'timestamp' => '1444238808',
44644   'format' => '1',
44645 ))
44646 ->values(array(
44647   'nid' => '11',
44648   'vid' => '14',
44649   'uid' => '1',
44650   'title' => 'Le Vrai McCoy',
44651   'body' => 'Ooh là là!',
44652   'teaser' => 'Ooh là là!',
44653   'log' => '',
44654   'timestamp' => '1444239050',
44655   'format' => '1',
44656 ))
44657 ->values(array(
44658   'nid' => '12',
44659   'vid' => '15',
44660   'uid' => '1',
44661   'title' => 'Abantu zulu',
44662   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44663   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44664   'log' => '',
44665   'timestamp' => '1444238808',
44666   'format' => '1',
44667 ))
44668 ->values(array(
44669   'nid' => '13',
44670   'vid' => '16',
44671   'uid' => '1',
44672   'title' => 'The Zulu People',
44673   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44674   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44675   'log' => '',
44676   'timestamp' => '1444239050',
44677   'format' => '1',
44678 ))
44679 ->values(array(
44680   'nid' => '14',
44681   'vid' => '17',
44682   'uid' => '1',
44683   'title' => 'United Federation of Planets',
44684   'body' => '',
44685   'teaser' => '',
44686   'log' => '',
44687   'timestamp' => '1493066668',
44688   'format' => '1',
44689 ))
44690 ->values(array(
44691   'nid' => '15',
44692   'vid' => '18',
44693   'uid' => '1',
44694   'title' => 'Klingon Empire',
44695   'body' => '',
44696   'teaser' => '',
44697   'log' => '',
44698   'timestamp' => '1493066677',
44699   'format' => '1',
44700 ))
44701 ->values(array(
44702   'nid' => '16',
44703   'vid' => '19',
44704   'uid' => '1',
44705   'title' => 'Romulan Empire',
44706   'body' => '',
44707   'teaser' => '',
44708   'log' => '',
44709   'timestamp' => '1493066684',
44710   'format' => '1',
44711 ))
44712 ->values(array(
44713   'nid' => '17',
44714   'vid' => '20',
44715   'uid' => '1',
44716   'title' => 'Ferengi Commerce Authority',
44717   'body' => '',
44718   'teaser' => '',
44719   'log' => '',
44720   'timestamp' => '1493066693',
44721   'format' => '1',
44722 ))
44723 ->values(array(
44724   'nid' => '18',
44725   'vid' => '21',
44726   'uid' => '1',
44727   'title' => 'Ambassador Sarek',
44728   '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.",
44729   '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?",
44730   'log' => '',
44731   'timestamp' => '1494966544',
44732   'format' => '1',
44733 ))
44734 ->values(array(
44735   'nid' => '19',
44736   'vid' => '22',
44737   'uid' => '1',
44738   'title' => 'New Forum Topic',
44739   'body' => 'New Forum Body',
44740   'teaser' => 'New Forum Body',
44741   'log' => '',
44742   'timestamp' => '1501955771',
44743   'format' => '1',
44744 ))
44745 ->values(array(
44746   'nid' => '20',
44747   'vid' => '23',
44748   'uid' => '1',
44749   'title' => 'Le peuple zoulou',
44750   'body' => 'Le peuple zoulou.',
44751   'teaser' => 'Le peuple zoulou.',
44752   'log' => '',
44753   'timestamp' => '1520613305',
44754   'format' => '1',
44755 ))
44756 ->values(array(
44757   'nid' => '1',
44758   'vid' => '2001',
44759   'uid' => '2',
44760   'title' => 'Test title rev 2',
44761   'body' => 'body test rev 2',
44762   'teaser' => 'teaser test rev 2',
44763   'log' => 'modified rev 2',
44764   'timestamp' => '1390095702',
44765   'format' => '1',
44766 ))
44767 ->values(array(
44768   'nid' => '21',
44769   'vid' => '2002',
44770   'uid' => '1',
44771   'title' => 'John Smith - EN',
44772   'body' => 'This is an English Bio text for employee John Smith. There is also a French translation to this node. Both language versions have comments.',
44773   'teaser' => 'This is an English Bio text for employee John Smith. There is also a French translation to this node. Both language versions have comments.',
44774   'log' => '',
44775   'timestamp' => '1534014650',
44776   'format' => '1',
44777 ))
44778 ->values(array(
44779   'nid' => '22',
44780   'vid' => '2003',
44781   'uid' => '1',
44782   'title' => 'John Smith - FR',
44783   'body' => 'This is a French Bio text for employee John Smith. The original node is in English. Both language versions have comments.',
44784   'teaser' => 'This is a French Bio text for employee John Smith. The original node is in English. Both language versions have comments.',
44785   'log' => '',
44786   'timestamp' => '1534014687',
44787   'format' => '1',
44788 ))
44789 ->execute();
44790
44791 $connection->schema()->createTable('node_type', array(
44792   'fields' => array(
44793     'type' => array(
44794       'type' => 'varchar',
44795       'not null' => TRUE,
44796       'length' => '32',
44797     ),
44798     'name' => array(
44799       'type' => 'varchar',
44800       'not null' => TRUE,
44801       'length' => '255',
44802       'default' => '',
44803     ),
44804     'module' => array(
44805       'type' => 'varchar',
44806       'not null' => TRUE,
44807       'length' => '255',
44808     ),
44809     'description' => array(
44810       'type' => 'text',
44811       'not null' => TRUE,
44812       'size' => 'normal',
44813     ),
44814     'help' => array(
44815       'type' => 'text',
44816       'not null' => TRUE,
44817       'size' => 'normal',
44818     ),
44819     'has_title' => array(
44820       'type' => 'int',
44821       'not null' => TRUE,
44822       'size' => 'normal',
44823       'unsigned' => TRUE,
44824     ),
44825     'title_label' => array(
44826       'type' => 'varchar',
44827       'not null' => TRUE,
44828       'length' => '255',
44829       'default' => '',
44830     ),
44831     'has_body' => array(
44832       'type' => 'int',
44833       'not null' => TRUE,
44834       'size' => 'normal',
44835       'unsigned' => TRUE,
44836     ),
44837     'body_label' => array(
44838       'type' => 'varchar',
44839       'not null' => TRUE,
44840       'length' => '255',
44841       'default' => '',
44842     ),
44843     'min_word_count' => array(
44844       'type' => 'int',
44845       'not null' => TRUE,
44846       'size' => 'normal',
44847       'unsigned' => TRUE,
44848     ),
44849     'custom' => array(
44850       'type' => 'int',
44851       'not null' => TRUE,
44852       'size' => 'normal',
44853       'default' => '0',
44854     ),
44855     'modified' => array(
44856       'type' => 'int',
44857       'not null' => TRUE,
44858       'size' => 'normal',
44859       'default' => '0',
44860     ),
44861     'locked' => array(
44862       'type' => 'int',
44863       'not null' => TRUE,
44864       'size' => 'normal',
44865       'default' => '0',
44866     ),
44867     'orig_type' => array(
44868       'type' => 'varchar',
44869       'not null' => TRUE,
44870       'length' => '255',
44871       'default' => '',
44872     ),
44873   ),
44874   'primary key' => array(
44875     'type',
44876   ),
44877   'mysql_character_set' => 'utf8',
44878 ));
44879
44880 $connection->insert('node_type')
44881 ->fields(array(
44882   'type',
44883   'name',
44884   'module',
44885   'description',
44886   'help',
44887   'has_title',
44888   'title_label',
44889   'has_body',
44890   'body_label',
44891   'min_word_count',
44892   'custom',
44893   'modified',
44894   'locked',
44895   'orig_type',
44896 ))
44897 ->values(array(
44898   'type' => 'article',
44899   'name' => 'Article',
44900   'module' => 'node',
44901   'description' => 'An <em>article</em>, content type.',
44902   'help' => '',
44903   'has_title' => '1',
44904   'title_label' => 'Title',
44905   'has_body' => '1',
44906   'body_label' => 'Body',
44907   'min_word_count' => '0',
44908   'custom' => '1',
44909   'modified' => '1',
44910   'locked' => '0',
44911   'orig_type' => 'story',
44912 ))
44913 ->values(array(
44914   'type' => 'company',
44915   'name' => 'Company',
44916   'module' => 'node',
44917   'description' => 'Company node type',
44918   'help' => '',
44919   'has_title' => '1',
44920   'title_label' => 'Name',
44921   'has_body' => '1',
44922   'body_label' => 'Description',
44923   'min_word_count' => '0',
44924   'custom' => '0',
44925   'modified' => '1',
44926   'locked' => '0',
44927   'orig_type' => 'company',
44928 ))
44929 ->values(array(
44930   'type' => 'employee',
44931   'name' => 'Employee',
44932   'module' => 'node',
44933   'description' => 'Employee node type',
44934   'help' => '',
44935   'has_title' => '1',
44936   'title_label' => 'Name',
44937   'has_body' => '1',
44938   'body_label' => 'Bio',
44939   'min_word_count' => '20',
44940   'custom' => '0',
44941   'modified' => '0',
44942   'locked' => '0',
44943   'orig_type' => 'employee',
44944 ))
44945 ->values(array(
44946   'type' => 'event',
44947   'name' => 'Event',
44948   'module' => 'node',
44949   '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.',
44950   'help' => '',
44951   'has_title' => '1',
44952   'title_label' => 'Title',
44953   'has_body' => '1',
44954   'body_label' => 'Body',
44955   'min_word_count' => '0',
44956   'custom' => '1',
44957   'modified' => '1',
44958   'locked' => '0',
44959   'orig_type' => 'event',
44960 ))
44961 ->values(array(
44962   'type' => 'forum',
44963   'name' => 'Forum topic',
44964   'module' => 'forum',
44965   'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
44966   'help' => '',
44967   'has_title' => '1',
44968   'title_label' => 'Subject',
44969   'has_body' => '1',
44970   'body_label' => 'Body',
44971   'min_word_count' => '0',
44972   'custom' => '0',
44973   'modified' => '0',
44974   'locked' => '1',
44975   'orig_type' => 'forum',
44976 ))
44977 ->values(array(
44978   'type' => 'page',
44979   'name' => 'Page',
44980   'module' => 'node',
44981   '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.",
44982   'help' => '',
44983   'has_title' => '1',
44984   'title_label' => 'Title',
44985   'has_body' => '1',
44986   'body_label' => 'Body',
44987   'min_word_count' => '0',
44988   'custom' => '1',
44989   'modified' => '1',
44990   'locked' => '0',
44991   'orig_type' => 'page',
44992 ))
44993 ->values(array(
44994   'type' => 'sponsor',
44995   'name' => 'Sponsor',
44996   'module' => 'node',
44997   'description' => 'Sponsor node type',
44998   'help' => '',
44999   'has_title' => '1',
45000   'title_label' => 'Name',
45001   'has_body' => '0',
45002   'body_label' => 'Body',
45003   'min_word_count' => '0',
45004   'custom' => '0',
45005   'modified' => '0',
45006   'locked' => '0',
45007   'orig_type' => '',
45008 ))
45009 ->values(array(
45010   'type' => 'story',
45011   'name' => 'Story',
45012   'module' => 'node',
45013   '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.",
45014   'help' => '',
45015   'has_title' => '1',
45016   'title_label' => 'Title',
45017   'has_body' => '1',
45018   'body_label' => 'Body',
45019   'min_word_count' => '0',
45020   'custom' => '1',
45021   'modified' => '1',
45022   'locked' => '0',
45023   'orig_type' => 'story',
45024 ))
45025 ->values(array(
45026   'type' => 'test_event',
45027   'name' => 'Migrate test event',
45028   'module' => 'node',
45029   'description' => 'test event description here',
45030   'help' => '',
45031   'has_title' => '1',
45032   'title_label' => 'Event Name',
45033   'has_body' => '1',
45034   'body_label' => 'Body',
45035   'min_word_count' => '0',
45036   'custom' => '1',
45037   'modified' => '1',
45038   'locked' => '0',
45039   'orig_type' => 'event',
45040 ))
45041 ->values(array(
45042   'type' => 'test_page',
45043   'name' => 'Migrate test page',
45044   'module' => 'node',
45045   '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.",
45046   'help' => '',
45047   'has_title' => '1',
45048   'title_label' => 'Title',
45049   'has_body' => '1',
45050   'body_label' => 'This is the body field label',
45051   'min_word_count' => '0',
45052   'custom' => '1',
45053   'modified' => '1',
45054   'locked' => '0',
45055   'orig_type' => 'test_page',
45056 ))
45057 ->values(array(
45058   'type' => 'test_planet',
45059   'name' => 'Migrate test planet',
45060   'module' => 'node',
45061   '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.",
45062   'help' => '',
45063   'has_title' => '1',
45064   'title_label' => 'Title',
45065   'has_body' => '0',
45066   'body_label' => 'Body',
45067   'min_word_count' => '0',
45068   'custom' => '1',
45069   'modified' => '1',
45070   'locked' => '0',
45071   'orig_type' => 'test_planet',
45072 ))
45073 ->values(array(
45074   'type' => 'test_story',
45075   'name' => 'Migrate test story',
45076   'module' => 'node',
45077   '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.",
45078   'help' => '',
45079   'has_title' => '1',
45080   'title_label' => 'Title',
45081   'has_body' => '0',
45082   'body_label' => 'Body',
45083   'min_word_count' => '0',
45084   'custom' => '1',
45085   'modified' => '1',
45086   'locked' => '0',
45087   'orig_type' => 'test_story',
45088 ))
45089 ->execute();
45090
45091 $connection->schema()->createTable('permission', array(
45092   'fields' => array(
45093     'pid' => array(
45094       'type' => 'serial',
45095       'not null' => TRUE,
45096       'size' => 'normal',
45097     ),
45098     'rid' => array(
45099       'type' => 'int',
45100       'not null' => TRUE,
45101       'size' => 'normal',
45102       'default' => '0',
45103       'unsigned' => TRUE,
45104     ),
45105     'perm' => array(
45106       'type' => 'text',
45107       'not null' => FALSE,
45108       'size' => 'normal',
45109     ),
45110     'tid' => array(
45111       'type' => 'int',
45112       'not null' => TRUE,
45113       'size' => 'normal',
45114       'default' => '0',
45115       'unsigned' => TRUE,
45116     ),
45117   ),
45118   'primary key' => array(
45119     'pid',
45120   ),
45121   'mysql_character_set' => 'utf8',
45122 ));
45123
45124 $connection->insert('permission')
45125 ->fields(array(
45126   'pid',
45127   'rid',
45128   'perm',
45129   'tid',
45130 ))
45131 ->values(array(
45132   'pid' => '1',
45133   'rid' => '1',
45134   'perm' => 'access content, migrate test anonymous permission',
45135   'tid' => '0',
45136 ))
45137 ->values(array(
45138   'pid' => '2',
45139   'rid' => '2',
45140   'perm' => 'access comments, access content, post comments, post comments without approval, migrate test authenticated permission',
45141   'tid' => '0',
45142 ))
45143 ->values(array(
45144   'pid' => '3',
45145   'rid' => '3',
45146   'perm' => 'migrate test role 1 test permission',
45147   'tid' => '0',
45148 ))
45149 ->values(array(
45150   'pid' => '4',
45151   'rid' => '4',
45152   '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',
45153   'tid' => '0',
45154 ))
45155 ->execute();
45156
45157 $connection->schema()->createTable('profile_fields', array(
45158   'fields' => array(
45159     'fid' => array(
45160       'type' => 'serial',
45161       'not null' => TRUE,
45162       'size' => 'normal',
45163     ),
45164     'title' => array(
45165       'type' => 'varchar',
45166       'not null' => FALSE,
45167       'length' => '255',
45168     ),
45169     'name' => array(
45170       'type' => 'varchar',
45171       'not null' => TRUE,
45172       'length' => '128',
45173       'default' => '',
45174     ),
45175     'explanation' => array(
45176       'type' => 'text',
45177       'not null' => FALSE,
45178       'size' => 'normal',
45179     ),
45180     'category' => array(
45181       'type' => 'varchar',
45182       'not null' => FALSE,
45183       'length' => '255',
45184     ),
45185     'page' => array(
45186       'type' => 'varchar',
45187       'not null' => FALSE,
45188       'length' => '255',
45189     ),
45190     'type' => array(
45191       'type' => 'varchar',
45192       'not null' => FALSE,
45193       'length' => '128',
45194     ),
45195     'weight' => array(
45196       'type' => 'int',
45197       'not null' => TRUE,
45198       'size' => 'normal',
45199       'default' => '0',
45200     ),
45201     'required' => array(
45202       'type' => 'int',
45203       'not null' => TRUE,
45204       'size' => 'normal',
45205       'default' => '0',
45206     ),
45207     'register' => array(
45208       'type' => 'int',
45209       'not null' => TRUE,
45210       'size' => 'normal',
45211       'default' => '0',
45212     ),
45213     'visibility' => array(
45214       'type' => 'int',
45215       'not null' => TRUE,
45216       'size' => 'normal',
45217       'default' => '0',
45218     ),
45219     'autocomplete' => array(
45220       'type' => 'int',
45221       'not null' => TRUE,
45222       'size' => 'normal',
45223       'default' => '0',
45224     ),
45225     'options' => array(
45226       'type' => 'text',
45227       'not null' => FALSE,
45228       'size' => 'normal',
45229     ),
45230   ),
45231   'primary key' => array(
45232     'fid',
45233   ),
45234   'mysql_character_set' => 'utf8',
45235 ));
45236
45237 $connection->insert('profile_fields')
45238 ->fields(array(
45239   'fid',
45240   'title',
45241   'name',
45242   'explanation',
45243   'category',
45244   'page',
45245   'type',
45246   'weight',
45247   'required',
45248   'register',
45249   'visibility',
45250   'autocomplete',
45251   'options',
45252 ))
45253 ->values(array(
45254   'fid' => '8',
45255   'title' => 'Favorite color',
45256   'name' => 'profile_color',
45257   'explanation' => 'List your favorite color',
45258   'category' => 'Personal information',
45259   'page' => 'Peole whose favorite color is %value',
45260   'type' => 'textfield',
45261   'weight' => '-10',
45262   'required' => '0',
45263   'register' => '1',
45264   'visibility' => '2',
45265   'autocomplete' => '1',
45266   'options' => '',
45267 ))
45268 ->values(array(
45269   'fid' => '9',
45270   'title' => 'Biography',
45271   'name' => 'profile_biography',
45272   'explanation' => 'Tell people a little bit about yourself',
45273   'category' => 'Personal information',
45274   'page' => '',
45275   'type' => 'textarea',
45276   'weight' => '-8',
45277   'required' => '0',
45278   'register' => '0',
45279   'visibility' => '2',
45280   'autocomplete' => '0',
45281   'options' => '',
45282 ))
45283 ->values(array(
45284   'fid' => '10',
45285   'title' => 'Sell your email address?',
45286   'name' => 'profile_sell_Address',
45287   'explanation' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
45288   'category' => 'Communication preferences',
45289   'page' => 'People who want us to sell their address',
45290   'type' => 'checkbox',
45291   'weight' => '-10',
45292   'required' => '0',
45293   'register' => '1',
45294   'visibility' => '1',
45295   'autocomplete' => '0',
45296   'options' => '',
45297 ))
45298 ->values(array(
45299   'fid' => '11',
45300   'title' => 'Sales Category',
45301   'name' => 'profile_sold_to',
45302   'explanation' => "Select the sales categories to which this user's address was sold.",
45303   'category' => 'Administrative data',
45304   'page' => 'People whose address was sold to %value',
45305   'type' => 'selection',
45306   'weight' => '-10',
45307   'required' => '0',
45308   'register' => '0',
45309   'visibility' => '4',
45310   'autocomplete' => '0',
45311   'options' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
45312 ))
45313 ->values(array(
45314   'fid' => '12',
45315   'title' => 'Favorite bands',
45316   'name' => 'profile_bands',
45317   'explanation' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
45318   'category' => 'Personal information',
45319   'page' => '',
45320   'type' => 'list',
45321   'weight' => '-6',
45322   'required' => '0',
45323   'register' => '1',
45324   'visibility' => '3',
45325   'autocomplete' => '1',
45326   'options' => '',
45327 ))
45328 ->values(array(
45329   'fid' => '13',
45330   'title' => 'Blog',
45331   'name' => 'profile_blog',
45332   'explanation' => 'Paste the full URL, including http://, of your personal blog.',
45333   'category' => 'Personal information',
45334   'page' => '',
45335   'type' => 'url',
45336   'weight' => '3',
45337   'required' => '0',
45338   'register' => '0',
45339   'visibility' => '3',
45340   'autocomplete' => '0',
45341   'options' => '',
45342 ))
45343 ->values(array(
45344   'fid' => '14',
45345   'title' => 'Birthdate',
45346   'name' => 'profile_birthdate',
45347   'explanation' => "Enter your birth date and we'll send you a coupon.",
45348   'category' => 'Personal information',
45349   'page' => '',
45350   'type' => 'date',
45351   'weight' => '4',
45352   'required' => '0',
45353   'register' => '0',
45354   'visibility' => '2',
45355   'autocomplete' => '0',
45356   'options' => '',
45357 ))
45358 ->values(array(
45359   'fid' => '15',
45360   'title' => 'I really, really, really love migrations',
45361   'name' => 'profile_really_really_love_migrations',
45362   'explanation' => 'If you check this box, you love migrations.',
45363   'category' => 'Personal information',
45364   'page' => 'People who love migrations',
45365   'type' => 'checkbox',
45366   'weight' => '-15',
45367   'required' => '0',
45368   'register' => '0',
45369   'visibility' => '2',
45370   'autocomplete' => '0',
45371   'options' => '',
45372 ))
45373 ->values(array(
45374   'fid' => '16',
45375   'title' => 'I really, really, really love migrating',
45376   'name' => 'profile_really_really_love_migrating',
45377   'explanation' => '',
45378   'category' => 'Personal information',
45379   'page' => '',
45380   'type' => 'checkbox',
45381   'weight' => '0',
45382   'required' => '0',
45383   'register' => '0',
45384   'visibility' => '2',
45385   'autocomplete' => '0',
45386   'options' => '',
45387 ))
45388 ->execute();
45389
45390 $connection->schema()->createTable('profile_values', array(
45391   'fields' => array(
45392     'fid' => array(
45393       'type' => 'int',
45394       'not null' => TRUE,
45395       'size' => 'normal',
45396       'default' => '0',
45397       'unsigned' => TRUE,
45398     ),
45399     'uid' => array(
45400       'type' => 'int',
45401       'not null' => TRUE,
45402       'size' => 'normal',
45403       'default' => '0',
45404       'unsigned' => TRUE,
45405     ),
45406     'value' => array(
45407       'type' => 'text',
45408       'not null' => FALSE,
45409       'size' => 'normal',
45410     ),
45411   ),
45412   'primary key' => array(
45413     'fid',
45414     'uid',
45415   ),
45416   'mysql_character_set' => 'utf8',
45417 ));
45418
45419 $connection->insert('profile_values')
45420 ->fields(array(
45421   'fid',
45422   'uid',
45423   'value',
45424 ))
45425 ->values(array(
45426   'fid' => '8',
45427   'uid' => '2',
45428   'value' => 'red',
45429 ))
45430 ->values(array(
45431   'fid' => '8',
45432   'uid' => '8',
45433   'value' => 'brown',
45434 ))
45435 ->values(array(
45436   'fid' => '8',
45437   'uid' => '15',
45438   'value' => 'orange',
45439 ))
45440 ->values(array(
45441   'fid' => '8',
45442   'uid' => '16',
45443   'value' => 'blue',
45444 ))
45445 ->values(array(
45446   'fid' => '8',
45447   'uid' => '17',
45448   'value' => 'yellow',
45449 ))
45450 ->values(array(
45451   'fid' => '9',
45452   'uid' => '2',
45453   '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.',
45454 ))
45455 ->values(array(
45456   'fid' => '9',
45457   'uid' => '8',
45458   '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.',
45459 ))
45460 ->values(array(
45461   'fid' => '9',
45462   'uid' => '15',
45463   '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.',
45464 ))
45465 ->values(array(
45466   'fid' => '9',
45467   'uid' => '16',
45468   'value' => 'Pellentesque sit amet sem et purus pretium consectetuer.',
45469 ))
45470 ->values(array(
45471   'fid' => '9',
45472   'uid' => '17',
45473   'value' => 'The quick brown fox jumped over the lazy dog.',
45474 ))
45475 ->values(array(
45476   'fid' => '10',
45477   'uid' => '2',
45478   'value' => '1',
45479 ))
45480 ->values(array(
45481   'fid' => '10',
45482   'uid' => '8',
45483   'value' => '0',
45484 ))
45485 ->values(array(
45486   'fid' => '10',
45487   'uid' => '15',
45488   'value' => '1',
45489 ))
45490 ->values(array(
45491   'fid' => '10',
45492   'uid' => '16',
45493   'value' => '0',
45494 ))
45495 ->values(array(
45496   'fid' => '10',
45497   'uid' => '17',
45498   'value' => '0',
45499 ))
45500 ->values(array(
45501   'fid' => '11',
45502   'uid' => '2',
45503   'value' => 'Back\slash',
45504 ))
45505 ->values(array(
45506   'fid' => '11',
45507   'uid' => '8',
45508   'value' => 'Forward/slash',
45509 ))
45510 ->values(array(
45511   'fid' => '11',
45512   'uid' => '15',
45513   'value' => 'Dot.in.the.middle',
45514 ))
45515 ->values(array(
45516   'fid' => '11',
45517   'uid' => '16',
45518   'value' => 'Faithful servant',
45519 ))
45520 ->values(array(
45521   'fid' => '11',
45522   'uid' => '17',
45523   'value' => 'Anonymous donor',
45524 ))
45525 ->values(array(
45526   'fid' => '12',
45527   'uid' => '2',
45528   'value' => "AC/DC\n,,Eagles\r\nElton John,Lemonheads\r\n\r\nRolling Stones\rQueen\nThe White Stripes",
45529 ))
45530 ->values(array(
45531   'fid' => '12',
45532   'uid' => '8',
45533   'value' => "Deep Purple\nWho\nThe Beatles",
45534 ))
45535 ->values(array(
45536   'fid' => '12',
45537   'uid' => '15',
45538   'value' => "ABBA\nBoney M",
45539 ))
45540 ->values(array(
45541   'fid' => '12',
45542   'uid' => '16',
45543   'value' => "Van Halen\nDave M",
45544 ))
45545 ->values(array(
45546   'fid' => '12',
45547   'uid' => '17',
45548   'value' => "Toto\nJohn Denver",
45549 ))
45550 ->values(array(
45551   'fid' => '13',
45552   'uid' => '2',
45553   'value' => 'http://example.com/blog',
45554 ))
45555 ->values(array(
45556   'fid' => '13',
45557   'uid' => '8',
45558   'value' => 'http://blog.example.com',
45559 ))
45560 ->values(array(
45561   'fid' => '13',
45562   'uid' => '15',
45563   'value' => 'http://example.com/journal',
45564 ))
45565 ->values(array(
45566   'fid' => '13',
45567   'uid' => '16',
45568   'value' => 'http://example.com/monkeys',
45569 ))
45570 ->values(array(
45571   'fid' => '13',
45572   'uid' => '17',
45573   'value' => 'http://example.com/penguins',
45574 ))
45575 ->values(array(
45576   'fid' => '14',
45577   'uid' => '2',
45578   'value' => 'a:3:{s:5:"month";s:1:"6";s:3:"day";s:1:"2";s:4:"year";s:4:"1974";}',
45579 ))
45580 ->values(array(
45581   'fid' => '14',
45582   'uid' => '8',
45583   'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:1:"9";s:4:"year";s:4:"1980";}',
45584 ))
45585 ->values(array(
45586   'fid' => '14',
45587   'uid' => '15',
45588   'value' => 'a:3:{s:5:"month";s:2:"11";s:3:"day";s:2:"25";s:4:"year";s:4:"1982";}',
45589 ))
45590 ->values(array(
45591   'fid' => '14',
45592   'uid' => '16',
45593   'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:2:"23";s:4:"year";s:4:"1939";}',
45594 ))
45595 ->values(array(
45596   'fid' => '14',
45597   'uid' => '17',
45598   'value' => 'a:3:{s:5:"month";s:2:"12";s:3:"day";s:2:"18";s:4:"year";s:4:"1942";}',
45599 ))
45600 ->values(array(
45601   'fid' => '15',
45602   'uid' => '2',
45603   'value' => '1',
45604 ))
45605 ->execute();
45606
45607 $connection->schema()->createTable('role', array(
45608   'fields' => array(
45609     'rid' => array(
45610       'type' => 'serial',
45611       'not null' => TRUE,
45612       'size' => 'normal',
45613       'unsigned' => TRUE,
45614     ),
45615     'name' => array(
45616       'type' => 'varchar',
45617       'not null' => TRUE,
45618       'length' => '64',
45619       'default' => '',
45620     ),
45621   ),
45622   'primary key' => array(
45623     'rid',
45624   ),
45625   'mysql_character_set' => 'utf8',
45626 ));
45627
45628 $connection->insert('role')
45629 ->fields(array(
45630   'rid',
45631   'name',
45632 ))
45633 ->values(array(
45634   'rid' => '1',
45635   'name' => 'anonymous user',
45636 ))
45637 ->values(array(
45638   'rid' => '2',
45639   'name' => 'authenticated user',
45640 ))
45641 ->values(array(
45642   'rid' => '3',
45643   'name' => 'migrate test role 1',
45644 ))
45645 ->values(array(
45646   'rid' => '4',
45647   'name' => 'migrate test role 2',
45648 ))
45649 ->values(array(
45650   'rid' => '5',
45651   'name' => 'migrate test role 3 that is longer than thirty two characters',
45652 ))
45653 ->execute();
45654
45655 $connection->schema()->createTable('semaphore', array(
45656   'fields' => array(
45657     'name' => array(
45658       'type' => 'varchar',
45659       'not null' => TRUE,
45660       'length' => '255',
45661       'default' => '',
45662     ),
45663     'value' => array(
45664       'type' => 'varchar',
45665       'not null' => TRUE,
45666       'length' => '255',
45667       'default' => '',
45668     ),
45669     'expire' => array(
45670       'type' => 'numeric',
45671       'not null' => TRUE,
45672       'precision' => '10',
45673       'scale' => '0',
45674     ),
45675   ),
45676   'primary key' => array(
45677     'name',
45678   ),
45679   'mysql_character_set' => 'utf8',
45680 ));
45681
45682 $connection->schema()->createTable('sessions', array(
45683   'fields' => array(
45684     'uid' => array(
45685       'type' => 'int',
45686       'not null' => TRUE,
45687       'size' => 'normal',
45688       'unsigned' => TRUE,
45689     ),
45690     'sid' => array(
45691       'type' => 'varchar',
45692       'not null' => TRUE,
45693       'length' => '64',
45694       'default' => '',
45695     ),
45696     'hostname' => array(
45697       'type' => 'varchar',
45698       'not null' => TRUE,
45699       'length' => '128',
45700       'default' => '',
45701     ),
45702     'timestamp' => array(
45703       'type' => 'int',
45704       'not null' => TRUE,
45705       'size' => 'normal',
45706       'default' => '0',
45707     ),
45708     'cache' => array(
45709       'type' => 'int',
45710       'not null' => TRUE,
45711       'size' => 'normal',
45712       'default' => '0',
45713     ),
45714     'session' => array(
45715       'type' => 'blob',
45716       'not null' => FALSE,
45717       'size' => 'big',
45718     ),
45719   ),
45720   'primary key' => array(
45721     'sid',
45722   ),
45723   'mysql_character_set' => 'utf8',
45724 ));
45725
45726 $connection->schema()->createTable('system', array(
45727   'fields' => array(
45728     'filename' => array(
45729       'type' => 'varchar',
45730       'not null' => TRUE,
45731       'length' => '255',
45732       'default' => '',
45733     ),
45734     'name' => array(
45735       'type' => 'varchar',
45736       'not null' => TRUE,
45737       'length' => '255',
45738       'default' => '',
45739     ),
45740     'type' => array(
45741       'type' => 'varchar',
45742       'not null' => TRUE,
45743       'length' => '255',
45744       'default' => '',
45745     ),
45746     'owner' => array(
45747       'type' => 'varchar',
45748       'not null' => TRUE,
45749       'length' => '255',
45750       'default' => '',
45751     ),
45752     'status' => array(
45753       'type' => 'int',
45754       'not null' => TRUE,
45755       'size' => 'normal',
45756       'default' => '0',
45757     ),
45758     'throttle' => array(
45759       'type' => 'int',
45760       'not null' => TRUE,
45761       'size' => 'normal',
45762       'default' => '0',
45763     ),
45764     'bootstrap' => array(
45765       'type' => 'int',
45766       'not null' => TRUE,
45767       'size' => 'normal',
45768       'default' => '0',
45769     ),
45770     'schema_version' => array(
45771       'type' => 'int',
45772       'not null' => TRUE,
45773       'size' => 'normal',
45774       'default' => '-1',
45775     ),
45776     'weight' => array(
45777       'type' => 'int',
45778       'not null' => TRUE,
45779       'size' => 'normal',
45780       'default' => '0',
45781     ),
45782     'info' => array(
45783       'type' => 'text',
45784       'not null' => FALSE,
45785       'size' => 'normal',
45786     ),
45787   ),
45788   'primary key' => array(
45789     'filename',
45790   ),
45791   'mysql_character_set' => 'utf8',
45792 ));
45793
45794 $connection->insert('system')
45795 ->fields(array(
45796   'filename',
45797   'name',
45798   'type',
45799   'owner',
45800   'status',
45801   'throttle',
45802   'bootstrap',
45803   'schema_version',
45804   'weight',
45805   'info',
45806 ))
45807 ->values(array(
45808   'filename' => 'modules/aggregator/aggregator.module',
45809   'name' => 'aggregator',
45810   'type' => 'module',
45811   'owner' => '',
45812   'status' => '1',
45813   'throttle' => '0',
45814   'bootstrap' => '0',
45815   'schema_version' => '6001',
45816   'weight' => '0',
45817   '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";}',
45818 ))
45819 ->values(array(
45820   'filename' => 'modules/block/block.module',
45821   'name' => 'block',
45822   'type' => 'module',
45823   'owner' => '',
45824   'status' => '1',
45825   'throttle' => '0',
45826   'bootstrap' => '0',
45827   'schema_version' => '0',
45828   'weight' => '0',
45829   '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";}',
45830 ))
45831 ->values(array(
45832   'filename' => 'modules/blog/blog.module',
45833   'name' => 'blog',
45834   'type' => 'module',
45835   'owner' => '',
45836   'status' => '0',
45837   'throttle' => '0',
45838   'bootstrap' => '0',
45839   'schema_version' => '-1',
45840   'weight' => '0',
45841   '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";}',
45842 ))
45843 ->values(array(
45844   'filename' => 'modules/blogapi/blogapi.module',
45845   'name' => 'blogapi',
45846   'type' => 'module',
45847   'owner' => '',
45848   'status' => '0',
45849   'throttle' => '0',
45850   'bootstrap' => '0',
45851   'schema_version' => '-1',
45852   'weight' => '0',
45853   '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";}',
45854 ))
45855 ->values(array(
45856   'filename' => 'modules/book/book.module',
45857   'name' => 'book',
45858   'type' => 'module',
45859   'owner' => '',
45860   'status' => '1',
45861   'throttle' => '0',
45862   'bootstrap' => '0',
45863   'schema_version' => '6000',
45864   'weight' => '0',
45865   '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";}',
45866 ))
45867 ->values(array(
45868   'filename' => 'modules/color/color.module',
45869   'name' => 'color',
45870   'type' => 'module',
45871   'owner' => '',
45872   'status' => '0',
45873   'throttle' => '0',
45874   'bootstrap' => '0',
45875   'schema_version' => '-1',
45876   'weight' => '0',
45877   '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";}',
45878 ))
45879 ->values(array(
45880   'filename' => 'modules/comment/comment.module',
45881   'name' => 'comment',
45882   'type' => 'module',
45883   'owner' => '',
45884   'status' => '1',
45885   'throttle' => '0',
45886   'bootstrap' => '0',
45887   'schema_version' => '6005',
45888   'weight' => '0',
45889   '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";}',
45890 ))
45891 ->values(array(
45892   'filename' => 'modules/contact/contact.module',
45893   'name' => 'contact',
45894   'type' => 'module',
45895   'owner' => '',
45896   'status' => '1',
45897   'throttle' => '0',
45898   'bootstrap' => '0',
45899   'schema_version' => '6001',
45900   'weight' => '0',
45901   '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";}',
45902 ))
45903 ->values(array(
45904   'filename' => 'modules/dblog/dblog.module',
45905   'name' => 'dblog',
45906   'type' => 'module',
45907   'owner' => '',
45908   'status' => '0',
45909   'throttle' => '0',
45910   'bootstrap' => '0',
45911   'schema_version' => '-1',
45912   'weight' => '0',
45913   '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";}',
45914 ))
45915 ->values(array(
45916   'filename' => 'modules/filter/filter.module',
45917   'name' => 'filter',
45918   'type' => 'module',
45919   'owner' => '',
45920   'status' => '1',
45921   'throttle' => '0',
45922   'bootstrap' => '0',
45923   'schema_version' => '0',
45924   'weight' => '0',
45925   '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";}',
45926 ))
45927 ->values(array(
45928   'filename' => 'modules/forum/forum.module',
45929   'name' => 'forum',
45930   'type' => 'module',
45931   'owner' => '',
45932   'status' => '1',
45933   'throttle' => '0',
45934   'bootstrap' => '0',
45935   'schema_version' => '6000',
45936   'weight' => '1',
45937   '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";}',
45938 ))
45939 ->values(array(
45940   'filename' => 'modules/help/help.module',
45941   'name' => 'help',
45942   'type' => 'module',
45943   'owner' => '',
45944   'status' => '0',
45945   'throttle' => '0',
45946   'bootstrap' => '0',
45947   'schema_version' => '-1',
45948   'weight' => '0',
45949   '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";}',
45950 ))
45951 ->values(array(
45952   'filename' => 'modules/locale/locale.module',
45953   'name' => 'locale',
45954   'type' => 'module',
45955   'owner' => '',
45956   'status' => '1',
45957   'throttle' => '0',
45958   'bootstrap' => '0',
45959   'schema_version' => '6007',
45960   'weight' => '0',
45961   '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";}',
45962 ))
45963 ->values(array(
45964   'filename' => 'modules/menu/menu.module',
45965   'name' => 'menu',
45966   'type' => 'module',
45967   'owner' => '',
45968   'status' => '1',
45969   'throttle' => '0',
45970   'bootstrap' => '0',
45971   'schema_version' => '6000',
45972   'weight' => '0',
45973   '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";}',
45974 ))
45975 ->values(array(
45976   'filename' => 'modules/node/node.module',
45977   'name' => 'node',
45978   'type' => 'module',
45979   'owner' => '',
45980   'status' => '1',
45981   'throttle' => '0',
45982   'bootstrap' => '0',
45983   'schema_version' => '0',
45984   'weight' => '0',
45985   '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";}',
45986 ))
45987 ->values(array(
45988   'filename' => 'modules/openid/openid.module',
45989   'name' => 'openid',
45990   'type' => 'module',
45991   'owner' => '',
45992   'status' => '0',
45993   'throttle' => '0',
45994   'bootstrap' => '0',
45995   'schema_version' => '-1',
45996   'weight' => '0',
45997   '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";}',
45998 ))
45999 ->values(array(
46000   'filename' => 'modules/path/path.module',
46001   'name' => 'path',
46002   'type' => 'module',
46003   'owner' => '',
46004   'status' => '1',
46005   'throttle' => '0',
46006   'bootstrap' => '0',
46007   'schema_version' => '0',
46008   'weight' => '0',
46009   '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";}',
46010 ))
46011 ->values(array(
46012   'filename' => 'modules/php/php.module',
46013   'name' => 'php',
46014   'type' => 'module',
46015   'owner' => '',
46016   'status' => '1',
46017   'throttle' => '0',
46018   'bootstrap' => '0',
46019   'schema_version' => '0',
46020   'weight' => '0',
46021   '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";}',
46022 ))
46023 ->values(array(
46024   'filename' => 'modules/ping/ping.module',
46025   'name' => 'ping',
46026   'type' => 'module',
46027   'owner' => '',
46028   'status' => '0',
46029   'throttle' => '0',
46030   'bootstrap' => '0',
46031   'schema_version' => '-1',
46032   'weight' => '0',
46033   '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";}',
46034 ))
46035 ->values(array(
46036   'filename' => 'modules/poll/poll.module',
46037   'name' => 'poll',
46038   'type' => 'module',
46039   'owner' => '',
46040   'status' => '0',
46041   'throttle' => '0',
46042   'bootstrap' => '0',
46043   'schema_version' => '-1',
46044   'weight' => '0',
46045   '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";}',
46046 ))
46047 ->values(array(
46048   'filename' => 'modules/profile/profile.module',
46049   'name' => 'profile',
46050   'type' => 'module',
46051   'owner' => '',
46052   'status' => '1',
46053   'throttle' => '0',
46054   'bootstrap' => '0',
46055   'schema_version' => '6001',
46056   'weight' => '0',
46057   '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";}',
46058 ))
46059 ->values(array(
46060   'filename' => 'modules/search/search.module',
46061   'name' => 'search',
46062   'type' => 'module',
46063   'owner' => '',
46064   'status' => '0',
46065   'throttle' => '0',
46066   'bootstrap' => '0',
46067   'schema_version' => '-1',
46068   'weight' => '0',
46069   '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";}',
46070 ))
46071 ->values(array(
46072   'filename' => 'modules/statistics/statistics.module',
46073   'name' => 'statistics',
46074   'type' => 'module',
46075   'owner' => '',
46076   'status' => '1',
46077   'throttle' => '0',
46078   'bootstrap' => '1',
46079   'schema_version' => '6000',
46080   'weight' => '0',
46081   '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";}',
46082 ))
46083 ->values(array(
46084   'filename' => 'modules/syslog/syslog.module',
46085   'name' => 'syslog',
46086   'type' => 'module',
46087   'owner' => '',
46088   'status' => '0',
46089   'throttle' => '0',
46090   'bootstrap' => '0',
46091   'schema_version' => '-1',
46092   'weight' => '0',
46093   '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";}',
46094 ))
46095 ->values(array(
46096   'filename' => 'modules/system/system.module',
46097   'name' => 'system',
46098   'type' => 'module',
46099   'owner' => '',
46100   'status' => '1',
46101   'throttle' => '0',
46102   'bootstrap' => '0',
46103   'schema_version' => '6056',
46104   'weight' => '0',
46105   '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";}',
46106 ))
46107 ->values(array(
46108   'filename' => 'modules/taxonomy/taxonomy.module',
46109   'name' => 'taxonomy',
46110   'type' => 'module',
46111   'owner' => '',
46112   'status' => '1',
46113   'throttle' => '0',
46114   'bootstrap' => '0',
46115   'schema_version' => '6001',
46116   'weight' => '0',
46117   '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";}',
46118 ))
46119 ->values(array(
46120   'filename' => 'modules/throttle/throttle.module',
46121   'name' => 'throttle',
46122   'type' => 'module',
46123   'owner' => '',
46124   'status' => '0',
46125   'throttle' => '0',
46126   'bootstrap' => '0',
46127   'schema_version' => '-1',
46128   'weight' => '0',
46129   '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";}',
46130 ))
46131 ->values(array(
46132   'filename' => 'modules/tracker/tracker.module',
46133   'name' => 'tracker',
46134   'type' => 'module',
46135   'owner' => '',
46136   'status' => '0',
46137   'throttle' => '0',
46138   'bootstrap' => '0',
46139   'schema_version' => '-1',
46140   'weight' => '0',
46141   '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";}',
46142 ))
46143 ->values(array(
46144   'filename' => 'modules/translation/translation.module',
46145   'name' => 'translation',
46146   'type' => 'module',
46147   'owner' => '',
46148   'status' => '1',
46149   'throttle' => '0',
46150   'bootstrap' => '0',
46151   'schema_version' => '0',
46152   'weight' => '0',
46153   '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";}',
46154 ))
46155 ->values(array(
46156   'filename' => 'modules/trigger/trigger.module',
46157   'name' => 'trigger',
46158   'type' => 'module',
46159   'owner' => '',
46160   'status' => '0',
46161   'throttle' => '0',
46162   'bootstrap' => '0',
46163   'schema_version' => '-1',
46164   'weight' => '0',
46165   '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";}',
46166 ))
46167 ->values(array(
46168   'filename' => 'modules/update/update.module',
46169   'name' => 'update',
46170   'type' => 'module',
46171   'owner' => '',
46172   'status' => '0',
46173   'throttle' => '0',
46174   'bootstrap' => '0',
46175   'schema_version' => '-1',
46176   'weight' => '0',
46177   '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";}',
46178 ))
46179 ->values(array(
46180   'filename' => 'modules/upload/upload.module',
46181   'name' => 'upload',
46182   'type' => 'module',
46183   'owner' => '',
46184   'status' => '1',
46185   'throttle' => '0',
46186   'bootstrap' => '0',
46187   'schema_version' => '6000',
46188   'weight' => '0',
46189   '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";}',
46190 ))
46191 ->values(array(
46192   'filename' => 'modules/user/user.module',
46193   'name' => 'user',
46194   'type' => 'module',
46195   'owner' => '',
46196   'status' => '1',
46197   'throttle' => '0',
46198   'bootstrap' => '0',
46199   'schema_version' => '0',
46200   'weight' => '0',
46201   '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";}',
46202 ))
46203 ->values(array(
46204   'filename' => 'sites/all/modules/cck/content.module',
46205   'name' => 'content',
46206   'type' => 'module',
46207   'owner' => '',
46208   'status' => '1',
46209   'throttle' => '0',
46210   'bootstrap' => '0',
46211   'schema_version' => '6010',
46212   'weight' => '0',
46213   '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";}',
46214 ))
46215 ->values(array(
46216   'filename' => 'sites/all/modules/cck/modules/content_copy/content_copy.module',
46217   'name' => 'content_copy',
46218   'type' => 'module',
46219   'owner' => '',
46220   'status' => '0',
46221   'throttle' => '0',
46222   'bootstrap' => '0',
46223   'schema_version' => '-1',
46224   'weight' => '0',
46225   '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";}',
46226 ))
46227 ->values(array(
46228   'filename' => 'sites/all/modules/cck/modules/content_multigroup/content_multigroup.module',
46229   'name' => 'content_multigroup',
46230   'type' => 'module',
46231   'owner' => '',
46232   'status' => '0',
46233   'throttle' => '0',
46234   'bootstrap' => '0',
46235   'schema_version' => '-1',
46236   'weight' => '0',
46237   '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";}',
46238 ))
46239 ->values(array(
46240   'filename' => 'sites/all/modules/cck/modules/content_permissions/content_permissions.module',
46241   'name' => 'content_permissions',
46242   'type' => 'module',
46243   'owner' => '',
46244   'status' => '0',
46245   'throttle' => '0',
46246   'bootstrap' => '0',
46247   'schema_version' => '-1',
46248   'weight' => '0',
46249   '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";}',
46250 ))
46251 ->values(array(
46252   'filename' => 'sites/all/modules/cck/modules/fieldgroup/fieldgroup.module',
46253   'name' => 'fieldgroup',
46254   'type' => 'module',
46255   'owner' => '',
46256   'status' => '0',
46257   'throttle' => '0',
46258   'bootstrap' => '0',
46259   'schema_version' => '-1',
46260   'weight' => '0',
46261   '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";}',
46262 ))
46263 ->values(array(
46264   'filename' => 'sites/all/modules/cck/modules/nodereference/nodereference.module',
46265   'name' => 'nodereference',
46266   'type' => 'module',
46267   'owner' => '',
46268   'status' => '1',
46269   'throttle' => '0',
46270   'bootstrap' => '0',
46271   'schema_version' => '6001',
46272   'weight' => '0',
46273   '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";}',
46274 ))
46275 ->values(array(
46276   'filename' => 'sites/all/modules/cck/modules/number/number.module',
46277   'name' => 'number',
46278   'type' => 'module',
46279   'owner' => '',
46280   'status' => '1',
46281   'throttle' => '0',
46282   'bootstrap' => '0',
46283   'schema_version' => '6000',
46284   'weight' => '0',
46285   '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";}',
46286 ))
46287 ->values(array(
46288   'filename' => 'sites/all/modules/cck/modules/optionwidgets/optionwidgets.module',
46289   'name' => 'optionwidgets',
46290   'type' => 'module',
46291   'owner' => '',
46292   'status' => '1',
46293   'throttle' => '0',
46294   'bootstrap' => '0',
46295   'schema_version' => '6001',
46296   'weight' => '0',
46297   '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";}',
46298 ))
46299 ->values(array(
46300   'filename' => 'sites/all/modules/cck/modules/text/text.module',
46301   'name' => 'text',
46302   'type' => 'module',
46303   'owner' => '',
46304   'status' => '1',
46305   'throttle' => '0',
46306   'bootstrap' => '0',
46307   'schema_version' => '6003',
46308   'weight' => '0',
46309   '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";}',
46310 ))
46311 ->values(array(
46312   'filename' => 'sites/all/modules/cck/modules/userreference/userreference.module',
46313   'name' => 'userreference',
46314   'type' => 'module',
46315   'owner' => '',
46316   'status' => '1',
46317   'throttle' => '0',
46318   'bootstrap' => '0',
46319   'schema_version' => '6002',
46320   'weight' => '0',
46321   '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";}',
46322 ))
46323 ->values(array(
46324   'filename' => 'sites/all/modules/cck/tests/content_test.module',
46325   'name' => 'content_test',
46326   'type' => 'module',
46327   'owner' => '',
46328   'status' => '0',
46329   'throttle' => '0',
46330   'bootstrap' => '0',
46331   'schema_version' => '-1',
46332   'weight' => '0',
46333   '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";}',
46334 ))
46335 ->values(array(
46336   'filename' => 'sites/all/modules/date/date/date.module',
46337   'name' => 'date',
46338   'type' => 'module',
46339   'owner' => '',
46340   'status' => '1',
46341   'throttle' => '0',
46342   'bootstrap' => '0',
46343   'schema_version' => '6005',
46344   'weight' => '0',
46345   '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";}',
46346 ))
46347 ->values(array(
46348   'filename' => 'sites/all/modules/date/date_api.module',
46349   'name' => 'date_api',
46350   'type' => 'module',
46351   'owner' => '',
46352   'status' => '1',
46353   'throttle' => '0',
46354   'bootstrap' => '0',
46355   'schema_version' => '6006',
46356   'weight' => '0',
46357   '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";}',
46358 ))
46359 ->values(array(
46360   'filename' => 'sites/all/modules/date/date_locale/date_locale.module',
46361   'name' => 'date_locale',
46362   'type' => 'module',
46363   'owner' => '',
46364   'status' => '0',
46365   'throttle' => '0',
46366   'bootstrap' => '0',
46367   'schema_version' => '-1',
46368   'weight' => '0',
46369   '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";}',
46370 ))
46371 ->values(array(
46372   'filename' => 'sites/all/modules/date/date_php4/date_php4.module',
46373   'name' => 'date_php4',
46374   'type' => 'module',
46375   'owner' => '',
46376   'status' => '0',
46377   'throttle' => '0',
46378   'bootstrap' => '0',
46379   'schema_version' => '-1',
46380   'weight' => '0',
46381   '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";}',
46382 ))
46383 ->values(array(
46384   'filename' => 'sites/all/modules/date/date_popup/date_popup.module',
46385   'name' => 'date_popup',
46386   'type' => 'module',
46387   'owner' => '',
46388   'status' => '0',
46389   'throttle' => '0',
46390   'bootstrap' => '0',
46391   'schema_version' => '-1',
46392   'weight' => '0',
46393   '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";}',
46394 ))
46395 ->values(array(
46396   'filename' => 'sites/all/modules/date/date_repeat/date_repeat.module',
46397   'name' => 'date_repeat',
46398   'type' => 'module',
46399   'owner' => '',
46400   'status' => '0',
46401   'throttle' => '0',
46402   'bootstrap' => '0',
46403   'schema_version' => '-1',
46404   'weight' => '0',
46405   '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";}',
46406 ))
46407 ->values(array(
46408   'filename' => 'sites/all/modules/date/date_timezone/date_timezone.module',
46409   'name' => 'date_timezone',
46410   'type' => 'module',
46411   'owner' => '',
46412   'status' => '1',
46413   'throttle' => '0',
46414   'bootstrap' => '0',
46415   'schema_version' => '5200',
46416   'weight' => '0',
46417   '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";}',
46418 ))
46419 ->values(array(
46420   'filename' => 'sites/all/modules/date/date_tools/date_tools.module',
46421   'name' => 'date_tools',
46422   'type' => 'module',
46423   'owner' => '',
46424   'status' => '0',
46425   'throttle' => '0',
46426   'bootstrap' => '0',
46427   'schema_version' => '-1',
46428   'weight' => '0',
46429   '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";}',
46430 ))
46431 ->values(array(
46432   'filename' => 'sites/all/modules/ddblock/ddblock.module',
46433   'name' => 'ddblock',
46434   'type' => 'module',
46435   'owner' => '',
46436   'status' => '0',
46437   'throttle' => '0',
46438   'bootstrap' => '0',
46439   'schema_version' => '-1',
46440   'weight' => '0',
46441   '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";}',
46442 ))
46443 ->values(array(
46444   'filename' => 'sites/all/modules/devel/devel.module',
46445   'name' => 'devel',
46446   'type' => 'module',
46447   'owner' => '',
46448   'status' => '0',
46449   'throttle' => '0',
46450   'bootstrap' => '0',
46451   'schema_version' => '-1',
46452   'weight' => '0',
46453   '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";}',
46454 ))
46455 ->values(array(
46456   'filename' => 'sites/all/modules/devel/devel_generate.module',
46457   'name' => 'devel_generate',
46458   'type' => 'module',
46459   'owner' => '',
46460   'status' => '0',
46461   'throttle' => '0',
46462   'bootstrap' => '0',
46463   'schema_version' => '-1',
46464   'weight' => '0',
46465   '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";}',
46466 ))
46467 ->values(array(
46468   'filename' => 'sites/all/modules/devel/devel_node_access.module',
46469   'name' => 'devel_node_access',
46470   'type' => 'module',
46471   'owner' => '',
46472   'status' => '0',
46473   'throttle' => '0',
46474   'bootstrap' => '0',
46475   'schema_version' => '-1',
46476   'weight' => '0',
46477   '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";}',
46478 ))
46479 ->values(array(
46480   'filename' => 'sites/all/modules/email/email.module',
46481   'name' => 'email',
46482   'type' => 'module',
46483   'owner' => '',
46484   'status' => '1',
46485   'throttle' => '0',
46486   'bootstrap' => '0',
46487   'schema_version' => '6001',
46488   'weight' => '0',
46489   '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";}',
46490 ))
46491 ->values(array(
46492   'filename' => 'sites/all/modules/event/contrib/calendarsignup/calendarsignup.module',
46493   'name' => 'calendarsignup',
46494   'type' => 'module',
46495   'owner' => '',
46496   'status' => '0',
46497   'throttle' => '0',
46498   'bootstrap' => '0',
46499   'schema_version' => '-1',
46500   'weight' => '0',
46501   '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";}',
46502 ))
46503 ->values(array(
46504   'filename' => 'sites/all/modules/event/contrib/datepicker/datepicker.module',
46505   'name' => 'datepicker',
46506   'type' => 'module',
46507   'owner' => '',
46508   'status' => '0',
46509   'throttle' => '0',
46510   'bootstrap' => '0',
46511   'schema_version' => '-1',
46512   'weight' => '0',
46513   '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";}',
46514 ))
46515 ->values(array(
46516   'filename' => 'sites/all/modules/event/event.module',
46517   'name' => 'event',
46518   'type' => 'module',
46519   'owner' => '',
46520   'status' => '1',
46521   'throttle' => '0',
46522   'bootstrap' => '0',
46523   'schema_version' => '6005',
46524   'weight' => '0',
46525   '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";}',
46526 ))
46527 ->values(array(
46528   'filename' => 'sites/all/modules/filefield/filefield.module',
46529   'name' => 'filefield',
46530   'type' => 'module',
46531   'owner' => '',
46532   'status' => '1',
46533   'throttle' => '0',
46534   'bootstrap' => '0',
46535   'schema_version' => '6104',
46536   'weight' => '0',
46537   '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:{}}',
46538 ))
46539 ->values(array(
46540   'filename' => 'sites/all/modules/filefield/filefield_meta/filefield_meta.module',
46541   'name' => 'filefield_meta',
46542   'type' => 'module',
46543   'owner' => '',
46544   'status' => '0',
46545   'throttle' => '0',
46546   'bootstrap' => '0',
46547   'schema_version' => '-1',
46548   'weight' => '0',
46549   '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:{}}',
46550 ))
46551 ->values(array(
46552   'filename' => 'sites/all/modules/i18n/i18n.module',
46553   'name' => 'i18n',
46554   'type' => 'module',
46555   'owner' => '',
46556   'status' => '1',
46557   'throttle' => '0',
46558   'bootstrap' => '1',
46559   'schema_version' => '9',
46560   'weight' => '10',
46561   '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";}',
46562 ))
46563 ->values(array(
46564   'filename' => 'sites/all/modules/i18n/i18nblocks/i18nblocks.module',
46565   'name' => 'i18nblocks',
46566   'type' => 'module',
46567   'owner' => '',
46568   'status' => '1',
46569   'throttle' => '0',
46570   'bootstrap' => '0',
46571   'schema_version' => '6001',
46572   'weight' => '0',
46573   '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";}',
46574 ))
46575 ->values(array(
46576   'filename' => 'sites/all/modules/i18n/i18ncck/i18ncck.module',
46577   'name' => 'i18ncck',
46578   'type' => 'module',
46579   'owner' => '',
46580   'status' => '1',
46581   'throttle' => '0',
46582   'bootstrap' => '0',
46583   'schema_version' => '0',
46584   'weight' => '0',
46585   '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";}',
46586 ))
46587 ->values(array(
46588   'filename' => 'sites/all/modules/i18n/i18ncontent/i18ncontent.module',
46589   'name' => 'i18ncontent',
46590   'type' => 'module',
46591   'owner' => '',
46592   'status' => '1',
46593   'throttle' => '0',
46594   'bootstrap' => '0',
46595   'schema_version' => '6002',
46596   'weight' => '0',
46597   '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";}',
46598 ))
46599 ->values(array(
46600   'filename' => 'sites/all/modules/i18n/i18nmenu/i18nmenu.module',
46601   'name' => 'i18nmenu',
46602   'type' => 'module',
46603   'owner' => '',
46604   'status' => '1',
46605   'throttle' => '0',
46606   'bootstrap' => '0',
46607   'schema_version' => '0',
46608   'weight' => '0',
46609   '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";}',
46610 ))
46611 ->values(array(
46612   'filename' => 'sites/all/modules/i18n/i18npoll/i18npoll.module',
46613   'name' => 'i18npoll',
46614   'type' => 'module',
46615   'owner' => '',
46616   'status' => '0',
46617   'throttle' => '0',
46618   'bootstrap' => '0',
46619   'schema_version' => '-1',
46620   'weight' => '0',
46621   '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";}',
46622 ))
46623 ->values(array(
46624   'filename' => 'sites/all/modules/i18n/i18nprofile/i18nprofile.module',
46625   'name' => 'i18nprofile',
46626   'type' => 'module',
46627   'owner' => '',
46628   'status' => '1',
46629   'throttle' => '0',
46630   'bootstrap' => '0',
46631   'schema_version' => '2',
46632   'weight' => '0',
46633   '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";}',
46634 ))
46635 ->values(array(
46636   'filename' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.module',
46637   'name' => 'i18nstrings',
46638   'type' => 'module',
46639   'owner' => '',
46640   'status' => '1',
46641   'throttle' => '0',
46642   'bootstrap' => '0',
46643   'schema_version' => '6006',
46644   'weight' => '10',
46645   '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";}',
46646 ))
46647 ->values(array(
46648   'filename' => 'sites/all/modules/i18n/i18nsync/i18nsync.module',
46649   'name' => 'i18nsync',
46650   'type' => 'module',
46651   'owner' => '',
46652   'status' => '0',
46653   'throttle' => '0',
46654   'bootstrap' => '0',
46655   'schema_version' => '-1',
46656   'weight' => '0',
46657   '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";}',
46658 ))
46659 ->values(array(
46660   'filename' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.module',
46661   'name' => 'i18ntaxonomy',
46662   'type' => 'module',
46663   'owner' => '',
46664   'status' => '1',
46665   'throttle' => '0',
46666   'bootstrap' => '0',
46667   'schema_version' => '6002',
46668   'weight' => '5',
46669   '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";}',
46670 ))
46671 ->values(array(
46672   'filename' => 'sites/all/modules/i18n/i18nviews/i18nviews.module',
46673   'name' => 'i18nviews',
46674   'type' => 'module',
46675   'owner' => '',
46676   'status' => '0',
46677   'throttle' => '0',
46678   'bootstrap' => '0',
46679   'schema_version' => '-1',
46680   'weight' => '0',
46681   '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";}',
46682 ))
46683 ->values(array(
46684   'filename' => 'sites/all/modules/i18n/tests/i18n_test.module',
46685   'name' => 'i18n_test',
46686   'type' => 'module',
46687   'owner' => '',
46688   'status' => '0',
46689   'throttle' => '0',
46690   'bootstrap' => '0',
46691   'schema_version' => '-1',
46692   'weight' => '0',
46693   '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";}',
46694 ))
46695 ->values(array(
46696   'filename' => 'sites/all/modules/imageapi/imageapi.module',
46697   'name' => 'imageapi',
46698   'type' => 'module',
46699   'owner' => '',
46700   'status' => '1',
46701   'throttle' => '0',
46702   'bootstrap' => '0',
46703   'schema_version' => '0',
46704   'weight' => '0',
46705   '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:{}}',
46706 ))
46707 ->values(array(
46708   'filename' => 'sites/all/modules/imageapi/imageapi_gd.module',
46709   'name' => 'imageapi_gd',
46710   'type' => 'module',
46711   'owner' => '',
46712   'status' => '0',
46713   'throttle' => '0',
46714   'bootstrap' => '0',
46715   'schema_version' => '-1',
46716   'weight' => '0',
46717   '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\";}",
46718 ))
46719 ->values(array(
46720   'filename' => 'sites/all/modules/imageapi/imageapi_imagemagick.module',
46721   'name' => 'imageapi_imagemagick',
46722   'type' => 'module',
46723   'owner' => '',
46724   'status' => '0',
46725   'throttle' => '0',
46726   'bootstrap' => '0',
46727   'schema_version' => '-1',
46728   'weight' => '0',
46729   '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";}',
46730 ))
46731 ->values(array(
46732   'filename' => 'sites/all/modules/imagecache/imagecache.module',
46733   'name' => 'imagecache',
46734   'type' => 'module',
46735   'owner' => '',
46736   'status' => '1',
46737   'throttle' => '0',
46738   'bootstrap' => '0',
46739   'schema_version' => '6001',
46740   'weight' => '0',
46741   '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";}',
46742 ))
46743 ->values(array(
46744   'filename' => 'sites/all/modules/imagecache/imagecache_ui.module',
46745   'name' => 'imagecache_ui',
46746   'type' => 'module',
46747   'owner' => '',
46748   'status' => '0',
46749   'throttle' => '0',
46750   'bootstrap' => '0',
46751   'schema_version' => '-1',
46752   'weight' => '0',
46753   '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";}',
46754 ))
46755 ->values(array(
46756   'filename' => 'sites/all/modules/imagefield/imagefield.module',
46757   'name' => 'imagefield',
46758   'type' => 'module',
46759   'owner' => '',
46760   'status' => '1',
46761   'throttle' => '0',
46762   'bootstrap' => '0',
46763   'schema_version' => '6006',
46764   'weight' => '0',
46765   '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";}',
46766 ))
46767 ->values(array(
46768   'filename' => 'sites/all/modules/jquery_ui/jquery_ui.module',
46769   'name' => 'jquery_ui',
46770   'type' => 'module',
46771   'owner' => '',
46772   'status' => '0',
46773   'throttle' => '0',
46774   'bootstrap' => '0',
46775   'schema_version' => '-1',
46776   'weight' => '0',
46777   '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";}',
46778 ))
46779 ->values(array(
46780   'filename' => 'sites/all/modules/link/link.module',
46781   'name' => 'link',
46782   'type' => 'module',
46783   'owner' => '',
46784   'status' => '0',
46785   'throttle' => '0',
46786   'bootstrap' => '0',
46787   'schema_version' => '6002',
46788   'weight' => '0',
46789   '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";}',
46790 ))
46791 ->values(array(
46792   'filename' => 'sites/all/modules/nodeaccess/nodeaccess.module',
46793   'name' => 'nodeaccess',
46794   'type' => 'module',
46795   'owner' => '',
46796   'status' => '0',
46797   'throttle' => '0',
46798   'bootstrap' => '0',
46799   'schema_version' => '-1',
46800   'weight' => '0',
46801   '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";}',
46802 ))
46803 ->values(array(
46804   'filename' => 'sites/all/modules/phone/phone.module',
46805   'name' => 'phone',
46806   'type' => 'module',
46807   'owner' => '',
46808   'status' => '0',
46809   'throttle' => '0',
46810   'bootstrap' => '0',
46811   'schema_version' => '6200',
46812   'weight' => '0',
46813   '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";}',
46814 ))
46815 ->values(array(
46816   'filename' => 'sites/all/modules/variable/variable.module',
46817   'name' => 'variable',
46818   'type' => 'module',
46819   'owner' => '',
46820   'status' => '0',
46821   'throttle' => '0',
46822   'bootstrap' => '0',
46823   'schema_version' => '-1',
46824   'weight' => '0',
46825   '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";}',
46826 ))
46827 ->values(array(
46828   'filename' => 'sites/all/modules/variable/variable_admin/variable_admin.module',
46829   'name' => 'variable_admin',
46830   'type' => 'module',
46831   'owner' => '',
46832   'status' => '1',
46833   'throttle' => '0',
46834   'bootstrap' => '0',
46835   'schema_version' => '0',
46836   'weight' => '0',
46837   '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";}',
46838 ))
46839 ->values(array(
46840   'filename' => 'sites/all/modules/views/tests/views_test.module',
46841   'name' => 'views_test',
46842   'type' => 'module',
46843   'owner' => '',
46844   'status' => '0',
46845   'throttle' => '0',
46846   'bootstrap' => '0',
46847   'schema_version' => '-1',
46848   'weight' => '0',
46849   '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";}',
46850 ))
46851 ->values(array(
46852   'filename' => 'sites/all/modules/views/views.module',
46853   'name' => 'views',
46854   'type' => 'module',
46855   'owner' => '',
46856   'status' => '0',
46857   'throttle' => '0',
46858   'bootstrap' => '0',
46859   'schema_version' => '-1',
46860   'weight' => '0',
46861   '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";}',
46862 ))
46863 ->values(array(
46864   'filename' => 'sites/all/modules/views/views_export/views_export.module',
46865   'name' => 'views_export',
46866   'type' => 'module',
46867   'owner' => '',
46868   'status' => '0',
46869   'throttle' => '0',
46870   'bootstrap' => '0',
46871   'schema_version' => '-1',
46872   'weight' => '0',
46873   '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";}',
46874 ))
46875 ->values(array(
46876   'filename' => 'sites/all/modules/views/views_ui.module',
46877   'name' => 'views_ui',
46878   'type' => 'module',
46879   'owner' => '',
46880   'status' => '0',
46881   'throttle' => '0',
46882   'bootstrap' => '0',
46883   'schema_version' => '-1',
46884   'weight' => '0',
46885   '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";}',
46886 ))
46887 ->values(array(
46888   'filename' => 'themes/bluemarine/bluemarine.info',
46889   'name' => 'bluemarine',
46890   'type' => 'theme',
46891   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
46892   'status' => '0',
46893   'throttle' => '0',
46894   'bootstrap' => '0',
46895   'schema_version' => '-1',
46896   'weight' => '0',
46897   '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";}',
46898 ))
46899 ->values(array(
46900   'filename' => 'themes/chameleon/chameleon.info',
46901   'name' => 'chameleon',
46902   'type' => 'theme',
46903   'owner' => 'themes/chameleon/chameleon.theme',
46904   'status' => '0',
46905   'throttle' => '0',
46906   'bootstrap' => '0',
46907   'schema_version' => '-1',
46908   'weight' => '0',
46909   '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";}',
46910 ))
46911 ->values(array(
46912   'filename' => 'themes/chameleon/marvin/marvin.info',
46913   'name' => 'marvin',
46914   'type' => 'theme',
46915   'owner' => '',
46916   'status' => '0',
46917   'throttle' => '0',
46918   'bootstrap' => '0',
46919   'schema_version' => '-1',
46920   'weight' => '0',
46921   '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";}',
46922 ))
46923 ->values(array(
46924   'filename' => 'themes/garland/garland.info',
46925   'name' => 'garland',
46926   'type' => 'theme',
46927   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
46928   'status' => '1',
46929   'throttle' => '0',
46930   'bootstrap' => '0',
46931   'schema_version' => '-1',
46932   'weight' => '0',
46933   '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";}',
46934 ))
46935 ->values(array(
46936   'filename' => 'themes/garland/minnelli/minnelli.info',
46937   'name' => 'minnelli',
46938   'type' => 'theme',
46939   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
46940   'status' => '0',
46941   'throttle' => '0',
46942   'bootstrap' => '0',
46943   'schema_version' => '-1',
46944   'weight' => '0',
46945   '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";}',
46946 ))
46947 ->values(array(
46948   'filename' => 'themes/pushbutton/pushbutton.info',
46949   'name' => 'pushbutton',
46950   'type' => 'theme',
46951   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
46952   'status' => '0',
46953   'throttle' => '0',
46954   'bootstrap' => '0',
46955   'schema_version' => '-1',
46956   'weight' => '0',
46957   '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";}',
46958 ))
46959 ->execute();
46960
46961 $connection->schema()->createTable('term_data', array(
46962   'fields' => array(
46963     'tid' => array(
46964       'type' => 'serial',
46965       'not null' => TRUE,
46966       'size' => 'normal',
46967       'unsigned' => TRUE,
46968     ),
46969     'vid' => array(
46970       'type' => 'int',
46971       'not null' => TRUE,
46972       'size' => 'normal',
46973       'default' => '0',
46974       'unsigned' => TRUE,
46975     ),
46976     'name' => array(
46977       'type' => 'varchar',
46978       'not null' => TRUE,
46979       'length' => '255',
46980       'default' => '',
46981     ),
46982     'description' => array(
46983       'type' => 'text',
46984       'not null' => FALSE,
46985       'size' => 'normal',
46986     ),
46987     'weight' => array(
46988       'type' => 'int',
46989       'not null' => TRUE,
46990       'size' => 'normal',
46991       'default' => '0',
46992     ),
46993     'language' => array(
46994       'type' => 'varchar',
46995       'not null' => TRUE,
46996       'length' => '12',
46997       'default' => '',
46998     ),
46999     'trid' => array(
47000       'type' => 'int',
47001       'not null' => TRUE,
47002       'size' => 'normal',
47003       'default' => '0',
47004     ),
47005   ),
47006   'primary key' => array(
47007     'tid',
47008   ),
47009   'mysql_character_set' => 'utf8',
47010 ));
47011
47012 $connection->insert('term_data')
47013 ->fields(array(
47014   'tid',
47015   'vid',
47016   'name',
47017   'description',
47018   'weight',
47019   'language',
47020   'trid',
47021 ))
47022 ->values(array(
47023   'tid' => '1',
47024   'vid' => '1',
47025   'name' => 'zu - term 1 of vocabulary 1',
47026   'description' => 'zu - description of term 1 of vocabulary 1',
47027   'weight' => '0',
47028   'language' => 'zu',
47029   'trid' => '0',
47030 ))
47031 ->values(array(
47032   'tid' => '2',
47033   'vid' => '2',
47034   'name' => 'fr - term 2 of vocabulary 2',
47035   'description' => 'fr - description of term 2 of vocabulary 2',
47036   'weight' => '3',
47037   'language' => 'fr',
47038   'trid' => '0',
47039 ))
47040 ->values(array(
47041   'tid' => '3',
47042   'vid' => '2',
47043   'name' => 'fr - term 3 of vocabulary 2',
47044   'description' => 'fr - description of term 3 of vocabulary 2',
47045   'weight' => '4',
47046   'language' => 'fr',
47047   'trid' => '0',
47048 ))
47049 ->values(array(
47050   'tid' => '4',
47051   'vid' => '3',
47052   'name' => 'term 4 of vocabulary 3',
47053   'description' => 'description of term 4 of vocabulary 3',
47054   'weight' => '6',
47055   'language' => '',
47056   'trid' => '0',
47057 ))
47058 ->values(array(
47059   'tid' => '5',
47060   'vid' => '3',
47061   'name' => 'term 5 of vocabulary 3',
47062   'description' => 'description of term 5 of vocabulary 3',
47063   'weight' => '7',
47064   'language' => '',
47065   'trid' => '0',
47066 ))
47067 ->values(array(
47068   'tid' => '6',
47069   'vid' => '3',
47070   'name' => 'term 6 of vocabulary 3',
47071   'description' => 'description of term 6 of vocabulary 3',
47072   'weight' => '8',
47073   'language' => '',
47074   'trid' => '0',
47075 ))
47076 ->values(array(
47077   'tid' => '7',
47078   'vid' => '1',
47079   'name' => 'fr - term 2 of vocabulary 1',
47080   'description' => 'fr - desc of term 2 vocab 1',
47081   'weight' => '0',
47082   'language' => 'fr',
47083   'trid' => '0',
47084 ))
47085 ->values(array(
47086   'tid' => '8',
47087   'vid' => '7',
47088   'name' => 'General discussion',
47089   'description' => '',
47090   'weight' => '0',
47091   'language' => '',
47092   'trid' => '0',
47093 ))
47094 ->execute();
47095
47096 $connection->schema()->createTable('term_hierarchy', array(
47097   'fields' => array(
47098     'tid' => array(
47099       'type' => 'int',
47100       'not null' => TRUE,
47101       'size' => 'normal',
47102       'default' => '0',
47103       'unsigned' => TRUE,
47104     ),
47105     'parent' => array(
47106       'type' => 'int',
47107       'not null' => TRUE,
47108       'size' => 'normal',
47109       'default' => '0',
47110       'unsigned' => TRUE,
47111     ),
47112   ),
47113   'primary key' => array(
47114     'tid',
47115     'parent',
47116   ),
47117   'mysql_character_set' => 'utf8',
47118 ));
47119
47120 $connection->insert('term_hierarchy')
47121 ->fields(array(
47122   'tid',
47123   'parent',
47124 ))
47125 ->values(array(
47126   'tid' => '1',
47127   'parent' => '0',
47128 ))
47129 ->values(array(
47130   'tid' => '2',
47131   'parent' => '0',
47132 ))
47133 ->values(array(
47134   'tid' => '4',
47135   'parent' => '0',
47136 ))
47137 ->values(array(
47138   'tid' => '7',
47139   'parent' => '0',
47140 ))
47141 ->values(array(
47142   'tid' => '8',
47143   'parent' => '0',
47144 ))
47145 ->values(array(
47146   'tid' => '3',
47147   'parent' => '2',
47148 ))
47149 ->values(array(
47150   'tid' => '5',
47151   'parent' => '4',
47152 ))
47153 ->values(array(
47154   'tid' => '6',
47155   'parent' => '4',
47156 ))
47157 ->values(array(
47158   'tid' => '6',
47159   'parent' => '5',
47160 ))
47161 ->execute();
47162
47163 $connection->schema()->createTable('term_node', array(
47164   'fields' => array(
47165     'nid' => array(
47166       'type' => 'int',
47167       'not null' => TRUE,
47168       'size' => 'normal',
47169       'default' => '0',
47170       'unsigned' => TRUE,
47171     ),
47172     'vid' => array(
47173       'type' => 'int',
47174       'not null' => TRUE,
47175       'size' => 'normal',
47176       'default' => '0',
47177       'unsigned' => TRUE,
47178     ),
47179     'tid' => array(
47180       'type' => 'int',
47181       'not null' => TRUE,
47182       'size' => 'normal',
47183       'default' => '0',
47184       'unsigned' => TRUE,
47185     ),
47186   ),
47187   'primary key' => array(
47188     'vid',
47189     'tid',
47190   ),
47191   'mysql_character_set' => 'utf8',
47192 ));
47193
47194 $connection->insert('term_node')
47195 ->fields(array(
47196   'nid',
47197   'vid',
47198   'tid',
47199 ))
47200 ->values(array(
47201   'nid' => '1',
47202   'vid' => '1',
47203   'tid' => '1',
47204 ))
47205 ->values(array(
47206   'nid' => '1',
47207   'vid' => '1',
47208   'tid' => '2',
47209 ))
47210 ->values(array(
47211   'nid' => '2',
47212   'vid' => '3',
47213   'tid' => '2',
47214 ))
47215 ->values(array(
47216   'nid' => '2',
47217   'vid' => '3',
47218   'tid' => '3',
47219 ))
47220 ->values(array(
47221   'nid' => '1',
47222   'vid' => '2001',
47223   'tid' => '4',
47224 ))
47225 ->values(array(
47226   'nid' => '1',
47227   'vid' => '2001',
47228   'tid' => '5',
47229 ))
47230 ->values(array(
47231   'nid' => '19',
47232   'vid' => '22',
47233   'tid' => '8',
47234 ))
47235 ->execute();
47236
47237 $connection->schema()->createTable('term_relation', array(
47238   'fields' => array(
47239     'trid' => array(
47240       'type' => 'serial',
47241       'not null' => TRUE,
47242       'size' => 'normal',
47243     ),
47244     'tid1' => array(
47245       'type' => 'int',
47246       'not null' => TRUE,
47247       'size' => 'normal',
47248       'default' => '0',
47249       'unsigned' => TRUE,
47250     ),
47251     'tid2' => array(
47252       'type' => 'int',
47253       'not null' => TRUE,
47254       'size' => 'normal',
47255       'default' => '0',
47256       'unsigned' => TRUE,
47257     ),
47258   ),
47259   'primary key' => array(
47260     'trid',
47261   ),
47262   'mysql_character_set' => 'utf8',
47263 ));
47264
47265 $connection->schema()->createTable('term_synonym', array(
47266   'fields' => array(
47267     'tsid' => array(
47268       'type' => 'serial',
47269       'not null' => TRUE,
47270       'size' => 'normal',
47271     ),
47272     'tid' => array(
47273       'type' => 'int',
47274       'not null' => TRUE,
47275       'size' => 'normal',
47276       'default' => '0',
47277       'unsigned' => TRUE,
47278     ),
47279     'name' => array(
47280       'type' => 'varchar',
47281       'not null' => TRUE,
47282       'length' => '255',
47283       'default' => '',
47284     ),
47285   ),
47286   'primary key' => array(
47287     'tsid',
47288   ),
47289   'mysql_character_set' => 'utf8',
47290 ));
47291
47292 $connection->schema()->createTable('upload', array(
47293   'fields' => array(
47294     'fid' => array(
47295       'type' => 'int',
47296       'not null' => TRUE,
47297       'size' => 'normal',
47298       'default' => '0',
47299       'unsigned' => TRUE,
47300     ),
47301     'nid' => array(
47302       'type' => 'int',
47303       'not null' => TRUE,
47304       'size' => 'normal',
47305       'default' => '0',
47306       'unsigned' => TRUE,
47307     ),
47308     'vid' => array(
47309       'type' => 'int',
47310       'not null' => TRUE,
47311       'size' => 'normal',
47312       'default' => '0',
47313       'unsigned' => TRUE,
47314     ),
47315     'description' => array(
47316       'type' => 'varchar',
47317       'not null' => TRUE,
47318       'length' => '255',
47319       'default' => '',
47320     ),
47321     'list' => array(
47322       'type' => 'int',
47323       'not null' => TRUE,
47324       'size' => 'normal',
47325       'default' => '0',
47326       'unsigned' => TRUE,
47327     ),
47328     'weight' => array(
47329       'type' => 'int',
47330       'not null' => TRUE,
47331       'size' => 'normal',
47332       'default' => '0',
47333     ),
47334   ),
47335   'primary key' => array(
47336     'fid',
47337     'vid',
47338   ),
47339   'mysql_character_set' => 'utf8',
47340 ));
47341
47342 $connection->insert('upload')
47343 ->fields(array(
47344   'fid',
47345   'nid',
47346   'vid',
47347   'description',
47348   'list',
47349   'weight',
47350 ))
47351 ->values(array(
47352   'fid' => '1',
47353   'nid' => '1',
47354   'vid' => '1',
47355   'description' => 'file 1-1-1',
47356   'list' => '0',
47357   'weight' => '-1',
47358 ))
47359 ->values(array(
47360   'fid' => '2',
47361   'nid' => '1',
47362   'vid' => '2',
47363   'description' => 'file 1-2-2',
47364   'list' => '1',
47365   'weight' => '4',
47366 ))
47367 ->values(array(
47368   'fid' => '2',
47369   'nid' => '2',
47370   'vid' => '3',
47371   'description' => 'file 2-3-2',
47372   'list' => '1',
47373   'weight' => '2',
47374 ))
47375 ->values(array(
47376   'fid' => '3',
47377   'nid' => '1',
47378   'vid' => '2',
47379   'description' => 'file 1-2-3',
47380   'list' => '0',
47381   'weight' => '3',
47382 ))
47383 ->values(array(
47384   'fid' => '3',
47385   'nid' => '2',
47386   'vid' => '3',
47387   'description' => 'file 2-3-3',
47388   'list' => '0',
47389   'weight' => '1',
47390 ))
47391 ->values(array(
47392   'fid' => '3',
47393   'nid' => '12',
47394   'vid' => '15',
47395   'description' => 'file 12-15-3',
47396   'list' => '0',
47397   'weight' => '0',
47398 ))
47399 ->execute();
47400
47401 $connection->schema()->createTable('url_alias', array(
47402   'fields' => array(
47403     'pid' => array(
47404       'type' => 'serial',
47405       'not null' => TRUE,
47406       'size' => 'normal',
47407       'unsigned' => TRUE,
47408     ),
47409     'src' => array(
47410       'type' => 'varchar',
47411       'not null' => TRUE,
47412       'length' => '128',
47413       'default' => '',
47414     ),
47415     'dst' => array(
47416       'type' => 'varchar',
47417       'not null' => TRUE,
47418       'length' => '128',
47419       'default' => '',
47420     ),
47421     'language' => array(
47422       'type' => 'varchar',
47423       'not null' => TRUE,
47424       'length' => '12',
47425       'default' => '',
47426     ),
47427   ),
47428   'primary key' => array(
47429     'pid',
47430   ),
47431   'mysql_character_set' => 'utf8',
47432 ));
47433
47434 $connection->insert('url_alias')
47435 ->fields(array(
47436   'pid',
47437   'src',
47438   'dst',
47439   'language',
47440 ))
47441 ->values(array(
47442   'pid' => '1',
47443   'src' => 'node/1',
47444   'dst' => 'alias-one',
47445   'language' => 'af',
47446 ))
47447 ->values(array(
47448   'pid' => '2',
47449   'src' => 'node/2',
47450   'dst' => 'alias-two',
47451   'language' => 'en',
47452 ))
47453 ->values(array(
47454   'pid' => '3',
47455   'src' => 'node/3',
47456   'dst' => 'alias-three',
47457   'language' => '',
47458 ))
47459 ->values(array(
47460   'pid' => '4',
47461   'src' => 'node/10',
47462   'dst' => 'the-real-mccoy',
47463   'language' => 'en',
47464 ))
47465 ->values(array(
47466   'pid' => '5',
47467   'src' => 'node/11',
47468   'dst' => 'le-vrai-mccoy',
47469   'language' => 'fr',
47470 ))
47471 ->values(array(
47472   'pid' => '6',
47473   'src' => 'node/12',
47474   'dst' => 'abantu-zulu',
47475   'language' => 'zu',
47476 ))
47477 ->values(array(
47478   'pid' => '7',
47479   'src' => 'node/13',
47480   'dst' => 'the-zulu-people',
47481   'language' => 'en',
47482 ))
47483 ->values(array(
47484   'pid' => '8',
47485   'src' => 'admin',
47486   'dst' => 'source-noslash',
47487   'language' => '',
47488 ))
47489 ->execute();
47490
47491 $connection->schema()->createTable('users', array(
47492   'fields' => array(
47493     'uid' => array(
47494       'type' => 'serial',
47495       'not null' => TRUE,
47496       'size' => 'normal',
47497       'unsigned' => TRUE,
47498     ),
47499     'name' => array(
47500       'type' => 'varchar',
47501       'not null' => TRUE,
47502       'length' => '60',
47503       'default' => '',
47504     ),
47505     'pass' => array(
47506       'type' => 'varchar',
47507       'not null' => TRUE,
47508       'length' => '32',
47509       'default' => '',
47510     ),
47511     'mail' => array(
47512       'type' => 'varchar',
47513       'not null' => FALSE,
47514       'length' => '64',
47515       'default' => '',
47516     ),
47517     'mode' => array(
47518       'type' => 'int',
47519       'not null' => TRUE,
47520       'size' => 'normal',
47521       'default' => '0',
47522     ),
47523     'sort' => array(
47524       'type' => 'int',
47525       'not null' => FALSE,
47526       'size' => 'normal',
47527       'default' => '0',
47528     ),
47529     'threshold' => array(
47530       'type' => 'int',
47531       'not null' => FALSE,
47532       'size' => 'normal',
47533       'default' => '0',
47534     ),
47535     'theme' => array(
47536       'type' => 'varchar',
47537       'not null' => TRUE,
47538       'length' => '255',
47539       'default' => '',
47540     ),
47541     'signature' => array(
47542       'type' => 'varchar',
47543       'not null' => TRUE,
47544       'length' => '255',
47545       'default' => '',
47546     ),
47547     'signature_format' => array(
47548       'type' => 'int',
47549       'not null' => TRUE,
47550       'size' => 'normal',
47551       'default' => '0',
47552     ),
47553     'created' => array(
47554       'type' => 'int',
47555       'not null' => TRUE,
47556       'size' => 'normal',
47557       'default' => '0',
47558     ),
47559     'access' => array(
47560       'type' => 'int',
47561       'not null' => TRUE,
47562       'size' => 'normal',
47563       'default' => '0',
47564     ),
47565     'login' => array(
47566       'type' => 'int',
47567       'not null' => TRUE,
47568       'size' => 'normal',
47569       'default' => '0',
47570     ),
47571     'status' => array(
47572       'type' => 'int',
47573       'not null' => TRUE,
47574       'size' => 'normal',
47575       'default' => '0',
47576     ),
47577     'timezone' => array(
47578       'type' => 'varchar',
47579       'not null' => FALSE,
47580       'length' => '8',
47581     ),
47582     'language' => array(
47583       'type' => 'varchar',
47584       'not null' => TRUE,
47585       'length' => '12',
47586       'default' => '',
47587     ),
47588     'picture' => array(
47589       'type' => 'varchar',
47590       'not null' => TRUE,
47591       'length' => '255',
47592       'default' => '',
47593     ),
47594     'init' => array(
47595       'type' => 'varchar',
47596       'not null' => FALSE,
47597       'length' => '64',
47598       'default' => '',
47599     ),
47600     'data' => array(
47601       'type' => 'text',
47602       'not null' => FALSE,
47603       'size' => 'normal',
47604     ),
47605     'timezone_name' => array(
47606       'type' => 'varchar',
47607       'not null' => FALSE,
47608       'length' => '50',
47609       'default' => '',
47610     ),
47611     'pass_plain' => array(
47612       'type' => 'varchar',
47613       'not null' => TRUE,
47614       'length' => '255',
47615       'default' => '',
47616     ),
47617     'expected_timezone' => array(
47618       'type' => 'varchar',
47619       'not null' => FALSE,
47620       'length' => '50',
47621     ),
47622     'timezone_id' => array(
47623       'type' => 'int',
47624       'not null' => TRUE,
47625       'size' => 'normal',
47626       'default' => '0',
47627     ),
47628   ),
47629   'primary key' => array(
47630     'uid',
47631   ),
47632   'mysql_character_set' => 'utf8',
47633 ));
47634
47635 $connection->insert('users')
47636 ->fields(array(
47637   'uid',
47638   'name',
47639   'pass',
47640   'mail',
47641   'mode',
47642   'sort',
47643   'threshold',
47644   'theme',
47645   'signature',
47646   'signature_format',
47647   'created',
47648   'access',
47649   'login',
47650   'status',
47651   'timezone',
47652   'language',
47653   'picture',
47654   'init',
47655   'data',
47656   'timezone_name',
47657   'pass_plain',
47658   'expected_timezone',
47659   'timezone_id',
47660 ))
47661 ->values(array(
47662   'uid' => '1',
47663   'name' => 'root',
47664   'pass' => '63a9f0ea7bb98050796b649e85481845',
47665   'mail' => 'root@localhost',
47666   'mode' => '0',
47667   'sort' => '0',
47668   'threshold' => '0',
47669   'theme' => '',
47670   'signature' => '',
47671   'signature_format' => '0',
47672   'created' => '0',
47673   'access' => '1494966478',
47674   'login' => '1494966280',
47675   'status' => '1',
47676   'timezone' => NULL,
47677   'language' => '',
47678   'picture' => '',
47679   'init' => 'root@localhost',
47680   'data' => 'b:0;',
47681   'timezone_name' => '',
47682   'pass_plain' => 'root',
47683   'expected_timezone' => NULL,
47684   'timezone_id' => '0',
47685 ))
47686 ->values(array(
47687   'uid' => '2',
47688   'name' => 'john.doe',
47689   'pass' => '671cc45b3e2c6eb751d6a554dc5a5fe7',
47690   'mail' => 'john.doe@example.com',
47691   'mode' => '0',
47692   'sort' => '0',
47693   'threshold' => '0',
47694   'theme' => '',
47695   'signature' => 'John Doe | john.doe@example.com',
47696   'signature_format' => '1',
47697   'created' => '1391150052',
47698   'access' => '1391259672',
47699   'login' => '1391152253',
47700   'status' => '1',
47701   'timezone' => '3600',
47702   'language' => 'fr',
47703   'picture' => 'core/modules/simpletest/files/image-test.jpg',
47704   'init' => 'doe@example.com',
47705   'data' => 'a:2:{s:7:"contact";i:1;s:13:"form_build_id";s:48:"form-qu_DMjE-Vfg01arT5J4VbuBCkOgx_LeySJx4qrPOSuA";}',
47706   'timezone_name' => 'Europe/Berlin',
47707   'pass_plain' => 'john.doe_pass',
47708   'expected_timezone' => 'Europe/Berlin',
47709   'timezone_id' => '1',
47710 ))
47711 ->values(array(
47712   'uid' => '8',
47713   'name' => 'joe.roe',
47714   'pass' => '93a70546e6c032c135499fed70cfe438',
47715   'mail' => 'joe.roe@example.com',
47716   'mode' => '0',
47717   'sort' => '0',
47718   'threshold' => '0',
47719   'theme' => '',
47720   'signature' => 'JR',
47721   'signature_format' => '2',
47722   'created' => '1391150053',
47723   'access' => '1391259673',
47724   'login' => '1391152254',
47725   'status' => '1',
47726   'timezone' => '7200',
47727   'language' => 'ro',
47728   'picture' => 'core/modules/simpletest/files/image-test.png',
47729   'init' => 'roe@example.com',
47730   'data' => 'a:2:{s:7:"contact";i:0;s:13:"form_build_id";s:48:"form-1TxjbL2_1dEHIxEu2Db6OvEsSN1x9ILH1VCgnvsO6LE";}',
47731   'timezone_name' => 'Europe/Helsinki',
47732   'pass_plain' => 'joe.roe_pass',
47733   'expected_timezone' => 'Europe/Helsinki',
47734   'timezone_id' => '0',
47735 ))
47736 ->values(array(
47737   'uid' => '15',
47738   'name' => 'joe.bloggs',
47739   'pass' => '2ff23139aeb404274dc67cbee8c64fb0',
47740   'mail' => 'joe.bloggs@example.com',
47741   'mode' => '0',
47742   'sort' => '0',
47743   'threshold' => '0',
47744   'theme' => '',
47745   'signature' => 'bloggs',
47746   'signature_format' => '1',
47747   'created' => '1391150054',
47748   'access' => '1391259674',
47749   'login' => '1391152255',
47750   'status' => '1',
47751   'timezone' => '-28800',
47752   'language' => 'en',
47753   'picture' => '',
47754   'init' => 'bloggs@example.com',
47755   'data' => 'a:0:{}',
47756   'timezone_name' => 'America/Anchorage',
47757   'pass_plain' => 'joe.bloggs_pass',
47758   'expected_timezone' => NULL,
47759   'timezone_id' => '0',
47760 ))
47761 ->values(array(
47762   'uid' => '16',
47763   'name' => 'sal.saraniti',
47764   'pass' => '77404657c8bcd8e9aa8f3147856efb4f',
47765   'mail' => 'sal.saraniti@example.com',
47766   'mode' => '0',
47767   'sort' => '0',
47768   'threshold' => '0',
47769   'theme' => '',
47770   'signature' => '',
47771   'signature_format' => '0',
47772   'created' => '1391151054',
47773   'access' => '1391259574',
47774   'login' => '1391162255',
47775   'status' => '1',
47776   'timezone' => '0',
47777   'language' => 'en',
47778   'picture' => '',
47779   'init' => 'sal.saraniti@example.com',
47780   'data' => 'a:0:{}',
47781   'timezone_name' => 'UTC',
47782   'pass_plain' => 'sal.saraniti',
47783   'expected_timezone' => NULL,
47784   'timezone_id' => '0',
47785 ))
47786 ->values(array(
47787   'uid' => '17',
47788   'name' => 'terry.saraniti',
47789   'pass' => '8fb310d3ec746d720e0e8efefd0cce5c',
47790   'mail' => 'terry.saraniti@example.com',
47791   'mode' => '0',
47792   'sort' => '0',
47793   'threshold' => '0',
47794   'theme' => '',
47795   'signature' => '',
47796   'signature_format' => '0',
47797   'created' => '1390151054',
47798   'access' => '1390259574',
47799   'login' => '1390162255',
47800   'status' => '1',
47801   'timezone' => NULL,
47802   'language' => 'en',
47803   'picture' => '',
47804   'init' => 'terry.saraniti@example.com',
47805   'data' => 'a:0:{}',
47806   'timezone_name' => NULL,
47807   'pass_plain' => 'terry.saraniti',
47808   'expected_timezone' => NULL,
47809   'timezone_id' => '0',
47810 ))
47811 ->execute();
47812
47813 $connection->schema()->createTable('users_roles', array(
47814   'fields' => array(
47815     'uid' => array(
47816       'type' => 'int',
47817       'not null' => TRUE,
47818       'size' => 'normal',
47819       'default' => '0',
47820       'unsigned' => TRUE,
47821     ),
47822     'rid' => array(
47823       'type' => 'int',
47824       'not null' => TRUE,
47825       'size' => 'normal',
47826       'default' => '0',
47827       'unsigned' => TRUE,
47828     ),
47829   ),
47830   'primary key' => array(
47831     'uid',
47832     'rid',
47833   ),
47834   'mysql_character_set' => 'utf8',
47835 ));
47836
47837 $connection->insert('users_roles')
47838 ->fields(array(
47839   'uid',
47840   'rid',
47841 ))
47842 ->values(array(
47843   'uid' => '2',
47844   'rid' => '3',
47845 ))
47846 ->values(array(
47847   'uid' => '15',
47848   'rid' => '3',
47849 ))
47850 ->values(array(
47851   'uid' => '16',
47852   'rid' => '3',
47853 ))
47854 ->values(array(
47855   'uid' => '8',
47856   'rid' => '4',
47857 ))
47858 ->values(array(
47859   'uid' => '15',
47860   'rid' => '4',
47861 ))
47862 ->values(array(
47863   'uid' => '17',
47864   'rid' => '4',
47865 ))
47866 ->values(array(
47867   'uid' => '8',
47868   'rid' => '5',
47869 ))
47870 ->values(array(
47871   'uid' => '15',
47872   'rid' => '5',
47873 ))
47874 ->values(array(
47875   'uid' => '16',
47876   'rid' => '5',
47877 ))
47878 ->execute();
47879
47880 $connection->schema()->createTable('variable', array(
47881   'fields' => array(
47882     'name' => array(
47883       'type' => 'varchar',
47884       'not null' => TRUE,
47885       'length' => '128',
47886       'default' => '',
47887     ),
47888     'value' => array(
47889       'type' => 'text',
47890       'not null' => TRUE,
47891       'size' => 'normal',
47892     ),
47893   ),
47894   'primary key' => array(
47895     'name',
47896   ),
47897   'mysql_character_set' => 'utf8',
47898 ));
47899
47900 $connection->insert('variable')
47901 ->fields(array(
47902   'name',
47903   'value',
47904 ))
47905 ->values(array(
47906   'name' => 'actions_max_stack',
47907   'value' => 'i:35;',
47908 ))
47909 ->values(array(
47910   'name' => 'admin_compact_mode',
47911   'value' => 'b:0;',
47912 ))
47913 ->values(array(
47914   'name' => 'aggregator_allowed_html_tags',
47915   'value' => 's:70:"<a> <b> <br /> <dd> <dl> <dt> <em> <i> <li> <ol> <p> <strong> <u> <ul>";',
47916 ))
47917 ->values(array(
47918   'name' => 'aggregator_clear',
47919   'value' => 's:7:"9676800";',
47920 ))
47921 ->values(array(
47922   'name' => 'aggregator_fetcher',
47923   'value' => 's:10:"aggregator";',
47924 ))
47925 ->values(array(
47926   'name' => 'aggregator_parser',
47927   'value' => 's:10:"aggregator";',
47928 ))
47929 ->values(array(
47930   'name' => 'aggregator_processors',
47931   'value' => 'a:1:{i:0;s:10:"aggregator";}',
47932 ))
47933 ->values(array(
47934   'name' => 'aggregator_summary_items',
47935   'value' => 's:1:"3";',
47936 ))
47937 ->values(array(
47938   'name' => 'aggregator_teaser_length',
47939   'value' => 's:3:"600";',
47940 ))
47941 ->values(array(
47942   'name' => 'allowed_html_1',
47943   'value' => 's:61:"<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>";',
47944 ))
47945 ->values(array(
47946   'name' => 'allow_insecure_uploads',
47947   'value' => 'i:1;',
47948 ))
47949 ->values(array(
47950   'name' => 'anonymous',
47951   'value' => 's:5:"Guest";',
47952 ))
47953 ->values(array(
47954   'name' => 'array_filter',
47955   'value' => 'b:1;',
47956 ))
47957 ->values(array(
47958   'name' => 'book_allowed_types',
47959   'value' => 'a:1:{i:0;s:4:"book";}',
47960 ))
47961 ->values(array(
47962   'name' => 'book_block_mode',
47963   'value' => 's:10:"book pages";',
47964 ))
47965 ->values(array(
47966   'name' => 'book_child_type',
47967   'value' => 's:4:"book";',
47968 ))
47969 ->values(array(
47970   'name' => 'cache_lifetime',
47971   'value' => 'i:0;',
47972 ))
47973 ->values(array(
47974   'name' => 'comment_anonymous_article',
47975   'value' => 'i:0;',
47976 ))
47977 ->values(array(
47978   'name' => 'comment_anonymous_company',
47979   'value' => 'i:0;',
47980 ))
47981 ->values(array(
47982   'name' => 'comment_anonymous_employee',
47983   'value' => 'i:0;',
47984 ))
47985 ->values(array(
47986   'name' => 'comment_anonymous_page',
47987   'value' => 'i:0;',
47988 ))
47989 ->values(array(
47990   'name' => 'comment_anonymous_sponsor',
47991   'value' => 'i:0;',
47992 ))
47993 ->values(array(
47994   'name' => 'comment_anonymous_story',
47995   'value' => 'i:1;',
47996 ))
47997 ->values(array(
47998   'name' => 'comment_anonymous_test_event',
47999   'value' => 'i:0;',
48000 ))
48001 ->values(array(
48002   'name' => 'comment_anonymous_test_page',
48003   'value' => 'i:0;',
48004 ))
48005 ->values(array(
48006   'name' => 'comment_anonymous_test_planet',
48007   'value' => 'i:0;',
48008 ))
48009 ->values(array(
48010   'name' => 'comment_anonymous_test_story',
48011   'value' => 'i:0;',
48012 ))
48013 ->values(array(
48014   'name' => 'comment_article',
48015   'value' => 's:1:"2";',
48016 ))
48017 ->values(array(
48018   'name' => 'comment_company',
48019   'value' => 's:1:"2";',
48020 ))
48021 ->values(array(
48022   'name' => 'comment_controls_article',
48023   'value' => 'i:3;',
48024 ))
48025 ->values(array(
48026   'name' => 'comment_controls_company',
48027   'value' => 's:1:"3";',
48028 ))
48029 ->values(array(
48030   'name' => 'comment_controls_employee',
48031   'value' => 'i:3;',
48032 ))
48033 ->values(array(
48034   'name' => 'comment_controls_page',
48035   'value' => 's:1:"3";',
48036 ))
48037 ->values(array(
48038   'name' => 'comment_controls_sponsor',
48039   'value' => 'i:3;',
48040 ))
48041 ->values(array(
48042   'name' => 'comment_controls_story',
48043   'value' => 'i:3;',
48044 ))
48045 ->values(array(
48046   'name' => 'comment_controls_test_event',
48047   'value' => 'i:3;',
48048 ))
48049 ->values(array(
48050   'name' => 'comment_controls_test_page',
48051   'value' => 'i:3;',
48052 ))
48053 ->values(array(
48054   'name' => 'comment_controls_test_planet',
48055   'value' => 'i:3;',
48056 ))
48057 ->values(array(
48058   'name' => 'comment_controls_test_story',
48059   'value' => 'i:3;',
48060 ))
48061 ->values(array(
48062   'name' => 'comment_default_mode_article',
48063   'value' => 'i:4;',
48064 ))
48065 ->values(array(
48066   'name' => 'comment_default_mode_company',
48067   'value' => 's:1:"4";',
48068 ))
48069 ->values(array(
48070   'name' => 'comment_default_mode_employee',
48071   'value' => 'i:4;',
48072 ))
48073 ->values(array(
48074   'name' => 'comment_default_mode_page',
48075   'value' => 's:1:"4";',
48076 ))
48077 ->values(array(
48078   'name' => 'comment_default_mode_sponsor',
48079   'value' => 'i:4;',
48080 ))
48081 ->values(array(
48082   'name' => 'comment_default_mode_story',
48083   'value' => 's:1:"2";',
48084 ))
48085 ->values(array(
48086   'name' => 'comment_default_mode_test_event',
48087   'value' => 'i:4;',
48088 ))
48089 ->values(array(
48090   'name' => 'comment_default_mode_test_page',
48091   'value' => 'i:4;',
48092 ))
48093 ->values(array(
48094   'name' => 'comment_default_mode_test_planet',
48095   'value' => 'i:4;',
48096 ))
48097 ->values(array(
48098   'name' => 'comment_default_mode_test_story',
48099   'value' => 'i:4;',
48100 ))
48101 ->values(array(
48102   'name' => 'comment_default_order_article',
48103   'value' => 'i:1;',
48104 ))
48105 ->values(array(
48106   'name' => 'comment_default_order_company',
48107   'value' => 's:1:"1";',
48108 ))
48109 ->values(array(
48110   'name' => 'comment_default_order_employee',
48111   'value' => 'i:1;',
48112 ))
48113 ->values(array(
48114   'name' => 'comment_default_order_page',
48115   'value' => 's:1:"1";',
48116 ))
48117 ->values(array(
48118   'name' => 'comment_default_order_sponsor',
48119   'value' => 'i:1;',
48120 ))
48121 ->values(array(
48122   'name' => 'comment_default_order_story',
48123   'value' => 'i:1;',
48124 ))
48125 ->values(array(
48126   'name' => 'comment_default_order_test_event',
48127   'value' => 'i:1;',
48128 ))
48129 ->values(array(
48130   'name' => 'comment_default_order_test_page',
48131   'value' => 'i:1;',
48132 ))
48133 ->values(array(
48134   'name' => 'comment_default_order_test_planet',
48135   'value' => 'i:1;',
48136 ))
48137 ->values(array(
48138   'name' => 'comment_default_order_test_story',
48139   'value' => 'i:1;',
48140 ))
48141 ->values(array(
48142   'name' => 'comment_default_per_page_article',
48143   'value' => 'i:50;',
48144 ))
48145 ->values(array(
48146   'name' => 'comment_default_per_page_company',
48147   'value' => 's:2:"50";',
48148 ))
48149 ->values(array(
48150   'name' => 'comment_default_per_page_employee',
48151   'value' => 'i:50;',
48152 ))
48153 ->values(array(
48154   'name' => 'comment_default_per_page_page',
48155   'value' => 's:2:"50";',
48156 ))
48157 ->values(array(
48158   'name' => 'comment_default_per_page_sponsor',
48159   'value' => 'i:50;',
48160 ))
48161 ->values(array(
48162   'name' => 'comment_default_per_page_story',
48163   'value' => 'i:70;',
48164 ))
48165 ->values(array(
48166   'name' => 'comment_default_per_page_test_event',
48167   'value' => 'i:50;',
48168 ))
48169 ->values(array(
48170   'name' => 'comment_default_per_page_test_page',
48171   'value' => 'i:50;',
48172 ))
48173 ->values(array(
48174   'name' => 'comment_default_per_page_test_planet',
48175   'value' => 'i:50;',
48176 ))
48177 ->values(array(
48178   'name' => 'comment_default_per_page_test_story',
48179   'value' => 'i:50;',
48180 ))
48181 ->values(array(
48182   'name' => 'comment_form_location_article',
48183   'value' => 'i:0;',
48184 ))
48185 ->values(array(
48186   'name' => 'comment_form_location_company',
48187   'value' => 's:1:"0";',
48188 ))
48189 ->values(array(
48190   'name' => 'comment_form_location_employee',
48191   'value' => 'i:0;',
48192 ))
48193 ->values(array(
48194   'name' => 'comment_form_location_page',
48195   'value' => 's:1:"0";',
48196 ))
48197 ->values(array(
48198   'name' => 'comment_form_location_sponsor',
48199   'value' => 'i:0;',
48200 ))
48201 ->values(array(
48202   'name' => 'comment_form_location_story',
48203   'value' => 'i:0;',
48204 ))
48205 ->values(array(
48206   'name' => 'comment_form_location_test_event',
48207   'value' => 'i:0;',
48208 ))
48209 ->values(array(
48210   'name' => 'comment_form_location_test_page',
48211   'value' => 'i:0;',
48212 ))
48213 ->values(array(
48214   'name' => 'comment_form_location_test_planet',
48215   'value' => 'i:0;',
48216 ))
48217 ->values(array(
48218   'name' => 'comment_form_location_test_story',
48219   'value' => 'i:0;',
48220 ))
48221 ->values(array(
48222   'name' => 'comment_page',
48223   'value' => 's:1:"0";',
48224 ))
48225 ->values(array(
48226   'name' => 'comment_preview_article',
48227   'value' => 'i:1;',
48228 ))
48229 ->values(array(
48230   'name' => 'comment_preview_company',
48231   'value' => 's:1:"1";',
48232 ))
48233 ->values(array(
48234   'name' => 'comment_preview_employee',
48235   'value' => 'i:1;',
48236 ))
48237 ->values(array(
48238   'name' => 'comment_preview_page',
48239   'value' => 's:1:"1";',
48240 ))
48241 ->values(array(
48242   'name' => 'comment_preview_sponsor',
48243   'value' => 'i:1;',
48244 ))
48245 ->values(array(
48246   'name' => 'comment_preview_story',
48247   'value' => 'i:0;',
48248 ))
48249 ->values(array(
48250   'name' => 'comment_preview_test_event',
48251   'value' => 'i:1;',
48252 ))
48253 ->values(array(
48254   'name' => 'comment_preview_test_page',
48255   'value' => 'i:1;',
48256 ))
48257 ->values(array(
48258   'name' => 'comment_preview_test_planet',
48259   'value' => 'i:1;',
48260 ))
48261 ->values(array(
48262   'name' => 'comment_preview_test_story',
48263   'value' => 'i:1;',
48264 ))
48265 ->values(array(
48266   'name' => 'comment_story',
48267   'value' => 's:1:"2";',
48268 ))
48269 ->values(array(
48270   'name' => 'comment_subject_field_article',
48271   'value' => 'i:1;',
48272 ))
48273 ->values(array(
48274   'name' => 'comment_subject_field_company',
48275   'value' => 's:1:"1";',
48276 ))
48277 ->values(array(
48278   'name' => 'comment_subject_field_employee',
48279   'value' => 'i:1;',
48280 ))
48281 ->values(array(
48282   'name' => 'comment_subject_field_page',
48283   'value' => 'i:1;',
48284 ))
48285 ->values(array(
48286   'name' => 'comment_subject_field_sponsor',
48287   'value' => 'i:1;',
48288 ))
48289 ->values(array(
48290   'name' => 'comment_subject_field_story',
48291   'value' => 'i:0;',
48292 ))
48293 ->values(array(
48294   'name' => 'comment_subject_field_test_event',
48295   'value' => 'i:1;',
48296 ))
48297 ->values(array(
48298   'name' => 'comment_subject_field_test_page',
48299   'value' => 'i:1;',
48300 ))
48301 ->values(array(
48302   'name' => 'comment_subject_field_test_planet',
48303   'value' => 'i:1;',
48304 ))
48305 ->values(array(
48306   'name' => 'comment_subject_field_test_story',
48307   'value' => 'i:1;',
48308 ))
48309 ->values(array(
48310   'name' => 'configurable_timezones',
48311   'value' => 's:1:"0";',
48312 ))
48313 ->values(array(
48314   'name' => 'contact_default_status',
48315   'value' => 'i:1;',
48316 ))
48317 ->values(array(
48318   'name' => 'contact_hourly_threshold',
48319   'value' => 'i:3;',
48320 ))
48321 ->values(array(
48322   'name' => 'content_extra_weights_employee',
48323   '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";}',
48324 ))
48325 ->values(array(
48326   'name' => 'content_extra_weights_story',
48327   '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";}',
48328 ))
48329 ->values(array(
48330   'name' => 'content_extra_weights_test_page',
48331   '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";}',
48332 ))
48333 ->values(array(
48334   'name' => 'content_schema_version',
48335   'value' => 'i:6009;',
48336 ))
48337 ->values(array(
48338   'name' => 'cron_threshold_error',
48339   'value' => 'i:1209600;',
48340 ))
48341 ->values(array(
48342   'name' => 'cron_threshold_warning',
48343   'value' => 'i:172800;',
48344 ))
48345 ->values(array(
48346   'name' => 'css_js_query_string',
48347   'value' => 's:20:"y8SAkMTxRZndiw700000";',
48348 ))
48349 ->values(array(
48350   'name' => 'date:story:4:field_test_datestamp_fromto',
48351   'value' => 's:4:"both";',
48352 ))
48353 ->values(array(
48354   'name' => 'date:story:4:field_test_datestamp_multiple_from',
48355   'value' => 's:0:"";',
48356 ))
48357 ->values(array(
48358   'name' => 'date:story:4:field_test_datestamp_multiple_number',
48359   'value' => 's:0:"";',
48360 ))
48361 ->values(array(
48362   'name' => 'date:story:4:field_test_datestamp_multiple_to',
48363   'value' => 's:0:"";',
48364 ))
48365 ->values(array(
48366   'name' => 'date:story:4:field_test_datestamp_show_repeat_rule',
48367   'value' => 's:4:"show";',
48368 ))
48369 ->values(array(
48370   'name' => 'date:story:4:field_test_datetime_fromto',
48371   'value' => 's:4:"both";',
48372 ))
48373 ->values(array(
48374   'name' => 'date:story:4:field_test_datetime_multiple_from',
48375   'value' => 's:0:"";',
48376 ))
48377 ->values(array(
48378   'name' => 'date:story:4:field_test_datetime_multiple_number',
48379   'value' => 's:0:"";',
48380 ))
48381 ->values(array(
48382   'name' => 'date:story:4:field_test_datetime_multiple_to',
48383   'value' => 's:0:"";',
48384 ))
48385 ->values(array(
48386   'name' => 'date:story:4:field_test_datetime_show_repeat_rule',
48387   'value' => 's:4:"show";',
48388 ))
48389 ->values(array(
48390   'name' => 'date:story:4:field_test_date_fromto',
48391   'value' => 's:4:"both";',
48392 ))
48393 ->values(array(
48394   'name' => 'date:story:4:field_test_date_multiple_from',
48395   'value' => 's:0:"";',
48396 ))
48397 ->values(array(
48398   'name' => 'date:story:4:field_test_date_multiple_number',
48399   'value' => 's:0:"";',
48400 ))
48401 ->values(array(
48402   'name' => 'date:story:4:field_test_date_multiple_to',
48403   'value' => 's:0:"";',
48404 ))
48405 ->values(array(
48406   'name' => 'date:story:4:field_test_date_show_repeat_rule',
48407   'value' => 's:4:"show";',
48408 ))
48409 ->values(array(
48410   'name' => 'date:story:5:field_test_datestamp_fromto',
48411   'value' => 's:4:"both";',
48412 ))
48413 ->values(array(
48414   'name' => 'date:story:5:field_test_datestamp_multiple_from',
48415   'value' => 's:0:"";',
48416 ))
48417 ->values(array(
48418   'name' => 'date:story:5:field_test_datestamp_multiple_number',
48419   'value' => 's:0:"";',
48420 ))
48421 ->values(array(
48422   'name' => 'date:story:5:field_test_datestamp_multiple_to',
48423   'value' => 's:0:"";',
48424 ))
48425 ->values(array(
48426   'name' => 'date:story:5:field_test_datestamp_show_repeat_rule',
48427   'value' => 's:4:"show";',
48428 ))
48429 ->values(array(
48430   'name' => 'date:story:5:field_test_datetime_fromto',
48431   'value' => 's:4:"both";',
48432 ))
48433 ->values(array(
48434   'name' => 'date:story:5:field_test_datetime_multiple_from',
48435   'value' => 's:0:"";',
48436 ))
48437 ->values(array(
48438   'name' => 'date:story:5:field_test_datetime_multiple_number',
48439   'value' => 's:0:"";',
48440 ))
48441 ->values(array(
48442   'name' => 'date:story:5:field_test_datetime_multiple_to',
48443   'value' => 's:0:"";',
48444 ))
48445 ->values(array(
48446   'name' => 'date:story:5:field_test_datetime_show_repeat_rule',
48447   'value' => 's:4:"show";',
48448 ))
48449 ->values(array(
48450   'name' => 'date:story:5:field_test_date_fromto',
48451   'value' => 's:4:"both";',
48452 ))
48453 ->values(array(
48454   'name' => 'date:story:5:field_test_date_multiple_from',
48455   'value' => 's:0:"";',
48456 ))
48457 ->values(array(
48458   'name' => 'date:story:5:field_test_date_multiple_number',
48459   'value' => 's:0:"";',
48460 ))
48461 ->values(array(
48462   'name' => 'date:story:5:field_test_date_multiple_to',
48463   'value' => 's:0:"";',
48464 ))
48465 ->values(array(
48466   'name' => 'date:story:5:field_test_date_show_repeat_rule',
48467   'value' => 's:4:"show";',
48468 ))
48469 ->values(array(
48470   'name' => 'date:story:full:field_test_datestamp_fromto',
48471   'value' => 's:4:"both";',
48472 ))
48473 ->values(array(
48474   'name' => 'date:story:full:field_test_datestamp_multiple_from',
48475   'value' => 's:0:"";',
48476 ))
48477 ->values(array(
48478   'name' => 'date:story:full:field_test_datestamp_multiple_number',
48479   'value' => 's:0:"";',
48480 ))
48481 ->values(array(
48482   'name' => 'date:story:full:field_test_datestamp_multiple_to',
48483   'value' => 's:0:"";',
48484 ))
48485 ->values(array(
48486   'name' => 'date:story:full:field_test_datestamp_show_repeat_rule',
48487   'value' => 's:4:"show";',
48488 ))
48489 ->values(array(
48490   'name' => 'date:story:full:field_test_datetime_fromto',
48491   'value' => 's:4:"both";',
48492 ))
48493 ->values(array(
48494   'name' => 'date:story:full:field_test_datetime_multiple_from',
48495   'value' => 's:0:"";',
48496 ))
48497 ->values(array(
48498   'name' => 'date:story:full:field_test_datetime_multiple_number',
48499   'value' => 's:0:"";',
48500 ))
48501 ->values(array(
48502   'name' => 'date:story:full:field_test_datetime_multiple_to',
48503   'value' => 's:0:"";',
48504 ))
48505 ->values(array(
48506   'name' => 'date:story:full:field_test_datetime_show_repeat_rule',
48507   'value' => 's:4:"show";',
48508 ))
48509 ->values(array(
48510   'name' => 'date:story:full:field_test_date_fromto',
48511   'value' => 's:4:"both";',
48512 ))
48513 ->values(array(
48514   'name' => 'date:story:full:field_test_date_multiple_from',
48515   'value' => 's:0:"";',
48516 ))
48517 ->values(array(
48518   'name' => 'date:story:full:field_test_date_multiple_number',
48519   'value' => 's:0:"";',
48520 ))
48521 ->values(array(
48522   'name' => 'date:story:full:field_test_date_multiple_to',
48523   'value' => 's:0:"";',
48524 ))
48525 ->values(array(
48526   'name' => 'date:story:full:field_test_date_show_repeat_rule',
48527   'value' => 's:4:"show";',
48528 ))
48529 ->values(array(
48530   'name' => 'date:story:teaser:field_test_datestamp_fromto',
48531   'value' => 's:4:"both";',
48532 ))
48533 ->values(array(
48534   'name' => 'date:story:teaser:field_test_datestamp_multiple_from',
48535   'value' => 's:0:"";',
48536 ))
48537 ->values(array(
48538   'name' => 'date:story:teaser:field_test_datestamp_multiple_number',
48539   'value' => 's:0:"";',
48540 ))
48541 ->values(array(
48542   'name' => 'date:story:teaser:field_test_datestamp_multiple_to',
48543   'value' => 's:0:"";',
48544 ))
48545 ->values(array(
48546   'name' => 'date:story:teaser:field_test_datestamp_show_repeat_rule',
48547   'value' => 's:4:"show";',
48548 ))
48549 ->values(array(
48550   'name' => 'date:story:teaser:field_test_datetime_fromto',
48551   'value' => 's:4:"both";',
48552 ))
48553 ->values(array(
48554   'name' => 'date:story:teaser:field_test_datetime_multiple_from',
48555   'value' => 's:0:"";',
48556 ))
48557 ->values(array(
48558   'name' => 'date:story:teaser:field_test_datetime_multiple_number',
48559   'value' => 's:0:"";',
48560 ))
48561 ->values(array(
48562   'name' => 'date:story:teaser:field_test_datetime_multiple_to',
48563   'value' => 's:0:"";',
48564 ))
48565 ->values(array(
48566   'name' => 'date:story:teaser:field_test_datetime_show_repeat_rule',
48567   'value' => 's:4:"show";',
48568 ))
48569 ->values(array(
48570   'name' => 'date:story:teaser:field_test_date_fromto',
48571   'value' => 's:4:"both";',
48572 ))
48573 ->values(array(
48574   'name' => 'date:story:teaser:field_test_date_multiple_from',
48575   'value' => 's:0:"";',
48576 ))
48577 ->values(array(
48578   'name' => 'date:story:teaser:field_test_date_multiple_number',
48579   'value' => 's:0:"";',
48580 ))
48581 ->values(array(
48582   'name' => 'date:story:teaser:field_test_date_multiple_to',
48583   'value' => 's:0:"";',
48584 ))
48585 ->values(array(
48586   'name' => 'date:story:teaser:field_test_date_show_repeat_rule',
48587   'value' => 's:4:"show";',
48588 ))
48589 ->values(array(
48590   'name' => 'date_api_version',
48591   'value' => 's:3:"5.2";',
48592 ))
48593 ->values(array(
48594   'name' => 'date_default_timezone',
48595   'value' => 's:4:"3600";',
48596 ))
48597 ->values(array(
48598   'name' => 'date_first_day',
48599   'value' => 's:1:"4";',
48600 ))
48601 ->values(array(
48602   'name' => 'date_format_long',
48603   'value' => 's:24:"\L\O\N\G l, F j, Y - H:i";',
48604 ))
48605 ->values(array(
48606   'name' => 'date_format_medium',
48607   'value' => 's:27:"\M\E\D\I\U\M D, m/d/Y - H:i";',
48608 ))
48609 ->values(array(
48610   'name' => 'date_format_short',
48611   'value' => 's:22:"\S\H\O\R\T m/d/Y - H:i";',
48612 ))
48613 ->values(array(
48614   'name' => 'dblog_row_limit',
48615   'value' => 'i:10000;',
48616 ))
48617 ->values(array(
48618   'name' => 'drupal_badge_color',
48619   'value' => 's:12:"powered-blue";',
48620 ))
48621 ->values(array(
48622   'name' => 'drupal_badge_size',
48623   'value' => 's:5:"80x15";',
48624 ))
48625 ->values(array(
48626   'name' => 'drupal_http_request_fails',
48627   'value' => 'b:0;',
48628 ))
48629 ->values(array(
48630   'name' => 'drupal_private_key',
48631   'value' => 's:43:"6bTz0JLHTM1R1c7VtbZtbio47JygBoNuGuzS5G0JYWs";',
48632 ))
48633 ->values(array(
48634   'name' => 'error_level',
48635   'value' => 'i:1;',
48636 ))
48637 ->values(array(
48638   'name' => 'event_nodeapi_article',
48639   'value' => 's:5:"never";',
48640 ))
48641 ->values(array(
48642   'name' => 'event_nodeapi_company',
48643   'value' => 's:5:"never";',
48644 ))
48645 ->values(array(
48646   'name' => 'event_nodeapi_event',
48647   'value' => 's:3:"all";',
48648 ))
48649 ->values(array(
48650   'name' => 'event_timezone_display',
48651   'value' => 's:5:"event";',
48652 ))
48653 ->values(array(
48654   'name' => 'feed_default_items',
48655   'value' => 'i:10;',
48656 ))
48657 ->values(array(
48658   'name' => 'feed_item_length',
48659   'value' => 's:5:"title";',
48660 ))
48661 ->values(array(
48662   'name' => 'file_description_length',
48663   'value' => 'i:128;',
48664 ))
48665 ->values(array(
48666   'name' => 'file_description_type',
48667   'value' => 's:9:"textfield";',
48668 ))
48669 ->values(array(
48670   'name' => 'file_directory_path',
48671   'value' => 's:29:"core/modules/simpletest/files";',
48672 ))
48673 ->values(array(
48674   'name' => 'file_directory_temp',
48675   'value' => 's:10:"files/temp";',
48676 ))
48677 ->values(array(
48678   'name' => 'file_downloads',
48679   'value' => 's:1:"1";',
48680 ))
48681 ->values(array(
48682   'name' => 'file_icon_directory',
48683   'value' => 's:25:"sites/default/files/icons";',
48684 ))
48685 ->values(array(
48686   'name' => 'filter_allowed_protocols',
48687   '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";}',
48688 ))
48689 ->values(array(
48690   'name' => 'filter_html_1',
48691   'value' => 'i:1;',
48692 ))
48693 ->values(array(
48694   'name' => 'filter_html_help_1',
48695   'value' => 'i:1;',
48696 ))
48697 ->values(array(
48698   'name' => 'filter_html_nofollow_1',
48699   'value' => 'i:0;',
48700 ))
48701 ->values(array(
48702   'name' => 'filter_url_length_1',
48703   'value' => 's:2:"72";',
48704 ))
48705 ->values(array(
48706   'name' => 'form_build_id_article',
48707   'value' => 's:48:"form-t2zKJflpBD4rpYoGQH33ckjjWAYdo5lF3Hl1O_YnWyE";',
48708 ))
48709 ->values(array(
48710   'name' => 'form_build_id_company',
48711   'value' => 's:48:"form-jFw2agRukPxjG5dG-N6joZLyoxXmCoxTzua0HUciqK0";',
48712 ))
48713 ->values(array(
48714   'name' => 'forum_block_num_0',
48715   'value' => 's:1:"3";',
48716 ))
48717 ->values(array(
48718   'name' => 'forum_block_num_1',
48719   'value' => 's:1:"4";',
48720 ))
48721 ->values(array(
48722   'name' => 'forum_hot_topic',
48723   'value' => 's:2:"15";',
48724 ))
48725 ->values(array(
48726   'name' => 'forum_nav_vocabulary',
48727   'value' => 's:1:"7";',
48728 ))
48729 ->values(array(
48730   'name' => 'forum_order',
48731   'value' => 's:1:"1";',
48732 ))
48733 ->values(array(
48734   'name' => 'forum_per_page',
48735   'value' => 's:2:"25";',
48736 ))
48737 ->values(array(
48738   'name' => 'i18nstrings_allowed_formats',
48739   'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
48740 ))
48741 ->values(array(
48742   'name' => 'i18ntaxonomy_vocabulary',
48743   'value' => 'a:3:{i:1;s:1:"3";i:2;s:1:"2";i:3;s:1:"1";}',
48744 ))
48745 ->values(array(
48746   'name' => 'i18n_lock_node_article',
48747   'value' => 'i:1;',
48748 ))
48749 ->values(array(
48750   'name' => 'image_jpeg_quality',
48751   'value' => 'i:75;',
48752 ))
48753 ->values(array(
48754   'name' => 'image_toolkit',
48755   'value' => 's:2:"gd";',
48756 ))
48757 ->values(array(
48758   'name' => 'javascript_parsed',
48759   '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";}',
48760 ))
48761 ->values(array(
48762   'name' => 'language_content_type_article',
48763   'value' => 's:1:"2";',
48764 ))
48765 ->values(array(
48766   'name' => 'language_content_type_employee',
48767   'value' => 's:1:"2";',
48768 ))
48769 ->values(array(
48770   'name' => 'language_count',
48771   'value' => 'i:11;',
48772 ))
48773 ->values(array(
48774   'name' => 'language_default',
48775   '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:"";}',
48776 ))
48777 ->values(array(
48778   'name' => 'language_negotiation',
48779   'value' => 's:1:"1";',
48780 ))
48781 ->values(array(
48782   'name' => 'locale_cache_strings',
48783   'value' => 'i:1;',
48784 ))
48785 ->values(array(
48786   'name' => 'locale_js_directory',
48787   'value' => 's:9:"languages";',
48788 ))
48789 ->values(array(
48790   'name' => 'menu_default_node_menu',
48791   'value' => 's:10:"navigation";',
48792 ))
48793 ->values(array(
48794   'name' => 'menu_expanded',
48795   'value' => 'a:1:{i:0;s:15:"secondary-links";}',
48796 ))
48797 ->values(array(
48798   'name' => 'menu_masks',
48799   '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;}',
48800 ))
48801 ->values(array(
48802   'name' => 'menu_override_parent_selector',
48803   'value' => 'b:0;',
48804 ))
48805 ->values(array(
48806   'name' => 'minimum_word_size',
48807   'value' => 's:1:"3";',
48808 ))
48809 ->values(array(
48810   'name' => 'node_admin_theme',
48811   'value' => 'i:0;',
48812 ))
48813 ->values(array(
48814   'name' => 'node_options_article',
48815   'value' => 'a:1:{i:0;s:7:"promote";}',
48816 ))
48817 ->values(array(
48818   'name' => 'node_options_book',
48819   'value' => 'a:1:{i:0;s:6:"status";}',
48820 ))
48821 ->values(array(
48822   'name' => 'node_options_company',
48823   'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
48824 ))
48825 ->values(array(
48826   'name' => 'node_options_forum',
48827   'value' => 'a:1:{i:0;s:6:"status";}',
48828 ))
48829 ->values(array(
48830   'name' => 'node_options_test_event',
48831   'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
48832 ))
48833 ->values(array(
48834   'name' => 'node_options_test_page',
48835   'value' => 'a:3:{i:0;s:6:"status";i:1;s:7:"promote";i:2;s:6:"sticky";}',
48836 ))
48837 ->values(array(
48838   'name' => 'node_options_test_planet',
48839   'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
48840 ))
48841 ->values(array(
48842   'name' => 'node_options_test_story',
48843   'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
48844 ))
48845 ->values(array(
48846   'name' => 'node_preview',
48847   'value' => 'i:0;',
48848 ))
48849 ->values(array(
48850   'name' => 'node_rank_comments',
48851   'value' => 's:1:"5";',
48852 ))
48853 ->values(array(
48854   'name' => 'node_rank_promote',
48855   'value' => 's:1:"0";',
48856 ))
48857 ->values(array(
48858   'name' => 'node_rank_recent',
48859   'value' => 's:1:"0";',
48860 ))
48861 ->values(array(
48862   'name' => 'node_rank_relevance',
48863   'value' => 's:1:"2";',
48864 ))
48865 ->values(array(
48866   'name' => 'node_rank_sticky',
48867   'value' => 's:1:"8";',
48868 ))
48869 ->values(array(
48870   'name' => 'node_rank_views',
48871   'value' => 's:1:"1";',
48872 ))
48873 ->values(array(
48874   'name' => 'overlap_cjk',
48875   'value' => 'i:1;',
48876 ))
48877 ->values(array(
48878   'name' => 'page_compression',
48879   'value' => 's:1:"1";',
48880 ))
48881 ->values(array(
48882   'name' => 'preprocess_css',
48883   'value' => 'i:0;',
48884 ))
48885 ->values(array(
48886   'name' => 'preprocess_js',
48887   'value' => 'i:0;',
48888 ))
48889 ->values(array(
48890   'name' => 'search_cron_limit',
48891   'value' => 's:3:"100";',
48892 ))
48893 ->values(array(
48894   'name' => 'simpletest_clear_results',
48895   'value' => 'b:1;',
48896 ))
48897 ->values(array(
48898   'name' => 'simpletest_httpauth_method',
48899   'value' => 'i:1;',
48900 ))
48901 ->values(array(
48902   'name' => 'simpletest_httpauth_password',
48903   'value' => 'N;',
48904 ))
48905 ->values(array(
48906   'name' => 'simpletest_httpauth_username',
48907   'value' => 'N;',
48908 ))
48909 ->values(array(
48910   'name' => 'simpletest_verbose',
48911   'value' => 'b:1;',
48912 ))
48913 ->values(array(
48914   'name' => 'site_403',
48915   'value' => 's:4:"user";',
48916 ))
48917 ->values(array(
48918   'name' => 'site_404',
48919   'value' => 's:14:"page-not-found";',
48920 ))
48921 ->values(array(
48922   'name' => 'site_frontpage',
48923   'value' => 's:4:"node";',
48924 ))
48925 ->values(array(
48926   'name' => 'site_mail',
48927   'value' => 's:21:"site_mail@example.com";',
48928 ))
48929 ->values(array(
48930   'name' => 'site_name',
48931   'value' => 's:9:"site_name";',
48932 ))
48933 ->values(array(
48934   'name' => 'site_offline',
48935   'value' => 'i:0;',
48936 ))
48937 ->values(array(
48938   'name' => 'site_offline_message',
48939   'value' => 's:94:"Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
48940 ))
48941 ->values(array(
48942   'name' => 'site_slogan',
48943   'value' => 's:13:"Migrate rocks";',
48944 ))
48945 ->values(array(
48946   'name' => 'statistics_block_top_all_num',
48947   'value' => 's:1:"8";',
48948 ))
48949 ->values(array(
48950   'name' => 'statistics_block_top_day_num',
48951   'value' => 's:1:"7";',
48952 ))
48953 ->values(array(
48954   'name' => 'statistics_block_top_last_num',
48955   'value' => 's:1:"9";',
48956 ))
48957 ->values(array(
48958   'name' => 'statistics_count_content_views',
48959   'value' => 's:1:"1";',
48960 ))
48961 ->values(array(
48962   'name' => 'statistics_enable_access_log',
48963   'value' => 's:1:"0";',
48964 ))
48965 ->values(array(
48966   'name' => 'statistics_flush_accesslog_timer',
48967   'value' => 's:6:"259200";',
48968 ))
48969 ->values(array(
48970   'name' => 'syslog_facility',
48971   'value' => 'i:128;',
48972 ))
48973 ->values(array(
48974   'name' => 'syslog_identity',
48975   'value' => 's:6:"drupal";',
48976 ))
48977 ->values(array(
48978   'name' => 'taxonomy_override_selector',
48979   'value' => 'b:0;',
48980 ))
48981 ->values(array(
48982   'name' => 'taxonomy_terms_per_page_admin',
48983   'value' => 'i:100;',
48984 ))
48985 ->values(array(
48986   'name' => 'teaser_length',
48987   'value' => 'i:456;',
48988 ))
48989 ->values(array(
48990   'name' => 'theme_default',
48991   'value' => 's:7:"garland";',
48992 ))
48993 ->values(array(
48994   'name' => 'theme_settings',
48995   '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;}',
48996 ))
48997 ->values(array(
48998   'name' => 'update_check_frequency',
48999   'value' => 's:1:"7";',
49000 ))
49001 ->values(array(
49002   'name' => 'update_fetch_url',
49003   'value' => 's:41:"http://updates.drupal.org/release-history";',
49004 ))
49005 ->values(array(
49006   'name' => 'update_max_fetch_attempts',
49007   'value' => 'i:2;',
49008 ))
49009 ->values(array(
49010   'name' => 'update_notification_threshold',
49011   'value' => 's:3:"all";',
49012 ))
49013 ->values(array(
49014   'name' => 'update_notify_emails',
49015   'value' => 'a:0:{}',
49016 ))
49017 ->values(array(
49018   'name' => 'upload_article',
49019   'value' => 'b:0;',
49020 ))
49021 ->values(array(
49022   'name' => 'upload_company',
49023   'value' => 's:1:"1";',
49024 ))
49025 ->values(array(
49026   'name' => 'upload_employee',
49027   'value' => 'b:0;',
49028 ))
49029 ->values(array(
49030   'name' => 'upload_event',
49031   'value' => 'b:0;',
49032 ))
49033 ->values(array(
49034   'name' => 'upload_sponsor',
49035   'value' => 'b:0;',
49036 ))
49037 ->values(array(
49038   'name' => 'upload_story',
49039   'value' => 'b:1;',
49040 ))
49041 ->values(array(
49042   'name' => 'upload_test_event',
49043   'value' => 'b:0;',
49044 ))
49045 ->values(array(
49046   'name' => 'upload_test_page',
49047   'value' => 'b:0;',
49048 ))
49049 ->values(array(
49050   'name' => 'upload_test_planet',
49051   'value' => 'b:0;',
49052 ))
49053 ->values(array(
49054   'name' => 'upload_test_story',
49055   'value' => 'b:0;',
49056 ))
49057 ->values(array(
49058   'name' => 'user_block_max_list_count',
49059   'value' => 's:2:"10";',
49060 ))
49061 ->values(array(
49062   'name' => 'user_block_seconds_online',
49063   'value' => 's:3:"900";',
49064 ))
49065 ->values(array(
49066   'name' => 'user_block_whois_new_count',
49067   'value' => 's:1:"5";',
49068 ))
49069 ->values(array(
49070   'name' => 'user_email_verification',
49071   'value' => 'i:0;',
49072 ))
49073 ->values(array(
49074   'name' => 'user_mail_password_reset_body',
49075   '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.\";",
49076 ))
49077 ->values(array(
49078   'name' => 'user_mail_password_reset_subject',
49079   'value' => 's:52:"Replacement login information for !username at !site";',
49080 ))
49081 ->values(array(
49082   'name' => 'user_mail_register_admin_created_body',
49083   '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\";",
49084 ))
49085 ->values(array(
49086   'name' => 'user_mail_register_admin_created_subject',
49087   'value' => 's:52:"An administrator created an account for you at !site";',
49088 ))
49089 ->values(array(
49090   'name' => 'user_mail_register_no_approval_required_body',
49091   '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\";",
49092 ))
49093 ->values(array(
49094   'name' => 'user_mail_register_no_approval_required_subject',
49095   'value' => 's:38:"Account details for !username at !site";',
49096 ))
49097 ->values(array(
49098   'name' => 'user_mail_register_pending_approval_body',
49099   '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\";",
49100 ))
49101 ->values(array(
49102   'name' => 'user_mail_register_pending_approval_subject',
49103   'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
49104 ))
49105 ->values(array(
49106   'name' => 'user_mail_status_activated_body',
49107   '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\";",
49108 ))
49109 ->values(array(
49110   'name' => 'user_mail_status_activated_notify',
49111   'value' => 'i:0;',
49112 ))
49113 ->values(array(
49114   'name' => 'user_mail_status_activated_subject',
49115   'value' => 's:49:"Account details for !username at !site (approved)";',
49116 ))
49117 ->values(array(
49118   'name' => 'user_mail_status_blocked_body',
49119   'value' => "s:51:\"!username,\n\nYour account on !site has been blocked.\";",
49120 ))
49121 ->values(array(
49122   'name' => 'user_mail_status_blocked_notify',
49123   'value' => 'i:1;',
49124 ))
49125 ->values(array(
49126   'name' => 'user_mail_status_blocked_subject',
49127   'value' => 's:48:"Account details for !username at !site (blocked)";',
49128 ))
49129 ->values(array(
49130   'name' => 'user_mail_status_deleted_body',
49131   'value' => "s:51:\"!username,\n\nYour account on !site has been deleted.\";",
49132 ))
49133 ->values(array(
49134   'name' => 'user_mail_status_deleted_subject',
49135   'value' => 's:48:"Account details for !username at !site (deleted)";',
49136 ))
49137 ->values(array(
49138   'name' => 'user_register',
49139   'value' => 'i:0;',
49140 ))
49141 ->values(array(
49142   'name' => 'user_signatures',
49143   'value' => 's:1:"1";',
49144 ))
49145 ->execute();
49146
49147 $connection->schema()->createTable('vocabulary', array(
49148   'fields' => array(
49149     'vid' => array(
49150       'type' => 'serial',
49151       'not null' => TRUE,
49152       'size' => 'normal',
49153       'unsigned' => TRUE,
49154     ),
49155     'name' => array(
49156       'type' => 'varchar',
49157       'not null' => TRUE,
49158       'length' => '255',
49159       'default' => '',
49160     ),
49161     'description' => array(
49162       'type' => 'text',
49163       'not null' => FALSE,
49164       'size' => 'normal',
49165     ),
49166     'help' => array(
49167       'type' => 'varchar',
49168       'not null' => TRUE,
49169       'length' => '255',
49170       'default' => '',
49171     ),
49172     'relations' => array(
49173       'type' => 'int',
49174       'not null' => TRUE,
49175       'size' => 'normal',
49176       'default' => '0',
49177       'unsigned' => TRUE,
49178     ),
49179     'hierarchy' => array(
49180       'type' => 'int',
49181       'not null' => TRUE,
49182       'size' => 'normal',
49183       'default' => '0',
49184       'unsigned' => TRUE,
49185     ),
49186     'multiple' => array(
49187       'type' => 'int',
49188       'not null' => TRUE,
49189       'size' => 'normal',
49190       'default' => '0',
49191       'unsigned' => TRUE,
49192     ),
49193     'required' => array(
49194       'type' => 'int',
49195       'not null' => TRUE,
49196       'size' => 'normal',
49197       'default' => '0',
49198       'unsigned' => TRUE,
49199     ),
49200     'tags' => array(
49201       'type' => 'int',
49202       'not null' => TRUE,
49203       'size' => 'normal',
49204       'default' => '0',
49205       'unsigned' => TRUE,
49206     ),
49207     'module' => array(
49208       'type' => 'varchar',
49209       'not null' => TRUE,
49210       'length' => '255',
49211       'default' => '',
49212     ),
49213     'weight' => array(
49214       'type' => 'int',
49215       'not null' => TRUE,
49216       'size' => 'normal',
49217       'default' => '0',
49218     ),
49219     'language' => array(
49220       'type' => 'varchar',
49221       'not null' => TRUE,
49222       'length' => '12',
49223       'default' => '',
49224     ),
49225   ),
49226   'primary key' => array(
49227     'vid',
49228   ),
49229   'mysql_character_set' => 'utf8',
49230 ));
49231
49232 $connection->insert('vocabulary')
49233 ->fields(array(
49234   'vid',
49235   'name',
49236   'description',
49237   'help',
49238   'relations',
49239   'hierarchy',
49240   'multiple',
49241   'required',
49242   'tags',
49243   'module',
49244   'weight',
49245   'language',
49246 ))
49247 ->values(array(
49248   'vid' => '1',
49249   'name' => 'vocabulary 1 (i=0)',
49250   'description' => 'description of vocabulary 1 (i=0)',
49251   'help' => '',
49252   'relations' => '1',
49253   'hierarchy' => '0',
49254   'multiple' => '0',
49255   'required' => '0',
49256   'tags' => '0',
49257   'module' => 'taxonomy',
49258   'weight' => '4',
49259   'language' => '',
49260 ))
49261 ->values(array(
49262   'vid' => '2',
49263   'name' => 'vocabulary 2 (i=1)',
49264   'description' => 'description of vocabulary 2 (i=1)',
49265   'help' => '',
49266   'relations' => '1',
49267   'hierarchy' => '1',
49268   'multiple' => '1',
49269   'required' => '0',
49270   'tags' => '1',
49271   'module' => 'taxonomy',
49272   'weight' => '5',
49273   'language' => 'fr',
49274 ))
49275 ->values(array(
49276   'vid' => '3',
49277   'name' => 'vocabulary 3 (i=2)',
49278   'description' => 'description of vocabulary 3 (i=2)',
49279   'help' => '',
49280   'relations' => '1',
49281   'hierarchy' => '2',
49282   'multiple' => '1',
49283   'required' => '0',
49284   'tags' => '0',
49285   'module' => 'taxonomy',
49286   'weight' => '6',
49287   'language' => '',
49288 ))
49289 ->values(array(
49290   'vid' => '4',
49291   'name' => 'Tags',
49292   'description' => 'Tags Vocabulary',
49293   'help' => '',
49294   'relations' => '1',
49295   'hierarchy' => '0',
49296   'multiple' => '0',
49297   'required' => '1',
49298   'tags' => '0',
49299   'module' => 'taxonomy',
49300   'weight' => '0',
49301   'language' => '',
49302 ))
49303 ->values(array(
49304   'vid' => '5',
49305   'name' => 'vocabulary name much longer than thirty two characters',
49306   'description' => 'description of vocabulary name much longer than thirty two characters',
49307   'help' => '',
49308   'relations' => '1',
49309   'hierarchy' => '3',
49310   'multiple' => '1',
49311   'required' => '0',
49312   'tags' => '0',
49313   'module' => 'taxonomy',
49314   'weight' => '7',
49315   'language' => '',
49316 ))
49317 ->values(array(
49318   'vid' => '6',
49319   'name' => 'Type',
49320   'description' => '',
49321   'help' => '',
49322   'relations' => '1',
49323   'hierarchy' => '0',
49324   'multiple' => '0',
49325   'required' => '0',
49326   'tags' => '0',
49327   'module' => 'taxonomy',
49328   'weight' => '0',
49329   'language' => '',
49330 ))
49331 ->values(array(
49332   'vid' => '7',
49333   'name' => 'Forums',
49334   'description' => '',
49335   'help' => '',
49336   'relations' => '1',
49337   'hierarchy' => '0',
49338   'multiple' => '0',
49339   'required' => '0',
49340   'tags' => '0',
49341   'module' => 'taxonomy',
49342   'weight' => '0',
49343   'language' => '',
49344 ))
49345 ->execute();
49346
49347 $connection->schema()->createTable('vocabulary_node_types', array(
49348   'fields' => array(
49349     'vid' => array(
49350       'type' => 'int',
49351       'not null' => TRUE,
49352       'size' => 'normal',
49353       'default' => '0',
49354       'unsigned' => TRUE,
49355     ),
49356     'type' => array(
49357       'type' => 'varchar',
49358       'not null' => TRUE,
49359       'length' => '32',
49360       'default' => '',
49361     ),
49362   ),
49363   'primary key' => array(
49364     'vid',
49365     'type',
49366   ),
49367   'mysql_character_set' => 'utf8',
49368 ));
49369
49370 $connection->insert('vocabulary_node_types')
49371 ->fields(array(
49372   'vid',
49373   'type',
49374 ))
49375 ->values(array(
49376   'vid' => '4',
49377   'type' => 'article',
49378 ))
49379 ->values(array(
49380   'vid' => '7',
49381   'type' => 'forum',
49382 ))
49383 ->values(array(
49384   'vid' => '4',
49385   'type' => 'page',
49386 ))
49387 ->values(array(
49388   'vid' => '6',
49389   'type' => 'sponsor',
49390 ))
49391 ->values(array(
49392   'vid' => '1',
49393   'type' => 'story',
49394 ))
49395 ->values(array(
49396   'vid' => '2',
49397   'type' => 'story',
49398 ))
49399 ->values(array(
49400   'vid' => '3',
49401   'type' => 'story',
49402 ))
49403 ->execute();
49404
49405 $connection->schema()->createTable('watchdog', array(
49406   'fields' => array(
49407     'wid' => array(
49408       'type' => 'serial',
49409       'not null' => TRUE,
49410       'size' => 'normal',
49411     ),
49412     'uid' => array(
49413       'type' => 'int',
49414       'not null' => TRUE,
49415       'size' => 'normal',
49416       'default' => '0',
49417     ),
49418     'type' => array(
49419       'type' => 'varchar',
49420       'not null' => TRUE,
49421       'length' => '16',
49422       'default' => '',
49423     ),
49424     'message' => array(
49425       'type' => 'text',
49426       'not null' => TRUE,
49427       'size' => 'normal',
49428     ),
49429     'variables' => array(
49430       'type' => 'text',
49431       'not null' => TRUE,
49432       'size' => 'normal',
49433     ),
49434     'severity' => array(
49435       'type' => 'int',
49436       'not null' => TRUE,
49437       'size' => 'normal',
49438       'default' => '0',
49439       'unsigned' => TRUE,
49440     ),
49441     'link' => array(
49442       'type' => 'varchar',
49443       'not null' => TRUE,
49444       'length' => '255',
49445       'default' => '',
49446     ),
49447     'location' => array(
49448       'type' => 'text',
49449       'not null' => TRUE,
49450       'size' => 'normal',
49451     ),
49452     'referer' => array(
49453       'type' => 'text',
49454       'not null' => FALSE,
49455       'size' => 'normal',
49456     ),
49457     'hostname' => array(
49458       'type' => 'varchar',
49459       'not null' => TRUE,
49460       'length' => '128',
49461       'default' => '',
49462     ),
49463     'timestamp' => array(
49464       'type' => 'int',
49465       'not null' => TRUE,
49466       'size' => 'normal',
49467       'default' => '0',
49468     ),
49469   ),
49470   'primary key' => array(
49471     'wid',
49472   ),
49473   'mysql_character_set' => 'utf8',
49474 ));