From 74d31f2de3274b6bb90d58e06d25f12f72edc82f Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Wed, 23 Mar 2016 23:57:33 +0000
Subject: [PATCH] Issue #2670170 by quietone, vasi: Add i18n string & variable
 data to d6_dump

---
 .../migrate_drupal/tests/fixtures/drupal6.php | 20137 ++++++++++++----
 1 file changed, 16048 insertions(+), 4089 deletions(-)

diff --git a/core/modules/migrate_drupal/tests/fixtures/drupal6.php b/core/modules/migrate_drupal/tests/fixtures/drupal6.php
index 8f883003afd8..1ca67a5c96f4 100644
--- a/core/modules/migrate_drupal/tests/fixtures/drupal6.php
+++ b/core/modules/migrate_drupal/tests/fixtures/drupal6.php
@@ -8038,7363 +8038,18620 @@
   'mysql_character_set' => 'utf8',
 ));
 
-$connection->schema()->createTable('imagecache_action', array(
-  'fields' => array(
-    'actionid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'presetid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'action' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'data' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'actionid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('imagecache_action')
+$connection->insert('history')
 ->fields(array(
-  'actionid',
-  'presetid',
-  'weight',
-  'module',
-  'action',
-  'data',
-))
-->values(array(
-  'actionid' => '3',
-  'presetid' => '1',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_scale_and_crop',
-  'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
-))
-->values(array(
-  'actionid' => '4',
-  'presetid' => '2',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_crop',
-  '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";}',
+  'uid',
+  'nid',
+  'timestamp',
 ))
 ->values(array(
-  'actionid' => '5',
-  'presetid' => '2',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_resize',
-  'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
+  'uid' => '1',
+  'nid' => '3',
+  'timestamp' => '1457654737',
 ))
 ->values(array(
-  'actionid' => '6',
-  'presetid' => '2',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_rotate',
-  'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
+  'uid' => '1',
+  'nid' => '9',
+  'timestamp' => '1457655127',
 ))
 ->execute();
 
-$connection->schema()->createTable('imagecache_preset', array(
+$connection->schema()->createTable('i18n_blocks', array(
   'fields' => array(
-    'presetid' => array(
+    'ibid' => array(
       'type' => 'serial',
       'not null' => TRUE,
       'size' => 'normal',
       'unsigned' => TRUE,
     ),
-    'presetname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'presetid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('imagecache_preset')
-->fields(array(
-  'presetid',
-  'presetname',
-))
-->values(array(
-  'presetid' => '1',
-  'presetname' => 'slackjaw_boys',
-))
-->values(array(
-  'presetid' => '2',
-  'presetname' => 'big_blue_cheese',
-))
-->execute();
-
-$connection->schema()->createTable('languages', array(
-  'fields' => array(
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'name' => array(
+    'module' => array(
       'type' => 'varchar',
       'not null' => TRUE,
       'length' => '64',
-      'default' => '',
     ),
-    'native' => array(
+    'delta' => array(
       'type' => 'varchar',
       'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'direction' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'enabled' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'plurals' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
+      'length' => '32',
       'default' => '0',
     ),
-    'formula' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'domain' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'prefix' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'weight' => array(
+    'type' => array(
       'type' => 'int',
       'not null' => TRUE,
       'size' => 'normal',
       'default' => '0',
     ),
-    'javascript' => array(
+    'language' => array(
       'type' => 'varchar',
       'not null' => TRUE,
-      'length' => '32',
+      'length' => '12',
       'default' => '',
     ),
   ),
   'primary key' => array(
-    'language',
-  ),
-  'indexes' => array(
-    'list' => array(
-      'weight',
-      'name',
-    ),
+    'ibid',
   ),
   'mysql_character_set' => 'utf8',
 ));
 
-$connection->insert('languages')
-->fields(array(
-  'language',
-  'name',
-  'native',
-  'direction',
-  'enabled',
-  'plurals',
-  'formula',
-  'domain',
-  'prefix',
-  'weight',
-  'javascript',
-))
-->values(array(
-  'language' => 'en',
-  'name' => 'English',
-  'native' => 'English',
-  'direction' => '0',
-  'enabled' => '1',
-  'plurals' => '0',
-  'formula' => '',
-  'domain' => '',
-  'prefix' => '',
-  'weight' => '0',
-  'javascript' => '',
-))
-->values(array(
-  'language' => 'fr',
-  'name' => 'French',
-  'native' => 'Français',
-  'direction' => '0',
-  'enabled' => '1',
-  'plurals' => '2',
-  'formula' => '($n>1)',
-  'domain' => '',
-  'prefix' => 'fr',
-  'weight' => '0',
-  'javascript' => '',
-))
-->execute();
-
-$connection->schema()->createTable('locales_source', array(
+$connection->schema()->createTable('i18n_strings', array(
   'fields' => array(
     'lid' => array(
-      'type' => 'serial',
+      'type' => 'int',
       'not null' => TRUE,
       'size' => 'normal',
+      'default' => '0',
     ),
-    'location' => array(
+    'objectid' => array(
       'type' => 'varchar',
       'not null' => TRUE,
       'length' => '255',
       'default' => '',
     ),
-    'textgroup' => array(
+    'type' => array(
       'type' => 'varchar',
       'not null' => TRUE,
       'length' => '255',
-      'default' => 'default',
+      'default' => '',
     ),
-    'source' => array(
-      'type' => 'blob',
+    'property' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'objectindex' => array(
+      'type' => 'int',
       'not null' => TRUE,
       'size' => 'normal',
+      'default' => '0',
     ),
-    'version' => array(
-      'type' => 'varchar',
+    'format' => array(
+      'type' => 'int',
       'not null' => TRUE,
-      'length' => '20',
-      'default' => 'none',
+      'size' => 'normal',
+      'default' => '0',
     ),
   ),
   'primary key' => array(
     'lid',
   ),
-  'indexes' => array(
-    'source' => array(
-      array(
-        'source',
-        '30',
-      ),
-    ),
-  ),
   'mysql_character_set' => 'utf8',
 ));
 
-$connection->insert('locales_source')
+$connection->insert('i18n_strings')
 ->fields(array(
   'lid',
-  'location',
-  'textgroup',
-  'source',
-  'version',
+  'objectid',
+  'type',
+  'property',
+  'objectindex',
+  'format',
 ))
 ->values(array(
-  'lid' => '1',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'Unspecified error',
-  'version' => 'none',
+  'lid' => '504',
+  'objectid' => 'profile_color',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '2',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'An error occurred. \n@uri\n@text',
-  'version' => 'none',
+  'lid' => '505',
+  'objectid' => 'profile_color',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '3',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'An error occurred. \n@uri\n(no information available).',
-  'version' => 'none',
+  'lid' => '506',
+  'objectid' => '',
+  'type' => 'category',
+  'property' => '',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '4',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'An HTTP error @status occurred. \n@uri',
-  'version' => 'none',
+  'lid' => '507',
+  'objectid' => 'profile_biography',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '5',
-  'location' => 'content.module:21',
-  'textgroup' => 'default',
-  '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.)',
-  'version' => 'none',
+  'lid' => '508',
+  'objectid' => 'profile_biography',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '6',
-  'location' => 'content.module:22',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '509',
+  'objectid' => 'profile_sell_address',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '7',
-  'location' => 'content.module:23',
-  'textgroup' => 'default',
-  '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:',
-  'version' => 'none',
+  'lid' => '510',
+  'objectid' => 'profile_sell_address',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '8',
-  'location' => 'content.module:25',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '511',
+  'objectid' => '',
+  'type' => 'category',
+  'property' => '',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '9',
-  'location' => 'content.module:26',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'lid' => '512',
+  'objectid' => 'profile_sold_to',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '10',
-  'location' => 'content.module:27',
-  'textgroup' => 'default',
-  '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).',
-  'version' => 'none',
+  'lid' => '513',
+  'objectid' => 'profile_sold_to',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '11',
-  'location' => 'content.module:28',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'lid' => '514',
+  'objectid' => 'profile_sold_to',
+  'type' => 'field',
+  'property' => 'options',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '12',
-  'location' => 'content.module:29',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '515',
+  'objectid' => '',
+  'type' => 'category',
+  'property' => '',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '13',
-  'location' => 'content.module:31',
-  'textgroup' => 'default',
-  '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>.',
-  'version' => 'none',
+  'lid' => '516',
+  'objectid' => 'profile_bands',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '14',
-  'location' => 'theme/theme.inc:111',
-  'textgroup' => 'default',
-  'source' => "Configure how this content type's fields and field labels should be displayed when it's viewed in teaser and full-page mode.",
-  'version' => 'none',
+  'lid' => '517',
+  'objectid' => 'profile_bands',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '15',
-  'location' => 'theme/theme.inc:114',
-  'textgroup' => 'default',
-  'source' => "Configure how this content type's fields should be displayed when it's rendered in the following contexts.",
-  'version' => 'none',
+  'lid' => '518',
+  'objectid' => 'profile_birthdate',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '16',
-  'location' => 'content.module:48',
-  'textgroup' => 'default',
-  'source' => 'Control the order of fields in the input form.',
-  'version' => 'none',
+  'lid' => '519',
+  'objectid' => 'profile_birthdate',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '17',
-  'location' => 'content.module:486,  modules/content_multigroup/content_multigroup.module:1422',
-  'textgroup' => 'default',
-  'source' => 'This field is required.',
-  'version' => 'none',
+  'lid' => '520',
+  'objectid' => 'profile_love_migrations',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '18',
-  'location' => 'content.module:490',
-  'textgroup' => 'default',
-  'source' => '!title: !required',
-  'version' => 'none',
+  'lid' => '521',
+  'objectid' => 'profile_love_migrations',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '19',
-  'location' => 'content.module:493,  modules/content_multigroup/content_multigroup.module:1434',
-  'textgroup' => 'default',
-  'source' => 'Order',
-  'version' => 'none',
+  'lid' => '522',
+  'objectid' => 'profile_blog',
+  'type' => 'field',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '20',
-  'location' => 'content.module:1640',
-  'textgroup' => 'default',
-  'source' => 'RSS Item',
-  'version' => 'none',
+  'lid' => '523',
+  'objectid' => 'profile_blog',
+  'type' => 'field',
+  'property' => 'explanation',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '21',
-  'location' => 'content.module:1897',
-  'textgroup' => 'default',
-  'source' => 'Search Index',
-  'version' => 'none',
+  'lid' => '524',
+  'objectid' => '1',
+  'type' => 'block',
+  'property' => 'title',
+  'objectindex' => '1',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '22',
-  'location' => 'content.module:1901',
-  'textgroup' => 'default',
-  'source' => 'Search Result',
-  'version' => 'none',
+  'lid' => '525',
+  'objectid' => '1',
+  'type' => 'block',
+  'property' => 'body',
+  'objectindex' => '1',
+  'format' => '2',
 ))
 ->values(array(
-  'lid' => '23',
-  'location' => 'content.module:2363',
-  'textgroup' => 'default',
-  'source' => 'Language',
-  'version' => 'none',
+  'lid' => '526',
+  'objectid' => '2',
+  'type' => 'block',
+  'property' => 'title',
+  'objectindex' => '2',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '24',
-  'location' => 'content.module:2377',
-  'textgroup' => 'default',
-  'source' => 'Taxonomy',
-  'version' => 'none',
+  'lid' => '527',
+  'objectid' => '2',
+  'type' => 'block',
+  'property' => 'body',
+  'objectindex' => '2',
+  'format' => '2',
 ))
 ->values(array(
-  'lid' => '25',
-  'location' => 'content.module:2408',
-  'textgroup' => 'default',
-  'source' => 'File attachments',
-  'version' => 'none',
+  'lid' => '528',
+  'objectid' => '4',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '4',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '26',
-  'location' => 'content.module:600',
-  'textgroup' => 'default',
-  'source' => 'Updating field type %type with module %module.',
-  'version' => 'none',
+  'lid' => '529',
+  'objectid' => '1',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '1',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '27',
-  'location' => 'content.module:607',
-  'textgroup' => 'default',
-  'source' => 'Updating widget type %type with module %module.',
-  'version' => 'none',
+  'lid' => '530',
+  'objectid' => '2',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '2',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '28',
-  'location' => 'content.module:63',
-  'textgroup' => 'default',
-  'source' => 'Use PHP input for field settings (dangerous - grant with care)',
-  'version' => 'none',
+  'lid' => '531',
+  'objectid' => '3',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '3',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '29',
-  'location' => 'content.module:104',
-  'textgroup' => 'default',
-  'source' => 'Manage fields',
-  'version' => 'none',
+  'lid' => '532',
+  'objectid' => '5',
+  'type' => 'vocabulary',
+  'property' => 'name',
+  'objectindex' => '5',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '30',
-  'location' => 'content.module:113',
-  'textgroup' => 'default',
-  'source' => 'Display fields',
-  'version' => 'none',
+  'lid' => '533',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '31',
-  'location' => 'content.module:143',
-  'textgroup' => 'default',
-  'source' => 'General',
-  'version' => 'none',
+  'lid' => '534',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '32',
-  'location' => 'content.module:149',
-  'textgroup' => 'default',
-  'source' => 'Advanced',
-  'version' => 'none',
+  'lid' => '535',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '33',
-  'location' => 'content.module:144',
-  'textgroup' => 'default',
-  'source' => 'Remove field',
-  'version' => 'none',
+  'lid' => '536',
+  'objectid' => 'article',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '34',
-  'location' => 'content.info:0,  includes/content.rules.inc:19;200,  includes/views/content.views.inc:178;254',
-  'textgroup' => 'default',
-  'source' => 'Content',
-  'version' => 'none',
+  'lid' => '537',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '35',
-  'location' => 'content.info:0',
-  'textgroup' => 'default',
-  'source' => 'Allows administrators to define new content types.',
-  'version' => 'none',
+  'lid' => '538',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '36',
-  'location' => 'content.info:0,  modules/content_copy/content_copy.info:0,  modules/content_multigroup/content_multigroup.info:0,  modules/content_permissions/content_permissions.info:0',
-  'textgroup' => 'default',
-  'source' => 'CCK',
-  'version' => 'none',
+  'lid' => '539',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '37',
-  'location' => 'modules/text/text.module:41,  modules/text/text.info:0',
-  'textgroup' => 'default',
-  'source' => 'Text',
-  'version' => 'none',
+  'lid' => '540',
+  'objectid' => 'company',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '38',
-  'location' => 'examples/example_field.php:178',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '541',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '39',
-  'location' => 'examples/example_field.php:484',
-  'textgroup' => 'default',
-  'source' => 'Text area',
-  'version' => 'none',
+  'lid' => '542',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '40',
-  'location' => 'includes/content.admin.inc:148;164;790,  modules/fieldgroup/fieldgroup.module:236',
-  'textgroup' => 'default',
-  'source' => 'Remove',
-  'version' => 'none',
+  'lid' => '543',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '41',
-  'location' => 'content.module:1868',
-  'textgroup' => 'default',
-  'source' => 'Basic',
-  'version' => 'none',
+  'lid' => '544',
+  'objectid' => 'employee',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '42',
-  'location' => 'content.module:1635 modules/nodereference/nodereference.module:215',
-  'textgroup' => 'default',
-  'source' => 'Teaser',
-  'version' => 'none',
+  'lid' => '545',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '43',
-  'location' => 'content.module:1636 modules/nodereference/nodereference.module:210',
-  'textgroup' => 'default',
-  'source' => 'Full node',
-  'version' => 'none',
+  'lid' => '546',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '44',
-  'location' => 'content.module:1881;1884',
-  'textgroup' => 'default',
-  'source' => 'RSS',
-  'version' => 'none',
+  'lid' => '547',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '45',
-  'location' => 'content.module:1894',
-  'textgroup' => 'default',
-  'source' => 'Search',
-  'version' => 'none',
+  'lid' => '548',
+  'objectid' => 'sponsor',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '46',
-  'location' => 'content.module:2349;2356',
-  'textgroup' => 'default',
-  'source' => 'Node module form.',
-  'version' => 'none',
+  'lid' => '549',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '47',
-  'location' => 'content.module:2364',
-  'textgroup' => 'default',
-  'source' => 'Locale module form.',
-  'version' => 'none',
+  'lid' => '550',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '48',
-  'location' => 'content.module:2370',
-  'textgroup' => 'default',
-  'source' => 'Menu settings',
-  'version' => 'none',
+  'lid' => '551',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '49',
-  'location' => 'content.module:2371',
-  'textgroup' => 'default',
-  'source' => 'Menu module form.',
-  'version' => 'none',
+  'lid' => '552',
+  'objectid' => 'story',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '50',
-  'location' => 'content.module:2378',
-  'textgroup' => 'default',
-  'source' => 'Taxonomy module form.',
-  'version' => 'none',
+  'lid' => '553',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '51',
-  'location' => 'content.module:2384',
-  'textgroup' => 'default',
-  'source' => 'Book',
-  'version' => 'none',
+  'lid' => '554',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '52',
-  'location' => 'content.module:2385',
-  'textgroup' => 'default',
-  'source' => 'Book module form.',
-  'version' => 'none',
+  'lid' => '555',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '53',
-  'location' => 'content.module:2391',
-  'textgroup' => 'default',
-  'source' => 'Poll title',
-  'version' => 'none',
+  'lid' => '556',
+  'objectid' => 'test_event',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '54',
-  'location' => 'content.module:2392',
-  'textgroup' => 'default',
-  'source' => 'Poll module title.',
-  'version' => 'none',
+  'lid' => '558',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '55',
-  'location' => 'content.module:2396',
-  'textgroup' => 'default',
-  'source' => 'Poll choices',
-  'version' => 'none',
+  'lid' => '559',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '56',
-  'location' => 'content.module:2397',
-  'textgroup' => 'default',
-  'source' => 'Poll module choices.',
-  'version' => 'none',
+  'lid' => '560',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '57',
-  'location' => 'content.module:2401',
-  'textgroup' => 'default',
-  'source' => 'Poll settings',
-  'version' => 'none',
+  'lid' => '561',
+  'objectid' => 'test_page',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '58',
-  'location' => 'content.module:2402',
-  'textgroup' => 'default',
-  'source' => 'Poll module settings.',
-  'version' => 'none',
+  'lid' => '562',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '59',
-  'location' => 'content.module:2409',
-  'textgroup' => 'default',
-  'source' => 'Upload module form.',
-  'version' => 'none',
+  'lid' => '563',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '60',
-  'location' => 'content.module:557;564;0 includes/content.crud.inc:591;629',
-  'textgroup' => 'default',
-  'source' => 'content',
-  'version' => 'none',
+  'lid' => '564',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '61',
-  'location' => 'content.module:103 modules/content_copy/content_copy.module:125',
-  'textgroup' => 'default',
-  'source' => 'Fields',
-  'version' => 'none',
+  'lid' => '565',
+  'objectid' => 'test_planet',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '62',
-  'location' => 'content.install:236',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'lid' => '566',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'name',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '63',
-  'location' => 'content.install:239',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '567',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'title',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '64',
-  'location' => 'content.install:244',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '568',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'body',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '65',
-  'location' => 'content.install:251',
-  'textgroup' => 'default',
-  'source' => 'Some updates are still pending. Please return to <a href="@update-php">update.php</a> and run the remaining updates.',
-  'version' => 'none',
+  'lid' => '569',
+  'objectid' => 'test_story',
+  'type' => 'type',
+  'property' => 'description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '66',
-  'location' => '(duplicate) content.install:10',
-  'textgroup' => 'default',
-  'source' => 'CCK - No Views integration',
-  'version' => 'none',
+  'lid' => '570',
+  'objectid' => 'story-field_test_exclude_unset',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '67',
-  'location' => '(duplicate) content.install:11',
-  'textgroup' => 'default',
-  'source' => 'CCK integration with Views module requires Views 6.x-2.0-rc2 or greater.',
-  'version' => 'none',
+  'lid' => '571',
+  'objectid' => 'story-field_test_exclude_unset',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '68',
-  'location' => 'includes/content.admin.inc:16;212',
-  'textgroup' => 'default',
-  'source' => 'Name',
-  'version' => 'none',
+  'lid' => '572',
+  'objectid' => 'story-field_test_two',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '69',
-  'location' => 'includes/content.admin.inc:16;212',
-  'textgroup' => 'default',
-  'source' => 'Type',
-  'version' => 'none',
+  'lid' => '573',
+  'objectid' => 'story-field_test_two',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '70',
-  'location' => 'includes/content.admin.inc:16 modules/fieldgroup/fieldgroup.module:156',
-  'textgroup' => 'default',
-  'source' => 'Description',
-  'version' => 'none',
+  'lid' => '574',
+  'objectid' => 'story-field_test',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '71',
-  'location' => 'includes/content.admin.inc:16;212',
-  'textgroup' => 'default',
-  'source' => 'Operations',
-  'version' => 'none',
+  'lid' => '575',
+  'objectid' => 'story-field_test',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '72',
-  'location' => 'includes/content.admin.inc:30',
-  'textgroup' => 'default',
-  'source' => 'edit',
-  'version' => 'none',
+  'lid' => '576',
+  'objectid' => 'story-field_test_three',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '73',
-  'location' => 'includes/content.admin.inc:34',
-  'textgroup' => 'default',
-  'source' => 'manage fields',
-  'version' => 'none',
+  'lid' => '577',
+  'objectid' => 'story-field_test_three',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '74',
-  'location' => 'includes/content.admin.inc:37',
-  'textgroup' => 'default',
-  'source' => 'delete',
-  'version' => 'none',
+  'lid' => '578',
+  'objectid' => 'story-field_test_four',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '75',
-  'location' => 'includes/content.admin.inc:48',
-  'textgroup' => 'default',
-  'source' => 'No content types available.',
-  'version' => 'none',
+  'lid' => '579',
+  'objectid' => 'story-field_test_four',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '76',
-  'location' => 'includes/content.admin.inc:55',
-  'textgroup' => 'default',
-  'source' => '» Add a new content type',
-  'version' => 'none',
+  'lid' => '580',
+  'objectid' => 'story-field_test_identical1',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '77',
-  'location' => 'includes/content.admin.inc:64;602;856',
-  'textgroup' => 'default',
-  'source' => 'Field name',
-  'version' => 'none',
+  'lid' => '581',
+  'objectid' => 'story-field_test_identical1',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '78',
-  'location' => 'includes/content.admin.inc:64;632;643;862',
-  'textgroup' => 'default',
-  'source' => 'Field type',
-  'version' => 'none',
+  'lid' => '582',
+  'objectid' => 'story-field_test_identical2',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '79',
-  'location' => 'includes/content.admin.inc:64',
-  'textgroup' => 'default',
-  'source' => 'Used in',
-  'version' => 'none',
+  'lid' => '583',
+  'objectid' => 'story-field_test_identical2',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '80',
-  'location' => 'includes/content.admin.inc:71',
-  'textgroup' => 'default',
-  'source' => '@field_name (Locked)',
-  'version' => 'none',
+  'lid' => '584',
+  'objectid' => 'story-field_test_email',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '81',
-  'location' => 'includes/content.admin.inc:87',
-  'textgroup' => 'default',
-  'source' => 'No fields have been defined for any content type yet.',
-  'version' => 'none',
+  'lid' => '585',
+  'objectid' => 'story-field_test_email',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '82',
-  'location' => 'includes/content.admin.inc:106',
-  'textgroup' => 'default',
-  'source' => 'This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled.',
-  'version' => 'none',
+  'lid' => '586',
+  'objectid' => 'story-field_test_link',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '83',
-  'location' => 'includes/content.admin.inc:108',
-  'textgroup' => 'default',
-  'source' => '!field (!field_name) is an inactive !field_type field that uses a !widget_type widget.',
-  'version' => 'none',
+  'lid' => '587',
+  'objectid' => 'story-field_test_link',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '84',
-  'location' => 'includes/content.admin.inc:147;163',
-  'textgroup' => 'default',
-  'source' => 'Configure',
-  'version' => 'none',
+  'lid' => '588',
+  'objectid' => 'story-field_test_filefield',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '85',
-  'location' => 'includes/content.admin.inc:181',
-  'textgroup' => 'default',
-  'source' => 'Locked',
-  'version' => 'none',
+  'lid' => '589',
+  'objectid' => 'story-field_test_filefield',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '86',
-  'location' => 'includes/content.admin.inc:237',
-  'textgroup' => 'default',
-  'source' => '- Select a field type -',
-  'version' => 'none',
+  'lid' => '590',
+  'objectid' => 'story-field_test_imagefield',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '87',
-  'location' => 'includes/content.admin.inc:238',
-  'textgroup' => 'default',
-  'source' => '- Select a widget -',
-  'version' => 'none',
+  'lid' => '591',
+  'objectid' => 'story-field_test_imagefield',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '88',
-  'location' => 'includes/content.admin.inc:212;413;623;850,  modules/fieldgroup/fieldgroup.module:121',
-  'textgroup' => 'default',
-  'source' => 'Label',
-  'version' => 'none',
+  'lid' => '592',
+  'objectid' => 'story-field_test_date',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '89',
-  'location' => 'includes/content.admin.inc:253',
-  'textgroup' => 'default',
-  'source' => 'Field name (a-z, 0-9, _)',
-  'version' => 'none',
+  'lid' => '593',
+  'objectid' => 'story-field_test_date',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '90',
-  'location' => 'includes/content.admin.inc:258',
-  'textgroup' => 'default',
-  'source' => 'Type of data to store.',
-  'version' => 'none',
+  'lid' => '594',
+  'objectid' => 'story-field_test_datestamp',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '91',
-  'location' => 'includes/content.admin.inc:263;295',
-  'textgroup' => 'default',
-  'source' => 'Form element to edit the data.',
-  'version' => 'none',
+  'lid' => '595',
+  'objectid' => 'story-field_test_datestamp',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '92',
-  'location' => 'includes/content.admin.inc:279',
-  'textgroup' => 'default',
-  'source' => '- Select an existing field -',
-  'version' => 'none',
+  'lid' => '596',
+  'objectid' => 'story-field_test_datetime',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '93',
-  'location' => 'includes/content.admin.inc:290',
-  'textgroup' => 'default',
-  'source' => 'Field to share',
-  'version' => 'none',
+  'lid' => '597',
+  'objectid' => 'story-field_test_datetime',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '94',
-  'location' => 'includes/content.admin.inc:324',
-  'textgroup' => 'default',
-  'source' => 'Group name (a-z, 0-9, _)',
-  'version' => 'none',
+  'lid' => '598',
+  'objectid' => 'story-field_test_phone',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '95',
-  'location' => 'includes/content.admin.inc:201;402,  modules/fieldgroup/fieldgroup.module:110;363',
-  'textgroup' => 'default',
-  'source' => 'Save',
-  'version' => 'none',
+  'lid' => '599',
+  'objectid' => 'story-field_test_phone',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '96',
-  'location' => 'includes/content.admin.inc:365',
-  'textgroup' => 'default',
-  'source' => 'Add new field: you need to provide a label.',
-  'version' => 'none',
+  'lid' => '600',
+  'objectid' => 'story-field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '97',
-  'location' => 'includes/content.admin.inc:370',
-  'textgroup' => 'default',
-  'source' => 'Add new field: you need to provide a field name.',
-  'version' => 'none',
+  'lid' => '601',
+  'objectid' => 'story-field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '98',
-  'location' => 'includes/content.admin.inc:384',
-  'textgroup' => 'default',
-  'source' => 'Add new field: the field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
-  'version' => 'none',
+  'lid' => '602',
+  'objectid' => 'field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'option_1.2',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '99',
-  'location' => 'includes/content.admin.inc:387',
-  'textgroup' => 'default',
-  'source' => "Add new field: the field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
-  'version' => 'none',
+  'lid' => '603',
+  'objectid' => 'field_test_decimal_radio_buttons',
+  'type' => 'field',
+  'property' => 'option_2.1',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '100',
-  'location' => 'includes/content.admin.inc:391',
-  'textgroup' => 'default',
-  'source' => "Add new field: the name 'field_instance' is a reserved name.",
-  'version' => 'none',
+  'lid' => '604',
+  'objectid' => 'story-field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '101',
-  'location' => 'includes/content.admin.inc:403',
-  'textgroup' => 'default',
-  'source' => 'Add new field: the field name %field_name already exists.',
-  'version' => 'none',
+  'lid' => '605',
+  'objectid' => 'story-field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '102',
-  'location' => 'includes/content.admin.inc:409',
-  'textgroup' => 'default',
-  'source' => 'Add new field: you need to select a field type.',
-  'version' => 'none',
+  'lid' => '606',
+  'objectid' => 'field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_3.142',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '103',
-  'location' => 'includes/content.admin.inc:414',
-  'textgroup' => 'default',
-  'source' => 'Add new field: you need to select a widget.',
-  'version' => 'none',
+  'lid' => '607',
+  'objectid' => 'field_test_float_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_1.234',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '104',
-  'location' => 'includes/content.admin.inc:420',
-  'textgroup' => 'default',
-  'source' => 'Add new field: invalid widget.',
-  'version' => 'none',
+  'lid' => '608',
+  'objectid' => 'story-field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '105',
-  'location' => 'includes/content.admin.inc:441',
-  'textgroup' => 'default',
-  'source' => 'Add existing field: you need to provide a label.',
-  'version' => 'none',
+  'lid' => '609',
+  'objectid' => 'story-field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '106',
-  'location' => 'includes/content.admin.inc:446',
-  'textgroup' => 'default',
-  'source' => 'Add existing field: you need to select a field.',
-  'version' => 'none',
+  'lid' => '610',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_1234',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '107',
-  'location' => 'includes/content.admin.inc:451',
-  'textgroup' => 'default',
-  'source' => 'Add existing field: you need to select a widget.',
-  'version' => 'none',
+  'lid' => '611',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_2341',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '108',
-  'location' => 'includes/content.admin.inc:457',
-  'textgroup' => 'default',
-  'source' => 'Add existing field: invalid widget.',
-  'version' => 'none',
+  'lid' => '612',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_3412',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '109',
-  'location' => 'includes/content.admin.inc:745',
-  'textgroup' => 'default',
-  'source' => 'There was a problem creating field %label.',
-  'version' => 'none',
+  'lid' => '613',
+  'objectid' => 'field_test_integer_selectlist',
+  'type' => 'field',
+  'property' => 'option_4123',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '110',
-  'location' => 'includes/content.admin.inc:518',
-  'textgroup' => 'default',
-  'source' => 'The field %label cannot be added to a content type because it is locked.',
-  'version' => 'none',
+  'lid' => '614',
+  'objectid' => 'story-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '111',
-  'location' => 'includes/content.admin.inc:550',
-  'textgroup' => 'default',
-  'source' => 'There was a problem adding field %label.',
-  'version' => 'none',
+  'lid' => '615',
+  'objectid' => 'story-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '112',
-  'location' => 'includes/content.admin.inc:571',
-  'textgroup' => 'default',
-  'source' => 'There are no fields configured for this content type. You can add new fields on the <a href="@link">Manage fields</a> page.',
-  'version' => 'none',
+  'lid' => '616',
+  'objectid' => 'field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_0',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '113',
-  'location' => 'includes/content.admin.inc:319;360',
-  'textgroup' => 'default',
-  'source' => 'Above',
-  'version' => 'none',
+  'lid' => '617',
+  'objectid' => 'field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'option_1',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '114',
-  'location' => 'includes/content.admin.inc:320',
-  'textgroup' => 'default',
-  'source' => 'Inline',
-  'version' => 'none',
+  'lid' => '618',
+  'objectid' => 'story-field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '115',
-  'location' => 'includes/content.admin.inc:618;661',
-  'textgroup' => 'default',
-  'source' => 'Include',
-  'version' => 'none',
+  'lid' => '619',
+  'objectid' => 'story-field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '116',
-  'location' => 'includes/content.admin.inc:618;661,  theme/content-admin-display-overview-form.tpl.php:17',
-  'textgroup' => 'default',
-  'source' => 'Exclude',
-  'version' => 'none',
+  'lid' => '620',
+  'objectid' => 'field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'option_Off',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '117',
-  'location' => 'includes/content.admin.inc:364',
-  'textgroup' => 'default',
-  'source' => 'no styling',
-  'version' => 'none',
+  'lid' => '621',
+  'objectid' => 'field_test_text_single_checkbox2',
+  'type' => 'field',
+  'property' => 'option_Hello',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '118',
-  'location' => 'includes/content.admin.inc:365',
-  'textgroup' => 'default',
-  'source' => 'simple',
-  'version' => 'none',
+  'lid' => '622',
+  'objectid' => 'test_page-field_test',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '119',
-  'location' => 'includes/content.admin.inc:366',
-  'textgroup' => 'default',
-  'source' => 'fieldset',
-  'version' => 'none',
+  'lid' => '623',
+  'objectid' => 'test_page-field_test',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '120',
-  'location' => 'includes/content.admin.inc:367',
-  'textgroup' => 'default',
-  'source' => 'fieldset - collapsible',
-  'version' => 'none',
+  'lid' => '624',
+  'objectid' => 'test_planet-field_multivalue',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '121',
-  'location' => 'includes/content.admin.inc:368',
-  'textgroup' => 'default',
-  'source' => 'fieldset - collapsed',
-  'version' => 'none',
+  'lid' => '625',
+  'objectid' => 'test_planet-field_multivalue',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '122',
-  'location' => 'includes/content.admin.inc:460',
-  'textgroup' => 'default',
-  'source' => 'Your settings have been saved.',
-  'version' => 'none',
+  'lid' => '626',
+  'objectid' => 'test_planet-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_label',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '123',
-  'location' => 'includes/content.admin.inc:760',
-  'textgroup' => 'default',
-  'source' => '@type: @field (@label)',
-  'version' => 'none',
+  'lid' => '627',
+  'objectid' => 'test_planet-field_test_text_single_checkbox',
+  'type' => 'field',
+  'property' => 'widget_description',
+  'objectindex' => '0',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '124',
-  'location' => 'includes/content.admin.inc:597',
-  'textgroup' => 'default',
-  'source' => 'Edit basic information',
-  'version' => 'none',
+  'lid' => '633',
+  'objectid' => '140',
+  'type' => 'item',
+  'property' => 'title',
+  'objectindex' => '140',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '125',
-  'location' => 'includes/content.admin.inc:792',
-  'textgroup' => 'default',
-  'source' => 'The machine-readable name of the field. This name cannot be changed.',
-  'version' => 'none',
+  'lid' => '634',
+  'objectid' => '139',
+  'type' => 'item',
+  'property' => 'title',
+  'objectindex' => '139',
+  'format' => '0',
 ))
 ->values(array(
-  'lid' => '126',
-  'location' => 'includes/content.admin.inc:626',
-  'textgroup' => 'default',
-  'source' => 'A human-readable name to be used as the label for this field in the %type content type.',
-  'version' => 'none',
+  'lid' => '635',
+  'objectid' => '139',
+  'type' => 'item',
+  'property' => 'description',
+  'objectindex' => '139',
+  'format' => '0',
+))
+->execute();
+
+$connection->schema()->createTable('i18n_variable', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+    'value' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+  ),
+  'primary key' => array(
+    'name',
+    'language',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('i18n_variable')
+->fields(array(
+  'name',
+  'language',
+  'value',
 ))
 ->values(array(
-  'lid' => '127',
-  'location' => 'includes/content.admin.inc:646',
-  'textgroup' => 'default',
-  'source' => 'The type of data you would like to store in the database with this field. This option cannot be changed.',
-  'version' => 'none',
+  'name' => 'array_filter',
+  'language' => 'en',
+  'value' => 'b:1;',
 ))
 ->values(array(
-  'lid' => '128',
-  'location' => 'includes/content.admin.inc:651;869',
-  'textgroup' => 'default',
-  'source' => 'Widget type',
-  'version' => 'none',
+  'name' => 'i18nstrings_allowed_formats',
+  'language' => 'en',
+  'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
 ))
 ->values(array(
-  'lid' => '129',
-  'location' => 'includes/content.admin.inc:655',
-  'textgroup' => 'default',
-  'source' => 'The type of form element you would like to present to the user when creating this field in the %type content type.',
-  'version' => 'none',
+  'name' => 'anonymous',
+  'language' => 'fr',
+  'value' => 's:8:"fr Guest";',
 ))
 ->values(array(
-  'lid' => '130',
-  'location' => 'includes/content.admin.inc:669',
-  'textgroup' => 'default',
-  'source' => 'Continue',
-  'version' => 'none',
+  'name' => 'error_level',
+  'language' => 'fr',
+  'value' => 's:1:"1";',
 ))
 ->values(array(
-  'lid' => '131',
-  'location' => 'includes/content.admin.inc:854',
-  'textgroup' => 'default',
-  'source' => 'Updated basic settings for field %label.',
-  'version' => 'none',
+  'name' => 'site_403',
+  'language' => 'fr',
+  'value' => 's:7:"fr-user";',
 ))
 ->values(array(
-  'lid' => '132',
-  'location' => 'includes/content.admin.inc:858',
-  'textgroup' => 'default',
-  'source' => 'There was a problem updating the basic settings for field %label.',
-  'version' => 'none',
+  'name' => 'site_404',
+  'language' => 'fr',
+  'value' => 's:17:"fr-page-not-found";',
 ))
 ->values(array(
-  'lid' => '133',
-  'location' => 'includes/content.admin.inc:786',
-  'textgroup' => 'default',
-  'source' => 'Are you sure you want to remove the field %field?',
-  'version' => 'none',
+  'name' => 'site_footer',
+  'language' => 'fr',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '134',
-  'location' => 'includes/content.admin.inc:789',
-  'textgroup' => 'default',
-  'source' => 'If you have any content left in this field, it will be lost. This action cannot be undone.',
-  'version' => 'none',
+  'name' => 'site_frontpage',
+  'language' => 'fr',
+  'value' => 's:4:"node";',
 ))
 ->values(array(
-  'lid' => '135',
-  'location' => 'includes/content.admin.inc:790 modules/fieldgroup/fieldgroup.module:236',
-  'textgroup' => 'default',
-  'source' => 'Cancel',
-  'version' => 'none',
+  'name' => 'site_mail',
+  'language' => 'fr',
+  'value' => 's:24:"fr_site_mail@example.com";',
 ))
 ->values(array(
-  'lid' => '136',
-  'location' => 'includes/content.admin.inc:894',
-  'textgroup' => 'default',
-  'source' => 'This field is <strong>locked</strong> and cannot be removed.',
-  'version' => 'none',
+  'name' => 'site_mission',
+  'language' => 'fr',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '137',
-  'location' => 'includes/content.admin.inc:808',
-  'textgroup' => 'default',
-  'source' => 'Removed field %field from %type.',
-  'version' => 'none',
+  'name' => 'site_name',
+  'language' => 'fr',
+  'value' => 's:12:"fr site name";',
 ))
 ->values(array(
-  'lid' => '138',
-  'location' => 'includes/content.admin.inc:813',
-  'textgroup' => 'default',
-  'source' => 'There was a problem deleting %field from %type.',
-  'version' => 'none',
+  'name' => 'site_offline',
+  'language' => 'fr',
+  'value' => 's:1:"0";',
 ))
 ->values(array(
-  'lid' => '139',
-  'location' => 'includes/content.admin.inc:939',
-  'textgroup' => 'default',
-  'source' => 'The field %field is locked and cannot be edited.',
-  'version' => 'none',
+  'name' => 'site_offline_message',
+  'language' => 'fr',
+  'value' => 's:99:"fr - Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
 ))
 ->values(array(
-  'lid' => '140',
-  'location' => 'includes/content.admin.inc:846',
-  'textgroup' => 'default',
-  'source' => '%type basic information',
-  'version' => 'none',
+  'name' => 'site_slogan',
+  'language' => 'fr',
+  'value' => 's:16:"fr Migrate rocks";',
 ))
 ->values(array(
-  'lid' => '141',
-  'location' => 'includes/content.admin.inc:876',
-  'textgroup' => 'default',
-  'source' => 'Change basic information',
-  'version' => 'none',
+  'name' => 'user_email_verification',
+  'language' => 'fr',
+  'value' => 'i:0;',
 ))
 ->values(array(
-  'lid' => '142',
-  'location' => 'includes/content.admin.inc:882',
-  'textgroup' => 'default',
-  'source' => '%type settings',
-  'version' => 'none',
+  'name' => 'user_mail_password_reset_body',
+  'language' => 'fr',
+  '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.\";",
 ))
 ->values(array(
-  'lid' => '143',
-  'location' => 'includes/content.admin.inc:883',
-  'textgroup' => 'default',
-  'source' => 'These settings apply only to the %field field as it appears in the %type content type.',
-  'version' => 'none',
+  'name' => 'user_mail_password_reset_subject',
+  'language' => 'fr',
+  'value' => 's:57:"fr - Replacement login information for !username at !site";',
 ))
 ->values(array(
-  'lid' => '144',
-  'location' => 'includes/content.admin.inc:897 modules/fieldgroup/fieldgroup.module:143',
-  'textgroup' => 'default',
-  'source' => 'Help text',
-  'version' => 'none',
+  'name' => 'user_mail_register_admin_created_body',
+  'language' => 'fr',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '145',
-  'location' => 'includes/content.admin.inc:900',
-  'textgroup' => 'default',
-  'source' => 'Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags',
-  'version' => 'none',
+  'name' => 'user_mail_register_admin_created_subject',
+  'language' => 'fr',
+  'value' => 's:57:"fr - An administrator created an account for you at !site";',
 ))
 ->values(array(
-  'lid' => '146',
-  'location' => 'includes/content.admin.inc:908',
-  'textgroup' => 'default',
-  'source' => 'Default value',
-  'version' => 'none',
+  'name' => 'user_mail_register_no_approval_required_body',
+  'language' => 'fr',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '147',
-  'location' => 'examples/example_field.php:182 includes/content.admin.inc:930,  modules/number/number.module:137 modules/text/text.module:96',
-  'textgroup' => 'default',
-  'source' => 'PHP code',
-  'version' => 'none',
+  'name' => 'user_mail_register_no_approval_required_subject',
+  'language' => 'fr',
+  'value' => 's:43:"fr - Account details for !username at !site";',
 ))
 ->values(array(
-  'lid' => '148',
-  'location' => 'includes/content.admin.inc:1083;1238,  includes/content.rules.inc:93',
-  'textgroup' => 'default',
-  'source' => "'@column' => value for @column",
-  'version' => 'none',
+  'name' => 'user_mail_register_pending_approval_body',
+  'language' => 'fr',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '149',
-  'location' => 'includes/content.admin.inc:1085;1240,  includes/content.rules.inc:95',
-  'textgroup' => 'default',
-  '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);",
-  'version' => 'none',
+  'name' => 'user_mail_register_pending_approval_subject',
+  'language' => 'fr',
+  'value' => 's:68:"fr - Account details for !username at !site (pending admin approval)";',
 ))
 ->values(array(
-  'lid' => '150',
-  'location' => 'examples/example_field.php:188 includes/content.admin.inc:951;964,  modules/number/number.module:144;153 modules/text/text.module:103;112',
-  'textgroup' => 'default',
-  'source' => 'Code',
-  'version' => 'none',
+  'name' => 'user_mail_status_activated_body',
+  'language' => 'fr',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '151',
-  'location' => 'includes/content.admin.inc:1093',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'name' => 'user_mail_status_activated_notify',
+  'language' => 'fr',
+  'value' => 'i:0;',
 ))
 ->values(array(
-  'lid' => '152',
-  'location' => 'includes/content.admin.inc:965 modules/number/number.module:154,  modules/text/text.module:113',
-  'textgroup' => 'default',
-  'source' => '&lt;none&gt;',
-  'version' => 'none',
+  'name' => 'user_mail_status_activated_subject',
+  'language' => 'fr',
+  'value' => 's:54:"fr - Account details for !username at !site (approved)";',
 ))
 ->values(array(
-  'lid' => '153',
-  'location' => 'includes/content.admin.inc:966 modules/number/number.module:155,  modules/text/text.module:114',
-  'textgroup' => 'default',
-  'source' => "You're not allowed to input PHP code.",
-  'version' => 'none',
+  'name' => 'user_mail_status_blocked_body',
+  'language' => 'fr',
+  'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been blocked.\";",
 ))
 ->values(array(
-  'lid' => '154',
-  'location' => 'includes/content.admin.inc:966',
-  'textgroup' => 'default',
-  'source' => 'This PHP code was set by an administrator and will override any value specified above.',
-  'version' => 'none',
+  'name' => 'user_mail_status_blocked_notify',
+  'language' => 'fr',
+  'value' => 'i:1;',
 ))
 ->values(array(
-  'lid' => '155',
-  'location' => 'includes/content.admin.inc:973',
-  'textgroup' => 'default',
-  'source' => 'Global settings',
-  'version' => 'none',
+  'name' => 'user_mail_status_blocked_subject',
+  'language' => 'fr',
+  'value' => 's:53:"fr - Account details for !username at !site (blocked)";',
 ))
 ->values(array(
-  'lid' => '156',
-  'location' => 'includes/content.admin.inc:974',
-  'textgroup' => 'default',
-  'source' => 'These settings apply to the %field field in every content type in which it appears.',
-  'version' => 'none',
+  'name' => 'user_mail_status_deleted_body',
+  'language' => 'fr',
+  'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been deleted.\";",
 ))
 ->values(array(
-  'lid' => '157',
-  'location' => 'includes/content.admin.inc:978',
-  'textgroup' => 'default',
-  'source' => 'Required',
-  'version' => 'none',
+  'name' => 'user_mail_status_deleted_notify',
+  'language' => 'fr',
+  'value' => 'i:0;',
 ))
 ->values(array(
-  'lid' => '158',
-  'location' => 'includes/content.admin.inc:1119',
-  'textgroup' => 'default',
-  'source' => 'Maximum number of values users can enter for this field.',
-  'version' => 'none',
+  'name' => 'user_mail_status_deleted_subject',
+  'language' => 'fr',
+  'value' => 's:53:"fr - Account details for !username at !site (deleted)";',
 ))
 ->values(array(
-  'lid' => '159',
-  'location' => 'includes/content.admin.inc:1121',
-  'textgroup' => 'default',
-  'source' => "'Unlimited' will provide an 'Add more' button so the users can add as many values as they like.",
-  'version' => 'none',
+  'name' => 'user_pictures',
+  'language' => 'fr',
+  'value' => 's:1:"0";',
 ))
 ->values(array(
-  'lid' => '160',
-  'location' => 'includes/content.admin.inc:986',
-  'textgroup' => 'default',
-  'source' => 'Warning! Changing this setting after data has been created could result in the loss of data!',
-  'version' => 'none',
+  'name' => 'user_picture_default',
+  'language' => 'fr',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '161',
-  'location' => 'includes/content.admin.inc:983',
-  'textgroup' => 'default',
-  'source' => 'Number of values',
-  'version' => 'none',
+  'name' => 'user_picture_dimensions',
+  'language' => 'fr',
+  'value' => 's:5:"85x85";',
 ))
 ->values(array(
-  'lid' => '162',
-  'location' => 'includes/content.admin.inc:984',
-  'textgroup' => 'default',
-  'source' => 'Unlimited',
-  'version' => 'none',
+  'name' => 'user_picture_file_size',
+  'language' => 'fr',
+  'value' => 's:2:"30";',
 ))
 ->values(array(
-  'lid' => '163',
-  'location' => 'includes/content.admin.inc:1001',
-  'textgroup' => 'default',
-  'source' => 'Save field settings',
-  'version' => 'none',
+  'name' => 'user_picture_guidelines',
+  'language' => 'fr',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '164',
-  'location' => 'includes/content.admin.inc:1281',
-  'textgroup' => 'default',
-  'source' => "The PHP code for 'default value' returned @value, which is invalid.",
-  'version' => 'none',
+  'name' => 'user_picture_path',
+  'language' => 'fr',
+  'value' => 's:8:"pictures";',
 ))
 ->values(array(
-  'lid' => '165',
-  'location' => 'includes/content.admin.inc:1135',
-  'textgroup' => 'default',
-  'source' => 'The default value is invalid.',
-  'version' => 'none',
+  'name' => 'user_register',
+  'language' => 'fr',
+  'value' => 's:1:"0";',
 ))
 ->values(array(
-  'lid' => '166',
-  'location' => 'includes/content.admin.inc:547',
-  'textgroup' => 'default',
-  'source' => 'Added field %label.',
-  'version' => 'none',
+  'name' => 'user_registration_help',
+  'language' => 'fr',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '167',
-  'location' => 'includes/content.admin.inc:1158',
-  'textgroup' => 'default',
-  'source' => 'Saved field %label.',
-  'version' => 'none',
+  'name' => 'user_signatures',
+  'language' => 'fr',
+  'value' => 's:1:"1";',
 ))
 ->values(array(
-  'lid' => '168',
-  'location' => 'includes/content.admin.inc:1463',
-  'textgroup' => 'default',
-  'source' => 'Processing',
-  'version' => 'none',
+  'name' => 'anonymous',
+  'language' => 'zu',
+  'value' => 's:5:"Guest";',
 ))
 ->values(array(
-  'lid' => '169',
-  'location' => 'includes/content.admin.inc:1464',
-  'textgroup' => 'default',
-  'source' => 'The update has encountered an error.',
-  'version' => 'none',
+  'name' => 'error_level',
+  'language' => 'zu',
+  'value' => 's:1:"1";',
 ))
 ->values(array(
-  'lid' => '170',
-  'location' => 'includes/content.admin.inc:1478',
-  'textgroup' => 'default',
-  'source' => 'The database has been altered and data has been migrated or deleted.',
-  'version' => 'none',
+  'name' => 'site_403',
+  'language' => 'zu',
+  'value' => 's:7:"zu-user";',
 ))
 ->values(array(
-  'lid' => '171',
-  'location' => 'includes/content.admin.inc:1481',
-  'textgroup' => 'default',
-  'source' => 'An error occurred and database alteration did not complete.',
-  'version' => 'none',
+  'name' => 'site_404',
+  'language' => 'zu',
+  'value' => 's:17:"zu-page-not-found";',
 ))
 ->values(array(
-  'lid' => '172',
-  'location' => 'includes/content.admin.inc:1584',
-  'textgroup' => 'default',
-  'source' => 'Processing %title',
-  'version' => 'none',
+  'name' => 'site_footer',
+  'language' => 'zu',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '173',
-  'location' => 'includes/content.admin.inc:1849',
-  'textgroup' => 'default',
-  'source' => '%name must be an integer.',
-  'version' => 'none',
+  'name' => 'site_frontpage',
+  'language' => 'zu',
+  'value' => 's:4:"node";',
 ))
 ->values(array(
-  'lid' => '174',
-  'location' => 'includes/content.admin.inc:1859',
-  'textgroup' => 'default',
-  'source' => '%name must be a positive integer.',
-  'version' => 'none',
+  'name' => 'site_mail',
+  'language' => 'zu',
+  'value' => 's:21:"site_mail@example.com";',
 ))
 ->values(array(
-  'lid' => '175',
-  'location' => 'includes/content.admin.inc:1869',
-  'textgroup' => 'default',
-  'source' => '%name must be a number.',
-  'version' => 'none',
+  'name' => 'site_mission',
+  'language' => 'zu',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '176',
-  'location' => 'includes/content.admin.inc:1482',
-  'textgroup' => 'default',
-  'source' => '1 item successfully processed:',
-  'version' => 'none',
+  'name' => 'site_name',
+  'language' => 'zu',
+  'value' => 's:14:"zu - site_name";',
 ))
 ->values(array(
-  'lid' => '177',
-  'location' => 'includes/content.admin.inc:1482',
-  'textgroup' => 'default',
-  'source' => '@count items successfully processed:',
-  'version' => 'none',
+  'name' => 'site_slogan',
+  'language' => 'zu',
+  'value' => 's:13:"Migrate rocks";',
 ))
 ->values(array(
-  'lid' => '178',
-  'location' => 'includes/content.crud.inc:591',
-  'textgroup' => 'default',
-  'source' => 'Content fields table %old_name has been renamed to %new_name and field instances have been updated.',
-  'version' => 'none',
+  'name' => 'user_email_verification',
+  'language' => 'zu',
+  'value' => 'i:0;',
 ))
 ->values(array(
-  'lid' => '179',
-  'location' => 'includes/content.crud.inc:629',
-  'textgroup' => 'default',
-  'source' => 'The content fields table %name has been deleted.',
-  'version' => 'none',
+  'name' => 'user_mail_password_reset_body',
+  'language' => 'zu',
+  '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.\";",
 ))
 ->values(array(
-  'lid' => '180',
-  'location' => 'includes/content.node_form.inc:206',
-  'textgroup' => 'default',
-  'source' => 'Add another item',
-  'version' => 'none',
+  'name' => 'user_mail_password_reset_subject',
+  'language' => 'zu',
+  'value' => 's:52:"Replacement login information for !username at !site";',
 ))
 ->values(array(
-  'lid' => '181',
-  'location' => 'includes/content.panels.inc:21;35',
-  'textgroup' => 'default',
-  'source' => 'Content field',
-  'version' => 'none',
+  'name' => 'user_mail_register_admin_created_body',
+  'language' => 'zu',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '182',
-  'location' => 'includes/content.panels.inc:38',
-  'textgroup' => 'default',
-  'source' => 'A content field from the referenced node.',
-  'version' => 'none',
+  'name' => 'user_mail_register_admin_created_subject',
+  'language' => 'zu',
+  'value' => 's:57:"zu - An administrator created an account for you at !site";',
 ))
 ->values(array(
-  'lid' => '183',
-  'location' => 'includes/content.panels.inc:39,  modules/fieldgroup/fieldgroup.panels.inc:31',
-  'textgroup' => 'default',
-  'source' => 'Node',
-  'version' => 'none',
+  'name' => 'user_mail_register_no_approval_required_body',
+  'language' => 'zu',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '184',
-  'location' => 'includes/content.panels.inc:40,  modules/fieldgroup/fieldgroup.panels.inc:32',
-  'textgroup' => 'default',
-  'source' => 'Node context',
-  'version' => 'none',
+  'name' => 'user_mail_register_no_approval_required_subject',
+  'language' => 'zu',
+  'value' => 's:38:"Account details for !username at !site";',
 ))
 ->values(array(
-  'lid' => '185',
-  'location' => 'includes/content.panels.inc:52',
-  'textgroup' => 'default',
-  'source' => 'Block title',
-  'version' => 'none',
+  'name' => 'user_mail_register_pending_approval_body',
+  'language' => 'zu',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '186',
-  'location' => 'includes/content.panels.inc:55',
-  'textgroup' => 'default',
-  'source' => 'Hidden',
-  'version' => 'none',
+  'name' => 'user_mail_register_pending_approval_subject',
+  'language' => 'zu',
+  'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
 ))
 ->values(array(
-  'lid' => '187',
-  'location' => 'includes/content.panels.inc:57',
-  'textgroup' => 'default',
-  'source' => 'Configure how the label is going to be displayed.',
-  'version' => 'none',
+  'name' => 'user_mail_status_activated_body',
+  'language' => 'zu',
+  '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\";",
 ))
 ->values(array(
-  'lid' => '188',
-  'location' => 'includes/content.panels.inc:73',
-  'textgroup' => 'default',
-  'source' => 'Field / Formatter',
-  'version' => 'none',
+  'name' => 'user_mail_status_activated_notify',
+  'language' => 'zu',
+  'value' => 'i:0;',
 ))
 ->values(array(
-  'lid' => '189',
-  'location' => 'includes/content.panels.inc:76',
-  'textgroup' => 'default',
-  'source' => 'Select a field and formatter.',
-  'version' => 'none',
+  'name' => 'user_mail_status_activated_subject',
+  'language' => 'zu',
+  'value' => 's:49:"Account details for !username at !site (approved)";',
 ))
 ->values(array(
-  'lid' => '190',
-  'location' => 'includes/content.panels.inc:92',
-  'textgroup' => 'default',
-  'source' => '"@s" field @name',
-  'version' => 'none',
+  'name' => 'user_mail_status_blocked_body',
+  'language' => 'zu',
+  'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been blocked.\";",
 ))
 ->values(array(
-  'lid' => '191',
-  'location' => 'includes/content.rules.inc:15',
-  'textgroup' => 'default',
-  'source' => 'Populate a field',
-  'version' => 'none',
+  'name' => 'user_mail_status_blocked_notify',
+  'language' => 'zu',
+  'value' => 'i:1;',
 ))
 ->values(array(
-  'lid' => '192',
-  'location' => 'includes/content.rules.inc:23;212',
-  'textgroup' => 'default',
-  'source' => 'You should make sure that the used field exists in the given content type.',
-  'version' => 'none',
+  'name' => 'user_mail_status_blocked_subject',
+  'language' => 'zu',
+  'value' => 's:48:"Account details for !username at !site (blocked)";',
 ))
 ->values(array(
-  'lid' => '193',
-  'location' => 'includes/content.admin.inc:413',
-  'textgroup' => 'default',
-  'source' => 'Field',
-  'version' => 'none',
+  'name' => 'user_mail_status_deleted_body',
+  'language' => 'zu',
+  'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been deleted.\";",
 ))
 ->values(array(
-  'lid' => '194',
-  'location' => 'includes/content.rules.inc:56',
-  'textgroup' => 'default',
-  'source' => 'Select the machine-name of the field.',
-  'version' => 'none',
+  'name' => 'user_mail_status_deleted_notify',
+  'language' => 'zu',
+  'value' => 'i:0;',
 ))
 ->values(array(
-  'lid' => '195',
-  'location' => 'includes/content.rules.inc:84',
-  'textgroup' => 'default',
-  'source' => 'Advanced: Specify the fields value with PHP code',
-  'version' => 'none',
+  'name' => 'user_mail_status_deleted_subject',
+  'language' => 'zu',
+  'value' => 's:48:"Account details for !username at !site (deleted)";',
 ))
 ->values(array(
-  'lid' => '196',
-  'location' => 'includes/content.rules.inc:102',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'name' => 'user_pictures',
+  'language' => 'zu',
+  'value' => 's:1:"0";',
 ))
 ->values(array(
-  'lid' => '197',
-  'location' => 'includes/content.rules.inc:130',
-  'textgroup' => 'default',
-  'source' => 'You have to return the default value in the expected format.',
-  'version' => 'none',
+  'name' => 'user_picture_default',
+  'language' => 'zu',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '198',
-  'location' => 'includes/content.rules.inc:181',
-  'textgroup' => 'default',
-  'source' => "Populate @node's field '@field'",
-  'version' => 'none',
+  'name' => 'user_picture_dimensions',
+  'language' => 'zu',
+  'value' => 's:5:"85x85";',
 ))
 ->values(array(
-  'lid' => '199',
-  'location' => 'includes/content.rules.inc:198',
-  'textgroup' => 'default',
-  'source' => 'Field has value',
-  'version' => 'none',
+  'name' => 'user_picture_file_size',
+  'language' => 'zu',
+  'value' => 's:2:"30";',
 ))
 ->values(array(
-  'lid' => '200',
-  'location' => 'includes/content.rules.inc:203',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'name' => 'user_picture_guidelines',
+  'language' => 'zu',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '201',
-  'location' => 'includes/content.rules.inc:207',
-  'textgroup' => 'default',
-  'source' => 'Field has changed',
-  'version' => 'none',
+  'name' => 'user_picture_path',
+  'language' => 'zu',
+  'value' => 's:8:"pictures";',
 ))
 ->values(array(
-  'lid' => '202',
-  'location' => 'includes/content.rules.inc:209',
-  'textgroup' => 'default',
-  'source' => 'Content containing changes',
-  'version' => 'none',
+  'name' => 'user_register',
+  'language' => 'zu',
+  'value' => 's:1:"0";',
 ))
 ->values(array(
-  'lid' => '203',
-  'location' => 'includes/content.rules.inc:210',
-  'textgroup' => 'default',
-  'source' => 'Content not containing changes',
-  'version' => 'none',
+  'name' => 'user_registration_help',
+  'language' => 'zu',
+  'value' => 's:0:"";',
 ))
 ->values(array(
-  'lid' => '204',
-  'location' => 'includes/content.rules.inc:249',
-  'textgroup' => 'default',
-  'source' => "@node's field '@field' has value",
-  'version' => 'none',
+  'name' => 'user_signatures',
+  'language' => 'zu',
+  'value' => 's:1:"1";',
 ))
-->values(array(
-  'lid' => '205',
-  'location' => 'includes/content.rules.inc:269',
-  'textgroup' => 'default',
-  'source' => 'Select the machine-name of the field to look at.',
-  'version' => 'none',
+->execute();
+
+$connection->schema()->createTable('imagecache_action', array(
+  'fields' => array(
+    'actionid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'presetid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+      'unsigned' => TRUE,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+    ),
+    'action' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+    ),
+    'data' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'actionid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('imagecache_action')
+->fields(array(
+  'actionid',
+  'presetid',
+  'weight',
+  'module',
+  'action',
+  'data',
 ))
 ->values(array(
-  'lid' => '206',
-  'location' => 'includes/content.rules.inc:275',
-  'textgroup' => 'default',
-  'source' => "@node's field '@field' has been changed",
-  'version' => 'none',
+  'actionid' => '3',
+  'presetid' => '1',
+  'weight' => '0',
+  'module' => 'imagecache',
+  'action' => 'imagecache_scale_and_crop',
+  'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
 ))
 ->values(array(
-  'lid' => '207',
-  'location' => 'includes/content.token.inc:12;15',
-  'textgroup' => 'default',
-  'source' => 'Token',
-  'version' => 'none',
+  'actionid' => '4',
+  'presetid' => '2',
+  'weight' => '0',
+  'module' => 'imagecache',
+  'action' => 'imagecache_crop',
+  '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";}',
 ))
 ->values(array(
-  'lid' => '208',
-  'location' => 'includes/content.token.inc:60',
-  'textgroup' => 'default',
-  'source' => 'Referenced node ID',
-  'version' => 'none',
+  'actionid' => '5',
+  'presetid' => '2',
+  'weight' => '0',
+  'module' => 'imagecache',
+  'action' => 'imagecache_resize',
+  'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
 ))
 ->values(array(
-  'lid' => '209',
-  'location' => 'includes/content.token.inc:61',
-  'textgroup' => 'default',
-  'source' => 'Referenced node title',
-  'version' => 'none',
+  'actionid' => '6',
+  'presetid' => '2',
+  'weight' => '0',
+  'module' => 'imagecache',
+  'action' => 'imagecache_rotate',
+  'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
 ))
-->values(array(
-  'lid' => '210',
+->execute();
+
+$connection->schema()->createTable('imagecache_preset', array(
+  'fields' => array(
+    'presetid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'presetname' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+    ),
+  ),
+  'primary key' => array(
+    'presetid',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('imagecache_preset')
+->fields(array(
+  'presetid',
+  'presetname',
+))
+->values(array(
+  'presetid' => '1',
+  'presetname' => 'slackjaw_boys',
+))
+->values(array(
+  'presetid' => '2',
+  'presetname' => 'big_blue_cheese',
+))
+->execute();
+
+$connection->schema()->createTable('languages', array(
+  'fields' => array(
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '64',
+      'default' => '',
+    ),
+    'native' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '64',
+      'default' => '',
+    ),
+    'direction' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'enabled' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'plurals' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'formula' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'domain' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'prefix' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'javascript' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '32',
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'language',
+  ),
+  'indexes' => array(
+    'list' => array(
+      'weight',
+      'name',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('languages')
+->fields(array(
+  'language',
+  'name',
+  'native',
+  'direction',
+  'enabled',
+  'plurals',
+  'formula',
+  'domain',
+  'prefix',
+  'weight',
+  'javascript',
+))
+->values(array(
+  'language' => 'en',
+  'name' => 'English',
+  'native' => 'English',
+  'direction' => '0',
+  'enabled' => '1',
+  'plurals' => '0',
+  'formula' => '',
+  'domain' => '',
+  'prefix' => '',
+  'weight' => '0',
+  'javascript' => '',
+))
+->values(array(
+  'language' => 'fr',
+  'name' => 'French',
+  'native' => 'Français',
+  'direction' => '0',
+  'enabled' => '1',
+  'plurals' => '2',
+  'formula' => '($n>1)',
+  'domain' => '',
+  'prefix' => 'fr',
+  'weight' => '0',
+  'javascript' => '047746d30d76aa44a54db9923c7c5fb0',
+))
+->values(array(
+  'language' => 'zu',
+  'name' => 'Zulu',
+  'native' => 'isiZulu',
+  'direction' => '0',
+  'enabled' => '1',
+  'plurals' => '0',
+  'formula' => '',
+  'domain' => '',
+  'prefix' => 'zu',
+  'weight' => '0',
+  'javascript' => '',
+))
+->execute();
+
+$connection->schema()->createTable('locales_source', array(
+  'fields' => array(
+    'lid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'location' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => '',
+    ),
+    'textgroup' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '255',
+      'default' => 'default',
+    ),
+    'source' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'version' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '20',
+      'default' => 'none',
+    ),
+  ),
+  'primary key' => array(
+    'lid',
+  ),
+  'indexes' => array(
+    'source' => array(
+      array(
+        'source',
+        '30',
+      ),
+    ),
+    'textgroup_location' => array(
+      array(
+        'textgroup',
+        '30',
+      ),
+      array(
+        'location',
+        '191',
+      ),
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('locales_source')
+->fields(array(
+  'lid',
+  'location',
+  'textgroup',
+  'source',
+  'version',
+))
+->values(array(
+  'lid' => '1',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'Unspecified error',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '2',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An error occurred. \n@uri\n@text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '3',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An error occurred. \n@uri\n(no information available).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '4',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An HTTP error @status occurred. \n@uri',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '5',
+  'location' => 'content.module:21',
+  'textgroup' => 'default',
+  '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.)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '6',
+  'location' => 'content.module:22',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '7',
+  'location' => 'content.module:23',
+  'textgroup' => 'default',
+  '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:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '8',
+  'location' => 'content.module:25',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '9',
+  'location' => 'content.module:26',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '10',
+  'location' => 'content.module:27',
+  'textgroup' => 'default',
+  '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).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '11',
+  'location' => 'content.module:28',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '12',
+  'location' => 'content.module:29',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '13',
+  'location' => 'content.module:31',
+  'textgroup' => 'default',
+  '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>.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '14',
+  'location' => 'theme/theme.inc:111',
+  'textgroup' => 'default',
+  'source' => "Configure how this content type's fields and field labels should be displayed when it's viewed in teaser and full-page mode.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '15',
+  'location' => 'theme/theme.inc:114',
+  'textgroup' => 'default',
+  'source' => "Configure how this content type's fields should be displayed when it's rendered in the following contexts.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '16',
+  'location' => 'content.module:48',
+  'textgroup' => 'default',
+  'source' => 'Control the order of fields in the input form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '17',
+  'location' => 'content.module:492',
+  'textgroup' => 'default',
+  'source' => 'This field is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '18',
+  'location' => 'content.module:496',
+  'textgroup' => 'default',
+  'source' => '!title: !required',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '19',
+  'location' => 'content.module:499,  modules/content_multigroup/content_multigroup.module:903',
+  'textgroup' => 'default',
+  'source' => 'Order',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '20',
+  'location' => 'content.module:1640',
+  'textgroup' => 'default',
+  'source' => 'RSS Item',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '21',
+  'location' => 'content.module:1883',
+  'textgroup' => 'default',
+  'source' => 'Search Index',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '22',
+  'location' => 'content.module:1887',
+  'textgroup' => 'default',
+  'source' => 'Search Result',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '23',
+  'location' => 'content.module:2362',
+  'textgroup' => 'default',
+  'source' => 'Language',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '24',
+  'location' => 'content.module:2376',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '25',
+  'location' => 'content.module:2407',
+  'textgroup' => 'default',
+  'source' => 'File attachments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '26',
+  'location' => 'content.module:595',
+  'textgroup' => 'default',
+  'source' => 'Updating field type %type with module %module.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '27',
+  'location' => 'content.module:602',
+  'textgroup' => 'default',
+  'source' => 'Updating widget type %type with module %module.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '28',
+  'location' => 'content.module:60',
+  'textgroup' => 'default',
+  'source' => 'Use PHP input for field settings (dangerous - grant with care)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '29',
+  'location' => 'content.module:101',
+  'textgroup' => 'default',
+  'source' => 'Manage fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '30',
+  'location' => 'content.module:110',
+  'textgroup' => 'default',
+  'source' => 'Display fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '31',
+  'location' => 'content.module:143',
+  'textgroup' => 'default',
+  'source' => 'General',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '32',
+  'location' => 'content.module:149',
+  'textgroup' => 'default',
+  'source' => 'Advanced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '33',
+  'location' => 'content.module:141',
+  'textgroup' => 'default',
+  'source' => 'Remove field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '34',
+  'location' => 'content.info:0,  includes/content.rules.inc:19;212,  includes/views/content.views.inc:180;261',
+  'textgroup' => 'default',
+  'source' => 'Content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '35',
+  'location' => 'content.info:0',
+  'textgroup' => 'default',
+  'source' => 'Allows administrators to define new content types.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '36',
+  'location' => 'content.info:0,  modules/content_copy/content_copy.info:0,  modules/content_permissions/content_permissions.info:0,  modules/fieldgroup/fieldgroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'CCK',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '37',
+  'location' => 'modules/text/text.module:41,  modules/text/text.info:0',
+  'textgroup' => 'default',
+  'source' => 'Text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '38',
+  'location' => 'examples/example_field.php:178',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '39',
+  'location' => 'examples/example_field.php:484',
+  'textgroup' => 'default',
+  'source' => 'Text area',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '40',
+  'location' => 'includes/content.admin.inc:171;197;895,  modules/fieldgroup/fieldgroup.module:209',
+  'textgroup' => 'default',
+  'source' => 'Remove',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '41',
+  'location' => 'content.module:1854',
+  'textgroup' => 'default',
+  'source' => 'Basic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '42',
+  'location' => 'content.module:1857,  modules/nodereference/nodereference.module:268',
+  'textgroup' => 'default',
+  'source' => 'Teaser',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '43',
+  'location' => 'content.module:1861,  modules/nodereference/nodereference.module:263',
+  'textgroup' => 'default',
+  'source' => 'Full node',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '44',
+  'location' => 'content.module:1867;1870',
+  'textgroup' => 'default',
+  'source' => 'RSS',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '45',
+  'location' => 'content.module:1880',
+  'textgroup' => 'default',
+  'source' => 'Search',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '46',
+  'location' => 'content.module:2348;2355',
+  'textgroup' => 'default',
+  'source' => 'Node module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '47',
+  'location' => 'content.module:2363',
+  'textgroup' => 'default',
+  'source' => 'Locale module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '48',
+  'location' => 'content.module:2369',
+  'textgroup' => 'default',
+  'source' => 'Menu settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '49',
+  'location' => 'content.module:2370',
+  'textgroup' => 'default',
+  'source' => 'Menu module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '50',
+  'location' => 'content.module:2377',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '51',
+  'location' => 'content.module:2383',
+  'textgroup' => 'default',
+  'source' => 'Book',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '52',
+  'location' => 'content.module:2384',
+  'textgroup' => 'default',
+  'source' => 'Book module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '53',
+  'location' => 'content.module:2390',
+  'textgroup' => 'default',
+  'source' => 'Poll title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '54',
+  'location' => 'content.module:2391',
+  'textgroup' => 'default',
+  'source' => 'Poll module title.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '55',
+  'location' => 'content.module:2396',
+  'textgroup' => 'default',
+  'source' => 'Poll choices',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '56',
+  'location' => 'content.module:2397',
+  'textgroup' => 'default',
+  'source' => 'Poll module choices.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '57',
+  'location' => 'content.module:2400',
+  'textgroup' => 'default',
+  'source' => 'Poll settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '58',
+  'location' => 'content.module:2401',
+  'textgroup' => 'default',
+  'source' => 'Poll module settings.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '59',
+  'location' => 'content.module:2408',
+  'textgroup' => 'default',
+  'source' => 'Upload module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '60',
+  'location' => 'content.module:595;602;0,  includes/content.crud.inc:589;633',
+  'textgroup' => 'default',
+  'source' => 'content',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '61',
+  'location' => 'content.module:79',
+  'textgroup' => 'default',
+  'source' => 'Fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '62',
+  'location' => 'content.install:236',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '63',
+  'location' => 'content.install:239',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '64',
+  'location' => 'content.install:244',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '65',
+  'location' => 'content.install:251',
+  'textgroup' => 'default',
+  'source' => 'Some updates are still pending. Please return to <a href="@update-php">update.php</a> and run the remaining updates.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '66',
+  'location' => '(duplicate) content.install:10',
+  'textgroup' => 'default',
+  'source' => 'CCK - No Views integration',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '67',
+  'location' => '(duplicate) content.install:11',
+  'textgroup' => 'default',
+  'source' => 'CCK integration with Views module requires Views 6.x-2.0-rc2 or greater.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '68',
+  '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',
+  'textgroup' => 'default',
+  'source' => 'Name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '69',
+  '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',
+  'textgroup' => 'default',
+  'source' => 'Type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '70',
+  'location' => 'includes/content.admin.inc:16,  modules/fieldgroup/fieldgroup.module:158',
+  'textgroup' => 'default',
+  'source' => 'Description',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '71',
+  'location' => 'includes/content.admin.inc:16,  theme/content-admin-field-overview-form.tpl.php:14',
+  'textgroup' => 'default',
+  'source' => 'Operations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '72',
+  'location' => 'includes/content.admin.inc:30',
+  'textgroup' => 'default',
+  'source' => 'edit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '73',
+  'location' => 'includes/content.admin.inc:33',
+  'textgroup' => 'default',
+  'source' => 'manage fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '74',
+  'location' => 'includes/content.admin.inc:36',
+  'textgroup' => 'default',
+  'source' => 'delete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '75',
+  'location' => 'includes/content.admin.inc:47',
+  'textgroup' => 'default',
+  'source' => 'No content types available.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '76',
+  'location' => 'includes/content.admin.inc:54',
+  'textgroup' => 'default',
+  'source' => '» Add a new content type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '77',
+  'location' => 'includes/content.admin.inc:67;796;991',
+  'textgroup' => 'default',
+  'source' => 'Field name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '78',
+  'location' => 'includes/content.admin.inc:67;811;997',
+  'textgroup' => 'default',
+  'source' => 'Field type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '79',
+  'location' => 'includes/content.admin.inc:67',
+  'textgroup' => 'default',
+  'source' => 'Used in',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '80',
+  'location' => 'includes/content.admin.inc:71',
+  'textgroup' => 'default',
+  'source' => '@field_name (Locked)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '81',
+  'location' => 'includes/content.admin.inc:90',
+  'textgroup' => 'default',
+  'source' => 'No fields have been defined for any content type yet.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '82',
+  'location' => 'not literally, English needs work,  includes/content.admin.inc:106,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '83',
+  'location' => 'includes/content.admin.inc:108',
+  'textgroup' => 'default',
+  'source' => '!field (!field_name) is an inactive !field_type field that uses a !widget_type widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '84',
+  'location' => 'includes/content.admin.inc:170;196',
+  'textgroup' => 'default',
+  'source' => 'Configure',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '85',
+  'location' => 'Schreibgeschützt,  includes/content.admin.inc:181',
+  'textgroup' => 'default',
+  'source' => 'Locked',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '86',
+  'location' => 'includes/content.admin.inc:237',
+  'textgroup' => 'default',
+  'source' => '- Select a field type -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '87',
+  'location' => 'includes/content.admin.inc:238',
+  'textgroup' => 'default',
+  'source' => '- Select a widget -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '88',
+  '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',
+  'textgroup' => 'default',
+  'source' => 'Label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '89',
+  'location' => 'includes/content.admin.inc:253',
+  'textgroup' => 'default',
+  'source' => 'Field name (a-z, 0-9, _)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '90',
+  'location' => 'includes/content.admin.inc:258',
+  'textgroup' => 'default',
+  'source' => 'Type of data to store.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '91',
+  'location' => 'includes/content.admin.inc:263;295',
+  'textgroup' => 'default',
+  'source' => 'Form element to edit the data.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '92',
+  'location' => 'includes/content.admin.inc:279',
+  'textgroup' => 'default',
+  'source' => '- Select an existing field -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '93',
+  'location' => 'includes/content.admin.inc:290',
+  'textgroup' => 'default',
+  'source' => 'Field to share',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '94',
+  'location' => 'includes/content.admin.inc:324',
+  'textgroup' => 'default',
+  'source' => 'Group name (a-z, 0-9, _)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '95',
+  'location' => 'includes/content.admin.inc:352;677,  modules/fieldgroup/fieldgroup.module:177;341',
+  'textgroup' => 'default',
+  'source' => 'Save',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '96',
+  'location' => 'includes/content.admin.inc:373',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '97',
+  'location' => 'includes/content.admin.inc:378',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to provide a field name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '98',
+  'location' => 'includes/content.admin.inc:392',
+  'textgroup' => 'default',
+  'source' => 'Add new field: the field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '99',
+  'location' => 'includes/content.admin.inc:395',
+  'textgroup' => 'default',
+  'source' => "Add new field: the field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '100',
+  'location' => 'includes/content.admin.inc:399',
+  'textgroup' => 'default',
+  'source' => "Add new field: the name 'field_instance' is a reserved name.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '101',
+  'location' => 'includes/content.admin.inc:411',
+  'textgroup' => 'default',
+  'source' => 'Add new field: the field name %field_name already exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '102',
+  'location' => 'includes/content.admin.inc:417',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to select a field type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '103',
+  'location' => 'includes/content.admin.inc:422',
+  'textgroup' => 'default',
+  'source' => 'Add new field: you need to select a widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '104',
+  'location' => 'includes/content.admin.inc:428',
+  'textgroup' => 'default',
+  'source' => 'Add new field: invalid widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '105',
+  'location' => 'includes/content.admin.inc:449',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: you need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '106',
+  'location' => 'includes/content.admin.inc:454',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: you need to select a field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '107',
+  'location' => 'includes/content.admin.inc:459',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: you need to select a widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '108',
+  'location' => 'includes/content.admin.inc:465',
+  'textgroup' => 'default',
+  'source' => 'Add existing field: invalid widget.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '109',
+  'location' => 'includes/content.admin.inc:514',
+  'textgroup' => 'default',
+  'source' => 'There was a problem creating field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '110',
+  'location' => 'includes/content.admin.inc:526',
+  'textgroup' => 'default',
+  'source' => 'The field %label cannot be added to a content type because it is locked.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '111',
+  'location' => 'includes/content.admin.inc:536',
+  'textgroup' => 'default',
+  'source' => 'There was a problem adding field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '112',
+  'location' => 'includes/content.admin.inc:578',
+  'textgroup' => 'default',
+  'source' => 'There are no fields configured for this content type. You can add new fields on the <a href="@link">Manage fields</a> page.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '113',
+  'location' => 'includes/content.admin.inc:585;633,  includes/panels/content_types/content_field.inc:101,  modules/content_multigroup/content_multigroup.module:352',
+  'textgroup' => 'default',
+  'source' => 'Above',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '114',
+  'location' => 'includes/content.admin.inc:586,  includes/panels/content_types/content_field.inc:102',
+  'textgroup' => 'default',
+  'source' => 'Inline',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '115',
+  'location' => 'includes/content.admin.inc:625;668',
+  'textgroup' => 'default',
+  'source' => 'Include',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '116',
+  'location' => 'includes/content.admin.inc:625;668,  theme/content-admin-display-overview-form.tpl.php:17',
+  'textgroup' => 'default',
+  'source' => 'Exclude',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '117',
+  'location' => 'includes/content.admin.inc:637',
+  'textgroup' => 'default',
+  'source' => 'no styling',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '118',
+  'location' => 'includes/content.admin.inc:638',
+  'textgroup' => 'default',
+  'source' => 'simple',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '119',
+  'location' => 'includes/content.admin.inc:639',
+  'textgroup' => 'default',
+  'source' => 'fieldset',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '120',
+  'location' => 'includes/content.admin.inc:640',
+  'textgroup' => 'default',
+  'source' => 'fieldset - collapsible',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '121',
+  'location' => 'includes/content.admin.inc:641',
+  'textgroup' => 'default',
+  'source' => 'fieldset - collapsed',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '122',
+  'location' => 'includes/content.admin.inc:697',
+  'textgroup' => 'default',
+  'source' => 'Your settings have been saved.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '123',
+  'location' => 'includes/content.admin.inc:767',
+  'textgroup' => 'default',
+  'source' => '@type: @field (@label)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '124',
+  'location' => 'includes/content.admin.inc:793',
+  'textgroup' => 'default',
+  'source' => 'Edit basic information',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '125',
+  'location' => 'includes/content.admin.inc:799',
+  'textgroup' => 'default',
+  'source' => 'The machine-readable name of the field. This name cannot be changed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '126',
+  'location' => 'includes/content.admin.inc:807',
+  'textgroup' => 'default',
+  'source' => 'A human-readable name to be used as the label for this field in the %type content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '127',
+  'location' => 'includes/content.admin.inc:814',
+  'textgroup' => 'default',
+  'source' => 'The type of data you would like to store in the database with this field. This option cannot be changed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '128',
+  'location' => 'includes/content.admin.inc:819;1003',
+  'textgroup' => 'default',
+  'source' => 'Widget type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '129',
+  'location' => 'includes/content.admin.inc:823',
+  'textgroup' => 'default',
+  'source' => 'The type of form element you would like to present to the user when creating this field in the %type content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '130',
+  'location' => 'includes/content.admin.inc:833,  includes/content.rules.inc:66',
+  'textgroup' => 'default',
+  'source' => 'Continue',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '131',
+  'location' => 'includes/content.admin.inc:861',
+  'textgroup' => 'default',
+  'source' => 'Updated basic settings for field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '132',
+  'location' => 'includes/content.admin.inc:865',
+  'textgroup' => 'default',
+  'source' => 'There was a problem updating the basic settings for field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '133',
+  'location' => 'includes/content.admin.inc:892',
+  'textgroup' => 'default',
+  'source' => 'Are you sure you want to remove the field %field?',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '134',
+  'location' => 'includes/content.admin.inc:894',
+  'textgroup' => 'default',
+  'source' => 'If you have any content left in this field, it will be lost. This action cannot be undone.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '135',
+  'location' => 'includes/content.admin.inc:895,  modules/fieldgroup/fieldgroup.module:209',
+  'textgroup' => 'default',
+  'source' => 'Cancel',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '136',
+  'location' => 'includes/content.admin.inc:901',
+  'textgroup' => 'default',
+  'source' => 'This field is <strong>locked</strong> and cannot be removed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '137',
+  'location' => 'includes/content.admin.inc:922',
+  'textgroup' => 'default',
+  'source' => 'Removed field %field from %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '138',
+  'location' => 'includes/content.admin.inc:927',
+  'textgroup' => 'default',
+  'source' => 'There was a problem deleting %field from %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '139',
+  'location' => 'includes/content.admin.inc:946',
+  'textgroup' => 'default',
+  'source' => 'The field %field is locked and cannot be edited.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '140',
+  'location' => 'includes/content.admin.inc:980',
+  'textgroup' => 'default',
+  'source' => '%type basic information',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '141',
+  'location' => 'includes/content.admin.inc:1010;1189',
+  'textgroup' => 'default',
+  'source' => 'Change basic information',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '142',
+  'location' => 'includes/content.admin.inc:1016',
+  'textgroup' => 'default',
+  'source' => '%type settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '143',
+  'location' => 'includes/content.admin.inc:1017',
+  'textgroup' => 'default',
+  'source' => 'These settings apply only to the %field field as it appears in the %type content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '144',
+  'location' => 'includes/content.admin.inc:1031,  modules/fieldgroup/fieldgroup.module:145',
+  'textgroup' => 'default',
+  'source' => 'Help text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '145',
+  'location' => 'includes/content.admin.inc:1034',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '146',
+  'location' => 'includes/content.admin.inc:1060',
+  'textgroup' => 'default',
+  'source' => 'Default value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '147',
+  'location' => 'includes/content.admin.inc:1081,  modules/number/number.module:123,  modules/text/text.module:86',
+  'textgroup' => 'default',
+  'source' => 'PHP code',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '148',
+  'location' => 'includes/content.admin.inc:1090;1245,  includes/content.rules.inc:93',
+  'textgroup' => 'default',
+  'source' => "'@column' => value for @column",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '149',
+  'location' => 'includes/content.admin.inc:1092;1247,  includes/content.rules.inc:95',
+  'textgroup' => 'default',
+  '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);",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '150',
+  'location' => 'includes/content.admin.inc:1096;1109,  includes/content.rules.inc:99,  modules/number/number.module:130;139,  modules/text/text.module:93;102',
+  'textgroup' => 'default',
+  'source' => 'Code',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '151',
+  'location' => 'includes/content.admin.inc:1100',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '152',
+  'location' => 'includes/content.admin.inc:1110,  modules/number/number.module:140,  modules/text/text.module:103',
+  'textgroup' => 'default',
+  'source' => '&lt;none&gt;',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '153',
+  'location' => 'includes/content.admin.inc:1111,  modules/number/number.module:141,  modules/text/text.module:104',
+  'textgroup' => 'default',
+  'source' => "You're not allowed to input PHP code.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '154',
+  'location' => 'includes/content.admin.inc:1111',
+  'textgroup' => 'default',
+  'source' => 'This PHP code was set by an administrator and will override any value specified above.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '155',
+  'location' => 'includes/content.admin.inc:1118',
+  'textgroup' => 'default',
+  'source' => 'Global settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '156',
+  'location' => 'includes/content.admin.inc:1119',
+  'textgroup' => 'default',
+  'source' => 'These settings apply to the %field field in every content type in which it appears.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '157',
+  'location' => 'includes/content.admin.inc:1123',
+  'textgroup' => 'default',
+  'source' => 'Required',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '158',
+  'location' => 'includes/content.admin.inc:1126',
+  'textgroup' => 'default',
+  'source' => 'Maximum number of values users can enter for this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '159',
+  'location' => 'includes/content.admin.inc:1128',
+  'textgroup' => 'default',
+  'source' => "'Unlimited' will provide an 'Add more' button so the users can add as many values as they like.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '160',
+  'location' => 'includes/content.admin.inc:1130',
+  'textgroup' => 'default',
+  'source' => 'Warning! Changing this setting after data has been created could result in the loss of data!',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '161',
+  'location' => 'includes/content.admin.inc:1133',
+  'textgroup' => 'default',
+  'source' => 'Number of values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '162',
+  'location' => 'includes/content.admin.inc:1134,  modules/content_multigroup/content_multigroup.module:73',
+  'textgroup' => 'default',
+  'source' => 'Unlimited',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '163',
+  'location' => 'includes/content.admin.inc:1151,  modules/content_copy/content_copy.module:251',
+  'textgroup' => 'default',
+  'source' => 'Save field settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '164',
+  'location' => 'includes/content.admin.inc:1288',
+  'textgroup' => 'default',
+  'source' => "The PHP code for 'default value' returned @value, which is invalid.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '165',
+  'location' => 'includes/content.admin.inc:1292',
+  'textgroup' => 'default',
+  'source' => 'The default value is invalid.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '166',
+  'location' => 'includes/content.admin.inc:1316',
+  'textgroup' => 'default',
+  'source' => 'Added field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '167',
+  'location' => 'includes/content.admin.inc:1320',
+  'textgroup' => 'default',
+  'source' => 'Saved field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '168',
+  'location' => 'includes/content.admin.inc:1678',
+  'textgroup' => 'default',
+  'source' => 'Processing',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '169',
+  'location' => 'includes/content.admin.inc:1679',
+  'textgroup' => 'default',
+  'source' => 'The update has encountered an error.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '170',
+  'location' => 'includes/content.admin.inc:1693',
+  'textgroup' => 'default',
+  'source' => 'The database has been altered and data has been migrated or deleted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '171',
+  'location' => 'includes/content.admin.inc:1696',
+  'textgroup' => 'default',
+  'source' => 'An error occurred and database alteration did not complete.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '172',
+  'location' => 'includes/content.admin.inc:1799',
+  'textgroup' => 'default',
+  'source' => 'Processing %title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '173',
+  'location' => 'includes/content.admin.inc:1865',
+  'textgroup' => 'default',
+  'source' => '%name must be an integer.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '174',
+  'location' => 'includes/content.admin.inc:1875',
+  'textgroup' => 'default',
+  'source' => '%name must be a positive integer.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '175',
+  'location' => 'includes/content.admin.inc:1885',
+  'textgroup' => 'default',
+  'source' => '%name must be a number.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '176',
+  'location' => 'includes/content.admin.inc:1697',
+  'textgroup' => 'default',
+  'source' => '1 item successfully processed:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '177',
+  'location' => 'includes/content.admin.inc:1697',
+  'textgroup' => 'default',
+  'source' => '@count items successfully processed:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '178',
+  'location' => 'includes/content.crud.inc:589',
+  'textgroup' => 'default',
+  'source' => 'Content fields table %old_name has been renamed to %new_name and field instances have been updated.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '179',
+  'location' => 'includes/content.crud.inc:633',
+  'textgroup' => 'default',
+  'source' => 'The content fields table %name has been deleted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '180',
+  'location' => 'includes/content.node_form.inc:223',
+  'textgroup' => 'default',
+  'source' => 'Add another item',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '181',
+  'location' => 'includes/panels/content_types/content_field.inc:14',
+  'textgroup' => 'default',
+  'source' => 'Content field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '182',
+  'location' => 'includes/content.panels.inc:38',
+  'textgroup' => 'default',
+  'source' => 'A content field from the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '183',
+  'location' => 'includes/panels/content_types/content_field.inc:45,  modules/fieldgroup/fieldgroup.panels.inc:31,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:43',
+  'textgroup' => 'default',
+  'source' => 'Node',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '184',
+  'location' => 'includes/content.panels.inc:40,  modules/fieldgroup/fieldgroup.panels.inc:32',
+  'textgroup' => 'default',
+  'source' => 'Node context',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '185',
+  'location' => 'includes/panels/content_types/content_field.inc:100',
+  'textgroup' => 'default',
+  'source' => 'Block title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '186',
+  'location' => 'includes/panels/content_types/content_field.inc:103',
+  'textgroup' => 'default',
+  'source' => 'Hidden',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '187',
+  'location' => 'includes/panels/content_types/content_field.inc:105',
+  'textgroup' => 'default',
+  'source' => 'Configure how the label is going to be displayed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '188',
+  'location' => 'includes/content.panels.inc:73',
+  'textgroup' => 'default',
+  'source' => 'Field / Formatter',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '189',
+  'location' => 'includes/content.panels.inc:76',
+  'textgroup' => 'default',
+  'source' => 'Select a field and formatter.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '190',
+  'location' => 'includes/content.panels.inc:92',
+  'textgroup' => 'default',
+  'source' => '"@s" field @name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '191',
+  'location' => 'includes/content.rules.inc:15',
+  'textgroup' => 'default',
+  'source' => 'Populate a field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '192',
+  'location' => 'includes/content.rules.inc:23;224',
+  'textgroup' => 'default',
+  'source' => 'You should make sure that the used field exists in the given content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '193',
+  'location' => 'includes/content.rules.inc:53;276,  modules/nodereference/nodereference.rules.inc:45,  modules/userreference/userreference.rules.inc:47',
+  'textgroup' => 'default',
+  'source' => 'Field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '194',
+  'location' => 'includes/content.rules.inc:56',
+  'textgroup' => 'default',
+  'source' => 'Select the machine-name of the field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '195',
+  'location' => 'includes/content.rules.inc:84',
+  'textgroup' => 'default',
+  'source' => 'Advanced: Specify the fields value with PHP code',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '196',
+  'location' => 'not literally,  includes/content.rules.inc:102',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '197',
+  'location' => 'includes/content.rules.inc:130',
+  'textgroup' => 'default',
+  'source' => 'You have to return the default value in the expected format.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '198',
+  'location' => 'includes/content.rules.inc:193',
+  'textgroup' => 'default',
+  'source' => "Populate @node's field '@field'",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '199',
+  'location' => 'includes/content.rules.inc:210',
+  'textgroup' => 'default',
+  'source' => 'Field has value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '200',
+  'location' => 'includes/content.rules.inc:215',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '201',
+  'location' => 'includes/content.rules.inc:219',
+  'textgroup' => 'default',
+  'source' => 'Field has changed',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '202',
+  'location' => 'includes/content.rules.inc:221',
+  'textgroup' => 'default',
+  'source' => 'Content containing changes',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '203',
+  'location' => 'includes/content.rules.inc:222',
+  'textgroup' => 'default',
+  'source' => 'Content not containing changes',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '204',
+  'location' => 'includes/content.rules.inc:259',
+  'textgroup' => 'default',
+  'source' => "@node's field '@field' has value",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '205',
+  'location' => 'not literally,  includes/content.rules.inc:279,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Select the machine-name of the field to look at.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '206',
+  'location' => '@node?,  includes/content.rules.inc:285',
+  'textgroup' => 'default',
+  'source' => "@node's field '@field' has been changed",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '207',
+  'location' => 'includes/content.token.inc:12;15',
+  'textgroup' => 'default',
+  'source' => 'Token',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '208',
+  'location' => 'includes/content.token.inc:81',
+  'textgroup' => 'default',
+  'source' => 'Referenced node ID',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '209',
+  'location' => 'includes/content.token.inc:82',
+  'textgroup' => 'default',
+  'source' => 'Referenced node title',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '210',
   'location' => 'includes/content.token.inc:83',
   'textgroup' => 'default',
-  'source' => 'Referenced node unfiltered title. WARNING - raw user input.',
+  'source' => 'Referenced node unfiltered title. WARNING - raw user input.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '211',
+  'location' => 'includes/content.token.inc:84',
+  'textgroup' => 'default',
+  'source' => 'Formatted html link to the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '212',
+  'location' => 'includes/content.token.inc:85',
+  'textgroup' => 'default',
+  'source' => 'Relative path alias to the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '213',
+  'location' => 'includes/content.token.inc:86',
+  'textgroup' => 'default',
+  'source' => 'Absolute path alias to the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '214',
+  'location' => 'includes/content.token.inc:114',
+  'textgroup' => 'default',
+  'source' => 'Raw number value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '215',
+  'location' => 'includes/content.token.inc:115',
+  'textgroup' => 'default',
+  'source' => 'Formatted number value',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '216',
+  'location' => 'includes/content.token.inc:138',
+  'textgroup' => 'default',
+  'source' => 'Raw, unfiltered text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '217',
+  'location' => 'includes/content.token.inc:139',
+  'textgroup' => 'default',
+  'source' => 'Formatted and filtered text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '218',
+  'location' => 'includes/content.token.inc:161',
+  'textgroup' => 'default',
+  'source' => 'Referenced user ID',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '219',
+  'location' => 'includes/content.token.inc:162',
+  'textgroup' => 'default',
+  'source' => 'Referenced user name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '220',
+  'location' => 'includes/content.token.inc:163',
+  'textgroup' => 'default',
+  'source' => 'Formatted HTML link to referenced user',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '221',
+  'location' => 'includes/content.token.inc:164',
+  'textgroup' => 'default',
+  'source' => 'Relative path alias to the referenced user.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '222',
+  'location' => 'includes/content.token.inc:165',
+  'textgroup' => 'default',
+  'source' => 'Absolute path alias to the referenced user.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '223',
+  'location' => 'includes/views/content.views.inc:245;261',
+  'textgroup' => 'default',
+  'source' => '@label (!name)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '224',
+  'location' => 'includes/views/content.views.inc:249',
+  'textgroup' => 'default',
+  'source' => '@label (!name) - !column',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '225',
+  'location' => 'includes/views/content.views.inc:250',
+  'textgroup' => 'default',
+  'source' => '@label-truncated - !column',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '226',
+  'location' => 'includes/views/content.views.inc:257',
+  'textgroup' => 'default',
+  'source' => 'Appears in: @types',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '227',
+  'location' => 'includes/views/handlers/content_handler_field.inc:56',
+  'textgroup' => 'default',
+  'source' => 'None',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '228',
+  'location' => 'includes/views/handlers/content_handler_field.inc:57',
+  'textgroup' => 'default',
+  'source' => 'Widget label (@label)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '229',
+  'location' => 'includes/views/handlers/content_handler_field.inc:58',
+  'textgroup' => 'default',
+  'source' => 'Custom',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '230',
+  'location' => 'includes/views/handlers/content_handler_field.inc:64',
+  'textgroup' => 'default',
+  'source' => 'Custom label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '231',
+  'location' => 'includes/views/handlers/content_handler_field.inc:80',
+  'textgroup' => 'default',
+  'source' => 'Format',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '232',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:56',
+  'textgroup' => 'default',
+  'source' => 'Group multiple values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '233',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:61',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '234',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:63',
+  'textgroup' => 'default',
+  'source' => 'Show @count value(s)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '235',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:74',
+  'textgroup' => 'default',
+  'source' => 'starting from @count',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '236',
+  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:85',
+  'textgroup' => 'default',
+  'source' => 'Reversed (start from last values)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '237',
+  'location' => 'includes/views/handlers/content_handler_relationship.inc:40,  includes/views/handlers/content_handler_sort.inc:41',
+  'textgroup' => 'default',
+  'source' => 'All',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '238',
+  'location' => 'includes/views/handlers/content_handler_relationship.inc:48,  includes/views/handlers/content_handler_sort.inc:49',
+  'textgroup' => 'default',
+  'source' => 'Delta',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '239',
+  'location' => 'includes/views/handlers/content_handler_relationship.inc:49',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '240',
+  'location' => 'includes/views/handlers/content_handler_sort.inc:50',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '241',
+  'location' => 'modules/content_copy/content_copy_export_form.tpl.php:9,  modules/content_copy/content_copy.module:191;38',
+  'textgroup' => 'default',
+  'source' => 'Export',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '242',
+  'location' => 'modules/content_copy/content_copy.module:97',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '243',
+  'location' => 'modules/content_copy/content_copy.module:103',
+  'textgroup' => 'default',
+  'source' => 'Types',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '244',
+  'location' => 'modules/content_copy/content_copy.module:107',
+  'textgroup' => 'default',
+  'source' => 'Select the content type to export.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '245',
+  'location' => 'modules/content_copy/content_copy.module:175',
+  'textgroup' => 'default',
+  'source' => 'Export data',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '246',
+  'location' => 'modules/content_copy/content_copy.module:180',
+  'textgroup' => 'default',
+  'source' => 'Copy the export text and paste it into another content type using the import function.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '247',
+  'location' => 'content_admin.inc:42',
+  'textgroup' => 'default',
+  'source' => 'Content types',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '248',
+  'location' => 'modules/content_copy/content_copy.module:308',
+  'textgroup' => 'default',
+  'source' => 'Content type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '249',
+  'location' => 'modules/content_copy/content_copy.module:309',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '250',
+  'location' => 'modules/content_copy/content_copy.module:314',
+  'textgroup' => 'default',
+  'source' => 'Import data',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '251',
+  'location' => 'modules/content_copy/content_copy.module:316',
+  'textgroup' => 'default',
+  'source' => 'Paste the text created by a content export into this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '252',
+  'location' => 'modules/content_copy/content_copy.module:320;46',
+  'textgroup' => 'default',
+  'source' => 'Import',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '253',
+  'location' => 'modules/content_copy/content_copy.module:328',
+  'textgroup' => 'default',
+  'source' => 'A file has been pre-loaded for import.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '254',
+  'location' => 'modules/content_copy/content_copy.module:354',
+  'textgroup' => 'default',
+  'source' => 'The import data is not valid import text.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '255',
+  'location' => 'modules/content_copy/content_copy.module:403',
+  'textgroup' => 'default',
+  'source' => 'The following modules must be enabled for this import to work: %modules.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '256',
+  'location' => 'modules/content_copy/content_copy.module:411',
+  'textgroup' => 'default',
+  'source' => 'The content type %type already exists in this database.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '257',
+  'location' => 'modules/content_copy/content_copy.module:418',
+  'textgroup' => 'default',
+  'source' => 'Exiting. No import performed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '258',
+  'location' => 'modules/content_copy/content_copy.module:442',
+  'textgroup' => 'default',
+  'source' => 'An error has occurred adding the content type %type.<br/>Please check the errors displayed for more details.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '259',
+  'location' => 'modules/content_copy/content_copy.module:467',
+  'textgroup' => 'default',
+  'source' => 'The imported field %field_label (%field_name) was not added to %type because that field already exists in %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '260',
+  'location' => 'modules/content_copy/content_copy.module:476',
+  'textgroup' => 'default',
+  'source' => 'The field %field_label (%field_name) was added to the content type %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '261',
+  'location' => 'modules/content_copy/content_copy.module:0',
+  'textgroup' => 'default',
+  'source' => 'content_copy',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '262',
+  'location' => 'modules/content_copy/content_copy.info:0',
+  'textgroup' => 'default',
+  'source' => 'Content Copy',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '263',
+  'location' => 'modules/content_copy/content_copy.info:0',
+  'textgroup' => 'default',
+  'source' => 'Enables ability to import/export field definitions.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '264',
+  'location' => 'modules/content_multigroup/content_multigroup.module:12',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '265',
+  'location' => 'modules/content_multigroup/content_multigroup.module:65;135',
+  'textgroup' => 'default',
+  'source' => 'Multigroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '266',
+  'location' => 'modules/content_multigroup/content_multigroup.module:134',
+  'textgroup' => 'default',
+  'source' => 'Standard',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '267',
+  'location' => 'includes/content.admin.inc:344,  modules/content_multigroup/content_multigroup.module:126',
+  'textgroup' => 'default',
+  'source' => 'Type of group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '268',
+  'location' => 'modules/content_multigroup/content_multigroup.module:215',
+  'textgroup' => 'default',
+  'source' => 'The field %field has been updated to use %multiple values, to match the multiple value setting of the Multigroup %group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '269',
+  'location' => 'modules/content_multigroup/content_multigroup.module:248',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '270',
+  'location' => 'modules/content_multigroup/content_multigroup.module:272',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '271',
+  'location' => 'modules/content_multigroup/content_multigroup.module:287',
+  'textgroup' => 'default',
+  'source' => 'You are moving the field %field into a Multigroup.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '272',
+  'location' => 'modules/content_multigroup/content_multigroup.module:320',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '273',
+  'location' => 'modules/content_multigroup/content_multigroup.module:334',
+  'textgroup' => 'default',
+  'source' => 'You are moving the field %field out of a Multigroup.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '274',
+  'location' => 'modules/content_multigroup/content_multigroup.module:369',
+  'textgroup' => 'default',
+  'source' => 'Simple',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '275',
+  'location' => 'modules/content_multigroup/content_multigroup.module:370',
+  'textgroup' => 'default',
+  'source' => 'Fieldset',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '276',
+  'location' => 'modules/content_multigroup/content_multigroup.module:371',
+  'textgroup' => 'default',
+  'source' => 'Horizontal line',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '277',
+  'location' => 'modules/content_multigroup/content_multigroup.module:372',
+  'textgroup' => 'default',
+  'source' => 'Table - Single column',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '278',
+  'location' => 'modules/content_multigroup/content_multigroup.module:373',
+  'textgroup' => 'default',
+  'source' => 'Table - Multiple columns',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '279',
+  'location' => 'modules/content_multigroup/content_multigroup.module:384',
+  'textgroup' => 'default',
+  'source' => '[Subgroup format]',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '280',
+  'location' => 'modules/content_multigroup/content_multigroup.module:461',
+  'textgroup' => 'default',
+  'source' => 'Multigroup settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '281',
+  'location' => 'modules/content_multigroup/content_multigroup.module:476',
+  'textgroup' => 'default',
+  'source' => 'Multiple columns',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '282',
+  'location' => 'modules/content_multigroup/content_multigroup.module:478',
+  'textgroup' => 'default',
+  'source' => 'Enable this option to render each field on a separate column on the node edit form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '283',
+  'location' => 'modules/content_multigroup/content_multigroup.module:485',
+  'textgroup' => 'default',
+  'source' => 'Enable this option to require a minimum of one collection of fields in this Multigroup.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '284',
+  'location' => 'modules/content_multigroup/content_multigroup.module:488',
+  'textgroup' => 'default',
+  'source' => 'Number of times to repeat the collection of Multigroup fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '285',
+  'location' => 'modules/content_multigroup/content_multigroup.module:489',
+  'textgroup' => 'default',
+  'source' => "'Unlimited' will provide an 'Add more' button so the users can add items as many times as they like.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '286',
+  'location' => 'modules/content_multigroup/content_multigroup.module:490',
+  'textgroup' => 'default',
+  'source' => 'All fields in this group will automatically be set to allow this number of values.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '287',
+  'location' => 'modules/content_multigroup/content_multigroup.module:495',
+  'textgroup' => 'default',
+  'source' => 'Number of repeats',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '288',
+  'location' => 'modules/content_multigroup/content_multigroup.module:503',
+  'textgroup' => 'default',
+  'source' => 'Labels',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '289',
+  'location' => 'modules/content_multigroup/content_multigroup.module:504',
+  'textgroup' => 'default',
+  'source' => "Labels for each subgroup of fields. Labels can be hidden or shown in various contexts using the 'Display fields' screen.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '290',
+  'location' => 'modules/content_multigroup/content_multigroup.module:512',
+  'textgroup' => 'default',
+  'source' => 'Subgroup %number label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '291',
+  'location' => 'modules/content_multigroup/content_multigroup.module:539',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '292',
+  'location' => 'modules/content_multigroup/content_multigroup.module:932',
+  'textgroup' => 'default',
+  'source' => '!name field is required in group @group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '293',
+  'location' => 'modules/content_multigroup/content_multigroup.module:946',
+  'textgroup' => 'default',
+  'source' => 'Group @name requires one collection of fields minimum.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '294',
+  'location' => 'modules/content_multigroup/content_multigroup.module:1145',
+  'textgroup' => 'default',
+  'source' => 'Add more values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '295',
+  'location' => 'modules/content_multigroup/content_multigroup.module:0',
+  'textgroup' => 'default',
+  'source' => 'content_multigroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '296',
+  'location' => 'modules/content_multigroup/content_multigroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Content Multigroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '297',
+  'location' => 'modules/content_multigroup/content_multigroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Combine multiple CCK fields into repeating field collections that work in unison.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '298',
+  'location' => 'modules/content_permissions/content_permissions.module:10',
+  'textgroup' => 'default',
+  'source' => 'edit',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '299',
+  'location' => 'modules/content_permissions/content_permissions.module:10;11',
+  'textgroup' => 'default',
+  'source' => 'field_name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '300',
+  'location' => 'modules/content_permissions/content_permissions.module:11',
+  'textgroup' => 'default',
+  'source' => 'view',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '301',
+  'location' => 'modules/content_permissions/content_permissions.module:0',
+  'textgroup' => 'default',
+  'source' => 'content_permissions',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '302',
+  'location' => 'modules/content_permissions/content_permissions.install:9',
+  'textgroup' => 'default',
+  'source' => 'Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '303',
+  'location' => 'modules/content_permissions/content_permissions.info:0',
+  'textgroup' => 'default',
+  'source' => 'Content Permissions',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '304',
+  'location' => 'modules/content_permissions/content_permissions.info:0',
+  'textgroup' => 'default',
+  'source' => 'Set field-level permissions for CCK fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '305',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:10;27,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:14',
+  'textgroup' => 'default',
+  'source' => 'Content fieldgroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '306',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:30',
+  'textgroup' => 'default',
+  'source' => 'All fields from a fieldgroup on the referenced node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '307',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:91',
+  'textgroup' => 'default',
+  'source' => '@group_label (@group_type_name)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '308',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:102,  modules/fieldgroup/fieldgroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Fieldgroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '309',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:112,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:102',
+  'textgroup' => 'default',
+  'source' => 'Text to display if group has no data. Note that title will not display unless overridden.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '310',
+  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:128',
+  'textgroup' => 'default',
+  'source' => '"@s" fieldgroup @name',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '311',
+  'location' => 'modules/fieldgroup/fieldgroup.module:124',
+  'textgroup' => 'default',
+  'source' => 'Form settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '312',
+  'location' => 'modules/fieldgroup/fieldgroup.module:125',
+  'textgroup' => 'default',
+  'source' => 'These settings apply to the group in the node editing form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '313',
+  'location' => 'modules/fieldgroup/fieldgroup.module:129',
+  'textgroup' => 'default',
+  'source' => 'Style',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '314',
+  'location' => 'modules/fieldgroup/fieldgroup.module:132',
+  'textgroup' => 'default',
+  'source' => 'always open',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '315',
+  'location' => 'modules/fieldgroup/fieldgroup.module:133',
+  'textgroup' => 'default',
+  'source' => 'collapsible',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '316',
+  'location' => 'modules/fieldgroup/fieldgroup.module:134',
+  'textgroup' => 'default',
+  'source' => 'collapsed',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '317',
+  'location' => 'modules/fieldgroup/fieldgroup.module:142',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user on the editing form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '318',
+  'location' => 'modules/fieldgroup/fieldgroup.module:147',
+  'textgroup' => 'default',
+  'source' => 'Display settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '319',
+  'location' => 'modules/fieldgroup/fieldgroup.module:148',
+  'textgroup' => 'default',
+  'source' => 'These settings apply to the group on node display.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '320',
+  'location' => 'modules/fieldgroup/fieldgroup.module:155',
+  'textgroup' => 'default',
+  'source' => 'A description of the group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '321',
+  'location' => 'modules/fieldgroup/fieldgroup.module:200',
+  'textgroup' => 'default',
+  'source' => 'Are you sure you want to remove the group %label?',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '322',
+  'location' => 'modules/fieldgroup/fieldgroup.module:202',
+  'textgroup' => 'default',
+  'source' => 'This action cannot be undone.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '323',
+  'location' => 'modules/fieldgroup/fieldgroup.module:211',
+  'textgroup' => 'default',
+  'source' => 'The group %group_name has been removed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '324',
+  'location' => 'modules/content_multigroup/content_multigroup.module:356,  modules/fieldgroup/fieldgroup.module:266',
+  'textgroup' => 'default',
+  'source' => 'none',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '325',
+  'location' => 'modules/fieldgroup/fieldgroup.module:353',
+  'textgroup' => 'default',
+  'source' => 'You need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '326',
+  'location' => 'modules/fieldgroup/fieldgroup.module:358',
+  'textgroup' => 'default',
+  'source' => 'You need to provide a group name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '327',
+  'location' => 'modules/fieldgroup/fieldgroup.module:372',
+  'textgroup' => 'default',
+  'source' => 'The group name %group_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '328',
+  'location' => 'modules/fieldgroup/fieldgroup.module:375',
+  'textgroup' => 'default',
+  'source' => "The group name %group_name is too long. The name is limited to 32 characters, including the 'group_' prefix.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '329',
+  'location' => 'modules/fieldgroup/fieldgroup.module:381',
+  'textgroup' => 'default',
+  'source' => 'The group name %group_name already exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '330',
+  'location' => 'modules/fieldgroup/fieldgroup.module:400;403',
+  'textgroup' => 'default',
+  'source' => 'Add new group:',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '331',
+  'location' => 'modules/fieldgroup/fieldgroup.module:418',
+  'textgroup' => 'default',
+  'source' => 'Add new group: you need to provide a label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '332',
+  'location' => 'modules/fieldgroup/fieldgroup.module:419',
+  'textgroup' => 'default',
+  'source' => 'Add new group: you need to provide a group name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '333',
+  'location' => 'modules/fieldgroup/fieldgroup.module:648',
+  'textgroup' => 'default',
+  'source' => 'Standard group',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '334',
+  'location' => 'modules/fieldgroup/fieldgroup.module:39;46',
+  'textgroup' => 'default',
+  'source' => 'Edit group',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '335',
+  'location' => 'modules/fieldgroup/fieldgroup.module:0',
+  'textgroup' => 'default',
+  'source' => 'fieldgroup',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '336',
+  'location' => 'modules/fieldgroup/fieldgroup.info:0',
+  'textgroup' => 'default',
+  'source' => 'Create display groups for CCK fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '337',
+  'location' => 'modules/nodereference/nodereference.rules.inc:15',
+  'textgroup' => 'default',
+  'source' => 'Load a referenced node',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '338',
+  'location' => 'modules/nodereference/nodereference.rules.inc:19',
+  'textgroup' => 'default',
+  'source' => 'Content containing the node reference field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '339',
+  'location' => 'modules/nodereference/nodereference.rules.inc:25',
+  'textgroup' => 'default',
+  'source' => 'Referenced content',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '340',
+  'location' => 'modules/nodereference/nodereference.rules.inc:29',
+  'textgroup' => 'default',
+  'source' => 'Note that if the field has multiple values, only the first content node will be loaded.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '341',
+  'location' => 'modules/nodereference/nodereference.rules.inc:50',
+  'textgroup' => 'default',
+  'source' => 'There are no nodereference fields defined.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '342',
+  'location' => 'modules/nodereference/nodereference.module:60',
+  'textgroup' => 'default',
+  'source' => 'Node reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '343',
+  'location' => 'modules/nodereference/nodereference.module:61',
+  'textgroup' => 'default',
+  'source' => 'Store the ID of a related node as an integer value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '344',
+  'location' => 'nodereference.module:51',
+  'textgroup' => 'default',
+  'source' => 'Content types that can be referenced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '345',
+  'location' => 'modules/nodereference/nodereference.module:97,  modules/userreference/userreference.module:94',
+  'textgroup' => 'default',
+  'source' => 'Default Views',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '346',
+  'location' => 'modules/nodereference/nodereference.module:100,  modules/userreference/userreference.module:97',
+  'textgroup' => 'default',
+  'source' => 'Existing Views',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '347',
+  'location' => 'modules/nodereference/nodereference.module:97',
+  'textgroup' => 'default',
+  'source' => 'Advanced - Nodes that can be referenced (View)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '348',
+  'location' => 'modules/nodereference/nodereference.module:104',
+  'textgroup' => 'default',
+  'source' => 'View used to select the nodes',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '349',
+  'location' => 'modules/nodereference/nodereference.module:107',
+  'textgroup' => 'default',
+  'source' => '<p>Choose the "Views module" view that selects the nodes that can be referenced.<br />Note:</p>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '350',
+  'location' => 'modules/nodereference/nodereference.module:108;121',
+  'textgroup' => 'default',
+  '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>",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '351',
+  'location' => 'modules/nodereference/nodereference.module:122,  modules/userreference/userreference.module:119',
+  'textgroup' => 'default',
+  'source' => 'View arguments',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '352',
+  'location' => 'modules/nodereference/nodereference.module:125,  modules/userreference/userreference.module:122',
+  'textgroup' => 'default',
+  'source' => 'Provide a comma separated list of arguments to pass to the view.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '353',
+  'location' => 'modules/nodereference/nodereference.module:120',
+  'textgroup' => 'default',
+  '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>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '354',
+  'location' => 'modules/nodereference/nodereference.module:216,  modules/userreference/userreference.module:195',
+  'textgroup' => 'default',
+  'source' => '%name: invalid input.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '355',
+  'location' => 'modules/nodereference/nodereference.module:217',
+  'textgroup' => 'default',
+  'source' => "%name: this post can't be referenced.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '356',
+  'location' => 'modules/nodereference/nodereference.module:242',
+  'textgroup' => 'default',
+  'source' => 'Title (link)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '357',
+  'location' => 'modules/nodereference/nodereference.module:247',
+  'textgroup' => 'default',
+  'source' => 'Title (no link)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '358',
+  'location' => 'modules/nodereference/nodereference.module:358,  modules/optionwidgets/optionwidgets.module:80,  modules/userreference/userreference.module:284',
+  'textgroup' => 'default',
+  'source' => 'Select list',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '359',
+  'location' => 'modules/nodereference/nodereference.module:366,  modules/optionwidgets/optionwidgets.module:88,  modules/userreference/userreference.module:292',
+  'textgroup' => 'default',
+  'source' => 'Check boxes/radio buttons',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '360',
+  'location' => 'modules/nodereference/nodereference.module:374,  modules/userreference/userreference.module:300',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete text field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '361',
+  'location' => 'modules/nodereference/nodereference.module:429,  modules/userreference/userreference.module:355',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete matching',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '362',
+  'location' => 'modules/nodereference/nodereference.module:432,  modules/userreference/userreference.module:358',
+  'textgroup' => 'default',
+  'source' => 'Starts with',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '363',
+  'location' => 'modules/nodereference/nodereference.module:433,  modules/userreference/userreference.module:359',
+  'textgroup' => 'default',
+  'source' => 'Contains',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '364',
+  'location' => 'modules/nodereference/nodereference.module:423',
+  'textgroup' => 'default',
+  'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of nodes.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '365',
+  'location' => 'modules/nodereference/nodereference.module:671',
+  'textgroup' => 'default',
+  'source' => '%name: title mismatch. Please check your selection.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '366',
+  'location' => 'modules/nodereference/nodereference.module:678',
+  'textgroup' => 'default',
+  'source' => '%name: found no valid post with that title.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '367',
+  'location' => 'modules/nodereference/nodereference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Nodereference autocomplete',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '368',
+  'location' => 'nodereference.module:0',
+  'textgroup' => 'default',
+  'source' => 'nodereference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '369',
+  'location' => 'modules/nodereference/nodereference.info:0',
+  'textgroup' => 'default',
+  'source' => 'Node Reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '370',
+  'location' => 'modules/nodereference/nodereference.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing one node from another.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '371',
+  'location' => 'modules/number/number.module:34',
+  'textgroup' => 'default',
+  'source' => 'Integer',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '372',
+  'location' => 'modules/number/number.module:35',
+  'textgroup' => 'default',
+  'source' => 'Store a number in the database as an integer.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '373',
+  'location' => 'modules/number/number.module:38',
+  'textgroup' => 'default',
+  'source' => 'Decimal',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '374',
+  'location' => 'modules/number/number.module:39',
+  'textgroup' => 'default',
+  'source' => 'Store a number in the database in a fixed decimal format.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '375',
+  'location' => 'modules/number/number.module:42',
+  'textgroup' => 'default',
+  'source' => 'Float',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '376',
+  'location' => 'modules/number/number.module:43',
+  'textgroup' => 'default',
+  'source' => 'Store a number in the database in a floating point format.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '377',
+  'location' => 'modules/number/number.module:57',
+  'textgroup' => 'default',
+  'source' => 'Minimum',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '378',
+  'location' => 'modules/number/number.module:63',
+  'textgroup' => 'default',
+  'source' => 'Maximum',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '379',
+  'location' => 'modules/number/number.module:71',
+  'textgroup' => 'default',
+  'source' => 'Precision',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '380',
+  'location' => 'modules/number/number.module:72',
+  'textgroup' => 'default',
+  'source' => 'The total number of digits to store in the database, including those to the right of the decimal.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '381',
+  'location' => 'modules/number/number.module:78',
+  'textgroup' => 'default',
+  'source' => 'Scale',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '382',
+  'location' => 'modules/number/number.module:79',
+  'textgroup' => 'default',
+  'source' => 'The number of digits to the right of the decimal.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '383',
+  'location' => 'modules/number/number.module:85',
+  'textgroup' => 'default',
+  'source' => 'Decimal marker',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '384',
+  'location' => 'modules/number/number.module:86',
+  'textgroup' => 'default',
+  'source' => 'The character users will input to mark the decimal point in forms.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '385',
+  'location' => 'modules/number/number.module:92',
+  'textgroup' => 'default',
+  'source' => 'Prefix',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '386',
+  'location' => 'modules/number/number.module:95',
+  'textgroup' => 'default',
+  '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).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '387',
+  'location' => 'modules/number/number.module:99',
+  'textgroup' => 'default',
+  'source' => 'Suffix',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '388',
+  'location' => 'modules/number/number.module:102',
+  'textgroup' => 'default',
+  '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).',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '389',
+  'location' => 'modules/number/number.module:109,  modules/text/text.module:72',
+  'textgroup' => 'default',
+  'source' => 'Allowed values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '390',
+  'location' => 'modules/number/number.module:115,  modules/text/text.module:78',
+  'textgroup' => 'default',
+  'source' => 'Allowed values list',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '391',
+  'location' => 'modules/number/number.module:119,  modules/text/text.module:82',
+  'textgroup' => 'default',
+  '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',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '392',
+  'location' => 'modules/number/number.module:133,  modules/text/text.module:96',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '393',
+  'location' => 'modules/number/number.module:141,  modules/text/text.module:104',
+  'textgroup' => 'default',
+  'source' => 'This PHP code was set by an administrator and will override the allowed values list above.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '394',
+  'location' => 'modules/number/number.module:181,  modules/text/text.module:133',
+  'textgroup' => 'default',
+  'source' => '@label (!name) - Allowed values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '395',
+  'location' => 'modules/number/number.module:195',
+  'textgroup' => 'default',
+  'source' => '"Minimum" must be a number.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '396',
+  'location' => 'modules/number/number.module:202',
+  'textgroup' => 'default',
+  'source' => '"Maximum" must be a number.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '397',
+  'location' => 'modules/number/number.module:219',
+  'textgroup' => 'default',
+  'source' => '%name: the value may be no smaller than %min.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '398',
+  'location' => 'modules/number/number.module:222',
+  'textgroup' => 'default',
+  'source' => '%name: the value may be no larger than %max.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '399',
+  'location' => 'modules/number/number.module:238,  modules/text/text.module:157',
+  'textgroup' => 'default',
+  'source' => '%name: illegal value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '400',
+  'location' => 'modules/number/number.module:270',
+  'textgroup' => 'default',
+  'source' => 'unformatted',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '401',
+  'location' => 'modules/number/number.module:356,  modules/text/text.module:257',
+  'textgroup' => 'default',
+  'source' => 'Text field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '402',
+  'location' => 'Float validation: English needs work,  modules/number/number.module:509,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and decimals are allowed in %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '403',
+  'location' => 'Integer validation: English needs work,  modules/number/number.module:532,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Only numbers are allowed in %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '404',
+  'location' => 'Decimal validation with decimal character: English needs work,  modules/number/number.module:556,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '405',
+  'location' => 'modules/number/number.module:0',
+  'textgroup' => 'default',
+  'source' => 'number',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '406',
+  'location' => 'modules/number/number.info:0',
+  'textgroup' => 'default',
+  'source' => 'Number',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '407',
+  'location' => 'modules/number/number.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines numeric field types.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '408',
+  'location' => 'modules/optionwidgets/optionwidgets.module:19',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '409',
+  'location' => 'modules/optionwidgets/optionwidgets.module:22',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '410',
+  'location' => 'modules/optionwidgets/optionwidgets.module:25',
+  'textgroup' => 'default',
+  'source' => "The 'checkboxes/radio buttons' widget will display checkboxes if the multiple values option is selected for this field, otherwise radios will be displayed.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '411',
+  'location' => 'modules/optionwidgets/optionwidgets.module:37',
+  'textgroup' => 'default',
+  'source' => "You need to specify the 'allowed values' for this field.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '412',
+  'location' => 'modules/optionwidgets/optionwidgets.module:96',
+  'textgroup' => 'default',
+  'source' => 'Single on/off checkbox',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '413',
+  'location' => 'modules/optionwidgets/optionwidgets.module:331',
+  'textgroup' => 'default',
+  'source' => '%name: this field cannot hold more that @count values.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '414',
+  'location' => 'modules/optionwidgets/optionwidgets.module:411',
+  'textgroup' => 'default',
+  'source' => 'N/A',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '415',
+  'location' => 'modules/optionwidgets/optionwidgets.module:415',
+  'textgroup' => 'default',
+  'source' => '- None -',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '416',
+  'location' => 'modules/optionwidgets/optionwidgets.module:0',
+  'textgroup' => 'default',
+  'source' => 'optionwidgets',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '417',
+  'location' => 'modules/optionwidgets/optionwidgets.info:0',
+  'textgroup' => 'default',
+  'source' => 'Option Widgets',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '418',
+  'location' => 'modules/optionwidgets/optionwidgets.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '419',
+  'location' => 'modules/text/text.module:42',
+  'textgroup' => 'default',
+  'source' => 'Store text in the database.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '420',
+  'location' => 'modules/text/text.module:55;202,  modules/userreference/userreference.module:237',
+  'textgroup' => 'default',
+  'source' => 'Plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '421',
+  'location' => 'modules/text/text.module:55',
+  'textgroup' => 'default',
+  'source' => 'Filtered text (user selects input format)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '422',
+  'location' => 'modules/text/text.module:58',
+  'textgroup' => 'default',
+  'source' => 'Text processing',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '423',
+  'location' => 'modules/text/text.module:64',
+  'textgroup' => 'default',
+  'source' => 'Maximum length',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '424',
+  'location' => 'modules/text/text.module:68',
+  'textgroup' => 'default',
+  'source' => 'The maximum length of the field in characters. Leave blank for an unlimited size.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '425',
+  'location' => 'modules/text/text.module:160',
+  'textgroup' => 'default',
+  'source' => '%name: the value may not be longer than %max characters.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '426',
+  'location' => 'modules/text/text.module:197,  modules/userreference/userreference.module:232',
+  'textgroup' => 'default',
+  'source' => 'Default',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '427',
+  'location' => 'modules/text/text.module:207',
+  'textgroup' => 'default',
+  'source' => 'Trimmed',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '428',
+  'location' => 'modules/text/text.module:265',
+  'textgroup' => 'default',
+  'source' => 'Text area (multiple rows)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '429',
+  'location' => 'modules/nodereference/nodereference.module:439,  modules/text/text.module:317,  modules/userreference/userreference.module:365',
+  'textgroup' => 'default',
+  'source' => 'Size of textfield',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '430',
+  'location' => 'modules/text/text.module:326',
+  'textgroup' => 'default',
+  'source' => 'Rows',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '431',
+  'location' => 'modules/text/text.module:0',
+  'textgroup' => 'default',
+  'source' => 'text',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '432',
+  'location' => 'modules/text/text.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines simple text field types.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '433',
+  'location' => 'modules/userreference/userreference.rules.inc:15',
+  'textgroup' => 'default',
+  'source' => 'Load a referenced user',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '434',
+  'location' => 'modules/userreference/userreference.rules.inc:19',
+  'textgroup' => 'default',
+  'source' => 'Content containing the user reference field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '435',
+  'location' => 'modules/userreference/userreference.rules.inc:25',
+  'textgroup' => 'default',
+  'source' => 'Referenced user',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '436',
+  'location' => 'modules/userreference/userreference.rules.inc:29',
+  'textgroup' => 'default',
+  'source' => 'Note that if the field has multiple values, only the first user will be loaded.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '437',
+  'location' => 'modules/userreference/userreference.rules.inc:52',
+  'textgroup' => 'default',
+  'source' => 'There are no userreference fields defined.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '438',
+  'location' => 'modules/userreference/userreference.module:52',
+  'textgroup' => 'default',
+  'source' => 'User reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '439',
+  'location' => 'modules/userreference/userreference.module:53',
+  'textgroup' => 'default',
+  'source' => 'Store the ID of a related user as an integer value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '440',
+  'location' => 'modules/userreference/userreference.module:67',
+  'textgroup' => 'default',
+  'source' => 'User roles that can be referenced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '441',
+  'location' => 'modules/userreference/userreference.module:73',
+  'textgroup' => 'default',
+  'source' => 'User status that can be referenced',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '442',
+  'location' => 'modules/userreference/userreference.module:75',
+  'textgroup' => 'default',
+  'source' => 'Active',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '443',
+  'location' => 'modules/userreference/userreference.module:75',
+  'textgroup' => 'default',
+  'source' => 'Blocked',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '444',
+  'location' => 'modules/userreference/userreference.module:94',
+  'textgroup' => 'default',
+  'source' => 'Advanced - Users that can be referenced (View)',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '445',
+  'location' => 'modules/userreference/userreference.module:101',
+  'textgroup' => 'default',
+  'source' => 'View used to select the users',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '446',
+  'location' => 'modules/userreference/userreference.module:104',
+  'textgroup' => 'default',
+  'source' => '<p>Choose the "Views module" view that selects the users that can be referenced.<br />Note:</p>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '447',
+  'location' => 'modules/userreference/userreference.module:105;118',
+  'textgroup' => 'default',
+  '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>",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '448',
+  'location' => 'modules/userreference/userreference.module:117',
+  'textgroup' => 'default',
+  '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>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '449',
+  'location' => 'modules/userreference/userreference.module:196',
+  'textgroup' => 'default',
+  'source' => '%name: invalid user.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '450',
+  'location' => 'modules/userreference/userreference.module:349',
+  'textgroup' => 'default',
+  'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of users.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '451',
+  'location' => 'modules/userreference/userreference.module:357',
+  'textgroup' => 'default',
+  'source' => 'Reverse link',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '452',
+  'location' => 'modules/userreference/userreference.module:359',
+  'textgroup' => 'default',
+  'source' => 'If selected, a reverse link back to the referencing node will displayed on the referenced user record.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '453',
+  'location' => 'modules/userreference/userreference.module:594',
+  'textgroup' => 'default',
+  'source' => '%name: found no valid user with that name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '454',
+  'location' => 'modules/userreference/userreference.module:887',
+  'textgroup' => 'default',
+  'source' => 'Related content',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '455',
+  'location' => 'modules/userreference/userreference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Userreference autocomplete',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '456',
+  'location' => 'userreference.module:0',
+  'textgroup' => 'default',
+  'source' => 'userreference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '457',
+  'location' => 'modules/userreference/userreference.info:0',
+  'textgroup' => 'default',
+  'source' => 'User Reference',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '458',
+  'location' => 'modules/userreference/userreference.info:0',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing a user from a node.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '459',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:11',
+  'textgroup' => 'default',
+  'source' => 'Weight',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '460',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:53',
+  'textgroup' => 'default',
+  'source' => 'Add',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '461',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:59',
+  'textgroup' => 'default',
+  'source' => 'New field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '462',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:72',
+  'textgroup' => 'default',
+  'source' => 'Existing field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '463',
+  'location' => 'theme/content-admin-field-overview-form.tpl.php:84',
+  'textgroup' => 'default',
+  'source' => 'New group',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '464',
+  'location' => 'theme/theme.inc:11',
+  'textgroup' => 'default',
+  'source' => 'Add fields and groups to the content type, and arrange them on content display and input forms.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '465',
+  'location' => 'theme/theme.inc:13',
+  'textgroup' => 'default',
+  'source' => 'You can add a field to a group by dragging it below and to the right of the group.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '466',
+  'location' => 'theme/theme.inc:16',
+  'textgroup' => 'default',
+  'source' => 'Note: Installing the <a href="!adv_help">Advanced help</a> module will let you access more and better help.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '467',
+  'location' => 'theme/theme.inc:116',
+  'textgroup' => 'default',
+  'source' => "Use the 'Exclude' checkbox to exclude an item from the !content value passed to the node template.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '468',
+  'location' => 'theme/content-edit.js:0',
+  'textgroup' => 'default',
+  'source' => 'Remove this item',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '469',
+  'location' => 'content_admin.inc:290',
+  'textgroup' => 'default',
+  'source' => 'Add field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '470',
+  'location' => 'field.php:180;190,  number.module:119,  text.module:107',
+  'textgroup' => 'default',
+  'source' => 'Illegal value for %name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '471',
+  'location' => 'examples/example_field.php:287 examples/simple_field.php:231,  modules/text/text.module:169',
+  'textgroup' => 'default',
+  'source' => '%label is longer than %max characters.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '472',
+  'location' => 'field.php:273 text.module:167',
+  'textgroup' => 'default',
+  'source' => '"Rows" must be a positive integer.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '473',
+  'location' => 'modules/number/number.module:133 modules/text/text.module:92',
+  'textgroup' => 'default',
+  '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',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '474',
+  'location' => 'content.module:144',
+  'textgroup' => 'default',
+  'source' => 'add field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '475',
+  'location' => 'includes/content.admin.inc:112;291',
+  'textgroup' => 'default',
+  'source' => 'There are no fields configured for this content type. You can !link.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '476',
+  'location' => 'includes/content.admin.inc:113;292',
+  'textgroup' => 'default',
+  'source' => 'Add a new field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '477',
+  'location' => 'includes/content.admin.inc:137',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '478',
+  'location' => 'includes/content.admin.inc:477',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '479',
+  'location' => 'content_admin.inc:277',
+  'textgroup' => 'default',
+  'source' => 'Add existing field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '480',
+  'location' => 'content_admin.inc:311',
+  'textgroup' => 'default',
+  'source' => 'Create new field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '481',
+  'location' => 'includes/content.admin.inc:606',
+  'textgroup' => 'default',
+  'source' => 'The machine-readable name of the field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '482',
+  'location' => 'includes/content.admin.inc:610',
+  'textgroup' => 'default',
+  'source' => 'This name cannot be changed.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '483',
+  'location' => 'includes/content.admin.inc:618',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '484',
+  'location' => 'includes/content.admin.inc:636',
+  'textgroup' => 'default',
+  'source' => 'The type of data you would like to store in the database with this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '485',
+  'location' => 'includes/content.admin.inc:692',
+  'textgroup' => 'default',
+  'source' => 'The field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '486',
+  'location' => 'includes/content.admin.inc:695',
+  'textgroup' => 'default',
+  'source' => "The field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '487',
+  'location' => 'includes/content.admin.inc:706',
+  'textgroup' => 'default',
+  'source' => 'The field name %field_name already exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '488',
+  'location' => 'includes/content.admin.inc:709',
+  'textgroup' => 'default',
+  'source' => "The name 'field_instance' is a reserved name.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '489',
+  'location' => 'content_admin.inc:432',
+  'textgroup' => 'default',
+  'source' => 'Created field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '490',
+  'location' => 'includes/content.admin.inc:754',
+  'textgroup' => 'default',
+  'source' => 'Update field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '491',
+  'location' => 'includes/content.admin.inc:758',
+  'textgroup' => 'default',
+  'source' => 'There was a problem updating field %label.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '492',
+  'location' => 'includes/content.admin.inc:955',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '493',
+  'location' => 'includes/content.admin.inc:986',
+  'textgroup' => 'default',
+  '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.",
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '494',
+  'location' => 'includes/content.admin.inc:1131',
+  'textgroup' => 'default',
+  'source' => 'The default value PHP code created @value which is invalid.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '495',
+  'location' => 'includes/content.token.inc:62',
+  'textgroup' => 'default',
+  'source' => 'Formatted HTML link to the node',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '496',
+  'location' => 'number.module:113',
+  'textgroup' => 'default',
+  'source' => 'The value of %name may be no smaller than %min.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '497',
+  'location' => 'number.module:116',
+  'textgroup' => 'default',
+  'source' => 'The value of %name may be no larger than %max.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '498',
+  'location' => 'modules/number/number.module:476',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and decimals are allowed in %field. %start was changed to %value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '499',
+  'location' => 'modules/number/number.module:494',
+  'textgroup' => 'default',
+  'source' => 'Only numbers are allowed in %field. %start was changed to %value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '500',
+  'location' => 'modules/number/number.module:513',
+  'textgroup' => 'default',
+  'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field. %start was changed to %value.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '501',
+  'location' => 'modules/optionwidgets/optionwidgets.module:10',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '502',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Drag to re-order',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '503',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Changes made in this table will not be saved until the form is submitted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '504',
+  'location' => 'field:profile_color:title',
+  'textgroup' => 'profile',
+  'source' => 'Favorite color',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '505',
+  'location' => 'field:profile_color:explanation',
+  'textgroup' => 'profile',
+  'source' => 'List your favorite color',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '506',
+  'location' => 'category',
+  'textgroup' => 'profile',
+  'source' => 'Personal information',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '507',
+  'location' => 'field:profile_biography:title',
+  'textgroup' => 'profile',
+  'source' => 'Biography',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '508',
+  'location' => 'field:profile_biography:explanation',
+  'textgroup' => 'profile',
+  'source' => 'Tell people a little bit about yourself',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '509',
+  'location' => 'field:profile_sell_address:title',
+  'textgroup' => 'profile',
+  'source' => 'Sell your email address?',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '510',
+  'location' => 'field:profile_sell_address:explanation',
+  'textgroup' => 'profile',
+  'source' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '511',
+  'location' => 'category',
+  'textgroup' => 'profile',
+  'source' => 'Communication preferences',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '512',
+  'location' => 'field:profile_sold_to:title',
+  'textgroup' => 'profile',
+  'source' => 'Sales Category',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '513',
+  'location' => 'field:profile_sold_to:explanation',
+  'textgroup' => 'profile',
+  'source' => "Select the sales categories to which this user's address was sold.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '514',
+  'location' => 'field:profile_sold_to:options',
+  'textgroup' => 'profile',
+  'source' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '515',
+  'location' => 'category',
+  'textgroup' => 'profile',
+  'source' => 'Administrative data',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '516',
+  'location' => 'field:profile_bands:title',
+  'textgroup' => 'profile',
+  'source' => 'Favorite bands',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '517',
+  'location' => 'field:profile_bands:explanation',
+  'textgroup' => 'profile',
+  'source' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '518',
+  'location' => 'field:profile_birthdate:title',
+  'textgroup' => 'profile',
+  'source' => 'Birthdate',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '519',
+  'location' => 'field:profile_birthdate:explanation',
+  'textgroup' => 'profile',
+  'source' => "Enter your birth date and we'll send you a coupon.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '520',
+  'location' => 'field:profile_love_migrations:title',
+  'textgroup' => 'profile',
+  'source' => 'I love migrations',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '521',
+  'location' => 'field:profile_love_migrations:explanation',
+  'textgroup' => 'profile',
+  'source' => 'If you check this box, you love migrations.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '522',
+  'location' => 'field:profile_blog:title',
+  'textgroup' => 'profile',
+  'source' => 'Blog',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '523',
+  'location' => 'field:profile_blog:explanation',
+  'textgroup' => 'profile',
+  'source' => 'Paste the full URL, including http://, of your personal blog.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '524',
+  'location' => 'block:1:title',
+  'textgroup' => 'blocks',
+  'source' => 'Static Block',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '525',
+  'location' => 'block:1:body',
+  'textgroup' => 'blocks',
+  'source' => '<h3>My first custom block body</h3>',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '526',
+  'location' => 'block:2:title',
+  'textgroup' => 'blocks',
+  'source' => 'Another Static Block',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '527',
+  'location' => 'block:2:body',
+  'textgroup' => 'blocks',
+  'source' => '<h3>My second custom block body</h3>',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '528',
+  'location' => 'vocabulary:4:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'Tags',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '529',
+  'location' => 'vocabulary:1:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary 1 (i=0)',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '530',
+  'location' => 'vocabulary:2:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary 2 (i=1)',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '531',
+  'location' => 'vocabulary:3:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary 3 (i=2)',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '532',
+  'location' => 'vocabulary:5:name',
+  'textgroup' => 'taxonomy',
+  'source' => 'vocabulary name much longer than thirty two characters',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '533',
+  'location' => 'type:article:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Article',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '534',
+  'location' => 'type:article:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '535',
+  'location' => 'type:article:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '536',
+  'location' => 'type:article:description',
+  'textgroup' => 'nodetype',
+  'source' => 'An <em>article</em>, content type.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '537',
+  'location' => 'type:company:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Company',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '538',
+  'location' => 'type:company:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '539',
+  'location' => 'type:company:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '540',
+  'location' => 'type:company:description',
+  'textgroup' => 'nodetype',
+  'source' => 'Company node type',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '541',
+  'location' => 'type:employee:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Employee',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '542',
+  'location' => 'type:employee:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '543',
+  'location' => 'type:employee:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Bio',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '544',
+  'location' => 'type:employee:description',
+  'textgroup' => 'nodetype',
+  'source' => 'Employee node type',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '545',
+  'location' => 'type:sponsor:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Sponsor',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '546',
+  'location' => 'type:sponsor:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '547',
+  'location' => 'type:sponsor:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '548',
+  'location' => 'type:sponsor:description',
+  'textgroup' => 'nodetype',
+  'source' => 'Sponsor node type',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '549',
+  'location' => 'type:story:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Story',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '550',
+  'location' => 'type:story:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '551',
+  'location' => 'type:story:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '552',
+  'location' => 'type:story:description',
+  'textgroup' => 'nodetype',
+  '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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '553',
+  'location' => 'type:test_event:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test event',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '554',
+  'location' => 'type:test_event:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Event Name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '555',
+  'location' => 'type:test_event:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '556',
+  'location' => 'type:test_event:description',
+  'textgroup' => 'nodetype',
+  'source' => 'test event description here',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '558',
+  'location' => 'type:test_page:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test page',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '559',
+  'location' => 'type:test_page:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '560',
+  'location' => 'type:test_page:body',
+  'textgroup' => 'nodetype',
+  'source' => 'This is the body field label',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '561',
+  'location' => 'type:test_page:description',
+  'textgroup' => 'nodetype',
+  '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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '562',
+  'location' => 'type:test_planet:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test planet',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '563',
+  'location' => 'type:test_planet:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '564',
+  'location' => 'type:test_planet:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '565',
+  'location' => 'type:test_planet:description',
+  'textgroup' => 'nodetype',
+  '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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '566',
+  'location' => 'type:test_story:name',
+  'textgroup' => 'nodetype',
+  'source' => 'Migrate test story',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '567',
+  'location' => 'type:test_story:title',
+  'textgroup' => 'nodetype',
+  'source' => 'Title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '568',
+  'location' => 'type:test_story:body',
+  'textgroup' => 'nodetype',
+  'source' => 'Body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '569',
+  'location' => 'type:test_story:description',
+  'textgroup' => 'nodetype',
+  '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.",
+  'version' => '1',
+))
+->values(array(
+  'lid' => '570',
+  'location' => 'field:story-field_test_exclude_unset:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '571',
+  'location' => 'field:story-field_test_exclude_unset:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field without exclude.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '572',
+  'location' => 'field:story-field_test_two:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '573',
+  'location' => 'field:story-field_test_two:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '574',
+  'location' => 'field:story-field_test:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '575',
+  'location' => 'field:story-field_test:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '576',
+  'location' => 'field:story-field_test_three:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Decimal Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '577',
+  'location' => 'field:story-field_test_three:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example decimal field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '578',
+  'location' => 'field:story-field_test_four:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Float Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '579',
+  'location' => 'field:story-field_test_four:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example float field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '580',
+  'location' => 'field:story-field_test_identical1:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '581',
+  'location' => 'field:story-field_test_identical1:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '582',
+  'location' => 'field:story-field_test_identical2:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '583',
+  'location' => 'field:story-field_test_identical2:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '584',
+  'location' => 'field:story-field_test_email:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Email Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '585',
+  'location' => 'field:story-field_test_email:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example email field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '586',
+  'location' => 'field:story-field_test_link:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Link Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '587',
+  'location' => 'field:story-field_test_link:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example link field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '588',
+  'location' => 'field:story-field_test_filefield:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'File Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '589',
+  'location' => 'field:story-field_test_filefield:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example image field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '590',
+  'location' => 'field:story-field_test_imagefield:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Image Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '591',
+  'location' => 'field:story-field_test_imagefield:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example image field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '592',
+  'location' => 'field:story-field_test_date:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Date Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '593',
+  'location' => 'field:story-field_test_date:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example date field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '594',
+  'location' => 'field:story-field_test_datestamp:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Date Stamp Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '595',
+  'location' => 'field:story-field_test_datestamp:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example date stamp field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '596',
+  'location' => 'field:story-field_test_datetime:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Datetime Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '597',
+  'location' => 'field:story-field_test_datetime:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example datetime field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '598',
+  'location' => 'field:story-field_test_phone:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Phone Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '599',
+  'location' => 'field:story-field_test_phone:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example phone field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '600',
+  'location' => 'field:story-field_test_decimal_radio_buttons:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Decimal Radio Buttons Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '601',
+  'location' => 'field:story-field_test_decimal_radio_buttons:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example decimal field using radio buttons.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '602',
+  'location' => 'field:field_test_decimal_radio_buttons:option_1.2',
+  'textgroup' => 'cck',
+  'source' => '1.2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '603',
+  'location' => 'field:field_test_decimal_radio_buttons:option_2.1',
+  'textgroup' => 'cck',
+  'source' => '2.1',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '604',
+  'location' => 'field:story-field_test_float_single_checkbox:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Float Single Checkbox Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '605',
+  'location' => 'field:story-field_test_float_single_checkbox:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example float field using a single on/off checkbox.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '606',
+  'location' => 'field:field_test_float_single_checkbox:option_3.142',
+  'textgroup' => 'cck',
+  'source' => '3.142',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '607',
+  'location' => 'field:field_test_float_single_checkbox:option_1.234',
+  'textgroup' => 'cck',
+  'source' => '1.234',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '608',
+  'location' => 'field:story-field_test_integer_selectlist:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Integer Select List Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '609',
+  'location' => 'field:story-field_test_integer_selectlist:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example integer field using a select list.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '610',
+  'location' => 'field:field_test_integer_selectlist:option_1234',
+  'textgroup' => 'cck',
+  'source' => '1234',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '611',
+  'location' => 'field:field_test_integer_selectlist:option_2341',
+  'textgroup' => 'cck',
+  'source' => '2341',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '612',
+  'location' => 'field:field_test_integer_selectlist:option_3412',
+  'textgroup' => 'cck',
+  'source' => '3412',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '613',
+  'location' => 'field:field_test_integer_selectlist:option_4123',
+  'textgroup' => 'cck',
+  'source' => '4123',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '614',
+  'location' => 'field:story-field_test_text_single_checkbox:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Single Checkbox Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '615',
+  'location' => 'field:story-field_test_text_single_checkbox:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field using a single on/off checkbox.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '616',
+  'location' => 'field:field_test_text_single_checkbox:option_0',
+  'textgroup' => 'cck',
+  'source' => 'Hello',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '617',
+  'location' => 'field:field_test_text_single_checkbox:option_1',
+  'textgroup' => 'cck',
+  'source' => 'Goodbye',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '618',
+  'location' => 'field:story-field_test_text_single_checkbox2:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Single Checkbox Field 2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '619',
+  'location' => 'field:story-field_test_text_single_checkbox2:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'Checkbox that uses keys only and no label.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '620',
+  'location' => 'field:field_test_text_single_checkbox2:option_Off',
+  'textgroup' => 'cck',
+  'source' => 'Off',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '621',
+  'location' => 'field:field_test_text_single_checkbox2:option_Hello',
+  'textgroup' => 'cck',
+  'source' => 'Hello',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '622',
+  'location' => 'field:test_page-field_test:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '623',
+  'location' => 'field:test_page-field_test:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '624',
+  'location' => 'field:test_planet-field_multivalue:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Decimal Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '625',
+  'location' => 'field:test_planet-field_multivalue:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example multi-valued decimal field.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '626',
+  'location' => 'field:test_planet-field_test_text_single_checkbox:widget_label',
+  'textgroup' => 'cck',
+  'source' => 'Text Single Checkbox Field',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '627',
+  'location' => 'field:test_planet-field_test_text_single_checkbox:widget_description',
+  'textgroup' => 'cck',
+  'source' => 'An example text field using a single on/off checkbox.',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '628',
+  'location' => 'misc/tableselect.js',
+  'textgroup' => 'default',
+  'source' => 'Select all rows in this table',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '629',
+  'location' => 'misc/tableselect.js',
+  'textgroup' => 'default',
+  'source' => 'Deselect all rows in this table',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '630',
+  'location' => 'sites/all/modules/filefield/filefield.js',
+  'textgroup' => 'default',
+  'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '631',
+  'location' => 'misc/teaser.js',
+  'textgroup' => 'default',
+  'source' => 'Split summary at cursor',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '632',
+  'location' => 'misc/teaser.js',
+  'textgroup' => 'default',
+  'source' => 'Join summary',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '633',
+  'location' => 'item:140:title',
+  'textgroup' => 'menu',
+  'source' => 'Drupal.org',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '634',
+  'location' => 'item:139:title',
+  'textgroup' => 'menu',
+  'source' => 'Test 2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '635',
+  'location' => 'item:139:description',
+  'textgroup' => 'menu',
+  'source' => 'Test menu link 2',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '636',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site information',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '637',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '638',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The name of this website.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '639',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'E-mail address',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '640',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  '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.)",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '641',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Slogan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '642',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '643',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Mission',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '644',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Your site's mission or focus statement (often prominently displayed on the front page).",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '645',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Footer message',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '646',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '647',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Anonymous user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '648',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Anonymous',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '649',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The name used to indicate anonymous users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '650',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Default front page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '651',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The home page displays content from this relative URL. If unsure, specify "node".',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '652',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Save configuration',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '653',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Reset to defaults',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '654',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'This is a multilingual variable.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '655',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Left sidebar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '656',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Right sidebar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '657',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Header',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '658',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Footer',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '659',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'RSS feed',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '660',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => '',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '661',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Administer',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '662',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Compact mode',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '663',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Content management',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '664',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Manage your site's content.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '665',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Reports',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '666',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'View reports from system logs and other status information.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '667',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site building',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '668',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Control how your site looks and feels.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '669',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site configuration',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '670',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Adjust basic site configuration options.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '671',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Actions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '672',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Manage the actions defined for your site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '673',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Administration theme',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '674',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Settings for how your administrative pages should look.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '675',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Clean URLs',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '676',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Enable or disable clean URLs for your site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '677',
+  'location' => 'date.module:39',
+  'textgroup' => 'default',
+  'source' => 'Date and time',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '678',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '679',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Error reporting',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '680',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '681',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'File system',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '682',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Tell Drupal where to store uploaded files and how they are accessed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '683',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'File uploads',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '684',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Control how files may be attached to content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '685',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Image toolkit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '686',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Choose which image toolkit to use if you have installed optional toolkits.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '687',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Input formats',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '688',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '689',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Logging and alerts',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '690',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '691',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Performance',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '692',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '693',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Site maintenance',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '694',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Take the site off-line for maintenance or bring it back online.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '695',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Events',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '696',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Set up how your site handles events.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '697',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'CCK Email Contact Form Settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '698',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Administer flood control settings for email contact forms',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '699',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '700',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Configure ImageAPI.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '701',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '702',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Configure languages for content and the user interface.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '703',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Variables',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '704',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Edit and delete site variables.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '705',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User management',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '706',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Manage your site's users, groups and access to site features.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '707',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Contact',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '708',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Log out',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '709',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '710',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User list',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '711',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete taxonomy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '712',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Compose tips',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '713',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Create content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '714',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Delete comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '715',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Edit comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '716',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'File download',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '717',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User autocomplete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '718',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'User timezone',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '719',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'My account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '720',
+  'location' => 'content_admin.inc:199',
+  'textgroup' => 'default',
+  'source' => 'Delete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '721',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Feed aggregator',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '722',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Books',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '723',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Save string',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '724',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Node title autocomplete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '725',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'View user profile.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '726',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => "Who's new",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '727',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Powered by Drupal, an open source content management system',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '728',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Home',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '729',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The selected file %file could not be uploaded, because the destination %directory is not properly configured.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '730',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'French',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '731',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The configuration options have been saved.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '732',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Long',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '733',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Medium',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '734',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'Short',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '735',
+  'location' => '/?q=fr/admin/settings/site-information',
+  'textgroup' => 'default',
+  'source' => 'The e-mail address %mail is not valid.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '736',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Default 403 (access denied) page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '737',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '738',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Default 404 (not found) page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '739',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'This page is displayed when no other content matches the requested document. If unsure, specify nothing.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '740',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Write errors to the log',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '741',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  'source' => 'Write errors to the log and to the screen',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '742',
+  'location' => '/?q=fr/admin/settings/error-reporting',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '743',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Access rules',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '744',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '745',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '746',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Determine access to features by selecting permissions for roles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '747',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Profiles',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '748',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Create customizable fields for your users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '749',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Roles',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '750',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'List, edit, or add user roles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '751',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'User settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '752',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '753',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'Users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '754',
+  'location' => '/?q=fr/admin/user',
+  'textgroup' => 'default',
+  'source' => 'List, add, and edit users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '755',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'User registration settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '756',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Public registrations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '757',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Only site administrators can create new user accounts.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '758',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Visitors can create accounts and no administrator approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '759',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Visitors can create accounts but administrator approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '760',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Require e-mail verification when a visitor creates an account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '761',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '762',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'User registration guidelines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '763',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'This text is displayed at the top of the user registration form and is useful for helping or instructing your users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '764',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'User e-mail settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '765',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '766',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Available variables are:',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '767',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Welcome, new user created by administrator',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '768',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize welcome e-mail messages sent to new member accounts created by an administrator.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '769',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Subject',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '770',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Body',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '771',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Welcome, no approval required',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '772',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '773',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Welcome, awaiting administrator approval',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '774',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '775',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Password recovery email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '776',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Customize e-mail messages sent to users who request a new password.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '777',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Account activation email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '778',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  '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).',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '779',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Notify user when account is activated.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '780',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Account blocked email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '781',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Enable and customize e-mail messages sent to users when their accounts are blocked.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '782',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Notify user when account is blocked.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '783',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Account deleted email',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '784',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Enable and customize e-mail messages sent to users when their accounts are deleted.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '785',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Notify user when account is deleted.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '786',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Signatures',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '787',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Signature support',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '788',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Disabled',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '789',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Enabled',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '790',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Pictures',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '791',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture support',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '792',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture image path',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '793',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Subdirectory in the directory %dir where pictures will be stored.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '794',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Default picture',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '795',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'URL of picture to display for users with no custom picture selected. Leave blank for none.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '796',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture maximum dimensions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '797',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Maximum dimensions for pictures, in pixels.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '798',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture maximum file size',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '799',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Maximum file size for pictures, in kB.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '800',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  'source' => 'Picture guidelines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '801',
+  'location' => '/?q=fr/admin/user/settings',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '802',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '803',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '<strong class="error">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '804',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Page cache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '805',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '806',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Caching mode',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '807',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Normal (recommended for production sites, no side effects)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '808',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Aggressive (experts only, possible side effects)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '809',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '0 sec',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '810',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '1 min',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '811',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '@count min',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '812',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '1 hour',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '813',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '@count hours',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '814',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => '1 day',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '815',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Minimum cache lifetime',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '816',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '817',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Page compression',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '818',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '819',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Block cache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '820',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '821',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Enabled (recommended)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '822',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Note that block caching is inactive when modules defining content access restrictions are enabled.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '823',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Bandwidth optimizations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '824',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  '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>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '825',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Optimize CSS files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '826',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'This option can interfere with theme development and should only be enabled in a production environment.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '827',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Optimize JavaScript files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '828',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'This option can interfere with module development and should only be enabled in a production environment.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '829',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  'source' => 'Clear cached data',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '830',
+  'location' => '/?q=fr/admin/settings/performance',
+  'textgroup' => 'default',
+  '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>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '831',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Site status',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '832',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Online',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '833',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Off-line',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '834',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '835',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Site off-line message',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '836',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => '@site is currently under maintenance. We should be back shortly. Thank you for your patience.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '837',
+  'location' => '/?q=fr/admin/settings/site-maintenance',
+  'textgroup' => 'default',
+  'source' => 'Message to show visitors when the site is in off-line mode.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '838',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Left to right',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '839',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'English name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '840',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Native name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '841',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Direction',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '842',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Language negotiation',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '843',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'List',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '844',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '845',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Configure extended options for multilingual content and translations.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '846',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Multilingual variables.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '847',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Add language',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '848',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'Multilingual system',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '849',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  'source' => 'String translation',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '850',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '851',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '852',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  '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>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '853',
+  'location' => '/?q=fr/admin/settings/language',
+  'textgroup' => 'default',
+  '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>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '854',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'anonymous user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '855',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'authenticated user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '856',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'All roles may use default format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '857',
+  'location' => 'content_admin.inc:250',
+  'textgroup' => 'default',
+  'source' => 'configure',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '858',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'No roles may use this format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '859',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'Set default format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '860',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'Delete input format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '861',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  'source' => 'Add input format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '862',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '863',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '864',
+  'location' => '/?q=fr/admin/settings/filters',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '865',
+  'location' => '/?q=fr/admin/settings/imageapi',
+  'textgroup' => 'default',
+  'source' => 'There are no image toolkit modules enabled. Toolkit modules can be enabled from the <a href="!admin-build-modules">module configuration page</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '866',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'GD2 image manipulation toolkit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '867',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'The GD toolkit is installed and working properly.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '868',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'JPEG quality',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '869',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => 'Define the image quality for JPEG manipulations. Ranges from 0 to 100. Higher values mean better image quality but bigger files.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '870',
+  'location' => '/?q=fr/admin/settings/image-toolkit',
+  'textgroup' => 'default',
+  'source' => '%',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '871',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'General settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '872',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Maximum resolution for uploaded images',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '873',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '874',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'WIDTHxHEIGHT',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '875',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'List files by default',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '876',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'No',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '877',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Yes',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '878',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Display attached files when viewing a post.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '879',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default permitted file extensions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '880',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default extensions that users can upload. Separate extensions with a space and do not include the leading dot.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '881',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default maximum file size per upload',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '882',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '883',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'MB',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '884',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Default total file size per user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '885',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'The default maximum size of all files a user can have on the site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '886',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'KB',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '887',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => '@size @suffix',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '888',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  'source' => 'Your PHP settings limit the maximum file size per upload to %size.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '889',
+  'location' => '/?q=fr/admin/settings/uploads',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '890',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'File system path',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '891',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '892',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Temporary directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '893',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'A file system path where uploaded files will be stored during previews.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '894',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Download method',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '895',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Public - files are available using HTTP directly.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '896',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'Private - files are transferred by Drupal.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '897',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '898',
+  'location' => '/?q=fr/admin/settings/file-system',
+  'textgroup' => 'default',
+  'source' => 'The directory %directory does not exist.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '899',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Event overview',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '900',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Change how event summary information is displayed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '901',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Timezone handling',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '902',
+  'location' => '/?q=fr/admin/settings/event',
+  'textgroup' => 'default',
+  'source' => 'Change how timezone information is saved and displayed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '903',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Event time zone input',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '904',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Use the sitewide time zone',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '905',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Use the time zone of the user editing or creating the event',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '906',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Allow users to set event time zones',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '907',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'date/time settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '908',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '909',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Event time zone display',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '910',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => "Use the event's time zone",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '911',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '912',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'Time notation preference',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '913',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => '24h',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '914',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => '12h',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '915',
+  'location' => '/?q=fr/admin/settings/event/timezone',
+  'textgroup' => 'default',
+  'source' => 'The time notation system used for entering event times.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '916',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Upcoming event block limit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '917',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Limit the amount of events displayed in the upcoming events block by this amount.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '918',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Default overview',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '919',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Day',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '920',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Week',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '921',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Month',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '922',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Table',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '923',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '924',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Table view default period',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '925',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'here',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '926',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  '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',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '927',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy filter controls',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '928',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Show taxonomy filter control on calendar views',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '929',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Only show taxonomy filter control when taxonomy filter view is requested',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '930',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Never show taxonomy filter control',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '931',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Content type filter controls',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '932',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Show content type filter control on calendar views',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '933',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Only show content type filter control when content type filter view is requested',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '934',
+  'location' => '/?q=fr/admin/settings/event/overview',
+  'textgroup' => 'default',
+  'source' => 'Never show content type filter control',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '935',
+  'location' => '/?q=fr/admin/settings/email',
+  'textgroup' => 'default',
+  'source' => 'Hourly threshold for a CCK Email contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '936',
+  'location' => '/?q=fr/admin/settings/email',
+  'textgroup' => 'default',
+  'source' => 'The maximum number of contact form submissions a user can perform per hour.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '937',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  'source' => 'System default',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '938',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '939',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  'source' => 'Use administration theme for content editing',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '940',
+  'location' => '/?q=fr/admin/settings/admin',
+  'textgroup' => 'default',
+  'source' => 'Use the administration theme when editing existing posts or creating new ones.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '941',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Publish comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '942',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish comment',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '943',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish comment containing keyword(s)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '944',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Publish post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '945',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '946',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Make post sticky',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '947',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Make post unsticky',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '948',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Promote post to front page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '949',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Remove post from front page',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '950',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Change the author of a post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '951',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Save post',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '952',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Unpublish post containing keyword(s)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '953',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Display a message to the user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '954',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Send e-mail',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '955',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Redirect to URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '956',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Block current user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '957',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Ban IP address of current user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '958',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => "ImageCache: Flush ALL presets for this node's filefield images",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '959',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => "ImageCache: Generate ALL presets for this node's filefield images",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '960',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => "ImageCache: Generate configured preset(s) for this node's filefield images",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '961',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Choose an advanced action',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '962',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Action type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '963',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => '« first',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '964',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => '‹ previous',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '965',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'next ›',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '966',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'last »',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '967',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Actions available to Drupal:',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '968',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'sort by @s',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '969',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'sort icon',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '970',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'sort descending',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '971',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Make a new advanced action available',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '972',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Create',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '973',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Configure an advanced action',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '974',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Remove orphans',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '975',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  'source' => 'Manage actions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '976',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '977',
+  'location' => '/?q=fr/admin/settings/actions',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '978',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Create new account',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '979',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '980',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@module module',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '981',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access news feeds',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '982',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer news feeds',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '983',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer blocks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '984',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'use PHP for block visibility',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '985',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access printer-friendly version',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '986',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'add content to books',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '987',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer book outlines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '988',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create new books',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '989',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '990',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '991',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'post comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '992',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'post comments without approval',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '993',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access site-wide contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '994',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer site-wide contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '995',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer filters',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '996',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '997',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'translate interface',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '998',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer menu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '999',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1000',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer content types',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1001',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer nodes',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1002',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1003',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1004',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1005',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1006',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1007',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1008',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1009',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1010',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1011',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1012',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1013',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1014',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1015',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1016',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1017',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1018',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1019',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete any test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1020',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1021',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1022',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1023',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1024',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1025',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1026',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1027',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1028',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete own test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1029',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'delete revisions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1030',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1031',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1032',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1033',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1034',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1035',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1036',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1037',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1038',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit any test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1039',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own article content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1040',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own company content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1041',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own employee content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1042',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own sponsor content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1043',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1044',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_event content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1045',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_page content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1046',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_planet content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1047',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'edit own test_story content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1048',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'revert revisions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1049',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view revisions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1050',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer url aliases',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1051',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'create url aliases',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1052',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access administration pages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1053',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access site reports',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1054',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer actions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1055',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1056',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer site configuration',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1057',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'select different theme',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1058',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer taxonomy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1059',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'translate content',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1060',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'upload files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1061',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view uploaded files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1062',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'access user profiles',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1063',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1064',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1065',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'change own username',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1066',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view date repeats',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1067',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer imageapi',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1068',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer imagecache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1069',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'flush imagecache',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1070',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view imagecache big_blue_cheese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1071',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'view imagecache slackjaw_boys',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1072',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer all languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1073',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'administer translations',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1074',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'permission',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1075',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'status',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1076',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'active',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1077',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'blocked',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1078',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Show only users where',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1079',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Filter',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1080',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'is',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1081',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Username',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1082',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Status',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1083',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Member for',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1084',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Last access',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1085',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Update options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1086',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Unblock the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1087',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Block the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1088',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Delete the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1089',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Add a role to the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1090',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Remove a role from the selected users',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1091',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Update',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1092',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@count years',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1093',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@count weeks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1094',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@time ago',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1095',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => '@count sec',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1096',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'sort ascending',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1097',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  'source' => 'Add user',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1098',
+  'location' => '/?q=fr/admin/user/user',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1099',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'Add role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1100',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'edit permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1101',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'locked',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1102',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'edit role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1103',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  'source' => 'Edit role',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1104',
+  'location' => '/?q=fr/admin/user/roles',
+  'textgroup' => 'default',
+  '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>",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1105',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Add new field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1106',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'single-line textfield',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1107',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'multi-line textfield',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1108',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'checkbox',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1109',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'list selection',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1110',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'freeform list',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1111',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1112',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'date',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1113',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'No fields in this category. If this category remains empty when saved, it will be removed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1114',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1115',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Category',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1116',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Delete field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1117',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Edit field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1118',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  'source' => 'Profile category autocomplete',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1119',
+  'location' => '/?q=fr/admin/user/profile',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1120',
+  'location' => '/?q=fr/admin/user/permissions',
+  'textgroup' => 'default',
+  'source' => 'Save permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1121',
+  'location' => '/?q=fr/admin/user/permissions',
+  'textgroup' => 'default',
+  'source' => 'Permission',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1122',
+  'location' => '/?q=fr/admin/user/permissions',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1123',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Access type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1124',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Rule type',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1125',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Mask',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1126',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'username',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1127',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'e-mail',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1128',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'host',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1129',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'There are currently no access rules.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1130',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Delete rule',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1131',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Edit rule',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1132',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Add rule',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1133',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  'source' => 'Check rules',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1134',
+  'location' => '/?q=fr/admin/user/rules',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1135',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'edit %title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1136',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Field settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1137',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The category the new field should be part of. Categories are used to group fields logically. An example category is "Personal information".',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1138',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The title of the new field. The title will be shown to the user. An example title is "Favorite color".',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1139',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Form name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1140',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  '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\".",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1141',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Explanation',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1142',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'An optional explanation to go with the new field. The explanation will be shown to the user.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1143',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Selection options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1144',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'A list of all options. Put each option on a separate line. Example options are "red", "blue", "green", etc.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1145',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Visibility',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1146',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Hidden profile field, only accessible by administrators, modules and themes.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1147',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Private field, content only available to privileged users.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1148',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Public field, content shown on profile page but not used on member list pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1149',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Public field, content shown on profile page and on member list pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1150',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Page title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1151',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1152',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The weights define the order in which the form fields are shown. Lighter fields "float up" towards the top of the category.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1153',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Form will auto-complete while user is typing.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1154',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'For security, auto-complete will be disabled if the user does not have access to user profiles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1155',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The user must enter a value.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1156',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Visible in user registration form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1157',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'Save field',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1158',
+  'location' => '/?q=fr/admin/user/profile/edit/11',
+  'textgroup' => 'default',
+  'source' => 'The specified form name contains one or more illegal characters. Spaces or any other special characters except dash (-) and underscore (_) are not allowed.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1159',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'None.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1160',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Path prefix only.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1161',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Path prefix with language fallback.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1162',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Domain name only.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1163',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  '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>",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1164',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => 'Save settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1165',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  'source' => "Language negotiation settings determine the site's presentation language. Available options include:",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1166',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  '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.)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1167',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  '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>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1168',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1169',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  '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>',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1170',
+  'location' => '/?q=fr/admin/settings/language/configure',
+  'textgroup' => 'default',
+  '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>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1171',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Translatable input formats',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1172',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1173',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Built-in interface',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1174',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Blocks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1175',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Menu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1176',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  'source' => 'Profile',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1177',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1178',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1179',
+  'location' => '/?q=fr/admin/settings/language/configure/strings',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1180',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Content selection',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1181',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Content selection mode',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1182',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Current language and language neutral.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1183',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Mixed current language (if available) or default language (if not) and language neutral.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1184',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Only default language and language neutral.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1185',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Only current language.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1186',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'All content. No language conditions apply.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1187',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Determines which content to show depending on the current page language and the default language of the site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1188',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Content translation links',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1189',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Hide content translation links',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1190',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1191',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'Switch interface for translating',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1192',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1193',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'To set up multilingual options for vocabularies go to <a href="@configure_taxonomy">Taxonomy configuration page</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1194',
+  'location' => '/?q=fr/admin/settings/language/i18n',
+  'textgroup' => 'default',
+  'source' => 'To enable multilingual support for specific content types go to <a href="@configure_content_types">configure content types</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1195',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Drupal',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1196',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Web server',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1197',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1198',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP register globals',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1199',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP memory limit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1200',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'MySQL database',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1201',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Protected',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1202',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Configuration file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1203',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Files directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1204',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Temporary files directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1205',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Not fully protected',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1206',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1207',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'For more information, see the online handbook entry for <a href="@cron-handbook">configuring cron jobs</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1208',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Never run',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1209',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Cron has not run.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1210',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Cron maintenance tasks',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1211',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'You can <a href="@cron">run cron manually</a>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1212',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Not writable',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1213',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  '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.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1214',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Database updates',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1215',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Up to date',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1216',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Access to update.php',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1217',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Standard PHP',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1218',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'PHP Mbstring Extension',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1219',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Error',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1220',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Unicode library',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1221',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Not enabled',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1222',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  '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>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1223',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Update notifications',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1224',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'set the site timezone name',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1225',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'The Date Timezone module requires you to !link.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1226',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Date Timezone requirements',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1227',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'MySQL database for event module',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1228',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  '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>.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1229',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Upload progress',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1230',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI Toolkit',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1231',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'No ImageAPI toolkits available',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1232',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI requires a Toolkit such as ImageAPI GD or ImageAPI ImageMagick to function. Go to !modules and enable one of them.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1233',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'ImageCache Directory',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1234',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => '%p is not a directory or is not readable by the webserver.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1235',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'One or more problems were detected with your Drupal installation. Check the <a href="@status">status report</a> for more information.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1236',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Comments',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1237',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'List and edit site comments and the comment moderation queue.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1238',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "View, edit, and delete your site's content.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1239',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Manage posts by content type, including default status, front page promotion, etc.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1240',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Post settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1241',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1242',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'RSS publishing',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1243',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1244',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Manage tagging, categorization, and classification of your content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1245',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1246',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Manage your site's book outlines.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1247',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Status report',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1248',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Get a status report about your site's operation and any detected problems.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1249',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Configure what block content appears in your site's sidebars and other regions.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1250',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1251',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Create a system contact form and set up categories for the form to use.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1252',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Menus',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1253',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1254',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Modules',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1255',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Enable or disable add-on modules for your site.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1256',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Themes',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1257',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Change which theme your site uses or allows users to set.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1258',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'URL aliases',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1259',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => "Change your site's URL paths by aliasing them.",
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1260',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Translate interface',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1261',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Translate the built in interface and optionally other text.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1262',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Hide descriptions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1263',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Compress layout by hiding descriptions.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1264',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'By task',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1265',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'By module',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1266',
+  'location' => '/?q=fr/admin',
+  'textgroup' => 'default',
+  'source' => 'Welcome to the administration section. Here you may control how your site functions.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1267',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Configure permissions',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1268',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1269',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as a timestamp, deprecated format to suppport legacy data.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1270',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1271',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'File',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1272',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store an arbitrary file.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1273',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Link',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1274',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Store a title, href, and attributes in the database to assemble a link.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1275',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - France',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1276',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Belgium',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1277',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Italy',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1278',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Greece',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1279',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Switzerland',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1280',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - US & Canada',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1281',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Costa Rica',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1282',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Panama',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1283',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Great Britain - United Kingdom',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1284',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Russia',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1285',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Ukraine - in Kiev',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1286',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Spain',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1287',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Australia',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1288',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Czech Republic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1289',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Hungary',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1290',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Poland - mobiles only',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1291',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Netherland',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1292',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Sweden',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1293',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - South Africa',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1294',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Israel',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1295',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - New Zealand',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1296',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Brazil',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1297',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Chile',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1298',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - China',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1299',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Hong-Kong',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1300',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Macao',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1301',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - The Philippines',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1302',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Singapore',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1303',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Jordan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1304',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Egypt',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1305',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - Pakistan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1306',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Phone Numbers - International Phone Numbers per E.123',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1307',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Select List',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1308',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Select List with Repeat options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1309',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Text Field with custom input format',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1310',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Text Field with Repeat options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1311',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'As Time Ago',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1312',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Default email link',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1313',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Email contact form',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1314',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Email plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1315',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'File Upload',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1316',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'A plain file upload widget.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1317',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Generic files',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1318',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays all kinds of files with an icon and a linked file description.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1319',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Path to file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1320',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays the file system path to the file.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1321',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL to file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1322',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays a full URL to the file.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1323',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset image',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1324',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset image linked to node',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1325',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset image linked to image',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1326',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset file path',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1327',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => '@preset URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1328',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Image',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1329',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'An edit widget for image files, including a preview of the image.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1330',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Displays image files in their original size.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1331',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Image linked to node',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1332',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Image linked to file',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1333',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Title, as link (default)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1334',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Title, as plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1335',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL, as link',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1336',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL, as plain text',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1337',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'URL, as absolute URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1338',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Short, as link with title "Link"',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1339',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Label, as link with label as title',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1340',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Separate title and URL',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1341',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Textfield',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1342',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Revision information',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1343',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Authoring information',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1344',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Publishing options',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1345',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Comment settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1346',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Comment module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1347',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Translation settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1348',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Translation module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1349',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Path settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1350',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Path module form.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1351',
+  'location' => 'content.module:1897;1900,  fuzzy',
+  'textgroup' => 'default',
+  'source' => 'Print',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1352',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Account settings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1353',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Aggregates syndicated content (RSS, RDF, and Atom feeds).',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1354',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Controls the boxes that are displayed around the main content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1355',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to structure site pages in a hierarchy or outline.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1356',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to comment on and discuss published content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1357',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Enables the use of both personal and site-wide contact forms.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1358',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Defines CCK date/time fields and widgets.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1359',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Defines an email field type for cck',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1360',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Calendaring API, calendar display and export',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1361',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Handles the filtering of content in preparation for display.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1362',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Extends Drupal support for multilingual features.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1363',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'ImageAPI supporting multiple toolkits.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1364',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Dynamic image manipulator and cache.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1365',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Adds language handling functionality and enables the translation of the user interface to languages other than English.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1366',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows administrators to customize the site navigation menu.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1367',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows content to be submitted to the site and displayed on pages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1368',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to rename URLs.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1369',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Supports configurable user profiles.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1370',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Handles general site configuration for administrators.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1371',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Enables the categorization of content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1372',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows content to be translated into different languages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1373',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Allows users to upload and attach files to content.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1374',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Manages the user registration and login system.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1375',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'Variable API - Admin UI',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1376',
+  'location' => '/?q=fr/admin/by-module',
+  'textgroup' => 'default',
+  'source' => 'This page shows you all available administration tasks for each module.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1377',
+  'location' => 'field.php:102 number.module:82 text.module:80',
+  'textgroup' => 'default',
+  'source' => 'is equal to',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1378',
+  'location' => 'field.php:103 number.module:83 text.module:81',
+  'textgroup' => 'default',
+  'source' => 'is not equal to',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1379',
+  'location' => 'field.php:104 text.module:82',
+  'textgroup' => 'default',
+  'source' => 'matches the pattern',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1380',
+  'location' => 'content_admin.inc:25 content.module:119',
+  'textgroup' => 'default',
+  'source' => 'duplicate',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1381',
+  'location' => 'number.module:52,  text.module:55',
+  'textgroup' => 'default',
+  'source' => 'The possible values this field can contain. Any other values will result in an error. Enter one value per line.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1382',
+  'location' => 'content.module:73',
+  'textgroup' => 'default',
+  'source' => 'add content type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1383',
+  'location' => 'content.module:80',
+  'textgroup' => 'default',
+  'source' => 'fields',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1384',
+  'location' => 'content.module:164',
+  'textgroup' => 'default',
+  'source' => 'remove field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1385',
+  'location' => 'nodereference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing one node from another. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1386',
+  'location' => 'nodereference.module:26',
+  'textgroup' => 'default',
+  'source' => 'node reference autocomplete',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1387',
+  'location' => 'nodereference.module:204',
+  'textgroup' => 'default',
+  'source' => 'No post with that title exists.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1388',
+  'location' => 'number.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines numeric field types. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1389',
+  'location' => 'optionwidgets.module:15',
+  'textgroup' => 'default',
+  '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>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1390',
+  'location' => 'text.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines simple text field types. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1391',
+  'location' => 'userreference.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines a field type for referencing a user from a node. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1392',
+  'location' => 'userreference.module:176',
+  'textgroup' => 'default',
+  'source' => 'Invalid user name.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1393',
+  'location' => 'weburl.module:15',
+  'textgroup' => 'default',
+  'source' => 'Defines simple weburl field types. <em>Note: Requires content.module.</em>',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1394',
+  'location' => 'weburl.module:164;172',
+  'textgroup' => 'default',
+  'source' => 'Not a valid Web URL.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1395',
+  'location' => 'weburl.module:0',
+  'textgroup' => 'default',
+  'source' => 'weburl',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1396',
+  'location' => 'content_admin.inc:90',
+  'textgroup' => 'default',
+  'source' => 'The human-readable name of this content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1397',
+  'location' => 'content_admin.inc:98',
+  'textgroup' => 'default',
+  'source' => 'A brief description of the content type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1398',
+  'location' => 'content_admin.inc:106',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user when adding new content of this type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1399',
+  'location' => 'content_admin.inc:110',
+  'textgroup' => 'default',
+  'source' => 'Title field label',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1400',
+  'location' => 'content_admin.inc:113',
+  'textgroup' => 'default',
+  'source' => 'The label for the title field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1401',
+  'location' => 'content_admin.inc:118',
+  'textgroup' => 'default',
+  'source' => 'Save content type',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1402',
+  'location' => 'content_admin.inc:182',
+  'textgroup' => 'default',
+  'source' => 'Saved content type %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1403',
+  'location' => 'content_admin.inc:198',
+  'textgroup' => 'default',
+  'source' => 'Are you sure you want to delete the content type %type?',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1404',
+  'location' => 'content_admin.inc:198',
+  'textgroup' => 'default',
+  'source' => 'If you have any content left in this content type, it will be permanently deleted. This action cannot be undone.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1405',
+  'location' => 'content_admin.inc:220',
+  'textgroup' => 'default',
+  'source' => 'Deleted content type %type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1406',
+  'location' => 'content_admin.inc:251',
+  'textgroup' => 'default',
+  'source' => 'remove',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1407',
+  'location' => 'content_admin.inc:313',
+  'textgroup' => 'default',
+  'source' => 'The human-readable name of this field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1408',
+  'location' => 'content_admin.inc:326',
+  'textgroup' => 'default',
+  'source' => 'Create field',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1409',
+  'location' => 'content_admin.inc:335',
+  'textgroup' => 'default',
+  '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.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1410',
+  'location' => 'content_admin.inc:487',
+  'textgroup' => 'default',
+  'source' => 'The field %field no longer exists in any content type, so it was deleted.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1411',
+  'location' => 'content_admin.inc:522',
+  'textgroup' => 'default',
+  'source' => 'Widget settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1412',
+  'location' => 'content_admin.inc:526',
+  'textgroup' => 'default',
+  'source' => 'Widget',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1413',
+  'location' => 'content_admin.inc:541',
+  'textgroup' => 'default',
+  'source' => 'In the node editing form, the heavier fields will sink and the lighter fields will be positioned nearer the top.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1414',
+  'location' => 'content_admin.inc:552',
+  'textgroup' => 'default',
+  'source' => 'Instructions to present to the user below this field on the editing form.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1415',
+  'location' => 'content_admin.inc:569',
+  'textgroup' => 'default',
+  'source' => 'Data settings',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1416',
+  'location' => 'content_admin.inc:579',
+  'textgroup' => 'default',
+  'source' => 'Multiple values',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1417',
+  'location' => 'content_admin.inc:652',
+  'textgroup' => 'default',
+  'source' => 'Saved field %field.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1418',
+  'location' => 'content_admin.inc:882;971',
+  'textgroup' => 'default',
+  'source' => 'No PostgreSQL mapping found for %type data type.',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '1419',
+  'location' => 'content_admin.inc:896;985',
+  'textgroup' => 'default',
+  'source' => 'database',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '211',
-  'location' => 'includes/content.token.inc:84',
+  'lid' => '1420',
+  'location' => 'date.module:15',
   'textgroup' => 'default',
-  'source' => 'Formatted html link to the referenced node.',
+  'source' => 'Defines a date/time field type. <em>Note: Requires content.module.</em>',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '212',
-  'location' => 'includes/content.token.inc:85',
+  'lid' => '1421',
+  'location' => 'date.module:36',
   'textgroup' => 'default',
-  'source' => 'Relative path alias to the referenced node.',
+  'source' => 'Year',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '213',
-  'location' => 'includes/content.token.inc:86',
+  'lid' => '1422',
+  'location' => 'date.module:37',
   'textgroup' => 'default',
-  'source' => 'Absolute path alias to the referenced node.',
+  'source' => 'Year and month',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '214',
-  'location' => 'includes/content.token.inc:86',
+  'lid' => '1423',
+  'location' => 'date.module:40',
   'textgroup' => 'default',
-  'source' => 'Raw number value',
+  'source' => 'Time only',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '215',
-  'location' => 'includes/content.token.inc:87',
+  'lid' => '1424',
+  'location' => 'date.module:44',
   'textgroup' => 'default',
-  'source' => 'Formatted number value',
+  'source' => 'Granularity',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '216',
-  'location' => 'includes/content.token.inc:110',
+  'lid' => '1425',
+  'location' => 'date.module:102',
   'textgroup' => 'default',
-  'source' => 'Raw, unfiltered text',
+  'source' => "Times are entered and displayed with site's time zone",
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '217',
-  'location' => 'includes/content.token.inc:111',
+  'lid' => '1426',
+  'location' => 'date.module:103',
   'textgroup' => 'default',
-  'source' => 'Formatted and filtered text',
+  'source' => "Times are entered and displayed with user's time zone",
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '218',
-  'location' => 'includes/content.token.inc:133',
+  'lid' => '1427',
+  'location' => 'date.module:107',
   'textgroup' => 'default',
-  'source' => 'Referenced user ID',
+  'source' => 'Time zone handling',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '219',
-  'location' => 'includes/content.token.inc:134',
+  'lid' => '1428',
+  'location' => 'date.module:153',
   'textgroup' => 'default',
-  'source' => 'Referenced user name',
+  'source' => '%name must be entered in ISO 8601 format (YYYYMMDDThh:mm:ss).',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '220',
-  'location' => 'includes/content.token.inc:135',
+  'lid' => '1429',
+  'location' => 'content.module:61',
   'textgroup' => 'default',
-  'source' => 'Formatted HTML link to referenced user',
+  'source' => 'content types',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '221',
-  'location' => 'includes/content.token.inc:164',
+  'lid' => '1430',
+  'location' => 'content.module:67',
   'textgroup' => 'default',
-  'source' => 'Relative path alias to the referenced user.',
+  'source' => 'list',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '222',
-  'location' => 'includes/content.token.inc:165',
+  'lid' => '1431',
+  'location' => 'modules/optionwidgets/optionwidgets.module:326',
   'textgroup' => 'default',
-  'source' => 'Absolute path alias to the referenced user.',
+  'source' => '%name: this field cannot hold more than @count values.',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '223',
-  'location' => 'includes/views/content.views.inc:245;261',
+  'lid' => '1432',
+  'location' => 'includes/panels/content_types/content_field.inc:37',
   'textgroup' => 'default',
-  'source' => '@label (!name)',
+  'source' => '@type: (@field_type) @field',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '224',
-  'location' => 'includes/views/content.views.inc:249',
+  'lid' => '1433',
+  'location' => 'includes/panels/content_types/content_field.inc:44',
   'textgroup' => 'default',
-  'source' => '@label (!name) - !column',
+  'source' => 'Field on the referenced node.',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '225',
-  'location' => 'includes/views/content.views.inc:250',
+  'lid' => '1434',
+  'location' => 'includes/panels/content_types/content_field.inc:128',
   'textgroup' => 'default',
-  'source' => '@label-truncated - !column',
+  'source' => 'Formatter',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '226',
-  'location' => 'includes/content.views.inc:93',
+  'lid' => '1435',
+  'location' => 'includes/panels/content_types/content_field.inc:131',
   'textgroup' => 'default',
-  'source' => 'Appears in: @types',
+  'source' => 'Select a formatter.',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '227',
-  'location' => 'includes/views/handlers/content_handler_field.inc:59',
+  'lid' => '1436',
+  'location' => 'includes/panels/content_types/content_field.inc:147',
   'textgroup' => 'default',
-  'source' => 'None',
+  'source' => '"@s" field (@name)',
   'version' => 'none',
 ))
 ->values(array(
-  'lid' => '228',
-  'location' => 'includes/views/handlers/content_handler_field.inc:60',
+  'lid' => '1437',
+  'location' => '/?q=zu/admin/settingsjhkjg',
   'textgroup' => 'default',
-  'source' => 'Widget label (@label)',
-  'version' => 'none',
+  'source' => 'Page not found',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '229',
-  'location' => 'includes/views/handlers/content_handler_field.inc:61',
+  'lid' => '1438',
+  'location' => '/?q=zu/admin/settingsjhkjg',
   'textgroup' => 'default',
-  'source' => 'Custom',
-  'version' => 'none',
+  'source' => 'The requested page could not be found.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '230',
-  'location' => 'includes/views/handlers/content_handler_field.inc:67',
+  'lid' => '1439',
+  'location' => '/?q=zu/admin/build/translate',
   'textgroup' => 'default',
-  'source' => 'Custom label',
-  'version' => 'none',
+  'source' => 'English (built-in)',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '231',
-  'location' => 'includes/content.views.inc:291',
+  'lid' => '1440',
+  'location' => '/?q=zu/admin/build/translate',
   'textgroup' => 'default',
-  'source' => 'Format',
-  'version' => 'none',
+  'source' => 'n/a',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1441',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Zulu',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1442',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Overview',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1443',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Refresh',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1444',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1445',
+  'location' => '/?q=zu/admin/build/translate',
+  'textgroup' => 'default',
+  'source' => 'Review the <a href="@languages">languages page</a> for more information on adding support for additional languages.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1446',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'English',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1447',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'String contains',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1448',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Leave blank to show all strings. The search is case sensitive.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1449',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'All languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1450',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'English (provided by Drupal)',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1451',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Search in',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1452',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Both translated and untranslated strings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1453',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Only translated strings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1454',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Only untranslated strings',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1455',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'Limit search to',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1456',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  'source' => 'All text groups',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1457',
+  'location' => '/?q=zu/admin/build/translate/search',
+  'textgroup' => 'default',
+  '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.',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1458',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Already added languages',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1459',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Languages not yet added',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1460',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Afar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1461',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Abkhazian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1462',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Avestan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1463',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Afrikaans',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1464',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Akan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1465',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Amharic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1466',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Arabic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1467',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Assamese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1468',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Avar',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1469',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Aymara',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1470',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Azerbaijani',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1471',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bashkir',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1472',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Belarusian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1473',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bulgarian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1474',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bihari',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1475',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bislama',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1476',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bambara',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1477',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bengali',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1478',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Tibetan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1479',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Breton',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1480',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bosnian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1481',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Catalan',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1482',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chechen',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1483',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chamorro',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1484',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Corsican',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1485',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Cree',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1486',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Czech',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1487',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Old Slavonic',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1488',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Chuvash',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1489',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Welsh',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1490',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Danish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1491',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'German',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1492',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Maldivian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1493',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Bhutani',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1494',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Ewe',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1495',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Greek',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1496',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Esperanto',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1497',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Spanish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1498',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Estonian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1499',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Basque',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1500',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Persian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1501',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Fulah',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1502',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Finnish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1503',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Fiji',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1504',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Faeroese',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1505',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Frisian',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1506',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Irish',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1507',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Scots Gaelic',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '232',
-  'location' => 'includes/content.views.inc:372',
+  'lid' => '1508',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Group multiple values',
-  'version' => 'none',
+  'source' => 'Galician',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '233',
-  'location' => 'includes/views/handlers/content_handler_field_multiple.inc:61',
+  'lid' => '1509',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Guarani',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '234',
-  'location' => 'includes/content.views.inc:378',
+  'lid' => '1510',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Show @count value(s)',
-  'version' => 'none',
+  'source' => 'Gujarati',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '235',
-  'location' => 'includes/content.views.inc:387',
+  'lid' => '1511',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'starting from @count',
-  'version' => 'none',
+  'source' => 'Manx',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '236',
-  'location' => 'includes/content.views.inc:396',
+  'lid' => '1512',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Reversed (start from last values)',
-  'version' => 'none',
+  'source' => 'Hausa',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '237',
-  'location' => 'includes/views/handlers/content_handler_relationship.inc:40,  includes/views/handlers/content_handler_sort.inc:41',
+  'lid' => '1513',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'All',
-  'version' => 'none',
+  'source' => 'Hebrew',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '238',
-  'location' => 'includes/views/handlers/content_handler_relationship.inc:48,  includes/views/handlers/content_handler_sort.inc:49',
+  'lid' => '1514',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Delta',
-  'version' => 'none',
+  'source' => 'Hindi',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '239',
-  'location' => 'includes/views/handlers/content_handler_relationship.inc:49',
+  'lid' => '1515',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Hiri Motu',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '240',
-  'location' => 'includes/views/handlers/content_handler_sort.inc:50',
+  'lid' => '1516',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Croatian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '241',
-  'location' => 'modules/content_copy/content_copy_export_form.tpl.php:9,  modules/content_copy/content_copy.module:191;38',
+  'lid' => '1517',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Export',
-  'version' => 'none',
+  'source' => 'Hungarian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '242',
-  'location' => 'modules/content_copy/content_copy.module:97',
+  'lid' => '1518',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Armenian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '243',
-  'location' => 'modules/content_copy/content_copy.module:103',
+  'lid' => '1519',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Types',
-  'version' => 'none',
+  'source' => 'Herero',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '244',
-  'location' => 'modules/content_copy/content_copy.module:107',
+  'lid' => '1520',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Select the content type to export.',
-  'version' => 'none',
+  'source' => 'Interlingua',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '245',
-  'location' => 'modules/content_copy/content_copy.module:175',
+  'lid' => '1521',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Export data',
-  'version' => 'none',
+  'source' => 'Indonesian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '246',
-  'location' => 'modules/content_copy/content_copy.module:180',
+  'lid' => '1522',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Copy the export text and paste it into another content type using the import function.',
-  'version' => 'none',
+  'source' => 'Interlingue',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '247',
-  'location' => 'modules/content_copy/content_copy.module:184',
+  'lid' => '1523',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content types',
-  'version' => 'none',
+  'source' => 'Igbo',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '248',
-  'location' => 'modules/content_copy/content_copy.module:308',
+  'lid' => '1524',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content type',
-  'version' => 'none',
+  'source' => 'Inupiak',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '249',
-  'location' => 'modules/content_copy/content_copy.module:309',
+  'lid' => '1525',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Icelandic',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '250',
-  'location' => 'modules/content_copy/content_copy.module:314',
+  'lid' => '1526',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Import data',
-  'version' => 'none',
+  'source' => 'Italian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '251',
-  'location' => 'modules/content_copy/content_copy.module:316',
+  'lid' => '1527',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Paste the text created by a content export into this field.',
-  'version' => 'none',
+  'source' => 'Inuktitut',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '252',
-  'location' => 'modules/content_copy/content_copy.module:320;46',
+  'lid' => '1528',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Import',
-  'version' => 'none',
+  'source' => 'Japanese',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '253',
-  'location' => 'modules/content_copy/content_copy.module:328',
+  'lid' => '1529',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'A file has been pre-loaded for import.',
-  'version' => 'none',
+  'source' => 'Javanese',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '254',
-  'location' => 'modules/content_copy/content_copy.module:354',
+  'lid' => '1530',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The import data is not valid import text.',
-  'version' => 'none',
+  'source' => 'Georgian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '255',
-  'location' => 'modules/content_copy/content_copy.module:403',
+  'lid' => '1531',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The following modules must be enabled for this import to work: %modules.',
-  'version' => 'none',
+  'source' => 'Kongo',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '256',
-  'location' => 'modules/content_copy/content_copy.module:411',
+  'lid' => '1532',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The content type %type already exists in this database.',
-  'version' => 'none',
+  'source' => 'Kikuyu',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '257',
-  'location' => 'modules/content_copy/content_copy.module:418',
+  'lid' => '1533',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Exiting. No import performed.',
-  'version' => 'none',
+  'source' => 'Kwanyama',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '258',
-  'location' => 'modules/content_copy/content_copy.module:442',
+  'lid' => '1534',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'An error has occurred adding the content type %type.<br/>Please check the errors displayed for more details.',
-  'version' => 'none',
+  'source' => 'Kazakh',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '259',
-  'location' => 'modules/content_copy/content_copy.module:467',
+  'lid' => '1535',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The imported field %field_label (%field_name) was not added to %type because that field already exists in %type.',
-  'version' => 'none',
+  'source' => 'Greenlandic',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '260',
-  'location' => 'modules/content_copy/content_copy.module:476',
+  'lid' => '1536',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The field %field_label (%field_name) was added to the content type %type.',
-  'version' => 'none',
+  'source' => 'Cambodian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '261',
-  'location' => 'modules/content_copy/content_copy.module:0',
+  'lid' => '1537',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'content_copy',
-  'version' => 'none',
+  'source' => 'Kannada',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '262',
-  'location' => 'modules/content_copy/content_copy.info:0',
+  'lid' => '1538',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content Copy',
-  'version' => 'none',
+  'source' => 'Korean',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '263',
-  'location' => 'modules/content_copy/content_copy.info:0',
+  'lid' => '1539',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Enables ability to import/export field definitions.',
-  'version' => 'none',
+  'source' => 'Kanuri',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '264',
-  'location' => 'modules/content_multigroup/content_multigroup.module:12',
+  'lid' => '1540',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Kashmiri',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '265',
-  'location' => 'modules/content_multigroup/content_multigroup.module:65;135',
+  'lid' => '1541',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Multigroup',
-  'version' => 'none',
+  'source' => 'Kurdish',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '266',
-  'location' => 'modules/content_multigroup/content_multigroup.module:134',
+  'lid' => '1542',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Standard',
-  'version' => 'none',
+  'source' => 'Komi',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '267',
-  'location' => 'modules/content_multigroup/content_multigroup.module:138',
+  'lid' => '1543',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Type of group.',
-  'version' => 'none',
+  'source' => 'Cornish',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '268',
-  'location' => 'modules/content_multigroup/content_multigroup.module:215',
+  'lid' => '1544',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The field %field has been updated to use %multiple values, to match the multiple value setting of the Multigroup %group.',
-  'version' => 'none',
+  'source' => 'Kirghiz',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '269',
-  'location' => 'modules/content_multigroup/content_multigroup.module:248',
+  'lid' => '1545',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Latin',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '270',
-  'location' => 'modules/content_multigroup/content_multigroup.module:272',
+  'lid' => '1546',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Luxembourgish',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '271',
-  'location' => 'modules/content_multigroup/content_multigroup.module:287',
+  'lid' => '1547',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'You are moving the field %field into a Multigroup.',
-  'version' => 'none',
+  'source' => 'Luganda',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '272',
-  'location' => 'modules/content_multigroup/content_multigroup.module:320',
+  'lid' => '1548',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Lingala',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '273',
-  'location' => 'modules/content_multigroup/content_multigroup.module:334',
+  'lid' => '1549',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'You are moving the field %field out of a Multigroup.',
-  'version' => 'none',
+  'source' => 'Laothian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '274',
-  'location' => 'modules/content_multigroup/content_multigroup.module:369',
+  'lid' => '1550',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Simple',
-  'version' => 'none',
+  'source' => 'Lithuanian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '275',
-  'location' => 'modules/content_multigroup/content_multigroup.module:370',
+  'lid' => '1551',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Fieldset',
-  'version' => 'none',
+  'source' => 'Latvian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '276',
-  'location' => 'modules/content_multigroup/content_multigroup.module:371',
+  'lid' => '1552',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Horizontal line',
-  'version' => 'none',
+  'source' => 'Malagasy',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '277',
-  'location' => 'modules/content_multigroup/content_multigroup.module:372',
+  'lid' => '1553',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Table - Single column',
-  'version' => 'none',
+  'source' => 'Marshallese',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '278',
-  'location' => 'modules/content_multigroup/content_multigroup.module:373',
+  'lid' => '1554',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Table - Multiple columns',
-  'version' => 'none',
+  'source' => 'Maori',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '279',
-  'location' => 'modules/content_multigroup/content_multigroup.module:384',
+  'lid' => '1555',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => '[Subgroup format]',
-  'version' => 'none',
+  'source' => 'Macedonian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '280',
-  'location' => 'modules/content_multigroup/content_multigroup.module:461',
+  'lid' => '1556',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Multigroup settings',
-  'version' => 'none',
+  'source' => 'Malayalam',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '281',
-  'location' => 'modules/content_multigroup/content_multigroup.module:476',
+  'lid' => '1557',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Multiple columns',
-  'version' => 'none',
+  'source' => 'Mongolian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '282',
-  'location' => 'modules/content_multigroup/content_multigroup.module:478',
+  'lid' => '1558',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Enable this option to render each field on a separate column on the node edit form.',
-  'version' => 'none',
+  'source' => 'Moldavian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '283',
-  'location' => 'modules/content_multigroup/content_multigroup.module:485',
+  'lid' => '1559',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Enable this option to require a minimum of one collection of fields in this Multigroup.',
-  'version' => 'none',
+  'source' => 'Marathi',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '284',
-  'location' => 'modules/content_multigroup/content_multigroup.module:488',
+  'lid' => '1560',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Number of times to repeat the collection of Multigroup fields.',
-  'version' => 'none',
+  'source' => 'Malay',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '285',
-  'location' => 'modules/content_multigroup/content_multigroup.module:489',
+  'lid' => '1561',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => "'Unlimited' will provide an 'Add more' button so the users can add items as many times as they like.",
-  'version' => 'none',
+  'source' => 'Maltese',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '286',
-  'location' => 'modules/content_multigroup/content_multigroup.module:490',
+  'lid' => '1562',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'All fields in this group will automatically be set to allow this number of values.',
-  'version' => 'none',
+  'source' => 'Burmese',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '287',
-  'location' => 'modules/content_multigroup/content_multigroup.module:495',
+  'lid' => '1563',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Number of repeats',
-  'version' => 'none',
+  'source' => 'Nauru',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '288',
-  'location' => 'modules/content_multigroup/content_multigroup.module:503',
+  'lid' => '1564',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Labels',
-  'version' => 'none',
+  'source' => 'North Ndebele',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '289',
-  'location' => 'modules/content_multigroup/content_multigroup.module:504',
+  'lid' => '1565',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => "Labels for each subgroup of fields. Labels can be hidden or shown in various contexts using the 'Display fields' screen.",
-  'version' => 'none',
+  'source' => 'Nepali',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '290',
-  'location' => 'modules/content_multigroup/content_multigroup.module:512',
+  'lid' => '1566',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Subgroup %number label',
-  'version' => 'none',
+  'source' => 'Ndonga',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '291',
-  'location' => 'modules/content_multigroup/content_multigroup.module:539',
+  'lid' => '1567',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'source' => 'Dutch',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '292',
-  'location' => 'modules/content_multigroup/content_multigroup.module:932',
+  'lid' => '1568',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => '!name field is required in group @group.',
-  'version' => 'none',
+  'source' => 'Norwegian Bokmål',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '293',
-  'location' => 'modules/content_multigroup/content_multigroup.module:946',
+  'lid' => '1569',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Group @name requires one collection of fields minimum.',
-  'version' => 'none',
+  'source' => 'Norwegian Nynorsk',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '294',
-  'location' => 'modules/content_multigroup/content_multigroup.module:1145',
+  'lid' => '1570',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Add more values',
-  'version' => 'none',
+  'source' => 'South Ndebele',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '295',
-  'location' => 'modules/content_multigroup/content_multigroup.module:0',
+  'lid' => '1571',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'content_multigroup',
-  'version' => 'none',
+  'source' => 'Navajo',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '296',
-  'location' => 'modules/content_multigroup/content_multigroup.info:0',
+  'lid' => '1572',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content Multigroup',
-  'version' => 'none',
+  'source' => 'Chichewa',
+  'version' => '6.38-dev',
+))
+->values(array(
+  'lid' => '1573',
+  'location' => '/?q=zu/admin/build/translate/import',
+  'textgroup' => 'default',
+  'source' => 'Occitan',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '297',
-  'location' => 'modules/content_multigroup/content_multigroup.info:0',
+  'lid' => '1574',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Combine multiple CCK fields into repeating field collections that work in unison.',
-  'version' => 'none',
+  'source' => 'Oromo',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '298',
-  'location' => 'modules/content_permissions/content_permissions.module:10',
+  'lid' => '1575',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'edit ',
-  'version' => 'none',
+  'source' => 'Oriya',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '299',
-  'location' => 'modules/content_permissions/content_permissions.module:10;11',
+  'lid' => '1576',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'field_name',
-  'version' => 'none',
+  'source' => 'Ossetian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '300',
-  'location' => 'modules/content_permissions/content_permissions.module:11',
+  'lid' => '1577',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'view ',
-  'version' => 'none',
+  'source' => 'Punjabi',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '301',
-  'location' => 'modules/content_permissions/content_permissions.module:0',
+  'lid' => '1578',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'content_permissions',
-  'version' => 'none',
+  'source' => 'Pali',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '302',
-  'location' => 'modules/content_permissions/content_permissions.install:9',
+  'lid' => '1579',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.',
-  'version' => 'none',
+  'source' => 'Polish',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '303',
-  'location' => 'modules/content_permissions/content_permissions.info:0',
+  'lid' => '1580',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content Permissions',
-  'version' => 'none',
+  'source' => 'Pashto',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '304',
-  'location' => 'modules/content_permissions/content_permissions.info:0',
+  'lid' => '1581',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Set field-level permissions for CCK fields.',
-  'version' => 'none',
+  'source' => 'Portuguese, Portugal',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '305',
-  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:10;27',
+  'lid' => '1582',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content fieldgroup',
-  'version' => 'none',
+  'source' => 'Portuguese, Brazil',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '306',
-  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:30',
+  'lid' => '1583',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'All fields from a fieldgroup on the referenced node.',
-  'version' => 'none',
+  'source' => 'Quechua',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '307',
-  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:91',
+  'lid' => '1584',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => '@group_label (@group_type_name)',
-  'version' => 'none',
+  'source' => 'Rhaeto-Romance',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '308',
-  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:102,  modules/fieldgroup/fieldgroup.info:0',
+  'lid' => '1585',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Fieldgroup',
-  'version' => 'none',
+  'source' => 'Kirundi',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '309',
-  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:112',
+  'lid' => '1586',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Text to display if group has no data. Note that title will not display unless overridden.',
-  'version' => 'none',
+  'source' => 'Romanian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '310',
-  'location' => 'modules/fieldgroup/fieldgroup.panels.inc:128',
+  'lid' => '1587',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => '"@s" fieldgroup @name',
-  'version' => 'none',
+  'source' => 'Russian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '311',
-  'location' => 'modules/fieldgroup/fieldgroup.module:124',
+  'lid' => '1588',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Form settings',
-  'version' => 'none',
+  'source' => 'Kinyarwanda',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '312',
-  'location' => 'modules/fieldgroup/fieldgroup.module:125',
+  'lid' => '1589',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'These settings apply to the group in the node editing form.',
-  'version' => 'none',
+  'source' => 'Sanskrit',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '313',
-  'location' => 'modules/fieldgroup/fieldgroup.module:129',
+  'lid' => '1590',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Style',
-  'version' => 'none',
+  'source' => 'Sardinian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '314',
-  'location' => 'modules/fieldgroup/fieldgroup.module:132',
+  'lid' => '1591',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'always open',
-  'version' => 'none',
+  'source' => 'Sindhi',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '315',
-  'location' => 'modules/fieldgroup/fieldgroup.module:133',
+  'lid' => '1592',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'collapsible',
-  'version' => 'none',
+  'source' => 'Northern Sami',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '316',
-  'location' => 'modules/fieldgroup/fieldgroup.module:134',
+  'lid' => '1593',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'collapsed',
-  'version' => 'none',
+  'source' => 'Sango',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '317',
-  'location' => 'modules/fieldgroup/fieldgroup.module:142',
+  'lid' => '1594',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Instructions to present to the user on the editing form.',
-  'version' => 'none',
+  'source' => 'Serbo-Croatian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '318',
-  'location' => 'modules/fieldgroup/fieldgroup.module:147',
+  'lid' => '1595',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Display settings',
-  'version' => 'none',
+  'source' => 'Sinhala',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '319',
-  'location' => 'modules/fieldgroup/fieldgroup.module:148',
+  'lid' => '1596',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'These settings apply to the group on node display.',
-  'version' => 'none',
+  'source' => 'Slovak',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '320',
-  'location' => 'modules/fieldgroup/fieldgroup.module:155',
+  'lid' => '1597',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'A description of the group.',
-  'version' => 'none',
+  'source' => 'Slovenian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '321',
-  'location' => 'modules/fieldgroup/fieldgroup.module:200',
+  'lid' => '1598',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Are you sure you want to remove the group %label?',
-  'version' => 'none',
+  'source' => 'Samoan',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '322',
-  'location' => 'modules/fieldgroup/fieldgroup.module:202',
+  'lid' => '1599',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'This action cannot be undone.',
-  'version' => 'none',
+  'source' => 'Shona',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '323',
-  'location' => 'modules/fieldgroup/fieldgroup.module:211',
+  'lid' => '1600',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The group %group_name has been removed.',
-  'version' => 'none',
+  'source' => 'Somali',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '324',
-  'location' => 'modules/fieldgroup/fieldgroup.module:293,  modules/nodereference/nodereference.module:544,  modules/userreference/userreference.module:439',
+  'lid' => '1601',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'none',
-  'version' => 'none',
+  'source' => 'Albanian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '325',
-  'location' => 'modules/fieldgroup/fieldgroup.module:353',
+  'lid' => '1602',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'You need to provide a label.',
-  'version' => 'none',
+  'source' => 'Serbian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '326',
-  'location' => 'modules/fieldgroup/fieldgroup.module:358',
+  'lid' => '1603',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'You need to provide a group name.',
-  'version' => 'none',
+  'source' => 'Siswati',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '327',
-  'location' => 'modules/fieldgroup/fieldgroup.module:372',
+  'lid' => '1604',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The group name %group_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
-  'version' => 'none',
+  'source' => 'Sesotho',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '328',
-  'location' => 'modules/fieldgroup/fieldgroup.module:375',
+  'lid' => '1605',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => "The group name %group_name is too long. The name is limited to 32 characters, including the 'group_' prefix.",
-  'version' => 'none',
+  'source' => 'Sudanese',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '329',
-  'location' => 'modules/fieldgroup/fieldgroup.module:381',
+  'lid' => '1606',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The group name %group_name already exists.',
-  'version' => 'none',
+  'source' => 'Swedish',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '330',
-  'location' => 'modules/fieldgroup/fieldgroup.module:400;403',
+  'lid' => '1607',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Add new group:',
-  'version' => 'none',
+  'source' => 'Swahili',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '331',
-  'location' => 'modules/fieldgroup/fieldgroup.module:418',
+  'lid' => '1608',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Add new group: you need to provide a label.',
-  'version' => 'none',
+  'source' => 'Tamil',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '332',
-  'location' => 'modules/fieldgroup/fieldgroup.module:419',
+  'lid' => '1609',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Add new group: you need to provide a group name.',
-  'version' => 'none',
+  'source' => 'Telugu',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '333',
-  'location' => 'modules/fieldgroup/fieldgroup.module:648',
+  'lid' => '1610',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Standard group',
-  'version' => 'none',
+  'source' => 'Tajik',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '334',
-  'location' => 'modules/fieldgroup/fieldgroup.module:39;46',
+  'lid' => '1611',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Edit group',
-  'version' => 'none',
+  'source' => 'Thai',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '335',
-  'location' => 'modules/fieldgroup/fieldgroup.module:0',
+  'lid' => '1612',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'fieldgroup',
-  'version' => 'none',
+  'source' => 'Tigrinya',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '336',
-  'location' => 'modules/fieldgroup/fieldgroup.info:0',
+  'lid' => '1613',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Create display groups for CCK fields.',
-  'version' => 'none',
+  'source' => 'Turkmen',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '337',
-  'location' => 'modules/nodereference/nodereference.rules.inc:15',
+  'lid' => '1614',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Load a referenced node',
-  'version' => 'none',
+  'source' => 'Tagalog',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '338',
-  'location' => 'modules/nodereference/nodereference.rules.inc:19',
+  'lid' => '1615',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content containing the node reference field',
-  'version' => 'none',
+  'source' => 'Setswana',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '339',
-  'location' => 'modules/nodereference/nodereference.rules.inc:25',
+  'lid' => '1616',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Referenced content',
-  'version' => 'none',
+  'source' => 'Tonga',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '340',
-  'location' => 'modules/nodereference/nodereference.rules.inc:29',
+  'lid' => '1617',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Note that if the field has multiple values, only the first content node will be loaded.',
-  'version' => 'none',
+  'source' => 'Turkish',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '341',
-  'location' => 'modules/nodereference/nodereference.rules.inc:50',
+  'lid' => '1618',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'There are no nodereference fields defined.',
-  'version' => 'none',
+  'source' => 'Tsonga',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '342',
-  'location' => 'modules/nodereference/nodereference.module:60',
+  'lid' => '1619',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Node reference',
-  'version' => 'none',
+  'source' => 'Tatar',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '343',
-  'location' => 'modules/nodereference/nodereference.module:61',
+  'lid' => '1620',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Store the ID of a related node as an integer value.',
-  'version' => 'none',
+  'source' => 'Twi',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '344',
-  'location' => 'modules/nodereference/nodereference.module:75',
+  'lid' => '1621',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Content types that can be referenced',
-  'version' => 'none',
+  'source' => 'Tahitian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '345',
-  'location' => 'modules/nodereference/nodereference.module:87,  modules/userreference/userreference.module:84',
+  'lid' => '1622',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Default Views',
-  'version' => 'none',
+  'source' => 'Uighur',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '346',
-  'location' => 'modules/nodereference/nodereference.module:90,  modules/userreference/userreference.module:87',
+  'lid' => '1623',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'Existing Views',
-  'version' => 'none',
+  'source' => 'Select text groups',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '347',
-  'location' => 'modules/nodereference/nodereference.module:97',
+  'lid' => '1624',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Advanced - Nodes that can be referenced (View)',
-  'version' => 'none',
+  'source' => 'Ukrainian',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '348',
-  'location' => 'modules/nodereference/nodereference.module:104',
+  'lid' => '1625',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'View used to select the nodes',
-  'version' => 'none',
+  'source' => 'If a text group is no showing up here it means this feature is not implemented for it.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '349',
-  'location' => 'modules/nodereference/nodereference.module:107',
+  'lid' => '1626',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => '<p>Choose the "Views module" view that selects the nodes that can be referenced.<br />Note:</p>',
-  'version' => 'none',
+  'source' => 'Urdu',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '350',
-  'location' => 'modules/nodereference/nodereference.module:108;121',
+  'lid' => '1627',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  '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>",
-  'version' => 'none',
+  'source' => 'Refresh strings',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '351',
-  'location' => 'modules/nodereference/nodereference.module:112,  modules/userreference/userreference.module:109',
+  'lid' => '1628',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'View arguments',
-  'version' => 'none',
+  'source' => 'Uzbek',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '352',
-  'location' => 'modules/nodereference/nodereference.module:115,  modules/userreference/userreference.module:112',
+  'lid' => '1629',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'Provide a comma separated list of arguments to pass to the view.',
-  'version' => 'none',
+  'source' => 'This will create all the missing strings for the selected text groups.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '353',
-  'location' => 'modules/nodereference/nodereference.module:120',
+  'lid' => '1630',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  '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>',
-  'version' => 'none',
+  'source' => 'Venda',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '354',
-  'location' => 'modules/nodereference/nodereference.module:205,  modules/userreference/userreference.module:184',
+  'lid' => '1631',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => '%name: invalid input.',
-  'version' => 'none',
+  'source' => 'Select languages',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '355',
-  'location' => 'modules/nodereference/nodereference.module:217',
+  'lid' => '1632',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => "%name: this post can't be referenced.",
-  'version' => 'none',
+  'source' => 'Vietnamese',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '356',
-  'location' => 'modules/nodereference/nodereference.module:242',
+  'lid' => '1633',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'Title (link)',
-  'version' => 'none',
+  'source' => 'Update translations',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '357',
-  'location' => 'modules/nodereference/nodereference.module:247',
+  'lid' => '1634',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Title (no link)',
-  'version' => 'none',
+  'source' => 'Wolof',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '358',
-  'location' => 'modules/nodereference/nodereference.module:303,  modules/optionwidgets/optionwidgets.module:62,  modules/userreference/userreference.module:198',
+  'lid' => '1635',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'Select list',
-  'version' => 'none',
+  'source' => 'This will fetch all existing translations from the localization tables for the selected text groups and languages.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '359',
-  'location' => 'modules/optionwidgets/optionwidgets.module:70',
+  'lid' => '1636',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Check boxes/radio buttons',
-  'version' => 'none',
+  'source' => 'Xhosa',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '360',
-  'location' => 'modules/nodereference/nodereference.module:311,  modules/userreference/userreference.module:206',
+  'lid' => '1637',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Autocomplete text field',
-  'version' => 'none',
+  'source' => 'Yiddish',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '361',
-  'location' => 'modules/nodereference/nodereference.module:417,  modules/userreference/userreference.module:343',
+  'lid' => '1638',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Autocomplete matching',
-  'version' => 'none',
+  'source' => 'Yoruba',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '362',
-  'location' => 'modules/nodereference/nodereference.module:420,  modules/userreference/userreference.module:346',
+  'lid' => '1639',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'Starts with',
-  'version' => 'none',
+  'source' => 'On this page you can refresh and update values for user defined strings.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '363',
-  'location' => 'modules/nodereference/nodereference.module:421,  modules/userreference/userreference.module:347',
+  'lid' => '1640',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Contains',
-  'version' => 'none',
+  'source' => 'Zhuang',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '364',
-  'location' => 'modules/nodereference/nodereference.module:423',
+  'lid' => '1641',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of nodes.',
-  'version' => 'none',
+  '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.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '365',
-  'location' => 'modules/nodereference/nodereference.module:671',
+  'lid' => '1642',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => '%name: title mismatch. Please check your selection.',
-  'version' => 'none',
+  'source' => 'Chinese, Simplified',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '366',
-  'location' => 'modules/nodereference/nodereference.module:678',
+  'lid' => '1643',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => '%name: found no valid post with that title.',
-  'version' => 'none',
+  '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.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '367',
-  'location' => 'modules/nodereference/nodereference.module:15',
+  'lid' => '1644',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Nodereference autocomplete',
-  'version' => 'none',
+  'source' => 'Chinese, Traditional',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '368',
-  'location' => 'modules/nodereference/nodereference.module:0',
+  'lid' => '1645',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'nodereference',
-  'version' => 'none',
+  'source' => 'To search and translate strings, use the <a href="@translate-interface">translation interface</a> pages.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '369',
-  'location' => 'modules/nodereference/nodereference.info:0',
+  'lid' => '1646',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Node Reference',
-  'version' => 'none',
+  'source' => 'Import translation',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '370',
-  'location' => 'modules/nodereference/nodereference.info:0',
+  'lid' => '1647',
+  'location' => '/?q=zu/admin/build/translate/refresh',
   'textgroup' => 'default',
-  'source' => 'Defines a field type for referencing one node from another.',
-  'version' => 'none',
+  '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.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '371',
-  'location' => 'modules/number/number.module:41',
+  'lid' => '1648',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Integer',
-  'version' => 'none',
+  'source' => 'Language file',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '372',
-  'location' => 'modules/number/number.module:42',
+  'lid' => '1649',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Store a number in the database as an integer.',
-  'version' => 'none',
+  'source' => 'A Gettext Portable Object (<em>.po</em>) file.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '373',
-  'location' => 'modules/number/number.module:49',
+  'lid' => '1650',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Decimal',
-  'version' => 'none',
+  'source' => 'Import into',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '374',
-  'location' => 'modules/number/number.module:50',
+  'lid' => '1651',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Store a number in the database in a fixed decimal format.',
-  'version' => 'none',
+  '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.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '375',
-  'location' => 'modules/number/number.module:57',
+  'lid' => '1652',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Float',
-  'version' => 'none',
+  'source' => 'Text group',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '376',
-  'location' => 'modules/number/number.module:58',
+  'lid' => '1653',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Store a number in the database in a floating point format.',
-  'version' => 'none',
+  'source' => 'Imported translations will be added to this text group.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '377',
-  'location' => 'modules/number/number.module:76',
+  'lid' => '1654',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Minimum',
-  'version' => 'none',
+  'source' => 'Mode',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '378',
-  'location' => 'modules/number/number.module:81',
+  'lid' => '1655',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Maximum',
-  'version' => 'none',
+  'source' => 'Strings in the uploaded file replace existing ones, new ones are added',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '379',
-  'location' => 'modules/number/number.module:88',
+  'lid' => '1656',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Precision',
-  'version' => 'none',
+  'source' => 'Existing strings are kept, only new strings are added',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '380',
-  'location' => 'modules/number/number.module:89',
+  'lid' => '1657',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'The total number of digits to store in the database, including those to the right of the decimal.',
-  'version' => 'none',
+  '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.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '381',
-  'location' => 'modules/number/number.module:95',
+  'lid' => '1658',
+  'location' => '/?q=zu/admin/build/translate/import',
   'textgroup' => 'default',
-  'source' => 'Scale',
-  'version' => 'none',
+  '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>.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '382',
-  'location' => 'modules/number/number.module:96',
+  'lid' => '1659',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
   'textgroup' => 'default',
-  'source' => 'The number of digits to the right of the decimal.',
-  'version' => 'none',
+  'source' => 'Variable name',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '383',
-  'location' => 'modules/number/number.module:102',
+  'lid' => '1660',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
   'textgroup' => 'default',
-  'source' => 'Decimal marker',
-  'version' => 'none',
+  'source' => 'Is multilingual',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '384',
-  'location' => 'modules/number/number.module:103',
+  'lid' => '1661',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
   'textgroup' => 'default',
-  'source' => 'The character users will input to mark the decimal point in forms.',
-  'version' => 'none',
+  'source' => 'Has translations',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '385',
-  'location' => 'modules/number/number.module:109',
+  'lid' => '1662',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
   'textgroup' => 'default',
-  'source' => 'Prefix',
-  'version' => 'none',
+  'source' => 'Delete all existing translations for variables.',
+  'version' => '6.38-dev',
 ))
 ->values(array(
-  'lid' => '386',
-  'location' => 'modules/number/number.module:112',
+  'lid' => '1663',
+  'location' => '/?q=zu/admin/settings/language/i18n/variables',
   'textgroup' => 'default',
-  '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).',
-  'version' => 'none',
+  'source' => 'Delete all translations',
+  'version' => '6.38-dev',
+))
+->execute();
+
+$connection->schema()->createTable('locales_target', array(
+  'fields' => array(
+    'lid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'translation' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'normal',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+    'plid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'plural' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'i18n_status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'language',
+    'lid',
+    'plural',
+  ),
+  'indexes' => array(
+    'lid' => array(
+      'lid',
+    ),
+    'plid' => array(
+      'plid',
+    ),
+    'plural' => array(
+      'plural',
+    ),
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('locales_target')
+->fields(array(
+  'lid',
+  'translation',
+  'language',
+  'plid',
+  'plural',
+  'i18n_status',
 ))
 ->values(array(
-  'lid' => '387',
-  'location' => 'modules/number/number.module:116',
-  'textgroup' => 'default',
-  'source' => 'Suffix',
-  'version' => 'none',
+  'lid' => '5',
+  '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).",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '6',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '7',
+  '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 :",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '8',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '9',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '10',
+  '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").',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '11',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '12',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '13',
+  '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>.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '14',
+  '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.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '15',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '16',
+  'translation' => "Contrôlez ici l'ordre des champs dans le formulaire de saisie.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '17',
+  'translation' => 'Ce champ est obligatoire.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '18',
+  'translation' => '!title : !required',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '19',
+  'translation' => 'Ordre',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '20',
+  'translation' => 'Élément de flux RSS',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
+))
+->values(array(
+  'lid' => '21',
+  'translation' => 'Index de recherche',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '388',
-  'location' => 'modules/number/number.module:119',
-  'textgroup' => 'default',
-  '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).',
-  'version' => 'none',
+  'lid' => '22',
+  'translation' => 'Résultat de recherche',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '389',
-  'location' => 'modules/number/number.module:123 modules/text/text.module:82',
-  'textgroup' => 'default',
-  'source' => 'Allowed values',
-  'version' => 'none',
+  'lid' => '23',
+  'translation' => 'Langue',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '390',
-  'location' => 'examples/example_field.php:174 modules/number/number.module:129,  modules/text/text.module:88',
-  'textgroup' => 'default',
-  'source' => 'Allowed values list',
-  'version' => 'none',
+  'lid' => '24',
+  'translation' => 'Taxonomie',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '391',
-  'location' => 'modules/number/number.module:116,  modules/text/text.module:81',
-  'textgroup' => 'default',
-  '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',
-  'version' => 'none',
+  'lid' => '25',
+  'translation' => 'Fichiers attachés',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '392',
-  'location' => 'examples/example_field.php:191 modules/number/number.module:147,  modules/text/text.module:106',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '26',
+  'translation' => 'Mise à jour du type de champ %type avec le module %module.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '393',
-  'location' => 'modules/number/number.module:155 modules/text/text.module:114',
-  'textgroup' => 'default',
-  'source' => 'This PHP code was set by an administrator and will override the allowed values list above.',
-  'version' => 'none',
+  'lid' => '27',
+  'translation' => 'Mise à jour du type de widget %widget avec le module %module.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '394',
-  'location' => 'modules/number/number.module:178,  modules/text/text.module:132',
-  'textgroup' => 'default',
-  'source' => '@label (!name) - Allowed values',
-  'version' => 'none',
+  'lid' => '28',
+  'translation' => "Utiliser du code PHP pour le paramétrage des champs (dangereux - à n'autoriser qu'avec précautions)",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '395',
-  'location' => 'modules/number/number.module:162',
-  'textgroup' => 'default',
-  'source' => '"Minimum" must be a number.',
-  'version' => 'none',
+  'lid' => '29',
+  'translation' => 'Gérer les champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '396',
-  'location' => 'modules/number/number.module:165',
-  'textgroup' => 'default',
-  'source' => '"Maximum" must be a number.',
-  'version' => 'none',
+  'lid' => '30',
+  'translation' => 'Afficher les champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '397',
-  'location' => 'modules/number/number.module:219',
-  'textgroup' => 'default',
-  'source' => '%name: the value may be no smaller than %min.',
-  'version' => 'none',
+  'lid' => '31',
+  'translation' => 'Général',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '398',
-  'location' => 'modules/number/number.module:222',
-  'textgroup' => 'default',
-  'source' => '%name: the value may be no larger than %max.',
-  'version' => 'none',
+  'lid' => '32',
+  'translation' => 'Avancé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '399',
-  'location' => 'modules/number/number.module:235,  modules/text/text.module:156',
-  'textgroup' => 'default',
-  'source' => '%name: illegal value.',
-  'version' => 'none',
+  'lid' => '33',
+  'translation' => 'Supprimer un champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '400',
-  'location' => 'modules/number/number.module:263',
-  'textgroup' => 'default',
-  'source' => 'unformatted',
-  'version' => 'none',
+  'lid' => '34',
+  'translation' => 'Content',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '401',
-  'location' => 'examples/example_field.php:476 examples/simple_field.php:400,  modules/number/number.module:342 modules/text/text.module:264',
-  'textgroup' => 'default',
-  'source' => 'Text field',
-  'version' => 'none',
+  'lid' => '35',
+  'translation' => 'Permet aux administrateurs de définir des nouveaux types de contenu.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '402',
-  'location' => 'modules/number/number.module:512',
-  'textgroup' => 'default',
-  'source' => 'Only numbers and decimals are allowed in %field.',
-  'version' => 'none',
+  'lid' => '36',
+  'translation' => 'CCK',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '403',
-  'location' => 'modules/number/number.module:535',
-  'textgroup' => 'default',
-  'source' => 'Only numbers are allowed in %field.',
-  'version' => 'none',
+  'lid' => '37',
+  'translation' => 'Texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '404',
-  'location' => 'modules/number/number.module:559',
-  'textgroup' => 'default',
-  'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field.',
-  'version' => 'none',
+  'lid' => '38',
+  '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é.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '405',
-  'location' => 'modules/number/number.module:0',
-  'textgroup' => 'default',
-  'source' => 'number',
-  'version' => 'none',
+  'lid' => '39',
+  'translation' => 'Zone de texte',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '406',
-  'location' => 'modules/number/number.info:0',
-  'textgroup' => 'default',
-  'source' => 'Number',
-  'version' => 'none',
+  'lid' => '40',
+  'translation' => 'Ôter',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '407',
-  'location' => 'modules/number/number.info:0',
-  'textgroup' => 'default',
-  'source' => 'Defines numeric field types.',
-  'version' => 'none',
+  'lid' => '41',
+  'translation' => 'Basique',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '408',
-  'location' => 'modules/optionwidgets/optionwidgets.module:19',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '42',
+  'translation' => 'Résumé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '409',
-  'location' => 'modules/optionwidgets/optionwidgets.module:12',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'lid' => '43',
+  'translation' => 'NÅ“ud complet',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '410',
-  'location' => 'modules/optionwidgets/optionwidgets.module:15',
-  'textgroup' => 'default',
-  'source' => "The 'checkboxes/radio buttons' widget will display checkboxes if the multiple values option is selected for this field, otherwise radios will be displayed.",
-  'version' => 'none',
+  'lid' => '44',
+  'translation' => 'RSS',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '411',
-  'location' => 'modules/optionwidgets/optionwidgets.module:37',
-  'textgroup' => 'default',
-  'source' => "You need to specify the 'allowed values' for this field.",
-  'version' => 'none',
+  'lid' => '45',
+  'translation' => 'Recherche',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '412',
-  'location' => 'modules/optionwidgets/optionwidgets.module:78',
-  'textgroup' => 'default',
-  'source' => 'Single on/off checkbox',
-  'version' => 'none',
+  'lid' => '46',
+  'translation' => 'Formulaire du module node.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '413',
-  'location' => 'modules/optionwidgets/optionwidgets.module:331',
-  'textgroup' => 'default',
-  'source' => '%name: this field cannot hold more that @count values.',
-  'version' => 'none',
+  'lid' => '47',
+  'translation' => 'Formulaire du module locale.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '414',
-  'location' => 'modules/optionwidgets/optionwidgets.module:364',
-  'textgroup' => 'default',
-  'source' => 'N/A',
-  'version' => 'none',
+  'lid' => '48',
+  'translation' => 'Paramètres du menu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '415',
-  'location' => 'modules/optionwidgets/optionwidgets.module:420',
-  'textgroup' => 'default',
-  'source' => '- None -',
-  'version' => 'none',
+  'lid' => '49',
+  'translation' => 'Formulaire du module menu.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '416',
-  'location' => 'modules/optionwidgets/optionwidgets.module:0',
-  'textgroup' => 'default',
-  'source' => 'optionwidgets',
-  'version' => 'none',
+  'lid' => '50',
+  'translation' => 'Formulaire du module taxonomy.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '417',
-  'location' => 'modules/optionwidgets/optionwidgets.info:0',
-  'textgroup' => 'default',
-  'source' => 'Option Widgets',
-  'version' => 'none',
+  'lid' => '51',
+  'translation' => 'Livre',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '418',
-  'location' => 'modules/optionwidgets/optionwidgets.info:0',
-  'textgroup' => 'default',
-  'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.',
-  'version' => 'none',
+  'lid' => '52',
+  'translation' => 'Formulaire du module livre (book).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '419',
-  'location' => 'modules/text/text.module:50',
-  'textgroup' => 'default',
-  'source' => 'Store text in the database.',
-  'version' => 'none',
+  'lid' => '53',
+  'translation' => 'Titre du sondage',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '420',
-  'location' => 'examples/example_field.php:158;388 examples/simple_field.php:332,  modules/text/text.module:66;209,  modules/userreference/userreference.module:151',
-  'textgroup' => 'default',
-  'source' => 'Plain text',
-  'version' => 'none',
+  'lid' => '54',
+  'translation' => 'Titre du module sondage (Poll)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '421',
-  'location' => 'examples/example_field.php:158 modules/text/text.module:66',
-  'textgroup' => 'default',
-  'source' => 'Filtered text (user selects input format)',
-  'version' => 'none',
+  'lid' => '55',
+  'translation' => 'Choix du sondage',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '422',
-  'location' => 'examples/example_field.php:161 modules/text/text.module:69',
-  'textgroup' => 'default',
-  'source' => 'Text processing',
-  'version' => 'none',
+  'lid' => '56',
+  'translation' => 'Choix du module sondage (poll).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '423',
-  'location' => 'examples/example_field.php:167 examples/simple_field.php:164,  modules/text/text.module:75',
-  'textgroup' => 'default',
-  'source' => 'Maximum length',
-  'version' => 'none',
+  'lid' => '57',
+  'translation' => 'Paramètrage du sondage',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '424',
-  'location' => 'examples/example_field.php:170 examples/simple_field.php:167,  modules/text/text.module:78',
-  'textgroup' => 'default',
-  'source' => 'The maximum length of the field in characters. Leave blank for an unlimited size.',
-  'version' => 'none',
+  'lid' => '58',
+  'translation' => 'Paramètres du module sondage (poll).',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '425',
-  'location' => 'modules/text/text.module:159',
-  'textgroup' => 'default',
-  'source' => '%name: the value may not be longer than %max characters.',
-  'version' => 'none',
+  'lid' => '59',
+  'translation' => 'Formulaire du module upload.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '426',
-  'location' => 'examples/example_field.php:383 examples/simple_field.php:327,  modules/text/text.module:204 modules/userreference/userreference.module:146',
-  'textgroup' => 'default',
-  'source' => 'Default',
-  'version' => 'none',
+  'lid' => '60',
+  'translation' => 'contenu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '427',
-  'location' => 'examples/example_field.php:393 modules/text/text.module:214',
-  'textgroup' => 'default',
-  'source' => 'Trimmed',
-  'version' => 'none',
+  'lid' => '61',
+  'translation' => 'Champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '428',
-  'location' => 'modules/text/text.module:272',
-  'textgroup' => 'default',
-  'source' => 'Text area (multiple rows)',
-  'version' => 'none',
+  'lid' => '62',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '429',
-  'location' => 'modules/text/text.module:316',
-  'textgroup' => 'default',
-  'source' => 'Size of textfield',
-  'version' => 'none',
+  'lid' => '63',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '430',
-  'location' => 'examples/example_field.php:551 examples/simple_field.php:430,  modules/text/text.module:324',
-  'textgroup' => 'default',
-  'source' => 'Rows',
-  'version' => 'none',
+  'lid' => '64',
+  '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. ",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '431',
-  'location' => 'modules/text/text.module:0',
-  'textgroup' => 'default',
-  'source' => 'text',
-  'version' => 'none',
+  'lid' => '65',
+  '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.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '432',
-  'location' => 'modules/text/text.info:0',
-  'textgroup' => 'default',
-  'source' => 'Defines simple text field types.',
-  'version' => 'none',
+  'lid' => '66',
+  'translation' => 'CCK - Aucune Intégration aux Vues',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '433',
-  'location' => 'modules/userreference/userreference.rules.inc:15',
-  'textgroup' => 'default',
-  'source' => 'Load a referenced user',
-  'version' => 'none',
+  'lid' => '67',
+  'translation' => 'L"intégration de CCK avec le module Views requiert Views 6.x-2.0-rc2 ou une version supérieure.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '434',
-  'location' => 'modules/userreference/userreference.rules.inc:19',
-  'textgroup' => 'default',
-  'source' => 'Content containing the user reference field',
-  'version' => 'none',
+  'lid' => '68',
+  'translation' => 'Nom',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '435',
-  'location' => 'modules/userreference/userreference.rules.inc:25',
-  'textgroup' => 'default',
-  'source' => 'Referenced user',
-  'version' => 'none',
+  'lid' => '69',
+  'translation' => 'Type',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '436',
-  'location' => 'modules/userreference/userreference.rules.inc:29',
-  'textgroup' => 'default',
-  'source' => 'Note that if the field has multiple values, only the first user will be loaded.',
-  'version' => 'none',
+  'lid' => '70',
+  'translation' => 'Description',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '437',
-  'location' => 'modules/userreference/userreference.rules.inc:52',
-  'textgroup' => 'default',
-  'source' => 'There are no userreference fields defined.',
-  'version' => 'none',
+  'lid' => '71',
+  'translation' => 'Opérations',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '438',
-  'location' => 'modules/userreference/userreference.module:52',
-  'textgroup' => 'default',
-  'source' => 'User reference',
-  'version' => 'none',
+  'lid' => '72',
+  'translation' => 'éditer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '439',
-  'location' => 'modules/userreference/userreference.module:53',
-  'textgroup' => 'default',
-  'source' => 'Store the ID of a related user as an integer value.',
-  'version' => 'none',
+  'lid' => '73',
+  'translation' => 'gérer les champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '440',
-  'location' => 'modules/userreference/userreference.module:67',
-  'textgroup' => 'default',
-  'source' => 'User roles that can be referenced',
-  'version' => 'none',
+  'lid' => '74',
+  'translation' => 'supprimer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '441',
-  'location' => 'modules/userreference/userreference.module:73',
-  'textgroup' => 'default',
-  'source' => 'User status that can be referenced',
-  'version' => 'none',
+  'lid' => '75',
+  'translation' => 'Aucun type de contenu disponible.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '442',
-  'location' => 'modules/userreference/userreference.module:75',
-  'textgroup' => 'default',
-  'source' => 'Active',
-  'version' => 'none',
+  'lid' => '76',
+  'translation' => '» Ajouter un nouveau type de contenu',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '443',
-  'location' => 'modules/userreference/userreference.module:75',
-  'textgroup' => 'default',
-  'source' => 'Blocked',
-  'version' => 'none',
+  'lid' => '77',
+  'translation' => 'Nom du champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '444',
-  'location' => 'modules/userreference/userreference.module:94',
-  'textgroup' => 'default',
-  'source' => 'Advanced - Users that can be referenced (View)',
-  'version' => 'none',
+  'lid' => '78',
+  'translation' => 'Type de champ',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '445',
-  'location' => 'modules/userreference/userreference.module:101',
-  'textgroup' => 'default',
-  'source' => 'View used to select the users',
-  'version' => 'none',
+  'lid' => '79',
+  'translation' => 'Utilisé dans',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '446',
-  'location' => 'modules/userreference/userreference.module:104',
-  'textgroup' => 'default',
-  'source' => '<p>Choose the "Views module" view that selects the users that can be referenced.<br />Note:</p>',
-  'version' => 'none',
+  'lid' => '80',
+  'translation' => '@field_name (Verrouillé)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '447',
-  'location' => 'modules/userreference/userreference.module:105;118',
-  'textgroup' => 'default',
-  '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>",
-  'version' => 'none',
+  'lid' => '81',
+  'translation' => "Aucun champ n'est pour l'instant défini sur l'ensemble des types de contenu.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '448',
-  'location' => 'modules/userreference/userreference.module:117',
-  'textgroup' => 'default',
-  '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>',
-  'version' => 'none',
+  'lid' => '82',
+  '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.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '449',
-  'location' => 'modules/userreference/userreference.module:196',
-  'textgroup' => 'default',
-  'source' => '%name: invalid user.',
-  'version' => 'none',
+  'lid' => '83',
+  'translation' => '!field (!field_name) est un champ inactif de type !field_type, qui utilise un widget de type !widget_type.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '450',
-  'location' => 'modules/userreference/userreference.module:349',
-  'textgroup' => 'default',
-  'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of users.',
-  'version' => 'none',
+  'lid' => '84',
+  'translation' => 'Configurer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '451',
-  'location' => 'modules/userreference/userreference.module:357',
-  'textgroup' => 'default',
-  'source' => 'Reverse link',
-  'version' => 'none',
+  'lid' => '85',
+  'translation' => 'Verrouillé',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '452',
-  'location' => 'modules/userreference/userreference.module:359',
-  'textgroup' => 'default',
-  'source' => 'If selected, a reverse link back to the referencing node will displayed on the referenced user record.',
-  'version' => 'none',
+  'lid' => '86',
+  'translation' => '- Sélectionnez un type de champ -',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '453',
-  'location' => 'modules/userreference/userreference.module:594',
-  'textgroup' => 'default',
-  'source' => '%name: found no valid user with that name.',
-  'version' => 'none',
+  'lid' => '87',
+  'translation' => '- Sélectionnez un widget -',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '454',
-  'location' => 'modules/userreference/userreference.module:887',
-  'textgroup' => 'default',
-  'source' => 'Related content',
-  'version' => 'none',
+  'lid' => '88',
+  'translation' => 'Étiquette',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '455',
-  'location' => 'modules/userreference/userreference.module:15',
-  'textgroup' => 'default',
-  'source' => 'Userreference autocomplete',
-  'version' => 'none',
+  'lid' => '89',
+  'translation' => 'Nom du champ (a-z, 0-9, _)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '456',
-  'location' => 'modules/userreference/userreference.module:0',
-  'textgroup' => 'default',
-  'source' => 'userreference',
-  'version' => 'none',
+  'lid' => '90',
+  'translation' => 'Type de données à stocker.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '457',
-  'location' => 'modules/userreference/userreference.info:0',
-  'textgroup' => 'default',
-  'source' => 'User Reference',
-  'version' => 'none',
+  'lid' => '91',
+  'translation' => "Elément du formulaire pour l'édition des données.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '458',
-  'location' => 'modules/userreference/userreference.info:0',
-  'textgroup' => 'default',
-  'source' => 'Defines a field type for referencing a user from a node.',
-  'version' => 'none',
+  'lid' => '92',
+  'translation' => '- Sélectionnez un champ existant -',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '459',
-  'location' => 'includes/content.admin.inc:212',
-  'textgroup' => 'default',
-  'source' => 'Weight',
-  'version' => 'none',
+  'lid' => '93',
+  'translation' => 'Champ à partager',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '460',
-  'location' => 'theme/content-admin-field-overview-form.tpl.php:53',
-  'textgroup' => 'default',
-  'source' => 'Add',
-  'version' => 'none',
+  'lid' => '94',
+  'translation' => 'Nom du groupe (a-z, 0-9, _)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '461',
-  'location' => 'theme/content-admin-field-overview-form.tpl.php:59',
-  'textgroup' => 'default',
-  'source' => 'New field',
-  'version' => 'none',
+  'lid' => '95',
+  'translation' => 'Enregistrer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '462',
-  'location' => 'theme/content-admin-field-overview-form.tpl.php:72',
-  'textgroup' => 'default',
-  'source' => 'Existing field',
-  'version' => 'none',
+  'lid' => '96',
+  'translation' => 'Ajouter un nouveau champ : vous devez fournir une étiquette.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '463',
-  'location' => 'theme/content-admin-field-overview-form.tpl.php:84',
-  'textgroup' => 'default',
-  'source' => 'New group',
-  'version' => 'none',
+  'lid' => '97',
+  'translation' => 'Ajouter un nouveau champ : vous devez fournir un nom de champ.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '464',
-  'location' => 'theme/theme.inc:11',
-  'textgroup' => 'default',
-  'source' => 'Add fields and groups to the content type, and arrange them on content display and input forms.',
-  'version' => 'none',
+  'lid' => '98',
+  '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. ",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '465',
-  'location' => 'theme/theme.inc:13',
-  'textgroup' => 'default',
-  'source' => 'You can add a field to a group by dragging it below and to the right of the group.',
-  'version' => 'none',
+  'lid' => '99',
+  '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_'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '466',
-  'location' => 'theme/theme.inc:16',
-  'textgroup' => 'default',
-  'source' => 'Note: Installing the <a href="!adv_help">Advanced help</a> module will let you access more and better help.',
-  'version' => 'none',
+  'lid' => '100',
+  'translation' => "Ajouter un nouveau champ : le nom 'field_instance' est un nom réservé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
-->values(array(
-  'lid' => '467',
-  'location' => 'theme/theme.inc:116',
-  'textgroup' => 'default',
-  'source' => "Use the 'Exclude' checkbox to exclude an item from the !content value passed to the node template.",
-  'version' => 'none',
+->values(array(
+  'lid' => '101',
+  'translation' => 'Ajouter un nouveau champ : le nom du champ %field_name existe déjà.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '468',
-  'location' => 'theme/content-edit.js:0',
-  'textgroup' => 'default',
-  'source' => 'Remove this item',
-  'version' => 'none',
+  'lid' => '102',
+  'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un type de champ.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '469',
-  'location' => 'content.module:156 includes/content.admin.inc:528',
-  'textgroup' => 'default',
-  'source' => 'Add field',
-  'version' => 'none',
+  'lid' => '103',
+  'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un widget.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '470',
-  'location' => 'examples/example_field.php:278 modules/number/number.module:228,  modules/text/text.module:160',
-  'textgroup' => 'default',
-  'source' => 'Illegal value for %name.',
-  'version' => 'none',
+  'lid' => '104',
+  'translation' => 'Ajouter un nouveau champ : widget non valide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '471',
-  'location' => 'examples/example_field.php:287 examples/simple_field.php:231,  modules/text/text.module:169',
-  'textgroup' => 'default',
-  'source' => '%label is longer than %max characters.',
-  'version' => 'none',
+  'lid' => '105',
+  'translation' => 'Ajouter un champ existant : vous devez fournir une étiquette.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '472',
-  'location' => 'examples/example_field.php:560 examples/simple_field.php:438,  modules/text/text.module:333',
-  'textgroup' => 'default',
-  'source' => '"Rows" must be a positive integer.',
-  'version' => 'none',
+  'lid' => '106',
+  'translation' => 'Ajouter un champ existant : vous devez sélectionner un champ.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '473',
-  'location' => 'modules/number/number.module:133 modules/text/text.module:92',
-  'textgroup' => 'default',
-  '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',
-  'version' => 'none',
+  'lid' => '107',
+  'translation' => 'Ajouter un champ existant: vous devez sélectionner un widget.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '474',
-  'location' => 'includes/content.admin.inc:33',
-  'textgroup' => 'default',
-  'source' => 'add field',
-  'version' => 'none',
+  'lid' => '108',
+  'translation' => 'Ajouter un champ existant : widget non valide.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '475',
-  'location' => 'includes/content.admin.inc:112;291',
-  'textgroup' => 'default',
-  'source' => 'There are no fields configured for this content type. You can !link.',
-  'version' => 'none',
+  'lid' => '109',
+  'translation' => "Un problème est survenu à la création du champ '%label'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '476',
-  'location' => 'includes/content.admin.inc:113;292',
-  'textgroup' => 'default',
-  'source' => 'Add a new field',
-  'version' => 'none',
+  'lid' => '110',
+  'translation' => "Le champ %label n'a pas pu être ajouté au type de contenu car il est verrouillé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '477',
-  'location' => 'includes/content.admin.inc:137',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '111',
+  'translation' => "Un problème est survenu lors de l'ajout du champ '%label'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '478',
-  'location' => 'includes/content.admin.inc:477',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '112',
+  '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>.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '479',
-  'location' => 'includes/content.admin.inc:519',
-  'textgroup' => 'default',
-  'source' => 'Add existing field',
-  'version' => 'none',
+  'lid' => '113',
+  'translation' => 'Au dessus',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '480',
-  'location' => 'includes/content.admin.inc:590',
-  'textgroup' => 'default',
-  'source' => 'Create new field',
-  'version' => 'none',
+  'lid' => '114',
+  'translation' => 'Sur la même ligne',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '481',
-  'location' => 'includes/content.admin.inc:606',
-  'textgroup' => 'default',
-  'source' => 'The machine-readable name of the field.',
-  'version' => 'none',
+  'lid' => '115',
+  'translation' => 'Inclure',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '482',
-  'location' => 'includes/content.admin.inc:610',
-  'textgroup' => 'default',
-  'source' => 'This name cannot be changed.',
-  'version' => 'none',
+  'lid' => '116',
+  'translation' => 'Exclure',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '483',
-  'location' => 'includes/content.admin.inc:618',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'lid' => '117',
+  'translation' => 'aucune mise en forme',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '484',
-  'location' => 'includes/content.admin.inc:636',
-  'textgroup' => 'default',
-  'source' => 'The type of data you would like to store in the database with this field.',
-  'version' => 'none',
+  'lid' => '118',
+  'translation' => 'simple',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '485',
-  'location' => 'includes/content.admin.inc:692',
-  'textgroup' => 'default',
-  'source' => 'The field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
-  'version' => 'none',
+  'lid' => '119',
+  'translation' => 'groupe de champs',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '486',
-  'location' => 'includes/content.admin.inc:695',
-  'textgroup' => 'default',
-  'source' => "The field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
-  'version' => 'none',
+  'lid' => '120',
+  'translation' => 'groupe de champs - repliable',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '487',
-  'location' => 'includes/content.admin.inc:706',
-  'textgroup' => 'default',
-  'source' => 'The field name %field_name already exists.',
-  'version' => 'none',
+  'lid' => '121',
+  'translation' => 'groupe de champs - replié',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '488',
-  'location' => 'includes/content.admin.inc:709',
-  'textgroup' => 'default',
-  'source' => "The name 'field_instance' is a reserved name.",
-  'version' => 'none',
+  'lid' => '122',
+  'translation' => 'Vos paramètres ont été enregistrés.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '489',
-  'location' => 'includes/content.admin.inc:741',
-  'textgroup' => 'default',
-  'source' => 'Created field %label.',
-  'version' => 'none',
+  'lid' => '123',
+  'translation' => '@type : @field (@label)',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '490',
-  'location' => 'includes/content.admin.inc:754',
-  'textgroup' => 'default',
-  'source' => 'Update field %label.',
-  'version' => 'none',
+  'lid' => '124',
+  'translation' => 'Éditer les informations de base',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '491',
-  'location' => 'includes/content.admin.inc:758',
-  'textgroup' => 'default',
-  'source' => 'There was a problem updating field %label.',
-  'version' => 'none',
+  'lid' => '125',
+  'translation' => 'Le nom lisible par une machine du champ. Ce nom ne peut être changé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '492',
-  'location' => 'includes/content.admin.inc:955',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'lid' => '126',
+  'translation' => "Nom lisible par une personne, destiné à servir d'étiquette pour ce champ au sein du type de contenu '%type'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '493',
-  'location' => 'includes/content.admin.inc:986',
-  'textgroup' => 'default',
-  '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.",
-  'version' => 'none',
+  'lid' => '127',
+  '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.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '494',
-  'location' => 'includes/content.admin.inc:1131',
-  'textgroup' => 'default',
-  'source' => 'The default value PHP code created @value which is invalid.',
-  'version' => 'none',
+  'lid' => '128',
+  'translation' => 'Type de widget',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '495',
-  'location' => 'includes/content.token.inc:62',
-  'textgroup' => 'default',
-  'source' => 'Formatted HTML link to the node',
-  'version' => 'none',
+  'lid' => '129',
+  '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'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '496',
-  'location' => 'modules/number/number.module:222',
-  'textgroup' => 'default',
-  'source' => 'The value of %name may be no smaller than %min.',
-  'version' => 'none',
+  'lid' => '130',
+  'translation' => 'Continuer',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '497',
-  'location' => 'modules/number/number.module:225',
-  'textgroup' => 'default',
-  'source' => 'The value of %name may be no larger than %max.',
-  'version' => 'none',
+  'lid' => '131',
+  'translation' => 'Les paramètres basiques du champ %label ont été mis à jour.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '498',
-  'location' => 'modules/number/number.module:476',
-  'textgroup' => 'default',
-  'source' => 'Only numbers and decimals are allowed in %field. %start was changed to %value.',
-  'version' => 'none',
+  'lid' => '132',
+  'translation' => 'Un problème a été rencontré lors de la mise à jour des paramètres basiques du champ %label.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '499',
-  'location' => 'modules/number/number.module:494',
-  'textgroup' => 'default',
-  'source' => 'Only numbers are allowed in %field. %start was changed to %value.',
-  'version' => 'none',
+  'lid' => '133',
+  'translation' => "Êtes-vous certain de vouloir enlever le champ '%field' ?",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '500',
-  'location' => 'modules/number/number.module:513',
-  'textgroup' => 'default',
-  'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field. %start was changed to %value.',
-  'version' => 'none',
+  'lid' => '134',
+  'translation' => 'Si vous avez encore du contenu dans ce champ, il sera perdu. Cette action est irréversible.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '501',
-  'location' => 'modules/optionwidgets/optionwidgets.module:10',
-  'textgroup' => 'default',
-  '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.',
-  'version' => 'none',
+  'lid' => '135',
+  'translation' => 'Annuler',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '502',
-  'location' => 'misc/tabledrag.js',
-  'textgroup' => 'default',
-  'source' => 'Drag to re-order',
-  'version' => 'none',
+  'lid' => '136',
+  'translation' => 'Ce champ est <strong>verrouillé</strong> et ne peut être supprimé.',
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '503',
-  'location' => 'misc/tabledrag.js',
-  'textgroup' => 'default',
-  'source' => 'Changes made in this table will not be saved until the form is submitted.',
-  'version' => 'none',
+  'lid' => '137',
+  'translation' => "Le champ '%field' de '%type' a été enlevé.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
-->execute();
-
-$connection->schema()->createTable('locales_target', array(
-  'fields' => array(
-    'lid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'translation' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'plid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'plural' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'language',
-    'lid',
-    'plural',
-  ),
-  'indexes' => array(
-    'lid' => array(
-      'lid',
-    ),
-    'plid' => array(
-      'plid',
-    ),
-    'plural' => array(
-      'plural',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('locales_target')
-->fields(array(
-  'lid',
-  'translation',
-  'language',
-  'plid',
-  'plural',
+->values(array(
+  'lid' => '138',
+  'translation' => "Un problème est survenu à la suppression du champ '%field' du type '%type'.",
+  'language' => 'fr',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '5',
-  '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).",
+  'lid' => '139',
+  'translation' => 'Le champ %field est verouillé et ne peut être édité.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '6',
-  '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.",
+  'lid' => '140',
+  'translation' => "Informations de base pour '%type'",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '7',
-  '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 :",
+  'lid' => '141',
+  'translation' => 'Modifier les informations de base',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '8',
-  '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.",
+  'lid' => '142',
+  'translation' => "Paramètres de '%type'",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '9',
-  '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.",
+  'lid' => '143',
+  'translation' => "Ces paramètres ne s'applique qu'au champ '%field' tel qu'il apparaît dans le type contenu '%type'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '10',
-  '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").',
+  'lid' => '144',
+  'translation' => "Texte d'aide",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '11',
-  '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.",
+  'lid' => '145',
+  'translation' => "Instructions à présenter à l'utilisateur sous ce champ, dans le formulaire d'édition.<br />Balises HTML autorisées : @tags",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '12',
-  '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.",
+  'lid' => '146',
+  'translation' => 'Valeur par défaut',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '13',
-  '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>.",
+  'lid' => '147',
+  'translation' => 'Code PHP',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '14',
-  '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.',
+  'lid' => '148',
+  'translation' => "'@column' => valeur de @column",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '15',
-  '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.",
+  'lid' => '149',
+  '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);",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '16',
-  'translation' => "Contrôlez ici l'ordre des champs dans le formulaire de saisie.",
+  'lid' => '150',
+  'translation' => 'Code',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '17',
-  'translation' => 'Ce champ est obligatoire.',
+  'lid' => '151',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '18',
-  'translation' => '!title : !required',
+  'lid' => '152',
+  'translation' => '&lt;aucun&gt;',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '19',
-  'translation' => 'Ordre',
+  'lid' => '153',
+  'translation' => "Vous n'êtes pas autorisé à saisir du code PHP.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '20',
-  'translation' => 'Élément de flux RSS',
+  'lid' => '154',
+  'translation' => 'Ce code PHP a été inséré par un administrateur et supplantera toute valeur spécifiée ci-dessus.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '21',
-  'translation' => 'Index de recherche',
+  'lid' => '155',
+  'translation' => 'Paramètres globaux',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '22',
-  'translation' => 'Résultat de recherche',
+  'lid' => '156',
+  'translation' => "Ces paramètres s'appliquent au champ '%field' dans tous les types de contenu où il apparaît.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '23',
-  'translation' => 'Langue',
+  'lid' => '157',
+  'translation' => 'Obligatoire',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '24',
-  'translation' => 'Taxonomie',
+  'lid' => '158',
+  'translation' => "Le nombre maximum de valeurs qu'un utilisateur peut entrer pour ce champ.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '25',
-  'translation' => 'Fichiers attachés',
+  'lid' => '159',
+  'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter autant de valeurs qu'ils le souhaitent.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '26',
-  'translation' => 'Mise à jour du type de champ %type avec le module %module.',
+  'lid' => '160',
+  'translation' => 'Attention ! Changer ce paramètre alors que des données ont déjà été créées peut conduire à perdre des données !',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '27',
-  'translation' => 'Mise à jour du type de widget %widget avec le module %module.',
+  'lid' => '161',
+  'translation' => 'Nombre de valeurs',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '28',
-  'translation' => "Utiliser du code PHP pour le paramétrage des champs (dangereux - à n'autoriser qu'avec précautions)",
+  'lid' => '162',
+  'translation' => 'Illimité',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '29',
-  'translation' => 'Gérer les champs',
+  'lid' => '163',
+  'translation' => 'Enregistrer les paramètres du champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '30',
-  'translation' => 'Afficher les champs',
+  'lid' => '164',
+  'translation' => "Le code PHP pour la 'valeur par défaut' a retourné @value, qui n'est pas valide.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '31',
-  'translation' => 'Général',
+  'lid' => '165',
+  'translation' => 'La valeur par défaut est invalide.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '32',
-  'translation' => 'Avancé',
+  'lid' => '166',
+  'translation' => "Le champ '%label' a été ajouté.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '33',
-  'translation' => 'Supprimer un champ',
+  'lid' => '167',
+  'translation' => "Champ '%label' enregistré.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '34',
-  'translation' => 'Content',
+  'lid' => '168',
+  'translation' => 'Exécution',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '35',
-  'translation' => 'Permet aux administrateurs de définir des nouveaux types de contenu.',
+  'lid' => '169',
+  'translation' => 'La mise à jour a échoué.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '36',
-  'translation' => 'CCK',
+  'lid' => '170',
+  'translation' => 'La base de données a été modifiée et des données ont été déplacées ou supprimées.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '37',
-  'translation' => 'Texte',
+  'lid' => '171',
+  'translation' => 'Une erreur est survenue et a interrompu la modification de la base de données.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '38',
-  '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é.",
+  'lid' => '172',
+  'translation' => "'%title' en cours de traitement",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '39',
-  'translation' => 'Zone de texte',
+  'lid' => '173',
+  'translation' => '%name doit être un entier.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '40',
-  'translation' => 'Ôter',
+  'lid' => '174',
+  'translation' => '%name doit être un entier positif.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '41',
-  'translation' => 'Basique',
+  'lid' => '175',
+  'translation' => '%name doit être un nombre.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '42',
-  'translation' => 'Résumé',
+  'lid' => '176',
+  'translation' => '1 élément traité avec succès&nbsp:',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '43',
-  'translation' => 'NÅ“ud complet',
+  'lid' => '177',
+  'translation' => '@count éléments traités avec succès&nbsp:',
   'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
+  'plid' => '176',
+  'plural' => '1',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '44',
-  'translation' => 'RSS',
+  'lid' => '178',
+  'translation' => "La table de champs a été renommée de '%old_name' à '%new_name' et les instances des champs ont été mises à jour.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '45',
-  'translation' => 'Recherche',
+  'lid' => '179',
+  'translation' => "La table de champs '%name' a été supprimée.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '46',
-  'translation' => 'Formulaire du module node.',
+  'lid' => '180',
+  'translation' => 'Ajouter un autre élément',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '47',
-  'translation' => 'Formulaire du module locale.',
+  'lid' => '181',
+  'translation' => 'Contenu du champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '48',
-  'translation' => 'Paramètres du menu',
+  'lid' => '182',
+  'translation' => 'Un champ de contenu du node référencé.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '49',
-  'translation' => 'Formulaire du module menu.',
+  'lid' => '183',
+  'translation' => 'Noeud',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '50',
-  'translation' => 'Formulaire du module taxonomy.',
+  'lid' => '184',
+  'translation' => 'Contexte du noeud',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '51',
-  'translation' => 'Livre',
+  'lid' => '185',
+  'translation' => 'Titre du bloc',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '52',
-  'translation' => 'Formulaire du module livre (book).',
+  'lid' => '186',
+  'translation' => 'Caché',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '53',
-  'translation' => 'Titre du sondage',
+  'lid' => '187',
+  'translation' => "Configurer la manière dont l'étiquette est affichée.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '54',
-  'translation' => 'Titre du module sondage (Poll)',
+  'lid' => '188',
+  'translation' => 'Champ / Formateur',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '55',
-  'translation' => 'Choix du sondage',
+  'lid' => '189',
+  'translation' => 'Sélectionner un champ et un formateur.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '56',
-  'translation' => 'Choix du module sondage (poll).',
+  'lid' => '190',
+  'translation' => '"@s" champ @name',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '57',
-  'translation' => 'Paramètrage du sondage',
+  'lid' => '191',
+  'translation' => 'Remplir un champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '58',
-  'translation' => 'Paramètres du module sondage (poll).',
+  'lid' => '192',
+  'translation' => 'Vous devez vous assurer que le champ existe pour le type de contenu donné.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '59',
-  'translation' => 'Formulaire du module upload.',
+  'lid' => '193',
+  'translation' => 'Champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '60',
-  'translation' => 'contenu',
+  'lid' => '194',
+  'translation' => 'Sélectionnez le nom-machine du champ.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '61',
-  'translation' => 'Champs',
+  'lid' => '195',
+  'translation' => 'Avancé : Préciser les valeurs des champs avec du code PHP',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '62',
-  '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.",
+  'lid' => '196',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '63',
-  '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.",
+  'lid' => '197',
+  'translation' => 'Vous devez retourner la valeur par défaut dans le format attendu.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '64',
-  '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. ",
+  'lid' => '198',
+  'translation' => "Remplir le champ '@field' de @node",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '65',
-  '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.',
+  'lid' => '199',
+  'translation' => 'Le champ possède une valeur',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '66',
-  'translation' => 'CCK - Aucune Intégration aux Vues',
+  'lid' => '200',
+  '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.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '67',
-  'translation' => 'L"intégration de CCK avec le module Views requiert Views 6.x-2.0-rc2 ou une version supérieure.',
+  'lid' => '201',
+  'translation' => 'Le champ a été modifié',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '68',
-  'translation' => 'Nom',
+  'lid' => '202',
+  'translation' => 'Contenu contenant des modifications',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '69',
-  'translation' => 'Type',
+  'lid' => '203',
+  'translation' => 'Contenu ne contenant pas de modification',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '70',
-  'translation' => 'Description',
+  'lid' => '204',
+  'translation' => "Le champ '@field' de @node possède une valeur",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '71',
-  'translation' => 'Opérations',
+  'lid' => '205',
+  'translation' => 'Sélectionnez le nom-machine du champ à voir.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '72',
-  'translation' => 'éditer',
+  'lid' => '206',
+  'translation' => "Le champ '@field' de @node a été modifié",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '73',
-  'translation' => 'gérer les champs',
+  'lid' => '207',
+  'translation' => 'Jeton (Token)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '74',
-  'translation' => 'supprimer',
+  'lid' => '208',
+  'translation' => 'Identifiant du nœud référencé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '75',
-  'translation' => 'Aucun type de contenu disponible.',
+  'lid' => '209',
+  'translation' => 'Titre du nœud référencé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '76',
-  'translation' => '» Ajouter un nouveau type de contenu',
+  'lid' => '210',
+  'translation' => 'Titre non filtré du noeud référencé. ATTENTION - saisie brute utilisateur.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '77',
-  'translation' => 'Nom du champ',
+  'lid' => '211',
+  'translation' => 'Lien html formaté vers le noeud référencé.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '78',
-  'translation' => 'Type de champ',
+  'lid' => '212',
+  'translation' => 'Alias de chemin relatif vers le noeud référencé.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '79',
-  'translation' => 'Utilisé dans',
+  'lid' => '213',
+  'translation' => 'Alias de chemin absolu vers le noeud référencé.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '80',
-  'translation' => '@field_name (Verrouillé)',
+  'lid' => '214',
+  'translation' => 'Valeur numérique brute',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '81',
-  'translation' => "Aucun champ n'est pour l'instant défini sur l'ensemble des types de contenu.",
+  'lid' => '215',
+  'translation' => 'Valeur numérique mise en forme',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '82',
-  '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.",
+  'lid' => '216',
+  'translation' => 'Texte brut, non filtré',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '83',
-  'translation' => '!field (!field_name) est un champ inactif de type !field_type, qui utilise un widget de type !widget_type.',
+  'lid' => '217',
+  'translation' => 'Texte filtré et mis en forme',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '84',
-  'translation' => 'Configurer',
+  'lid' => '218',
+  'translation' => "Identifiant de l'utilisateur référencé",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '85',
-  'translation' => 'Verrouillé',
+  'lid' => '219',
+  'translation' => "Nom de l'utilisateur référencé",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '86',
-  'translation' => '- Sélectionnez un type de champ -',
+  'lid' => '220',
+  'translation' => "Lien HTML mis en forme vers l'utilisateur référencé",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '87',
-  'translation' => '- Sélectionnez un widget -',
+  'lid' => '221',
+  'translation' => "Alias de chemin relatif vers l'utilisateur référencé.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '88',
-  'translation' => 'Étiquette',
+  'lid' => '222',
+  'translation' => "Alias de chemin absolu vers l'utilisateur référencé.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '89',
-  'translation' => 'Nom du champ (a-z, 0-9, _)',
+  'lid' => '223',
+  'translation' => '@label (!name)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '90',
-  'translation' => 'Type de données à stocker.',
+  'lid' => '224',
+  'translation' => '@label (!name) - !column',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '91',
-  'translation' => "Elément du formulaire pour l'édition des données.",
+  'lid' => '225',
+  'translation' => '@label-truncated - !column',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '92',
-  'translation' => '- Sélectionnez un champ existant -',
+  'lid' => '226',
+  'translation' => 'Apparaît dans : @types',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '93',
-  'translation' => 'Champ à partager',
+  'lid' => '227',
+  'translation' => 'Aucun',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '94',
-  'translation' => 'Nom du groupe (a-z, 0-9, _)',
+  'lid' => '228',
+  'translation' => 'Étiquette du widget (@label)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '95',
-  'translation' => 'Enregistrer',
+  'lid' => '229',
+  'translation' => 'Personnalisé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '96',
-  'translation' => 'Ajouter un nouveau champ : vous devez fournir une étiquette.',
+  'lid' => '230',
+  'translation' => 'Étiquette personnalisée',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '97',
-  'translation' => 'Ajouter un nouveau champ : vous devez fournir un nom de champ.',
+  'lid' => '231',
+  'translation' => 'Format',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '98',
-  '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. ",
+  'lid' => '232',
+  'translation' => 'Grouper plusieurs valeurs',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '99',
-  '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_'.",
+  'lid' => '233',
+  '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. ",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '100',
-  'translation' => "Ajouter un nouveau champ : le nom 'field_instance' est un nom réservé.",
+  'lid' => '234',
+  'translation' => 'Afficher @count valeur(s)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '101',
-  'translation' => 'Ajouter un nouveau champ : le nom du champ %field_name existe déjà.',
+  'lid' => '235',
+  'translation' => 'en commençant à @count',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '102',
-  'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un type de champ.',
+  'lid' => '236',
+  'translation' => 'Inversé (commencer à partir des dernières valeurs)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '103',
-  'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un widget.',
+  'lid' => '237',
+  'translation' => 'Tous / Toutes',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '104',
-  'translation' => 'Ajouter un nouveau champ : widget non valide.',
+  'lid' => '238',
+  'translation' => 'Delta',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '105',
-  'translation' => 'Ajouter un champ existant : vous devez fournir une étiquette.',
+  'lid' => '239',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '106',
-  'translation' => 'Ajouter un champ existant : vous devez sélectionner un champ.',
+  'lid' => '240',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '107',
-  'translation' => 'Ajouter un champ existant: vous devez sélectionner un widget.',
+  'lid' => '241',
+  'translation' => 'Exporter',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '108',
-  'translation' => 'Ajouter un champ existant : widget non valide.',
+  'lid' => '242',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '109',
-  'translation' => "Un problème est survenu à la création du champ '%label'.",
+  'lid' => '243',
+  'translation' => 'Types',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '110',
-  'translation' => "Le champ %label n'a pas pu être ajouté au type de contenu car il est verrouillé.",
+  'lid' => '244',
+  'translation' => 'Sélectionner le type de contenu à exporter.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '111',
-  'translation' => "Un problème est survenu lors de l'ajout du champ '%label'.",
+  'lid' => '245',
+  'translation' => 'Données exportée',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '112',
-  '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>.",
+  'lid' => '246',
+  'translation' => "Copiez le texte exporté et collez-le dans le type de contenu de votre choix, à l'aide de la fonction d'import.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '113',
-  'translation' => 'Au dessus',
+  'lid' => '247',
+  'translation' => 'Types de contenu',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '114',
-  'translation' => 'Sur la même ligne',
+  'lid' => '248',
+  'translation' => 'Type de contenu',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '115',
-  'translation' => 'Inclure',
+  'lid' => '249',
+  '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.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '116',
-  'translation' => 'Exclure',
+  'lid' => '250',
+  'translation' => 'Données à importer',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '117',
-  'translation' => 'aucune mise en forme',
+  'lid' => '251',
+  'translation' => 'Collez dans ce champ le texte créé par un export de contenu.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '118',
-  'translation' => 'simple',
+  'lid' => '252',
+  'translation' => 'Importer',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '119',
-  'translation' => 'groupe de champs',
+  'lid' => '253',
+  'translation' => "Un fichier a été préchargé pour l'import.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '120',
-  'translation' => 'groupe de champs - repliable',
+  'lid' => '254',
+  'translation' => "Les données d'import ne sont valides.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '121',
-  'translation' => 'groupe de champs - replié',
+  'lid' => '255',
+  'translation' => "Les modules suivants doivent être activés pour que l'import fonctionne : '%modules'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '122',
-  'translation' => 'Vos paramètres ont été enregistrés.',
+  'lid' => '256',
+  'translation' => "Le type de contenu '%type' existe déjà dans cette base de données.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '123',
-  'translation' => '@type : @field (@label)',
+  'lid' => '257',
+  'translation' => "Abandon. L'import n'a pas été réalisé.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '124',
-  'translation' => 'Éditer les informations de base',
+  'lid' => '258',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '125',
-  'translation' => 'Le nom lisible par une machine du champ. Ce nom ne peut être changé.',
+  'lid' => '259',
+  'translation' => "Le champ importé '%field_label' (%field_name) n'a pas été ajouté à '%type' car ce champ existe déjà.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '126',
-  'translation' => "Nom lisible par une personne, destiné à servir d'étiquette pour ce champ au sein du type de contenu '%type'.",
+  'lid' => '260',
+  'translation' => "Le champ importé '%field_label' (%field_name) a été ajouté au type de contenu '%type'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '127',
-  '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.',
+  'lid' => '261',
+  'translation' => 'content_copy',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '128',
-  'translation' => 'Type de widget',
+  'lid' => '262',
+  'translation' => 'Content Copy',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '129',
-  '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'.",
+  'lid' => '263',
+  'translation' => "Permet d'importer et d'exporter des définitions de champs.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '130',
-  'translation' => 'Continuer',
+  'lid' => '264',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '131',
-  'translation' => 'Les paramètres basiques du champ %label ont été mis à jour.',
+  'lid' => '265',
+  'translation' => 'Multigroupe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '132',
-  'translation' => 'Un problème a été rencontré lors de la mise à jour des paramètres basiques du champ %label.',
+  'lid' => '266',
+  'translation' => 'Standard',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '133',
-  'translation' => "Êtes-vous certain de vouloir enlever le champ '%field' ?",
+  'lid' => '267',
+  'translation' => 'Type de groupe.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '134',
-  'translation' => 'Si vous avez encore du contenu dans ce champ, il sera perdu. Cette action est irréversible.',
+  'lid' => '268',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '135',
-  'translation' => 'Annuler',
+  'lid' => '269',
+  '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. ",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '136',
-  'translation' => 'Ce champ est <strong>verrouillé</strong> et ne peut être supprimé.',
+  'lid' => '270',
+  '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. ",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '137',
-  'translation' => "Le champ '%field' de '%type' a été enlevé.",
+  'lid' => '271',
+  'translation' => "Vous êtes en train d'inclure le champ %field dans un Multigroupe",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '138',
-  'translation' => "Un problème est survenu à la suppression du champ '%field' du type '%type'.",
+  'lid' => '272',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '139',
-  'translation' => 'Le champ %field est verouillé et ne peut être édité.',
+  'lid' => '273',
+  'translation' => "Vous êtes en train de retirer le champ %field d'un Multigroupe",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '140',
-  'translation' => "Informations de base pour '%type'",
+  'lid' => '274',
+  'translation' => 'Simple',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '141',
-  'translation' => 'Modifier les informations de base',
+  'lid' => '275',
+  'translation' => 'Groupe de champs',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '142',
-  'translation' => "Paramètres de '%type'",
+  'lid' => '276',
+  'translation' => 'Ligne horizontale',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '143',
-  'translation' => "Ces paramètres ne s'applique qu'au champ '%field' tel qu'il apparaît dans le type contenu '%type'.",
+  'lid' => '277',
+  'translation' => 'Tableau - Colonne unique',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '144',
-  'translation' => "Texte d'aide",
+  'lid' => '278',
+  'translation' => 'Tableau - Colonnes multiples',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '145',
-  'translation' => "Instructions à présenter à l'utilisateur sous ce champ, dans le formulaire d'édition.<br />Balises HTML autorisées : @tags",
+  'lid' => '279',
+  'translation' => '[Format du sous-groupe]',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '146',
-  'translation' => 'Valeur par défaut',
+  'lid' => '280',
+  'translation' => 'Paramètres multigroupe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '147',
-  'translation' => 'Code PHP',
+  'lid' => '281',
+  'translation' => 'Colonnes multiples',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '148',
-  'translation' => "'@column' => valeur de @column",
+  'lid' => '282',
+  'translation' => "Activez cette option pour rendre chaque champs dans une colonne disctincte sur le formulaire d'édition de noeud.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '149',
-  '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);",
+  'lid' => '283',
+  'translation' => "Activez cette option pour rendre obligatoire un minimum d'une collection de champs dans ce Multigroupe.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '150',
-  'translation' => 'Code',
+  'lid' => '284',
+  'translation' => "Nombre de fois où répéter l'ensemble Multigroupe de champs.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '151',
-  '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.",
+  'lid' => '285',
+  'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter des éléments autant de fois qu'ils le souhaitent.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '152',
-  'translation' => '&lt;aucun&gt;',
+  'lid' => '286',
+  'translation' => 'Tous les champs de ce groupe seront automatiquement paramétrés pour autoriser ce nombre de valeurs.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '153',
-  'translation' => "Vous n'êtes pas autorisé à saisir du code PHP.",
+  'lid' => '287',
+  'translation' => 'Nombre de répétitions',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '154',
-  'translation' => 'Ce code PHP a été inséré par un administrateur et supplantera toute valeur spécifiée ci-dessus.',
+  'lid' => '288',
+  'translation' => 'Etiquettes',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '155',
-  'translation' => 'Paramètres globaux',
+  'lid' => '289',
+  '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'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '156',
-  'translation' => "Ces paramètres s'appliquent au champ '%field' dans tous les types de contenu où il apparaît.",
+  'lid' => '290',
+  'translation' => 'Etiquette du sous-groupe %number',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '157',
-  'translation' => 'Obligatoire',
+  'lid' => '291',
+  '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.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '158',
-  'translation' => "Le nombre maximum de valeurs qu'un utilisateur peut entrer pour ce champ.",
+  'lid' => '292',
+  'translation' => 'Le champ !name est obligatoire dans le groupe @group.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '159',
-  'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter autant de valeurs qu'ils le souhaitent.",
+  'lid' => '293',
+  'translation' => 'Le groupe @name requiert au minimum un groupe de champs.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '160',
-  'translation' => 'Attention ! Changer ce paramètre alors que des données ont déjà été créées peut conduire à perdre des données !',
+  'lid' => '294',
+  'translation' => 'Ajouter plus de valeurs',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '161',
-  'translation' => 'Nombre de valeurs',
+  'lid' => '295',
+  'translation' => 'content_multigroup',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '162',
-  'translation' => 'Illimité',
+  'lid' => '296',
+  'translation' => 'Contenu Multigroupe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '163',
-  'translation' => 'Enregistrer les paramètres du champ',
+  'lid' => '297',
+  'translation' => "Combinez de multiples champs CCK au sein de collections de champs qui fonctionnent à l'unisson.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '164',
-  'translation' => "Le code PHP pour la 'valeur par défaut' a retourné @value, qui n'est pas valide.",
+  'lid' => '298',
+  'translation' => 'éditer',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '165',
-  'translation' => 'La valeur par défaut est invalide.',
+  'lid' => '299',
+  'translation' => 'field_name',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '166',
-  'translation' => "Le champ '%label' a été ajouté.",
+  'lid' => '300',
+  'translation' => 'voir',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '167',
-  'translation' => "Champ '%label' enregistré.",
+  'lid' => '301',
+  'translation' => 'content_permissions',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '168',
-  'translation' => 'Exécution',
+  'lid' => '302',
+  'translation' => 'Veuillez <a href="!url">configurer vos permissions sur les champs</a> immédiatement. Tous les champs sont inaccessibles par défaut.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '169',
-  'translation' => 'La mise à jour a échoué.',
+  'lid' => '303',
+  'translation' => 'Permissions sur les Contenus',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '170',
-  'translation' => 'La base de données a été modifiée et des données ont été déplacées ou supprimées.',
+  'lid' => '304',
+  'translation' => 'Définit un niveau de permission par champ pour les champs CCK.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '171',
-  'translation' => 'Une erreur est survenue et a interrompu la modification de la base de données.',
+  'lid' => '305',
+  'translation' => 'Contenu du groupe de champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '172',
-  'translation' => "'%title' en cours de traitement",
+  'lid' => '306',
+  'translation' => "Tous les champs d'un groupe de champs sur le node référencé.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '173',
-  'translation' => '%name doit être un entier.',
+  'lid' => '307',
+  'translation' => '@group_label (@group_type_name)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '174',
-  'translation' => '%name doit être un entier positif.',
+  'lid' => '308',
+  'translation' => 'Fieldgroup',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '175',
-  'translation' => '%name doit être un nombre.',
+  'lid' => '309',
+  '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é.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '176',
-  'translation' => '1 élément traité avec succès&nbsp:',
+  'lid' => '310',
+  'translation' => '"@s" groupe de champs @name',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '177',
-  'translation' => '@count éléments traités avec succès&nbsp:',
+  'lid' => '311',
+  'translation' => 'Paramètres du formulaire',
   'language' => 'fr',
-  'plid' => '176',
-  'plural' => '1',
+  'plid' => '0',
+  'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '178',
-  'translation' => "La table de champs a été renommée de '%old_name' à '%new_name' et les instances des champs ont été mises à jour.",
+  'lid' => '312',
+  'translation' => "Ces paramètres s'appliquent au groupe dans le formulaire d'édition de nœud.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '179',
-  'translation' => "La table de champs '%name' a été supprimée.",
+  'lid' => '313',
+  'translation' => 'Style',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '180',
-  'translation' => 'Ajouter un autre élément',
+  'lid' => '314',
+  'translation' => 'toujours déplié',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '181',
-  'translation' => 'Contenu du champ',
+  'lid' => '315',
+  'translation' => 'repliable',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '182',
-  'translation' => 'Un champ de contenu du node référencé.',
+  'lid' => '316',
+  'translation' => 'replié',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '183',
-  'translation' => 'Noeud',
+  'lid' => '317',
+  'translation' => "Instructions à présenter à l'utilisateur dans le formulaire d'édition.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '184',
-  'translation' => 'Contexte du noeud',
+  'lid' => '318',
+  'translation' => "Paramètres d'affichage",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '185',
-  'translation' => 'Titre du bloc',
+  'lid' => '319',
+  'translation' => "Ces paramètres s'appliquent au groupe à l'affichage du nœud.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '186',
-  'translation' => 'Caché',
+  'lid' => '320',
+  'translation' => 'Description du groupe.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '187',
-  'translation' => "Configurer la manière dont l'étiquette est affichée.",
+  'lid' => '321',
+  'translation' => "Êtes-vous sûr(e) de vouloir supprimer le groupe '%label' ?",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '188',
-  'translation' => 'Champ / Formateur',
+  'lid' => '322',
+  'translation' => 'Cette action est irréversible.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '189',
-  'translation' => 'Sélectionner un champ et un formateur.',
+  'lid' => '323',
+  'translation' => "Le groupe '%group_name' a été supprimé.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '190',
-  'translation' => '"@s" champ @name',
+  'lid' => '324',
+  'translation' => 'aucun',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '191',
-  'translation' => 'Remplir un champ',
+  'lid' => '325',
+  'translation' => 'Vous devez fournir une étiquette.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '192',
-  'translation' => 'Vous devez vous assurer que le champ existe pour le type de contenu donné.',
+  'lid' => '326',
+  'translation' => 'Vous devez fournir un nom de groupe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '193',
-  'translation' => 'Champ',
+  'lid' => '327',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '194',
-  'translation' => 'Sélectionnez le nom-machine du champ.',
+  'lid' => '328',
+  'translation' => "Le nom de groupe %group_name est trop long. Le nom est limité à 32 caractères, le préfixe 'group_' compris.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '195',
-  'translation' => 'Avancé : Préciser les valeurs des champs avec du code PHP',
+  'lid' => '329',
+  'translation' => 'Le nom de groupe %group_name existe déjà.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '196',
-  '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.",
+  'lid' => '330',
+  'translation' => 'Ajouter un nouveau groupe :',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '197',
-  'translation' => 'Vous devez retourner la valeur par défaut dans le format attendu.',
+  'lid' => '331',
+  'translation' => 'Ajouter un nouveau groupe : vous devez fournir une étiquette.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '198',
-  'translation' => "Remplir le champ '@field' de @node",
+  'lid' => '332',
+  'translation' => 'Ajouter un nouveau groupe : vous devez fournir un nom de groupe.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '199',
-  'translation' => 'Le champ possède une valeur',
+  'lid' => '333',
+  'translation' => 'Groupe standard',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '200',
-  '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.',
+  'lid' => '334',
+  'translation' => 'Éditer le groupe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '201',
-  'translation' => 'Le champ a été modifié',
+  'lid' => '335',
+  'translation' => 'fieldgroup',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '202',
-  'translation' => 'Contenu contenant des modifications',
+  'lid' => '336',
+  'translation' => "Créée des groupes d'affichage pour les champs CCK.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '203',
-  'translation' => 'Contenu ne contenant pas de modification',
+  'lid' => '337',
+  'translation' => 'Charge un noeud référencé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '204',
-  'translation' => "Le champ '@field' de @node possède une valeur",
+  'lid' => '338',
+  'translation' => 'Contenu contenant le champ node reference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '205',
-  'translation' => 'Sélectionnez le nom-machine du champ à voir.',
+  'lid' => '339',
+  'translation' => 'Contenu référencé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '206',
-  'translation' => "Le champ '@field' de @node a été modifié",
+  'lid' => '340',
+  'translation' => 'Notez que si le champs possède des valeurs multiples, seul le premier contenu sera chargé.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '207',
-  'translation' => 'Jeton (Token)',
+  'lid' => '341',
+  'translation' => "Il n'y a aucun champ  nodereference défini.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '208',
-  'translation' => 'Identifiant du nœud référencé',
+  'lid' => '342',
+  'translation' => 'Node référence',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '209',
-  'translation' => 'Titre du nœud référencé',
+  'lid' => '343',
+  'translation' => "Stocker l'ID du noeud lié en tant que valeur entière.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '210',
-  'translation' => 'Titre non filtré du noeud référencé. ATTENTION - saisie brute utilisateur.',
+  'lid' => '344',
+  'translation' => 'Types de contenu pouvant être référencés',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '211',
-  'translation' => 'Lien html formaté vers le noeud référencé.',
+  'lid' => '345',
+  'translation' => 'Vues par défaut',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '212',
-  'translation' => 'Alias de chemin relatif vers le noeud référencé.',
+  'lid' => '346',
+  'translation' => 'Vues éxistantes',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '213',
-  'translation' => 'Alias de chemin absolu vers le noeud référencé.',
+  'lid' => '347',
+  'translation' => 'Avancé - Nœuds pouvant être référencés (Vue)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '214',
-  'translation' => 'Valeur numérique brute',
+  'lid' => '348',
+  'translation' => 'Vue utilisée pour sélectionner les noeuds',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '215',
-  'translation' => 'Valeur numérique mise en forme',
+  'lid' => '349',
+  'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les noeuds pouvant être référencés.<br />Note :</p>',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '216',
-  'translation' => 'Texte brut, non filtré',
+  'lid' => '350',
+  '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>",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '217',
-  'translation' => 'Texte filtré et mis en forme',
+  'lid' => '351',
+  'translation' => 'Arguments de la vue',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '218',
-  'translation' => "Identifiant de l'utilisateur référencé",
+  'lid' => '352',
+  'translation' => "Fournit une liste d'arguments, séparés par des virgules, à transmettre à la vue.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '219',
-  'translation' => "Nom de l'utilisateur référencé",
+  'lid' => '353',
+  '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>",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '220',
-  'translation' => "Lien HTML mis en forme vers l'utilisateur référencé",
+  'lid' => '354',
+  'translation' => '%name : saisie non valide.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '221',
-  'translation' => "Alias de chemin relatif vers l'utilisateur référencé.",
+  'lid' => '355',
+  'translation' => '%name : ce contenu ne peut être référencé.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '222',
-  'translation' => "Alias de chemin absolu vers l'utilisateur référencé.",
+  'lid' => '356',
+  'translation' => 'Titre (avec lien)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '223',
-  'translation' => '@label (!name)',
+  'lid' => '357',
+  'translation' => 'Titre (sans lien)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '224',
-  'translation' => '@label (!name) - !column',
+  'lid' => '358',
+  'translation' => 'Liste de sélection',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '225',
-  'translation' => '@label-truncated - !column',
+  'lid' => '359',
+  'translation' => 'Cases à cocher/boutons radio',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '226',
-  'translation' => 'Apparaît dans : @types',
+  'lid' => '360',
+  'translation' => 'Champ texte à auto-complètement',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '227',
-  'translation' => 'Aucun',
+  'lid' => '361',
+  'translation' => "Correspondance de l'autocomplétion",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '228',
-  'translation' => 'Étiquette du widget (@label)',
+  'lid' => '362',
+  'translation' => 'Commence par',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '229',
-  'translation' => 'Personnalisé',
+  'lid' => '363',
+  'translation' => 'Contient',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '230',
-  'translation' => 'Étiquette personnalisée',
+  'lid' => '364',
+  '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",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '231',
-  'translation' => 'Format',
+  'lid' => '365',
+  'translation' => '%name : différence de titre. Veuillez vérifier votre sélection.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '232',
-  'translation' => 'Grouper plusieurs valeurs',
+  'lid' => '366',
+  'translation' => "%name : aucun contenu valide n'a été trouvé pour ce titre.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '233',
-  '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. ",
+  'lid' => '367',
+  'translation' => 'Autocomplétion de nodereference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '234',
-  'translation' => 'Afficher @count valeur(s)',
+  'lid' => '368',
+  'translation' => 'nodereference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '235',
-  'translation' => 'en commençant à @count',
+  'lid' => '369',
+  'translation' => 'Node Reference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '236',
-  'translation' => 'Inversé (commencer à partir des dernières valeurs)',
+  'lid' => '370',
+  'translation' => 'Définit un type de champ pour référencer un noeud depuis un autre noeud.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '237',
-  'translation' => 'Tous / Toutes',
+  'lid' => '371',
+  'translation' => 'Entier',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '238',
-  'translation' => 'Delta',
+  'lid' => '372',
+  'translation' => 'Stocke un nombre dans la base de données en format entier.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '239',
-  '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.",
+  'lid' => '373',
+  'translation' => 'Décimal',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '240',
-  '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.",
+  'lid' => '374',
+  'translation' => 'Stocke un nombre dans la base de données en format décimal fixe.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '241',
-  'translation' => 'Exporter',
+  'lid' => '375',
+  'translation' => 'Réel (Float)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '242',
-  '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.",
+  'lid' => '376',
+  'translation' => 'Stocke un nombre dans la base de données en format réel.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '243',
-  'translation' => 'Types',
+  'lid' => '377',
+  'translation' => 'Minimum',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '244',
-  'translation' => 'Sélectionner le type de contenu à exporter.',
+  'lid' => '378',
+  'translation' => 'Maximum',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '245',
-  'translation' => 'Données exportée',
+  'lid' => '379',
+  'translation' => 'Précision',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '246',
-  'translation' => "Copiez le texte exporté et collez-le dans le type de contenu de votre choix, à l'aide de la fonction d'import.",
+  'lid' => '380',
+  'translation' => 'Le nombre total de chiffres à stocker dans la base de données, en incluant ceux à droite de la virgule.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '247',
-  'translation' => 'Types de contenu',
+  'lid' => '381',
+  'translation' => 'Echelle',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '248',
-  'translation' => 'Type de contenu',
+  'lid' => '382',
+  'translation' => 'Le nombre de chiffres à droite de la virgule',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '249',
-  '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.',
+  'lid' => '383',
+  'translation' => 'Séparateur de décimales',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '250',
-  'translation' => 'Données à importer',
+  'lid' => '384',
+  'translation' => 'Le caractère que les utilisateurs saisiront pour séparer les décimales dans les formulaires.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '251',
-  'translation' => 'Collez dans ce champ le texte créé par un export de contenu.',
+  'lid' => '385',
+  'translation' => 'Préfixe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '252',
-  'translation' => 'Importer',
+  'lid' => '386',
+  '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).',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '253',
-  'translation' => "Un fichier a été préchargé pour l'import.",
+  'lid' => '387',
+  'translation' => 'Suffixe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '254',
-  'translation' => "Les données d'import ne sont valides.",
+  'lid' => '388',
+  '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).',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '255',
-  'translation' => "Les modules suivants doivent être activés pour que l'import fonctionne : '%modules'.",
+  'lid' => '389',
+  'translation' => 'Valeurs autorisées',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '256',
-  'translation' => "Le type de contenu '%type' existe déjà dans cette base de données.",
+  'lid' => '390',
+  'translation' => 'Liste des valeurs autorisées',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '257',
-  'translation' => "Abandon. L'import n'a pas été réalisé.",
+  'lid' => '391',
+  '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",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '258',
-  '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.",
+  'lid' => '392',
+  '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.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '259',
-  'translation' => "Le champ importé '%field_label' (%field_name) n'a pas été ajouté à '%type' car ce champ existe déjà.",
+  'lid' => '393',
+  'translation' => 'Ce code PHP a été saisi par un administrateur et supplantera la liste des valeurs permises ci-dessus.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '260',
-  'translation' => "Le champ importé '%field_label' (%field_name) a été ajouté au type de contenu '%type'.",
+  'lid' => '394',
+  'translation' => '@label (!name) - Valeurs autorisées',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '261',
-  'translation' => 'content_copy',
+  'lid' => '395',
+  'translation' => '"Minimum" doit être un nombre.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '262',
-  'translation' => 'Content Copy',
+  'lid' => '396',
+  'translation' => '"Maximum" doit être un nombre.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '263',
-  'translation' => "Permet d'importer et d'exporter des définitions de champs.",
+  'lid' => '397',
+  'translation' => '%name : la valeur ne peut être inférieure à %min.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '264',
-  '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.",
+  'lid' => '398',
+  'translation' => '%name : la valeur ne peut être supérieure à %max.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '265',
-  'translation' => 'Multigroupe',
+  'lid' => '399',
+  'translation' => '%name : valeur illégale.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '266',
-  'translation' => 'Standard',
+  'lid' => '400',
+  'translation' => 'non mis en forme',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '267',
-  'translation' => 'Type de groupe.',
+  'lid' => '401',
+  'translation' => 'Champ texte',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '268',
-  '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.",
+  'lid' => '402',
+  'translation' => 'Seuls les nombres et les décimaux sont autorisés dans %field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '269',
-  '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. ",
+  'lid' => '403',
+  'translation' => 'Seuls les nombres sont autorisés dans %field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '270',
-  '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. ",
+  'lid' => '404',
+  'translation' => 'Seuls les nombres et le caractère décimal (%decimal) sont autorisés dans %field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '271',
-  'translation' => "Vous êtes en train d'inclure le champ %field dans un Multigroupe",
+  'lid' => '405',
+  'translation' => 'nombre',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '272',
-  '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.",
+  'lid' => '406',
+  'translation' => 'Nombre',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '273',
-  'translation' => "Vous êtes en train de retirer le champ %field d'un Multigroupe",
+  'lid' => '407',
+  'translation' => 'Définit des types de champs numériques.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '274',
-  'translation' => 'Simple',
+  'lid' => '408',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '275',
-  'translation' => 'Groupe de champs',
+  'lid' => '409',
+  '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'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '276',
-  'translation' => 'Ligne horizontale',
+  'lid' => '410',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '277',
-  'translation' => 'Tableau - Colonne unique',
+  'lid' => '411',
+  'translation' => "Vous devez préciser les 'valeurs autorisées' pour ce champ.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '278',
-  'translation' => 'Tableau - Colonnes multiples',
+  'lid' => '412',
+  'translation' => 'Case à cocher on/off unique',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '279',
-  'translation' => '[Format du sous-groupe]',
+  'lid' => '413',
+  'translation' => '%name : ce champ ne peut contenir plus de @count valeurs.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '280',
-  'translation' => 'Paramètres multigroupe',
+  'lid' => '414',
+  'translation' => 'N/A',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '281',
-  'translation' => 'Colonnes multiples',
+  'lid' => '415',
+  'translation' => '- Aucun -',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '282',
-  'translation' => "Activez cette option pour rendre chaque champs dans une colonne disctincte sur le formulaire d'édition de noeud.",
+  'lid' => '416',
+  'translation' => 'optionwidgets',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '283',
-  'translation' => "Activez cette option pour rendre obligatoire un minimum d'une collection de champs dans ce Multigroupe.",
+  'lid' => '417',
+  'translation' => 'Option Widgets',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '284',
-  'translation' => "Nombre de fois où répéter l'ensemble Multigroupe de champs.",
+  'lid' => '418',
+  'translation' => 'Définit des widgets de liste déroulante, case à cocher et bouton radio pour des champs texte et numériques.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '285',
-  'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter des éléments autant de fois qu'ils le souhaitent.",
+  'lid' => '419',
+  'translation' => 'Enregistre le texte dans la base de données.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '286',
-  'translation' => 'Tous les champs de ce groupe seront automatiquement paramétrés pour autoriser ce nombre de valeurs.',
+  'lid' => '420',
+  'translation' => 'Texte simple',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '287',
-  'translation' => 'Nombre de répétitions',
+  'lid' => '421',
+  'translation' => "Texte filtré (l'utilisateur choisit le format d'entrée)",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '288',
-  'translation' => 'Etiquettes',
+  'lid' => '422',
+  'translation' => 'Traitement du texte',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '289',
-  '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'.",
+  'lid' => '423',
+  'translation' => 'Taille maximale',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '290',
-  'translation' => 'Etiquette du sous-groupe %number',
+  'lid' => '424',
+  'translation' => 'La taille maximale des champs, en caractères. Laisser vide pour ne pas limiter la taille.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '291',
-  '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.',
+  'lid' => '425',
+  'translation' => '%name : la valeur ne doit pas dépasser %max caractères.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '292',
-  'translation' => 'Le champ !name est obligatoire dans le groupe @group.',
+  'lid' => '426',
+  'translation' => 'Par défaut',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '293',
-  'translation' => 'Le groupe @name requiert au minimum un groupe de champs.',
+  'lid' => '427',
+  'translation' => 'Coupé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '294',
-  'translation' => 'Ajouter plus de valeurs',
+  'lid' => '428',
+  'translation' => 'Zone de texte (plusieurs lignes)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '295',
-  'translation' => 'content_multigroup',
+  'lid' => '429',
+  'translation' => 'Taille du champ texte',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '296',
-  'translation' => 'Contenu Multigroupe',
+  'lid' => '430',
+  'translation' => 'Rangées',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '297',
-  'translation' => "Combinez de multiples champs CCK au sein de collections de champs qui fonctionnent à l'unisson.",
+  'lid' => '431',
+  'translation' => 'texte',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '298',
-  'translation' => 'éditer',
+  'lid' => '432',
+  'translation' => 'Définit les types de champs en texte simple.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '299',
-  'translation' => 'field_name',
+  'lid' => '433',
+  'translation' => 'Charge un utilisateur référencé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '300',
-  'translation' => 'voir',
+  'lid' => '434',
+  'translation' => 'Contenu contenant le champ userrefernece',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '301',
-  'translation' => 'content_permissions',
+  'lid' => '435',
+  'translation' => 'Utilisateur référencé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '302',
-  'translation' => 'Veuillez <a href="!url">configurer vos permissions sur les champs</a> immédiatement. Tous les champs sont inaccessibles par défaut.',
+  'lid' => '436',
+  'translation' => 'Noter que si le champ possède des valeurs multiples, seul le premier utilisateur sera chargé',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '303',
-  'translation' => 'Permissions sur les Contenus',
+  'lid' => '437',
+  'translation' => "Il n'y a aucun champ userreference défini",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '304',
-  'translation' => 'Définit un niveau de permission par champ pour les champs CCK.',
+  'lid' => '438',
+  'translation' => 'User reference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '305',
-  'translation' => 'Contenu du groupe de champ',
+  'lid' => '439',
+  'translation' => "Stocke l'ID d'un utilisateur lié sous forme d'entier",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '306',
-  'translation' => "Tous les champs d'un groupe de champs sur le node référencé.",
+  'lid' => '440',
+  'translation' => 'Rôles utilisateur pouvant être référencés',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '307',
-  'translation' => '@group_label (@group_type_name)',
+  'lid' => '441',
+  'translation' => 'Statuts utilisateur pouvant être référencés',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '308',
-  'translation' => 'Fieldgroup',
+  'lid' => '442',
+  'translation' => 'Actif',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '309',
-  '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é.",
+  'lid' => '443',
+  'translation' => 'Bloqué',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '310',
-  'translation' => '"@s" groupe de champs @name',
+  'lid' => '444',
+  'translation' => 'Avancé - Utilisateurs pouvant être référencés (Vue)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '311',
-  'translation' => 'Paramètres du formulaire',
+  'lid' => '445',
+  'translation' => 'Vue utilisée pour sélectionner les utilisateurs',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '312',
-  'translation' => "Ces paramètres s'appliquent au groupe dans le formulaire d'édition de nœud.",
+  'lid' => '446',
+  'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les utilisateurs pouvant être référencés.<br />Note :</p>',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '313',
-  'translation' => 'Style',
+  'lid' => '447',
+  '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>",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '314',
-  'translation' => 'toujours déplié',
+  'lid' => '448',
+  '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>",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '315',
-  'translation' => 'repliable',
+  'lid' => '449',
+  'translation' => '%name : utilisateur invalide.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '316',
-  'translation' => 'replié',
+  'lid' => '450',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '317',
-  'translation' => "Instructions à présenter à l'utilisateur dans le formulaire d'édition.",
+  'lid' => '451',
+  'translation' => 'Lien retour',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '318',
-  'translation' => "Paramètres d'affichage",
+  'lid' => '452',
+  '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é.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '319',
-  'translation' => "Ces paramètres s'appliquent au groupe à l'affichage du nœud.",
+  'lid' => '453',
+  'translation' => "%name : nous n'avons pas trouvé d'utilisateur valide pour ce nom.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '320',
-  'translation' => 'Description du groupe.',
+  'lid' => '454',
+  'translation' => 'Contenu lié',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '321',
-  'translation' => "Êtes-vous sûr(e) de vouloir supprimer le groupe '%label' ?",
+  'lid' => '455',
+  'translation' => 'Autocomplétion Userreference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '322',
-  'translation' => 'Cette action est irréversible.',
+  'lid' => '456',
+  'translation' => 'userreference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '323',
-  'translation' => "Le groupe '%group_name' a été supprimé.",
+  'lid' => '457',
+  'translation' => 'User Reference',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '324',
-  'translation' => 'aucun',
+  'lid' => '458',
+  'translation' => 'Définit un type de champ pour référencer un utilisateur depuis un noeud.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '325',
-  'translation' => 'Vous devez fournir une étiquette.',
+  'lid' => '459',
+  'translation' => 'Poids',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '326',
-  'translation' => 'Vous devez fournir un nom de groupe',
+  'lid' => '460',
+  'translation' => 'Ajouter',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '327',
-  '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.",
+  'lid' => '461',
+  'translation' => 'Nouveau champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '328',
-  'translation' => "Le nom de groupe %group_name est trop long. Le nom est limité à 32 caractères, le préfixe 'group_' compris.",
+  'lid' => '462',
+  'translation' => 'Champ existant',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '329',
-  'translation' => 'Le nom de groupe %group_name existe déjà.',
+  'lid' => '463',
+  'translation' => 'Nouveau groupe',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '330',
-  'translation' => 'Ajouter un nouveau groupe :',
+  'lid' => '464',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '331',
-  'translation' => 'Ajouter un nouveau groupe : vous devez fournir une étiquette.',
+  'lid' => '465',
+  'translation' => 'Vous pouvez ajouter un champ à un groupe en le faisant glisser ci-dessous et à la droite du groupe.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '332',
-  'translation' => 'Ajouter un nouveau groupe : vous devez fournir un nom de groupe.',
+  'lid' => '466',
+  '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é.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '333',
-  'translation' => 'Groupe standard',
+  'lid' => '467',
+  'translation' => "Utiliser la case à cocher 'Exclure' pour exclure un élément de la valeur de !content transmis au gabarit du node.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '334',
-  'translation' => 'Éditer le groupe',
+  'lid' => '468',
+  'translation' => 'Supprimer cet élément',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '335',
-  'translation' => 'fieldgroup',
+  'lid' => '469',
+  'translation' => 'Ajouter un champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '336',
-  'translation' => "Créée des groupes d'affichage pour les champs CCK.",
+  'lid' => '470',
+  'translation' => "Valeur illégale pour le champ '%name'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '337',
-  'translation' => 'Charge un noeud référencé',
+  'lid' => '471',
+  'translation' => "La longueur de '%label' dépasse %max caractères.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '338',
-  'translation' => 'Contenu contenant le champ node reference',
+  'lid' => '472',
+  'translation' => "Le champ 'Rangées' doit être un entier positif.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '339',
-  'translation' => 'Contenu référencé',
+  'lid' => '473',
+  '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",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '340',
-  'translation' => 'Notez que si le champs possède des valeurs multiples, seul le premier contenu sera chargé.',
+  'lid' => '474',
+  'translation' => 'ajouter un champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '341',
-  'translation' => "Il n'y a aucun champ  nodereference défini.",
+  'lid' => '475',
+  'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez néanmoins dès maintenant !link.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '342',
-  'translation' => 'Node référence',
+  'lid' => '476',
+  'translation' => 'ajouter un nouveau champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '343',
-  'translation' => "Stocker l'ID du noeud lié en tant que valeur entière.",
+  'lid' => '477',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
-->values(array(
-  'lid' => '344',
-  'translation' => 'Types de contenu pouvant être référencés',
+->values(array(
+  'lid' => '478',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '345',
-  'translation' => 'Vues par défaut',
+  'lid' => '479',
+  'translation' => 'Ajouter un champ existant',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '346',
-  'translation' => 'Vues éxistantes',
+  'lid' => '480',
+  'translation' => 'Créer un nouveau champ',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '347',
-  'translation' => 'Avancé - Nœuds pouvant être référencés (Vue)',
+  'lid' => '481',
+  'translation' => 'Nom du champ, lisible par une machine.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '348',
-  'translation' => 'Vue utilisée pour sélectionner les noeuds',
+  'lid' => '482',
+  'translation' => ' Ce nom ne peut être modifié.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '349',
-  'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les noeuds pouvant être référencés.<br />Note :</p>',
+  'lid' => '483',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '350',
-  '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>",
+  'lid' => '484',
+  'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '351',
-  'translation' => 'Arguments de la vue',
+  'lid' => '485',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '352',
-  'translation' => "Fournit une liste d'arguments, séparés par des virgules, à transmettre à la vue.",
+  'lid' => '486',
+  '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_'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '353',
-  '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>",
+  'lid' => '487',
+  'translation' => "Le nom de champ '%field_name' existe déjà.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '354',
-  'translation' => '%name : saisie non valide.',
+  'lid' => '488',
+  'translation' => "Le nom 'field_instance' est un nom réservé.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '355',
-  'translation' => '%name : ce contenu ne peut être référencé.',
+  'lid' => '489',
+  'translation' => "Le champ '%label' a été créé.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '356',
-  'translation' => 'Titre (avec lien)',
+  'lid' => '490',
+  'translation' => "Mettre à jour le champ '%label'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '357',
-  'translation' => 'Titre (sans lien)',
+  'lid' => '491',
+  'translation' => "Un problème est survenu à la mise à jour du champ '%label'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '358',
-  'translation' => 'Liste de sélection',
+  'lid' => '492',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '359',
-  'translation' => 'Cases à cocher/boutons radio',
+  'lid' => '493',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '360',
-  'translation' => 'Champ texte à auto-complètement',
+  'lid' => '494',
+  'translation' => 'Le code PHP de valeur par défaut a créé @value, qui est invalide.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '361',
-  'translation' => "Correspondance de l'autocomplétion",
+  'lid' => '495',
+  'translation' => 'Lien HTML mis en forme vers le nœud',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '362',
-  'translation' => 'Commence par',
+  'lid' => '496',
+  'translation' => "La valeur de '%name 'ne peut être plus petite que %min.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '363',
-  'translation' => 'Contient',
+  'lid' => '497',
+  'translation' => "La valeur de '%name' ne peut pas être plus grande que %max.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '364',
-  '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",
+  'lid' => '498',
+  'translation' => "Seuls des nombres et des décimaux sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '365',
-  'translation' => '%name : différence de titre. Veuillez vérifier votre sélection.',
+  'lid' => '499',
+  'translation' => "Seuls des nombres sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '366',
-  'translation' => "%name : aucun contenu valide n'a été trouvé pour ce titre.",
+  'lid' => '500',
+  'translation' => "Seuls des nombres et le marqueur décimal (%decimal) sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '367',
-  'translation' => 'Autocomplétion de nodereference',
+  'lid' => '501',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '368',
-  'translation' => 'nodereference',
+  'lid' => '504',
+  'translation' => 'fr - Favorite color',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '369',
-  'translation' => 'Node Reference',
+  'lid' => '505',
+  'translation' => 'Inscrivez votre couleur préférée',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '370',
-  'translation' => 'Définit un type de champ pour référencer un noeud depuis un autre noeud.',
+  'lid' => '506',
+  'translation' => 'fr - Personal information',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '371',
-  'translation' => 'Entier',
+  'lid' => '507',
+  'translation' => 'fr - Biography',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '372',
-  'translation' => 'Stocke un nombre dans la base de données en format entier.',
+  'lid' => '508',
+  'translation' => 'fr - Tell people a little bit about yourself',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '373',
-  'translation' => 'Décimal',
+  'lid' => '509',
+  'translation' => 'fr - Sell your email address?',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '374',
-  'translation' => 'Stocke un nombre dans la base de données en format décimal fixe.',
+  'lid' => '510',
+  'translation' => "fr - If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '375',
-  'translation' => 'Réel (Float)',
+  'lid' => '511',
+  'translation' => 'fr - Communication preferences',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '376',
-  'translation' => 'Stocke un nombre dans la base de données en format réel.',
+  'lid' => '512',
+  'translation' => 'fr - Sales Category',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '377',
-  'translation' => 'Minimum',
+  'lid' => '513',
+  'translation' => "fr - Select the sales categories to which this user's address was sold.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '378',
-  'translation' => 'Maximum',
+  'lid' => '514',
+  'translation' => 'fr - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '379',
-  'translation' => 'Précision',
+  'lid' => '515',
+  'translation' => 'fr - Administrative data',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '380',
-  'translation' => 'Le nombre total de chiffres à stocker dans la base de données, en incluant ceux à droite de la virgule.',
+  'lid' => '516',
+  'translation' => 'Mes groupes préférés',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '381',
-  'translation' => 'Echelle',
+  'lid' => '517',
+  'translation' => "fr - Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '382',
-  'translation' => 'Le nombre de chiffres à droite de la virgule',
+  'lid' => '518',
+  'translation' => 'fr - Birthdate',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '383',
-  'translation' => 'Séparateur de décimales',
+  'lid' => '519',
+  'translation' => "fr - Enter your birth date and we'll send you a coupon.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '384',
-  'translation' => 'Le caractère que les utilisateurs saisiront pour séparer les décimales dans les formulaires.',
+  'lid' => '520',
+  'translation' => "J'aime les migrations",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '385',
-  'translation' => 'Préfixe',
+  'lid' => '521',
+  'translation' => 'Si vous cochez cette case, vous aimez les migrations.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '386',
-  '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).',
+  'lid' => '522',
+  'translation' => 'fr - Blog',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '387',
-  'translation' => 'Suffixe',
+  'lid' => '523',
+  'translation' => 'fr - Paste the full URL, including http://, of your personal blog.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '388',
-  '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).',
+  'lid' => '524',
+  'translation' => 'fr - Static Block',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '389',
-  'translation' => 'Valeurs autorisées',
+  'lid' => '525',
+  'translation' => '<h3>fr - My first custom block body</h3>',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '390',
-  'translation' => 'Liste des valeurs autorisées',
+  'lid' => '526',
+  'translation' => 'Encore un bloc statique',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '391',
-  '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",
+  'lid' => '527',
+  'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '392',
-  '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.',
+  'lid' => '528',
+  'translation' => 'fr - Tags',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '393',
-  'translation' => 'Ce code PHP a été saisi par un administrateur et supplantera la liste des valeurs permises ci-dessus.',
+  'lid' => '529',
+  'translation' => 'fr - vocabulary 1 (i=0)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '394',
-  'translation' => '@label (!name) - Valeurs autorisées',
+  'lid' => '530',
+  'translation' => 'fr - vocabulary 2 (i=1)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '395',
-  'translation' => '"Minimum" doit être un nombre.',
+  'lid' => '531',
+  'translation' => 'fr - vocabulary 3 (i=2)',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '396',
-  'translation' => '"Maximum" doit être un nombre.',
+  'lid' => '532',
+  'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '397',
-  'translation' => '%name : la valeur ne peut être inférieure à %min.',
+  'lid' => '533',
+  'translation' => 'fr - Article',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '398',
-  'translation' => '%name : la valeur ne peut être supérieure à %max.',
+  'lid' => '534',
+  'translation' => 'fr - Title',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '399',
-  'translation' => '%name : valeur illégale.',
+  'lid' => '535',
+  'translation' => 'fr - Body',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '400',
-  'translation' => 'non mis en forme',
+  'lid' => '536',
+  'translation' => 'fr - An <em>article</em>, content type.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '401',
-  'translation' => 'Champ texte',
+  'lid' => '537',
+  'translation' => 'fr - Company',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '402',
-  'translation' => 'Seuls les nombres et les décimaux sont autorisés dans %field.',
+  'lid' => '538',
+  'translation' => 'fr - Name',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '403',
-  'translation' => 'Seuls les nombres sont autorisés dans %field.',
+  'lid' => '539',
+  'translation' => 'fr - Description',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '404',
-  'translation' => 'Seuls les nombres et le caractère décimal (%decimal) sont autorisés dans %field.',
+  'lid' => '540',
+  'translation' => 'fr - Company node type',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '405',
-  'translation' => 'nombre',
+  'lid' => '541',
+  'translation' => 'fr - Employee',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '406',
-  'translation' => 'Nombre',
+  'lid' => '542',
+  'translation' => 'fr - Name',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '407',
-  'translation' => 'Définit des types de champs numériques.',
+  'lid' => '543',
+  'translation' => 'fr - Bio',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '408',
-  '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.",
+  'lid' => '544',
+  'translation' => 'fr - Employee node type',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '409',
-  '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'.",
+  'lid' => '545',
+  'translation' => 'fr - Sponsor',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '410',
-  '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.",
+  'lid' => '546',
+  'translation' => 'fr - Name',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '411',
-  'translation' => "Vous devez préciser les 'valeurs autorisées' pour ce champ.",
+  'lid' => '547',
+  'translation' => 'fr - Body',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '412',
-  'translation' => 'Case à cocher on/off unique',
+  'lid' => '548',
+  'translation' => 'fr - Sponsor node type',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '413',
-  'translation' => '%name : ce champ ne peut contenir plus de @count valeurs.',
+  'lid' => '549',
+  'translation' => 'fr - Story',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '414',
-  'translation' => 'N/A',
+  'lid' => '550',
+  'translation' => 'fr - Title',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '415',
-  'translation' => '- Aucun -',
+  'lid' => '551',
+  'translation' => 'fr - Body',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '416',
-  'translation' => 'optionwidgets',
+  'lid' => '552',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '417',
-  'translation' => 'Option Widgets',
+  'lid' => '553',
+  'translation' => 'fr - Migrate test event',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '418',
-  'translation' => 'Définit des widgets de liste déroulante, case à cocher et bouton radio pour des champs texte et numériques.',
+  'lid' => '554',
+  'translation' => 'fr - Event Name',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '419',
-  'translation' => 'Enregistre le texte dans la base de données.',
+  'lid' => '555',
+  'translation' => 'fr - Body',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '420',
-  'translation' => 'Texte simple',
+  'lid' => '556',
+  'translation' => 'fr - test event description here',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '421',
-  'translation' => "Texte filtré (l'utilisateur choisit le format d'entrée)",
+  'lid' => '558',
+  'translation' => 'fr - Migrate test page',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '422',
-  'translation' => 'Traitement du texte',
+  'lid' => '559',
+  'translation' => 'fr - Title',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '423',
-  'translation' => 'Taille maximale',
+  'lid' => '560',
+  'translation' => 'fr - This is the body field label',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '424',
-  'translation' => 'La taille maximale des champs, en caractères. Laisser vide pour ne pas limiter la taille.',
+  'lid' => '561',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '425',
-  'translation' => '%name : la valeur ne doit pas dépasser %max caractères.',
+  'lid' => '562',
+  'translation' => 'fr - Migrate test planet',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '426',
-  'translation' => 'Par défaut',
+  'lid' => '563',
+  'translation' => 'fr - Title',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '427',
-  'translation' => 'Coupé',
+  'lid' => '564',
+  'translation' => 'fr - Body',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '428',
-  'translation' => 'Zone de texte (plusieurs lignes)',
+  'lid' => '565',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '429',
-  'translation' => 'Taille du champ texte',
+  'lid' => '566',
+  'translation' => 'Migrer histoire de test',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '430',
-  'translation' => 'Rangées',
+  'lid' => '567',
+  'translation' => 'Titre',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '431',
-  'translation' => 'texte',
+  'lid' => '568',
+  'translation' => 'Le corps',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '432',
-  'translation' => 'Définit les types de champs en texte simple.',
+  'lid' => '569',
+  '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.",
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '433',
-  'translation' => 'Charge un utilisateur référencé',
+  'lid' => '570',
+  'translation' => 'fr - Text Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '434',
-  'translation' => 'Contenu contenant le champ userrefernece',
+  'lid' => '571',
+  'translation' => 'fr - An example text field without exclude.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '435',
-  'translation' => 'Utilisateur référencé',
+  'lid' => '572',
+  'translation' => 'fr - Integer Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '436',
-  'translation' => 'Noter que si le champ possède des valeurs multiples, seul le premier utilisateur sera chargé',
+  'lid' => '573',
+  'translation' => 'fr - An example integer field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '437',
-  'translation' => "Il n'y a aucun champ userreference défini",
+  'lid' => '574',
+  'translation' => 'fr - Text Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '438',
-  'translation' => 'User reference',
+  'lid' => '575',
+  'translation' => 'fr -  An example text field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '439',
-  'translation' => "Stocke l'ID d'un utilisateur lié sous forme d'entier",
+  'lid' => '576',
+  'translation' => 'fr - Decimal Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '440',
-  'translation' => 'Rôles utilisateur pouvant être référencés',
+  'lid' => '577',
+  'translation' => 'fr - An example decimal field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '441',
-  'translation' => 'Statuts utilisateur pouvant être référencés',
+  'lid' => '578',
+  'translation' => 'fr - Float Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '442',
-  'translation' => 'Actif',
+  'lid' => '579',
+  'translation' => 'fr - An example float field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '443',
-  'translation' => 'Bloqué',
+  'lid' => '580',
+  'translation' => 'fr - Integer Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '444',
-  'translation' => 'Avancé - Utilisateurs pouvant être référencés (Vue)',
+  'lid' => '581',
+  'translation' => 'fr - An example integer field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '445',
-  'translation' => 'Vue utilisée pour sélectionner les utilisateurs',
+  'lid' => '582',
+  'translation' => 'fr - Integer Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '446',
-  'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les utilisateurs pouvant être référencés.<br />Note :</p>',
+  'lid' => '583',
+  'translation' => 'fr - An example integer field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
-->values(array(
-  'lid' => '447',
-  '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>",
+->values(array(
+  'lid' => '584',
+  'translation' => 'fr - Email Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '448',
-  '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>",
+  'lid' => '585',
+  'translation' => 'fr - An example email field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '449',
-  'translation' => '%name : utilisateur invalide.',
+  'lid' => '586',
+  'translation' => 'fr - Link Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '450',
-  '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.",
+  'lid' => '587',
+  'translation' => 'fr - An example link field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '451',
-  'translation' => 'Lien retour',
+  'lid' => '588',
+  'translation' => 'fr - File Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '452',
-  '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é.",
+  'lid' => '589',
+  'translation' => 'fr - An example image field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '453',
-  'translation' => "%name : nous n'avons pas trouvé d'utilisateur valide pour ce nom.",
+  'lid' => '590',
+  'translation' => 'fr - Image Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '454',
-  'translation' => 'Contenu lié',
+  'lid' => '591',
+  'translation' => 'fr - An example image field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '455',
-  'translation' => 'Autocomplétion Userreference',
+  'lid' => '592',
+  'translation' => 'fr - Date Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '456',
-  'translation' => 'userreference',
+  'lid' => '593',
+  'translation' => 'fr - An example date field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '457',
-  'translation' => 'User Reference',
+  'lid' => '594',
+  'translation' => 'fr - Date Stamp Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '458',
-  'translation' => 'Définit un type de champ pour référencer un utilisateur depuis un noeud.',
+  'lid' => '595',
+  'translation' => 'fr - An example date stamp field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '459',
-  'translation' => 'Poids',
+  'lid' => '596',
+  'translation' => 'fr - Datetime Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '460',
-  'translation' => 'Ajouter',
+  'lid' => '597',
+  'translation' => 'fr - An example datetime field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '461',
-  'translation' => 'Nouveau champ',
+  'lid' => '598',
+  'translation' => 'fr - Phone Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '462',
-  'translation' => 'Champ existant',
+  'lid' => '599',
+  'translation' => 'fr - An example phone field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '463',
-  'translation' => 'Nouveau groupe',
+  'lid' => '600',
+  'translation' => 'fr - Decimal Radio Buttons Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '464',
-  '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.",
+  'lid' => '601',
+  'translation' => 'fr - An example decimal field using radio buttons.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '465',
-  'translation' => 'Vous pouvez ajouter un champ à un groupe en le faisant glisser ci-dessous et à la droite du groupe.',
+  'lid' => '604',
+  'translation' => 'fr - Float Single Checkbox Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '466',
-  '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é.",
+  'lid' => '605',
+  'translation' => 'fr - An example float field using a single on/off checkbox.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '467',
-  'translation' => "Utiliser la case à cocher 'Exclure' pour exclure un élément de la valeur de !content transmis au gabarit du node.",
+  'lid' => '608',
+  'translation' => 'fr - Integer Select List Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '468',
-  'translation' => 'Supprimer cet élément',
+  'lid' => '609',
+  'translation' => 'fr - An example integer field using a select list.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '469',
-  'translation' => 'Ajouter un champ',
+  'lid' => '614',
+  'translation' => 'fr - Text Single Checkbox Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '470',
-  'translation' => "Valeur illégale pour le champ '%name'.",
+  'lid' => '615',
+  'translation' => 'fr - An example text field using a single on/off checkbox.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '471',
-  'translation' => "La longueur de '%label' dépasse %max caractères.",
+  'lid' => '616',
+  'translation' => 'fr - Hello',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '472',
-  'translation' => "Le champ 'Rangées' doit être un entier positif.",
+  'lid' => '617',
+  'translation' => 'fr - Goodbye',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '473',
-  '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",
+  'lid' => '618',
+  'translation' => 'fr - Text Single Checkbox Field 2',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '474',
-  'translation' => 'ajouter un champ',
+  'lid' => '619',
+  'translation' => 'fr - Checkbox that uses keys only and no label.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '475',
-  'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez néanmoins dès maintenant !link.",
+  'lid' => '620',
+  'translation' => 'fr - Off',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '476',
-  'translation' => 'ajouter un nouveau champ',
+  'lid' => '621',
+  'translation' => 'fr - Hello',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '477',
-  '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.",
+  'lid' => '622',
+  'translation' => 'Champ de texte',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '478',
-  '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.",
+  'lid' => '623',
+  'translation' => 'fr - An example text field.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '479',
-  'translation' => 'Ajouter un champ existant',
+  'lid' => '624',
+  'translation' => 'fr - Decimal Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '480',
-  'translation' => 'Créer un nouveau champ',
+  'lid' => '625',
+  'translation' => 'Un exemple plusieurs valeurs champ décimal.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '481',
-  'translation' => 'Nom du champ, lisible par une machine.',
+  'lid' => '626',
+  'translation' => 'fr - Text Single Checkbox Field',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '482',
-  'translation' => ' Ce nom ne peut être modifié.',
+  'lid' => '627',
+  'translation' => 'fr - An example text field using a single on/off checkbox.',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '483',
-  '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.",
+  'lid' => '633',
+  'translation' => 'fr - Drupal.org',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '484',
-  'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données.',
+  'lid' => '634',
+  'translation' => 'fr - Test 2',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '485',
-  '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.",
+  'lid' => '635',
+  'translation' => 'fr - Test menu link 2',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '486',
-  '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_'.",
+  'lid' => '663',
+  'translation' => 'fr - Content management',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '487',
-  'translation' => "Le nom de champ '%field_name' existe déjà.",
+  'lid' => '1254',
+  'translation' => 'fr - Modules',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '488',
-  'translation' => "Le nom 'field_instance' est un nom réservé.",
+  'lid' => '1264',
+  'translation' => 'fr - By task',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '489',
-  'translation' => "Le champ '%label' a été créé.",
+  'lid' => '1265',
+  'translation' => 'fr - By module',
   'language' => 'fr',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '490',
-  'translation' => "Mettre à jour le champ '%label'.",
-  'language' => 'fr',
+  'lid' => '66',
+  'translation' => 'zu - CCK - Aucune Intégration aux Vues',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '491',
-  'translation' => "Un problème est survenu à la mise à jour du champ '%label'.",
-  'language' => 'fr',
+  'lid' => '506',
+  'translation' => 'zu - Personal information',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '492',
-  '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.",
-  'language' => 'fr',
+  'lid' => '512',
+  'translation' => 'zu - Sales Category',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '493',
-  '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.",
-  'language' => 'fr',
+  'lid' => '513',
+  'translation' => "zu - Select the sales categories to which this user's address was sold.",
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '494',
-  'translation' => 'Le code PHP de valeur par défaut a créé @value, qui est invalide.',
-  'language' => 'fr',
+  'lid' => '514',
+  'translation' => 'zu - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '495',
-  'translation' => 'Lien HTML mis en forme vers le nœud',
-  'language' => 'fr',
+  'lid' => '525',
+  'translation' => '<h3>zu - My first custom block body</h3>',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '496',
-  'translation' => "La valeur de '%name 'ne peut être plus petite que %min.",
-  'language' => 'fr',
+  'lid' => '529',
+  'translation' => 'zu - vocabulary 1 (i=0)',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '497',
-  'translation' => "La valeur de '%name' ne peut pas être plus grande que %max.",
-  'language' => 'fr',
+  'lid' => '535',
+  'translation' => 'zu - Body',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '498',
-  'translation' => "Seuls des nombres et des décimaux sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
-  'language' => 'fr',
+  'lid' => '590',
+  'translation' => 'zu - Image Field',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '499',
-  'translation' => "Seuls des nombres sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
-  'language' => 'fr',
+  'lid' => '591',
+  'translation' => 'zu - An example image field.',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '500',
-  'translation' => "Seuls des nombres et le marqueur décimal (%decimal) sont autorisés dans '%field'. La valeur saisie, '%start', a été modifié en '%value'.",
-  'language' => 'fr',
+  'lid' => '621',
+  'translation' => 'zu - Hello',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->values(array(
-  'lid' => '501',
-  '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.",
-  'language' => 'fr',
+  'lid' => '635',
+  'translation' => 'zu - Test menu link 2',
+  'language' => 'zu',
   'plid' => '0',
   'plural' => '0',
+  'i18n_status' => '0',
 ))
 ->execute();
 
@@ -20019,11 +31276,146 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '361',
-  'plid' => '357',
-  'link_path' => 'admin/content/aggregator/edit/feed/%',
-  'router_path' => 'admin/content/aggregator/edit/feed/%',
-  'link_title' => 'Edit feed',
+  'mlid' => '361',
+  'plid' => '357',
+  'link_path' => 'admin/content/aggregator/edit/feed/%',
+  'router_path' => 'admin/content/aggregator/edit/feed/%',
+  'link_title' => 'Edit feed',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '157',
+  'p3' => '357',
+  'p4' => '361',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '363',
+  'plid' => '0',
+  'link_path' => 'book',
+  'router_path' => 'book',
+  'link_title' => 'Books',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '363',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '364',
+  'plid' => '363',
+  'link_path' => 'book/js/form',
+  'router_path' => 'book/js/form',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '363',
+  'p2' => '364',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '366',
+  'plid' => '157',
+  'link_path' => 'admin/content/book',
+  'router_path' => 'admin/content/book',
+  'link_title' => 'Books',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '157',
+  'p3' => '366',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '367',
+  'plid' => '363',
+  'link_path' => 'book/export/%/%',
+  'router_path' => 'book/export/%/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '363',
+  'p2' => '367',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '369',
+  'plid' => '366',
+  'link_path' => 'admin/content/book/%',
+  'router_path' => 'admin/content/book/%',
+  'link_title' => 'Re-order book pages and change titles',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20035,8 +31427,8 @@
   'customized' => '0',
   'p1' => '144',
   'p2' => '157',
-  'p3' => '357',
-  'p4' => '361',
+  'p3' => '366',
+  'p4' => '369',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20046,21 +31438,21 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '363',
+  'mlid' => '370',
   'plid' => '0',
-  'link_path' => 'book',
-  'router_path' => 'book',
-  'link_title' => 'Books',
+  'link_path' => 'node/%/outline/remove',
+  'router_path' => 'node/%/outline/remove',
+  'link_title' => 'Remove from outline',
   'options' => 'a:0:{}',
   'module' => 'system',
-  'hidden' => '1',
+  'hidden' => '-1',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '363',
+  'p1' => '370',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20072,23 +31464,23 @@
   'updated' => '0',
 ))
 ->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '364',
-  'plid' => '363',
-  'link_path' => 'book/js/form',
-  'router_path' => 'book/js/form',
-  'link_title' => '',
+  'menu_name' => 'secondary-links',
+  'mlid' => '393',
+  'plid' => '0',
+  'link_path' => 'user/login',
+  'router_path' => 'user/login',
+  'link_title' => 'Test 3',
   'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
+  'module' => 'menu',
+  'hidden' => '0',
   'external' => '0',
-  'has_children' => '0',
+  'has_children' => '1',
   'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '363',
-  'p2' => '364',
+  'weight' => '-47',
+  'depth' => '1',
+  'customized' => '1',
+  'p1' => '393',
+  'p2' => '0',
   'p3' => '0',
   'p4' => '0',
   'p5' => '0',
@@ -20100,12 +31492,12 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '366',
-  'plid' => '157',
-  'link_path' => 'admin/content/book',
-  'router_path' => 'admin/content/book',
-  'link_title' => 'Books',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}",
+  'mlid' => '394',
+  'plid' => '166',
+  'link_path' => 'admin/build/path',
+  'router_path' => 'admin/build/path',
+  'link_title' => 'URL aliases',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
   'module' => 'system',
   'hidden' => '0',
   'external' => '0',
@@ -20115,8 +31507,8 @@
   'depth' => '3',
   'customized' => '0',
   'p1' => '144',
-  'p2' => '157',
-  'p3' => '366',
+  'p2' => '166',
+  'p3' => '394',
   'p4' => '0',
   'p5' => '0',
   'p6' => '0',
@@ -20127,11 +31519,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '367',
-  'plid' => '363',
-  'link_path' => 'book/export/%/%',
-  'router_path' => 'book/export/%/%',
-  'link_title' => '',
+  'mlid' => '395',
+  'plid' => '394',
+  'link_path' => 'admin/build/path/delete',
+  'router_path' => 'admin/build/path/delete',
+  'link_title' => 'Delete alias',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20139,12 +31531,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '2',
+  'depth' => '4',
   'customized' => '0',
-  'p1' => '363',
-  'p2' => '367',
-  'p3' => '0',
-  'p4' => '0',
+  'p1' => '144',
+  'p2' => '166',
+  'p3' => '394',
+  'p4' => '395',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20154,11 +31546,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '369',
-  'plid' => '366',
-  'link_path' => 'admin/content/book/%',
-  'router_path' => 'admin/content/book/%',
-  'link_title' => 'Re-order book pages and change titles',
+  'mlid' => '396',
+  'plid' => '394',
+  'link_path' => 'admin/build/path/edit',
+  'router_path' => 'admin/build/path/edit',
+  'link_title' => 'Edit alias',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20169,9 +31561,9 @@
   'depth' => '4',
   'customized' => '0',
   'p1' => '144',
-  'p2' => '157',
-  'p3' => '366',
-  'p4' => '369',
+  'p2' => '166',
+  'p3' => '394',
+  'p4' => '396',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20181,11 +31573,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '370',
+  'mlid' => '397',
   'plid' => '0',
-  'link_path' => 'node/%/outline/remove',
-  'router_path' => 'node/%/outline/remove',
-  'link_title' => 'Remove from outline',
+  'link_path' => 'system/files/imagecache',
+  'router_path' => 'system/files/imagecache',
+  'link_title' => '',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20195,7 +31587,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '370',
+  'p1' => '397',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20208,23 +31600,23 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '372',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test/remove',
-  'link_title' => 'Remove field',
-  'options' => 'a:0:{}',
+  'mlid' => '398',
+  'plid' => '167',
+  'link_path' => 'admin/settings/imageapi',
+  'router_path' => 'admin/settings/imageapi',
+  'link_title' => 'ImageAPI',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"Configure ImageAPI.";}}',
   'module' => 'system',
-  'hidden' => '-1',
+  'hidden' => '0',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '1',
+  'depth' => '3',
   'customized' => '0',
-  'p1' => '372',
-  'p2' => '0',
-  'p3' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '398',
   'p4' => '0',
   'p5' => '0',
   'p6' => '0',
@@ -20235,23 +31627,23 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '373',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
-  'link_title' => 'Remove field',
-  'options' => 'a:0:{}',
+  'mlid' => '399',
+  'plid' => '167',
+  'link_path' => 'admin/settings/language',
+  'router_path' => 'admin/settings/language',
+  'link_title' => 'Languages',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}',
   'module' => 'system',
-  'hidden' => '-1',
+  'hidden' => '0',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '1',
+  'depth' => '3',
   'customized' => '0',
-  'p1' => '373',
-  'p2' => '0',
-  'p3' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '399',
   'p4' => '0',
   'p5' => '0',
   'p6' => '0',
@@ -20262,11 +31654,38 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '374',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
-  'link_title' => 'Remove field',
+  'mlid' => '400',
+  'plid' => '166',
+  'link_path' => 'admin/build/translate',
+  'router_path' => 'admin/build/translate',
+  'link_title' => 'Translate interface',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '144',
+  'p2' => '166',
+  'p3' => '400',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '401',
+  'plid' => '399',
+  'link_path' => 'admin/settings/language/delete/%',
+  'router_path' => 'admin/settings/language/delete/%',
+  'link_title' => 'Confirm',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20274,12 +31693,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '1',
+  'depth' => '4',
   'customized' => '0',
-  'p1' => '374',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '399',
+  'p4' => '401',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20289,11 +31708,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '375',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
-  'link_title' => 'Remove field',
+  'mlid' => '403',
+  'plid' => '400',
+  'link_path' => 'admin/build/translate/delete/%',
+  'router_path' => 'admin/build/translate/delete/%',
+  'link_title' => 'Delete string',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20301,12 +31720,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '1',
+  'depth' => '4',
   'customized' => '0',
-  'p1' => '375',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
+  'p1' => '144',
+  'p2' => '166',
+  'p3' => '400',
+  'p4' => '403',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20316,11 +31735,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '376',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
-  'link_title' => 'Remove field',
+  'mlid' => '404',
+  'plid' => '399',
+  'link_path' => 'admin/settings/language/edit/%',
+  'router_path' => 'admin/settings/language/edit/%',
+  'link_title' => 'Edit language',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20328,12 +31747,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '1',
+  'depth' => '4',
   'customized' => '0',
-  'p1' => '376',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '399',
+  'p4' => '404',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20343,11 +31762,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '377',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
-  'link_title' => 'Remove field',
+  'mlid' => '405',
+  'plid' => '400',
+  'link_path' => 'admin/build/translate/edit/%',
+  'router_path' => 'admin/build/translate/edit/%',
+  'link_title' => 'Edit string',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20355,12 +31774,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '1',
+  'depth' => '4',
   'customized' => '0',
-  'p1' => '377',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
+  'p1' => '144',
+  'p2' => '166',
+  'p3' => '400',
+  'p4' => '405',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20370,11 +31789,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '378',
+  'mlid' => '407',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
-  'link_title' => 'Remove field',
+  'link_path' => 'i18nstrings/save',
+  'router_path' => 'i18nstrings/save',
+  'link_title' => 'Save string',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20384,7 +31803,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '378',
+  'p1' => '407',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20397,11 +31816,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '379',
+  'mlid' => '408',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
-  'link_title' => 'Remove field',
+  'link_path' => 'i18n/node/autocomplete',
+  'router_path' => 'i18n/node/autocomplete',
+  'link_title' => 'Node title autocomplete',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20411,7 +31830,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '379',
+  'p1' => '408',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20424,11 +31843,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '380',
+  'mlid' => '411',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
-  'link_title' => 'Remove field',
+  'link_path' => 'core/modules/simpletest/files/imagecache',
+  'router_path' => 'core/modules/simpletest/files/imagecache',
+  'link_title' => '',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20438,7 +31857,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '380',
+  'p1' => '411',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20451,10 +31870,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '381',
+  'mlid' => '412',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20465,7 +31884,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '381',
+  'p1' => '412',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20478,10 +31897,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '382',
+  'mlid' => '413',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20492,7 +31911,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '382',
+  'p1' => '413',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20505,10 +31924,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '383',
+  'mlid' => '414',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20519,7 +31938,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '383',
+  'p1' => '414',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20532,10 +31951,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '384',
+  'mlid' => '415',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20546,7 +31965,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '384',
+  'p1' => '415',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20559,10 +31978,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '385',
+  'mlid' => '416',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20573,7 +31992,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '385',
+  'p1' => '416',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20586,10 +32005,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '386',
+  'mlid' => '417',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20600,7 +32019,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '386',
+  'p1' => '417',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20613,10 +32032,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '387',
+  'mlid' => '418',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20627,7 +32046,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '387',
+  'p1' => '418',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20640,10 +32059,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '388',
+  'mlid' => '419',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20654,7 +32073,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '388',
+  'p1' => '419',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20667,10 +32086,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '389',
+  'mlid' => '420',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20681,7 +32100,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '389',
+  'p1' => '420',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20694,10 +32113,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '390',
+  'mlid' => '421',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
-  'router_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20708,7 +32127,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '390',
+  'p1' => '421',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20721,10 +32140,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '391',
+  'mlid' => '422',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
-  'router_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20735,7 +32154,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '391',
+  'p1' => '422',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20748,10 +32167,10 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '392',
+  'mlid' => '423',
   'plid' => '0',
-  'link_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
-  'router_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
   'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
@@ -20762,7 +32181,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '392',
+  'p1' => '423',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20774,22 +32193,22 @@
   'updated' => '0',
 ))
 ->values(array(
-  'menu_name' => 'secondary-links',
-  'mlid' => '393',
+  'menu_name' => 'navigation',
+  'mlid' => '424',
   'plid' => '0',
-  'link_path' => 'user/login',
-  'router_path' => 'user/login',
-  'link_title' => 'Test 3',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
+  'link_title' => 'Remove field',
   'options' => 'a:0:{}',
-  'module' => 'menu',
-  'hidden' => '0',
+  'module' => 'system',
+  'hidden' => '-1',
   'external' => '0',
-  'has_children' => '1',
+  'has_children' => '0',
   'expanded' => '0',
-  'weight' => '-47',
+  'weight' => '0',
   'depth' => '1',
-  'customized' => '1',
-  'p1' => '393',
+  'customized' => '0',
+  'p1' => '424',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20802,23 +32221,23 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '394',
-  'plid' => '166',
-  'link_path' => 'admin/build/path',
-  'router_path' => 'admin/build/path',
-  'link_title' => 'URL aliases',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
+  'mlid' => '425',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
+  'link_title' => 'Remove field',
+  'options' => 'a:0:{}',
   'module' => 'system',
-  'hidden' => '0',
+  'hidden' => '-1',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '3',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '394',
+  'p1' => '425',
+  'p2' => '0',
+  'p3' => '0',
   'p4' => '0',
   'p5' => '0',
   'p6' => '0',
@@ -20829,11 +32248,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '395',
-  'plid' => '394',
-  'link_path' => 'admin/build/path/delete',
-  'router_path' => 'admin/build/path/delete',
-  'link_title' => 'Delete alias',
+  'mlid' => '426',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
+  'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20841,12 +32260,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '4',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '394',
-  'p4' => '395',
+  'p1' => '426',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20856,11 +32275,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '396',
-  'plid' => '394',
-  'link_path' => 'admin/build/path/edit',
-  'router_path' => 'admin/build/path/edit',
-  'link_title' => 'Edit alias',
+  'mlid' => '427',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
+  'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20868,12 +32287,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '4',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '394',
-  'p4' => '396',
+  'p1' => '427',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -20883,11 +32302,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '397',
+  'mlid' => '428',
   'plid' => '0',
-  'link_path' => 'system/files/imagecache',
-  'router_path' => 'system/files/imagecache',
-  'link_title' => '',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
+  'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -20897,7 +32316,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '397',
+  'p1' => '428',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -20910,23 +32329,23 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '398',
-  'plid' => '167',
-  'link_path' => 'admin/settings/imageapi',
-  'router_path' => 'admin/settings/imageapi',
-  'link_title' => 'ImageAPI',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"Configure ImageAPI.";}}',
+  'mlid' => '429',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
+  'link_title' => 'Remove field',
+  'options' => 'a:0:{}',
   'module' => 'system',
-  'hidden' => '0',
+  'hidden' => '-1',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '3',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '398',
+  'p1' => '429',
+  'p2' => '0',
+  'p3' => '0',
   'p4' => '0',
   'p5' => '0',
   'p6' => '0',
@@ -20937,23 +32356,23 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '399',
-  'plid' => '167',
-  'link_path' => 'admin/settings/language',
-  'router_path' => 'admin/settings/language',
-  'link_title' => 'Languages',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}',
+  'mlid' => '430',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
+  'link_title' => 'Remove field',
+  'options' => 'a:0:{}',
   'module' => 'system',
-  'hidden' => '0',
+  'hidden' => '-1',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '3',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '399',
+  'p1' => '430',
+  'p2' => '0',
+  'p3' => '0',
   'p4' => '0',
   'p5' => '0',
   'p6' => '0',
@@ -20964,23 +32383,23 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '400',
-  'plid' => '166',
-  'link_path' => 'admin/build/translate',
-  'router_path' => 'admin/build/translate',
-  'link_title' => 'Translate interface',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}',
+  'mlid' => '431',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
+  'router_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
+  'link_title' => 'Remove field',
+  'options' => 'a:0:{}',
   'module' => 'system',
-  'hidden' => '0',
+  'hidden' => '-1',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '3',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '400',
+  'p1' => '431',
+  'p2' => '0',
+  'p3' => '0',
   'p4' => '0',
   'p5' => '0',
   'p6' => '0',
@@ -20991,11 +32410,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '401',
-  'plid' => '399',
-  'link_path' => 'admin/settings/language/delete/%',
-  'router_path' => 'admin/settings/language/delete/%',
-  'link_title' => 'Confirm',
+  'mlid' => '432',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
+  'router_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
+  'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -21003,12 +32422,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '4',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '399',
-  'p4' => '401',
+  'p1' => '432',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -21018,11 +32437,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '402',
+  'mlid' => '433',
   'plid' => '0',
-  'link_path' => 'core/modules/simpletest/files/imagecache',
-  'router_path' => 'core/modules/simpletest/files/imagecache',
-  'link_title' => '',
+  'link_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
+  'router_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
+  'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -21032,7 +32451,7 @@
   'weight' => '0',
   'depth' => '1',
   'customized' => '0',
-  'p1' => '402',
+  'p1' => '433',
   'p2' => '0',
   'p3' => '0',
   'p4' => '0',
@@ -21045,11 +32464,11 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '403',
-  'plid' => '400',
-  'link_path' => 'admin/build/translate/delete/%',
-  'router_path' => 'admin/build/translate/delete/%',
-  'link_title' => 'Delete string',
+  'mlid' => '434',
+  'plid' => '0',
+  'link_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
+  'router_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
+  'link_title' => 'Remove field',
   'options' => 'a:0:{}',
   'module' => 'system',
   'hidden' => '-1',
@@ -21057,12 +32476,12 @@
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '4',
+  'depth' => '1',
   'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '400',
-  'p4' => '403',
+  'p1' => '434',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -21072,24 +32491,24 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '404',
-  'plid' => '399',
-  'link_path' => 'admin/settings/language/edit/%',
-  'router_path' => 'admin/settings/language/edit/%',
-  'link_title' => 'Edit language',
-  'options' => 'a:0:{}',
+  'mlid' => '438',
+  'plid' => '167',
+  'link_path' => 'admin/settings/variable',
+  'router_path' => 'admin/settings/variable',
+  'link_title' => 'Variables',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Edit and delete site variables.";}}',
   'module' => 'system',
-  'hidden' => '-1',
+  'hidden' => '0',
   'external' => '0',
-  'has_children' => '0',
+  'has_children' => '1',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '4',
+  'depth' => '3',
   'customized' => '0',
   'p1' => '144',
   'p2' => '167',
-  'p3' => '399',
-  'p4' => '404',
+  'p3' => '438',
+  'p4' => '0',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -21099,14 +32518,14 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '405',
-  'plid' => '400',
-  'link_path' => 'admin/build/translate/edit/%',
-  'router_path' => 'admin/build/translate/edit/%',
-  'link_title' => 'Edit string',
+  'mlid' => '439',
+  'plid' => '438',
+  'link_path' => 'admin/settings/variable/edit/%',
+  'router_path' => 'admin/settings/variable/edit/%',
+  'link_title' => 'Edit variable',
   'options' => 'a:0:{}',
   'module' => 'system',
-  'hidden' => '-1',
+  'hidden' => '0',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
@@ -21114,9 +32533,9 @@
   'depth' => '4',
   'customized' => '0',
   'p1' => '144',
-  'p2' => '166',
-  'p3' => '400',
-  'p4' => '405',
+  'p2' => '167',
+  'p3' => '438',
+  'p4' => '439',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -21126,24 +32545,24 @@
 ))
 ->values(array(
   'menu_name' => 'navigation',
-  'mlid' => '406',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
-  'router_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
-  'link_title' => 'Remove field',
-  'options' => 'a:0:{}',
+  'mlid' => '440',
+  'plid' => '438',
+  'link_path' => 'admin/settings/variable/group/%',
+  'router_path' => 'admin/settings/variable/group/%',
+  'link_title' => 'Variables group',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Edit and delete group variables.";}}',
   'module' => 'system',
-  'hidden' => '-1',
+  'hidden' => '0',
   'external' => '0',
   'has_children' => '0',
   'expanded' => '0',
   'weight' => '0',
-  'depth' => '1',
+  'depth' => '4',
   'customized' => '0',
-  'p1' => '406',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
+  'p1' => '144',
+  'p2' => '167',
+  'p3' => '438',
+  'p4' => '440',
   'p5' => '0',
   'p6' => '0',
   'p7' => '0',
@@ -21458,7 +32877,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_block_themes_access',
-  '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.37";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}}',
+  '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:11:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";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";}}',
   'page_callback' => 'block_admin_display',
   'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
   'fit' => '31',
@@ -21480,7 +32899,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_block_themes_access',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}}}}',
+  '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:10:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";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";}}}}',
   'page_callback' => 'block_admin_display',
   'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
   'fit' => '31',
@@ -21502,7 +32921,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_block_themes_access',
-  '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.37";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:"1440020160";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";}}',
+  '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:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.38-dev";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:"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";}}',
   'page_callback' => 'block_admin_display',
   'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
   'fit' => '31',
@@ -21546,7 +32965,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_block_themes_access',
-  '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.37";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:"1440020160";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";}}',
+  '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:11:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";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";}}',
   'page_callback' => 'block_admin_display',
   'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
   'fit' => '31',
@@ -21568,7 +32987,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_block_themes_access',
-  '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.37";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:"1440020160";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";}}',
+  '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:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.38-dev";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:"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";}}',
   'page_callback' => 'block_admin_display',
   'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
   'fit' => '31',
@@ -21590,7 +33009,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_block_themes_access',
-  '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.37";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}}',
+  '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:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.38-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";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";}}',
   'page_callback' => 'block_admin_display',
   'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
   'fit' => '31',
@@ -22294,7 +33713,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_system_themes_access',
-  '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.37";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}}',
+  '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:11:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";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";}}',
   'page_callback' => 'drupal_get_form',
   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
   'fit' => '31',
@@ -22316,7 +33735,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_system_themes_access',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}}}}',
+  '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:10:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";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";}}}}',
   'page_callback' => 'drupal_get_form',
   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
   'fit' => '31',
@@ -22338,7 +33757,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_system_themes_access',
-  '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.37";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:"1440020160";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";}}',
+  '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:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.38-dev";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:"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";}}',
   'page_callback' => 'drupal_get_form',
   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
   'fit' => '31',
@@ -22382,7 +33801,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_system_themes_access',
-  '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.37";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:"1440020160";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";}}',
+  '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:11:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";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";}}',
   'page_callback' => 'drupal_get_form',
   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
   'fit' => '31',
@@ -22404,7 +33823,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_system_themes_access',
-  '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.37";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:"1440020160";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";}}',
+  '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:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.38-dev";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:"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";}}',
   'page_callback' => 'drupal_get_form',
   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
   'fit' => '31',
@@ -22426,7 +33845,7 @@
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => '_system_themes_access',
-  '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.37";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}}',
+  '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:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.38-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";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";}}',
   'page_callback' => 'drupal_get_form',
   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
   'fit' => '31',
@@ -22575,6 +33994,28 @@
   'weight' => '0',
   'file' => '',
 ))
+->values(array(
+  'path' => 'admin/build/translate/refresh',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
+  'page_callback' => 'i18nstrings_admin_refresh_page',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/build/translate',
+  'tab_root' => 'admin/build/translate',
+  'title' => 'Refresh',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '20',
+  'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
+))
 ->values(array(
   'path' => 'admin/build/translate/search',
   'load_functions' => '',
@@ -24870,7 +36311,7 @@
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
   'page_callback' => 'drupal_get_form',
-  '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:14:"help text here";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";}}',
+  '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";}}',
   'fit' => '15',
   'number_parts' => '4',
   'tab_parent' => '',
@@ -24892,7 +36333,7 @@
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
   'page_callback' => 'drupal_get_form',
-  '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:14:"help text here";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";}}',
+  '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";}}',
   'fit' => '31',
   'number_parts' => '5',
   'tab_parent' => '',
@@ -25002,7 +36443,7 @@
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
   'page_callback' => 'drupal_get_form',
-  '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:14:"help text here";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";}}',
+  '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";}}',
   'fit' => '31',
   'number_parts' => '5',
   'tab_parent' => 'admin/content/node-type/test-event',
@@ -25831,6 +37272,28 @@
   'weight' => '-10',
   'file' => 'modules/taxonomy/taxonomy.admin.inc',
 ))
+->values(array(
+  'path' => 'admin/content/taxonomy/%/translation',
+  'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_i18ntaxonomy_translation_tab',
+  'access_arguments' => 'a:1:{i:0;i:3;}',
+  'page_callback' => 'i18ntaxonomy_page_vocabulary',
+  'page_arguments' => 'a:3:{i:0;i:3;i:1;i:5;i:2;i:6;}',
+  'fit' => '29',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/content/taxonomy/%',
+  'tab_root' => 'admin/content/taxonomy/%',
+  'title' => 'Translation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.admin.inc',
+))
 ->values(array(
   'path' => 'admin/content/taxonomy/add/vocabulary',
   'load_functions' => '',
@@ -26953,6 +38416,50 @@
   'weight' => '10',
   'file' => '',
 ))
+->values(array(
+  'path' => 'admin/settings/language/configure/language',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
+  'page_callback' => 'locale_inc_callback',
+  'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/language/configure',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Language negotiation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'file' => '',
+))
+->values(array(
+  'path' => 'admin/settings/language/configure/strings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:26:"i18nstrings_admin_settings";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/language/configure',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'String translation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '20',
+  'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
+))
 ->values(array(
   'path' => 'admin/settings/language/delete/%',
   'load_functions' => 'a:1:{i:4;N;}',
@@ -26997,6 +38504,72 @@
   'weight' => '0',
   'file' => '',
 ))
+->values(array(
+  'path' => 'admin/settings/language/i18n',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/language',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Multilingual system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Configure extended options for multilingual content and translations.',
+  'position' => '',
+  'weight' => '10',
+  'file' => 'sites/all/modules/i18n/i18n.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/language/i18n/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/language/i18n',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Options',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
+  'block_callback' => '',
+  'description' => 'Configure extended options for multilingual content and translations.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/i18n/i18n.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/language/i18n/variables',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"i18n_admin_variables_form";}',
+  'fit' => '31',
+  'number_parts' => '5',
+  'tab_parent' => 'admin/settings/language/i18n',
+  'tab_root' => 'admin/settings/language',
+  'title' => 'Variables',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '128',
+  'block_callback' => '',
+  'description' => 'Multilingual variables.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/i18n/i18n.admin.inc',
+))
 ->values(array(
   'path' => 'admin/settings/language/overview',
   'load_functions' => '',
@@ -27056,78 +38629,210 @@
   'title' => 'Performance',
   'title_callback' => 't',
   'title_arguments' => '',
-  'type' => '6',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/site-information',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/site-information',
+  'title' => 'Site information',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/site-maintenance',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/site-maintenance',
+  'title' => 'Site maintenance',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Take the site off-line for maintenance or bring it back online.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/uploads',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"upload_admin_settings";}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/uploads',
+  'title' => 'File uploads',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Control how files may be attached to content.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'modules/upload/upload.admin.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'variable_admin_page_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'Variables',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => 'Edit and delete site variables.',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable/edit/%',
+  'load_functions' => 'a:1:{i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'variable_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'variable_admin_page_edit',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
+  'tab_parent' => '',
+  'tab_root' => 'admin/settings/variable/edit/%',
+  'title' => 'Edit variable',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '6',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
+))
+->values(array(
+  'path' => 'admin/settings/variable/group',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'variable_admin_page_overview',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/variable',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'By group',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '136',
   'block_callback' => '',
-  'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
+  'description' => 'Variables by group.',
   'position' => '',
   'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
 ))
 ->values(array(
-  'path' => 'admin/settings/site-information',
-  'load_functions' => '',
+  'path' => 'admin/settings/variable/group/%',
+  'load_functions' => 'a:1:{i:4;N;}',
   'to_arg_functions' => '',
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
+  'page_callback' => 'variable_admin_page_group',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'fit' => '30',
+  'number_parts' => '5',
   'tab_parent' => '',
-  'tab_root' => 'admin/settings/site-information',
-  'title' => 'Site information',
+  'tab_root' => 'admin/settings/variable/group/%',
+  'title' => 'Variables group',
   'title_callback' => 't',
   'title_arguments' => '',
   'type' => '6',
   'block_callback' => '',
-  'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
+  'description' => 'Edit and delete group variables.',
   'position' => '',
   'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
 ))
 ->values(array(
-  'path' => 'admin/settings/site-maintenance',
+  'path' => 'admin/settings/variable/modules',
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/site-maintenance',
-  'title' => 'Site maintenance',
+  'page_callback' => 'variable_admin_page_modules',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/variable',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'By module',
   'title_callback' => 't',
   'title_arguments' => '',
-  'type' => '6',
+  'type' => '128',
   'block_callback' => '',
-  'description' => 'Take the site off-line for maintenance or bring it back online.',
+  'description' => 'Variables by module.',
   'position' => '',
   'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
 ))
 ->values(array(
-  'path' => 'admin/settings/uploads',
+  'path' => 'admin/settings/variable/undefined',
   'load_functions' => '',
   'to_arg_functions' => '',
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"upload_admin_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/uploads',
-  'title' => 'File uploads',
+  'page_callback' => 'variable_admin_page_undefined',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '15',
+  'number_parts' => '4',
+  'tab_parent' => 'admin/settings/variable',
+  'tab_root' => 'admin/settings/variable',
+  'title' => 'Undefined',
   'title_callback' => 't',
   'title_arguments' => '',
-  'type' => '6',
+  'type' => '128',
   'block_callback' => '',
-  'description' => 'Control how files may be attached to content.',
+  'description' => 'Unknown variables.',
   'position' => '',
   'weight' => '0',
-  'file' => 'modules/upload/upload.admin.inc',
+  'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
 ))
 ->values(array(
   'path' => 'admin/user',
@@ -28273,6 +39978,50 @@
   'weight' => '0',
   'file' => 'modules/filter/filter.pages.inc',
 ))
+->values(array(
+  'path' => 'i18n/node/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'i18n_node_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '7',
+  'number_parts' => '3',
+  'tab_parent' => '',
+  'tab_root' => 'i18n/node/autocomplete',
+  'title' => 'Node title autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => 'sites/all/modules/i18n/i18n.pages.inc',
+))
+->values(array(
+  'path' => 'i18nstrings/save',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"use on-page translation";}',
+  'page_callback' => 'i18nstrings_save_string',
+  'page_arguments' => 'a:0:{}',
+  'fit' => '3',
+  'number_parts' => '2',
+  'tab_parent' => '',
+  'tab_root' => 'i18nstrings/save',
+  'title' => 'Save string',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'type' => '4',
+  'block_callback' => '',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'file' => '',
+))
 ->values(array(
   'path' => 'logout',
   'load_functions' => '',
@@ -28543,7 +40292,7 @@
   'to_arg_functions' => '',
   'access_callback' => '_translation_tab_access',
   'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'translation_node_overview',
+  'page_callback' => 'i18n_translation_node_overview',
   'page_arguments' => 'a:1:{i:0;i:1;}',
   'fit' => '5',
   'number_parts' => '3',
@@ -28557,7 +40306,7 @@
   'description' => '',
   'position' => '',
   'weight' => '2',
-  'file' => 'modules/translation/translation.pages.inc',
+  'file' => 'sites/all/modules/i18n/i18n.pages.inc',
 ))
 ->values(array(
   'path' => 'node/%/view',
@@ -28587,7 +40336,7 @@
   'to_arg_functions' => '',
   'access_callback' => '_node_add_access',
   'access_arguments' => 'a:0:{}',
-  'page_callback' => 'node_add_page',
+  'page_callback' => 'i18ncontent_node_add_page',
   'page_arguments' => 'a:0:{}',
   'fit' => '3',
   'number_parts' => '2',
@@ -28609,15 +40358,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/article',
   'title' => 'Article',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:article:name";i:1;s:7:"Article";}',
   'type' => '6',
   'block_callback' => '',
   'description' => 'An <em>article</em>, content type.',
@@ -28631,15 +40380,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"company";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/company',
   'title' => 'Company',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:company:name";i:1;s:7:"Company";}',
   'type' => '6',
   'block_callback' => '',
   'description' => 'Company node type',
@@ -28653,15 +40402,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:8:"employee";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/employee',
   'title' => 'Employee',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:27:"nodetype:type:employee:name";i:1;s:8:"Employee";}',
   'type' => '6',
   'block_callback' => '',
   'description' => 'Employee node type',
@@ -28675,15 +40424,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"sponsor";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/sponsor',
   'title' => 'Sponsor',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:sponsor:name";i:1;s:7:"Sponsor";}',
   'type' => '6',
   'block_callback' => '',
   'description' => 'Sponsor node type',
@@ -28697,15 +40446,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/story',
   'title' => 'Story',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:story:name";i:1;s:5:"Story";}',
   'type' => '6',
   'block_callback' => '',
   '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.",
@@ -28719,15 +40468,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_event";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/test-event',
   'title' => 'Migrate test event',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test_event:name";i:1;s:18:"Migrate test event";}',
   'type' => '6',
   'block_callback' => '',
   'description' => 'test event description here',
@@ -28741,15 +40490,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:9:"test_page";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/test-page',
   'title' => 'Migrate test page',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:28:"nodetype:type:test_page:name";i:1;s:17:"Migrate test page";}',
   'type' => '6',
   'block_callback' => '',
   '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.",
@@ -28763,15 +40512,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:11:"test_planet";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/test-planet',
   'title' => 'Migrate test planet',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:30:"nodetype:type:test_planet:name";i:1;s:19:"Migrate test planet";}',
   'type' => '6',
   'block_callback' => '',
   '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.",
@@ -28785,15 +40534,15 @@
   'to_arg_functions' => '',
   'access_callback' => 'node_access',
   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_story";}',
-  'page_callback' => 'node_add',
+  'page_callback' => 'i18ncontent_node_add',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '7',
   'number_parts' => '3',
   'tab_parent' => '',
   'tab_root' => 'node/add/test-story',
   'title' => 'Migrate test story',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
+  'title_callback' => 'i18nstrings_title_callback',
+  'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test_story:name";i:1;s:18:"Migrate test story";}',
   'type' => '6',
   'block_callback' => '',
   '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.",
@@ -28917,7 +40666,7 @@
   'to_arg_functions' => '',
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'taxonomy_autocomplete',
+  'page_callback' => 'i18ntaxonomy_autocomplete',
   'page_arguments' => 'a:0:{}',
   'fit' => '3',
   'number_parts' => '2',
@@ -28931,7 +40680,7 @@
   'description' => '',
   'position' => '',
   'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.pages.inc',
+  'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
 ))
 ->values(array(
   'path' => 'taxonomy/term/%',
@@ -28939,7 +40688,7 @@
   'to_arg_functions' => '',
   'access_callback' => 'user_access',
   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'taxonomy_term_page',
+  'page_callback' => 'i18ntaxonomy_term_page',
   'page_arguments' => 'a:1:{i:0;i:2;}',
   'fit' => '6',
   'number_parts' => '3',
@@ -28953,7 +40702,7 @@
   'description' => '',
   'position' => '',
   'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.pages.inc',
+  'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
 ))
 ->values(array(
   'path' => 'upload/js',
@@ -29122,7 +40871,7 @@
   'tab_parent' => 'user/%/edit',
   'tab_root' => 'user/%',
   'title' => '',
-  'title_callback' => 'check_plain',
+  'title_callback' => 'i18nprofile_translate_category',
   'title_arguments' => 'a:1:{i:0;s:19:"Administrative data";}',
   'type' => '128',
   'block_callback' => '',
@@ -29144,7 +40893,7 @@
   'tab_parent' => 'user/%/edit',
   'tab_root' => 'user/%',
   'title' => '',
-  'title_callback' => 'check_plain',
+  'title_callback' => 'i18nprofile_translate_category',
   'title_arguments' => 'a:1:{i:0;s:25:"Communication preferences";}',
   'type' => '128',
   'block_callback' => '',
@@ -29166,7 +40915,7 @@
   'tab_parent' => 'user/%/edit',
   'tab_root' => 'user/%',
   'title' => '',
-  'title_callback' => 'check_plain',
+  'title_callback' => 'i18nprofile_translate_category',
   'title_arguments' => 'a:1:{i:0;s:20:"Personal information";}',
   'type' => '128',
   'block_callback' => '',
@@ -30221,7 +41970,7 @@
   'name' => 'Migrate test event',
   'module' => 'node',
   'description' => 'test event description here',
-  'help' => 'help text here',
+  'help' => '',
   'has_title' => '1',
   'title_label' => 'Event Name',
   'has_body' => '1',
@@ -31000,7 +42749,7 @@
   'bootstrap' => '0',
   'schema_version' => '6001',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/block/block.module',
@@ -31012,7 +42761,7 @@
   'bootstrap' => '0',
   'schema_version' => '0',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/blog/blog.module',
@@ -31024,7 +42773,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/blogapi/blogapi.module',
@@ -31036,7 +42785,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/book/book.module',
@@ -31048,7 +42797,7 @@
   'bootstrap' => '0',
   'schema_version' => '6000',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/color/color.module',
@@ -31060,7 +42809,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/comment/comment.module',
@@ -31072,7 +42821,7 @@
   'bootstrap' => '0',
   'schema_version' => '6005',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/contact/contact.module',
@@ -31084,7 +42833,7 @@
   'bootstrap' => '0',
   'schema_version' => '6001',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/dblog/dblog.module',
@@ -31096,7 +42845,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/filter/filter.module',
@@ -31108,7 +42857,7 @@
   'bootstrap' => '0',
   'schema_version' => '0',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/forum/forum.module',
@@ -31120,7 +42869,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/help/help.module',
@@ -31132,7 +42881,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/locale/locale.module',
@@ -31144,7 +42893,7 @@
   'bootstrap' => '0',
   'schema_version' => '6007',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/menu/menu.module',
@@ -31156,7 +42905,7 @@
   'bootstrap' => '0',
   'schema_version' => '6000',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/node/node.module',
@@ -31168,7 +42917,7 @@
   'bootstrap' => '0',
   'schema_version' => '0',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/openid/openid.module',
@@ -31180,7 +42929,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";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:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:8:"6.38-dev";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/path/path.module',
@@ -31192,7 +42941,7 @@
   'bootstrap' => '0',
   'schema_version' => '0',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/php/php.module',
@@ -31204,7 +42953,7 @@
   'bootstrap' => '0',
   'schema_version' => '0',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/ping/ping.module',
@@ -31216,7 +42965,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/poll/poll.module',
@@ -31228,7 +42977,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/profile/profile.module',
@@ -31240,7 +42989,7 @@
   'bootstrap' => '0',
   'schema_version' => '6001',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/search/search.module',
@@ -31252,7 +43001,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/statistics/statistics.module',
@@ -31264,7 +43013,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/syslog/syslog.module',
@@ -31276,7 +43025,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/system/system.module',
@@ -31288,7 +43037,7 @@
   'bootstrap' => '0',
   'schema_version' => '6055',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/taxonomy/taxonomy.module',
@@ -31300,7 +43049,7 @@
   'bootstrap' => '0',
   'schema_version' => '6001',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/throttle/throttle.module',
@@ -31312,7 +43061,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/tracker/tracker.module',
@@ -31324,7 +43073,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/translation/translation.module',
@@ -31336,7 +43085,7 @@
   'bootstrap' => '0',
   'schema_version' => '0',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/trigger/trigger.module',
@@ -31348,7 +43097,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/update/update.module',
@@ -31360,7 +43109,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";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:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/upload/upload.module',
@@ -31372,7 +43121,7 @@
   'bootstrap' => '0',
   'schema_version' => '6000',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'modules/user/user.module',
@@ -31384,7 +43133,7 @@
   'bootstrap' => '0',
   'schema_version' => '0',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  'info' => 'a:8:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/content.module',
@@ -31396,7 +43145,7 @@
   'bootstrap' => '0',
   'schema_version' => '6010',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/content_copy/content_copy.module',
@@ -31408,7 +43157,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/content_permissions/content_permissions.module',
@@ -31420,7 +43169,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/fieldgroup/fieldgroup.module',
@@ -31432,7 +43181,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/nodereference/nodereference.module',
@@ -31444,7 +43193,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/number/number.module',
@@ -31456,7 +43205,7 @@
   'bootstrap' => '0',
   'schema_version' => '6000',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/optionwidgets/optionwidgets.module',
@@ -31468,7 +43217,7 @@
   'bootstrap' => '0',
   'schema_version' => '6001',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/text/text.module',
@@ -31480,7 +43229,7 @@
   'bootstrap' => '0',
   'schema_version' => '6003',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/cck/modules/userreference/userreference.module',
@@ -31492,7 +43241,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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";}',
+  '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:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/date/date/date.module',
@@ -31710,6 +43459,138 @@
   'weight' => '0',
   '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.13";s:7:"project";s:9:"filefield";s:9:"datestamp";s:10:"1405541029";s:10:"dependents";a:0:{}}',
 ))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18n.module',
+  'name' => 'i18n',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '1',
+  'schema_version' => '9',
+  'weight' => '10',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nblocks/i18nblocks.module',
+  'name' => 'i18nblocks',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6001',
+  'weight' => '0',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18ncck/i18ncck.module',
+  'name' => 'i18ncck',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18ncontent/i18ncontent.module',
+  'name' => 'i18ncontent',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6002',
+  'weight' => '0',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nmenu/i18nmenu.module',
+  'name' => 'i18nmenu',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18npoll/i18npoll.module',
+  'name' => 'i18npoll',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nprofile/i18nprofile.module',
+  'name' => 'i18nprofile',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '2',
+  'weight' => '0',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.module',
+  'name' => 'i18nstrings',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6006',
+  'weight' => '10',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18nsync/i18nsync.module',
+  'name' => 'i18nsync',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.module',
+  'name' => 'i18ntaxonomy',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '6002',
+  'weight' => '5',
+  '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:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/i18n/tests/i18n_test.module',
+  'name' => 'i18n_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  '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:7:"Testing";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+))
 ->values(array(
   'filename' => 'sites/all/modules/imageapi/imageapi.module',
   'name' => 'imageapi',
@@ -31818,6 +43699,30 @@
   'weight' => '0',
   '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";}',
 ))
+->values(array(
+  'filename' => 'sites/all/modules/variable/variable.module',
+  'name' => 'variable',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:7:{s:4:"name";s:12:"Variable API";s:11:"description";s:12:"Variable API";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";}',
+))
+->values(array(
+  'filename' => 'sites/all/modules/variable/variable_admin/variable_admin.module',
+  'name' => 'variable_admin',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'throttle' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:7:{s:4:"name";s:14:"Variable admin";s:11:"description";s:23:"Variable API - Admin UI";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";}',
+))
 ->values(array(
   'filename' => 'sites/all/modules/views/tests/views_test.module',
   'name' => 'views_test',
@@ -31840,7 +43745,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.0";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1325638545";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
+  '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:8:"6.x-2.18";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647793";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/views/views_export/views_export.module',
@@ -31852,7 +43757,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.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";}',
+  '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:8:"6.x-2.18";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647793";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'sites/all/modules/views/views_ui.module',
@@ -31864,7 +43769,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.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";}',
+  '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:8:"6.x-2.18";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647793";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
 ))
 ->values(array(
   'filename' => 'themes/bluemarine/bluemarine.info',
@@ -31876,7 +43781,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}',
+  'info' => 'a:11:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";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";}',
 ))
 ->values(array(
   'filename' => 'themes/chameleon/chameleon.info',
@@ -31888,7 +43793,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}',
+  'info' => 'a:10:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";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";}',
 ))
 ->values(array(
   'filename' => 'themes/chameleon/marvin/marvin.info',
@@ -31900,7 +43805,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";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:"1440020160";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";}',
+  'info' => 'a:11:{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:8:"6.38-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";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";}',
 ))
 ->values(array(
   'filename' => 'themes/garland/garland.info',
@@ -31912,7 +43817,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";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:"1440020160";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";}',
+  'info' => 'a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.38-dev";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:"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";}',
 ))
 ->values(array(
   'filename' => 'themes/garland/minnelli/minnelli.info',
@@ -31924,7 +43829,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";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:"1440020160";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";}',
+  'info' => 'a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.38-dev";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:"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";}',
 ))
 ->values(array(
   'filename' => 'themes/pushbutton/pushbutton.info',
@@ -31936,7 +43841,7 @@
   'bootstrap' => '0',
   'schema_version' => '-1',
   'weight' => '0',
-  '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.37";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1440020160";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";}',
+  'info' => 'a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.38-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";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";}',
 ))
 ->execute();
 
@@ -31972,6 +43877,18 @@
       'size' => 'normal',
       'default' => '0',
     ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
+    'trid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
   ),
   'primary key' => array(
     'tid',
@@ -31986,6 +43903,8 @@
   'name',
   'description',
   'weight',
+  'language',
+  'trid',
 ))
 ->values(array(
   'tid' => '1',
@@ -31993,6 +43912,8 @@
   'name' => 'term 1 of vocabulary 1',
   'description' => 'description of term 1 of vocabulary 1',
   'weight' => '0',
+  'language' => '',
+  'trid' => '0',
 ))
 ->values(array(
   'tid' => '2',
@@ -32000,6 +43921,8 @@
   'name' => 'term 2 of vocabulary 2',
   'description' => 'description of term 2 of vocabulary 2',
   'weight' => '3',
+  'language' => '',
+  'trid' => '0',
 ))
 ->values(array(
   'tid' => '3',
@@ -32007,6 +43930,8 @@
   'name' => 'term 3 of vocabulary 2',
   'description' => 'description of term 3 of vocabulary 2',
   'weight' => '4',
+  'language' => '',
+  'trid' => '0',
 ))
 ->values(array(
   'tid' => '4',
@@ -32014,6 +43939,8 @@
   'name' => 'term 4 of vocabulary 3',
   'description' => 'description of term 4 of vocabulary 3',
   'weight' => '6',
+  'language' => '',
+  'trid' => '0',
 ))
 ->values(array(
   'tid' => '5',
@@ -32021,6 +43948,8 @@
   'name' => 'term 5 of vocabulary 3',
   'description' => 'description of term 5 of vocabulary 3',
   'weight' => '7',
+  'language' => '',
+  'trid' => '0',
 ))
 ->values(array(
   'tid' => '6',
@@ -32028,6 +43957,8 @@
   'name' => 'term 6 of vocabulary 3',
   'description' => 'description of term 6 of vocabulary 3',
   'weight' => '8',
+  'language' => '',
+  'trid' => '0',
 ))
 ->execute();
 
@@ -32552,8 +44483,8 @@
   'signature' => '',
   'signature_format' => '0',
   'created' => '0',
-  'access' => '1444943005',
-  'login' => '1444943005',
+  'access' => '1458198052',
+  'login' => '1458193160',
   'status' => '1',
   'timezone' => NULL,
   'language' => '',
@@ -32832,6 +44763,10 @@
   'name' => 'anonymous',
   'value' => 's:5:"Guest";',
 ))
+->values(array(
+  'name' => 'array_filter',
+  'value' => 'b:1;',
+))
 ->values(array(
   'name' => 'book_allowed_types',
   'value' => 'a:1:{i:0;s:4:"book";}',
@@ -33214,7 +45149,7 @@
 ))
 ->values(array(
   'name' => 'css_js_query_string',
-  'value' => 's:20:"SAkMTxRZndiw70000000";',
+  'value' => 's:20:"8SAkMTxRZndiw7000000";',
 ))
 ->values(array(
   'name' => 'date:story:4:field_test_datestamp_fromto',
@@ -33512,6 +45447,10 @@
   'name' => 'event_nodeapi_event',
   'value' => 's:3:"all";',
 ))
+->values(array(
+  'name' => 'event_timezone_display',
+  'value' => 's:5:"event";',
+))
 ->values(array(
   'name' => 'feed_default_items',
   'value' => 'i:10;',
@@ -33592,6 +45531,10 @@
   'name' => 'forum_per_page',
   'value' => 's:2:"25";',
 ))
+->values(array(
+  'name' => 'i18nstrings_allowed_formats',
+  'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
+))
 ->values(array(
   'name' => 'image_jpeg_quality',
   'value' => 'i:75;',
@@ -33602,7 +45545,7 @@
 ))
 ->values(array(
   'name' => 'javascript_parsed',
-  'value' => 'a:0:{}',
+  'value' => 'a:21:{i:0;s:14:"misc/jquery.js";i:1;s:14:"misc/drupal.js";i:2;s:19:"misc/tableheader.js";i:3;s:16:"misc/collapse.js";i:4;s:16:"misc/textarea.js";i:5;s:20:"modules/user/user.js";i:6;s:17:"misc/tabledrag.js";i:7;s:26:"modules/profile/profile.js";i:8;s:12:"misc/form.js";i:9;s:19:"misc/tableselect.js";i:10;s:20:"misc/autocomplete.js";s:10:"refresh:ga";s:7:"waiting";s:10:"refresh:ab";s:7:"waiting";s:10:"refresh:ca";s:7:"waiting";s:10:"refresh:fi";s:7:"waiting";s:10:"refresh:es";s:7:"waiting";i:11;s:16:"misc/progress.js";i:12;s:13:"misc/batch.js";s:10:"refresh:nl";s:7:"waiting";s:10:"refresh:de";s:7:"waiting";s:10:"refresh:pl";s:7:"waiting";}',
 ))
 ->values(array(
   'name' => 'language_content_type_article',
@@ -33610,12 +45553,16 @@
 ))
 ->values(array(
   'name' => 'language_count',
-  'value' => 'i:2;',
+  'value' => 'i:11;',
 ))
 ->values(array(
   'name' => 'language_default',
   '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:"";}',
 ))
+->values(array(
+  'name' => 'language_negotiation',
+  'value' => 's:1:"1";',
+))
 ->values(array(
   'name' => 'locale_cache_strings',
   'value' => 'i:1;',
@@ -34018,6 +45965,12 @@
       'size' => 'normal',
       'default' => '0',
     ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '12',
+      'default' => '',
+    ),
   ),
   'primary key' => array(
     'vid',
@@ -34038,6 +45991,7 @@
   'tags',
   'module',
   'weight',
+  'language',
 ))
 ->values(array(
   'vid' => '1',
@@ -34051,6 +46005,7 @@
   'tags' => '0',
   'module' => 'taxonomy',
   'weight' => '4',
+  'language' => '',
 ))
 ->values(array(
   'vid' => '2',
@@ -34064,6 +46019,7 @@
   'tags' => '1',
   'module' => 'taxonomy',
   'weight' => '5',
+  'language' => '',
 ))
 ->values(array(
   'vid' => '3',
@@ -34077,6 +46033,7 @@
   'tags' => '0',
   'module' => 'taxonomy',
   'weight' => '6',
+  'language' => '',
 ))
 ->values(array(
   'vid' => '4',
@@ -34090,6 +46047,7 @@
   'tags' => '0',
   'module' => 'taxonomy',
   'weight' => '0',
+  'language' => '',
 ))
 ->values(array(
   'vid' => '5',
@@ -34103,6 +46061,7 @@
   'tags' => '0',
   'module' => 'taxonomy',
   'weight' => '7',
+  'language' => '',
 ))
 ->execute();
 
-- 
GitLab