diff --git a/core/modules/node/migrations/d6_node_revision.yml b/core/modules/content_translation/migrations/d6_node_revision_translation.yml
similarity index 58%
copy from core/modules/node/migrations/d6_node_revision.yml
copy to core/modules/content_translation/migrations/d6_node_revision_translation.yml
index 732c9abe27..951094ef98 100644
--- a/core/modules/node/migrations/d6_node_revision.yml
+++ b/core/modules/content_translation/migrations/d6_node_revision_translation.yml
@@ -1,17 +1,20 @@
-id: d6_node_revision
-label: Node revisions
-audit: true
+id: d6_node_revision_translation
+label: Node revision translations
 migration_tags:
   - Drupal 6
+  - translation
   - Content
+  - Multilingual
 deriver: Drupal\node\Plugin\migrate\D6NodeDeriver
 source:
   plugin: d6_node_revision
+  translations: true
+  constants:
+    revision_translation_affected: true
 process:
   # If you are using this file to build a custom migration consider removing
-  # the nid and vid fields to allow incremental migrations.
-  nid: nid
-  vid: vid
+  # the nid field to allow incremental migrations.
+  nid: tnid
   langcode:
     plugin: default_value
     source: language
@@ -32,12 +35,12 @@ process:
   revision_uid: revision_uid
   revision_log: log
   revision_timestamp: timestamp
-
-#  unmapped d6 fields.
-#  tnid
-#  translate
-#  moderate
-#  comment
-
+  content_translation_source: source_langcode
+  revision_translation_affected: constants/revision_translation_affected
 destination:
   plugin: entity_revision:node
+  translations: true
+  destination_module: content_translation
+migration_dependencies:
+  required:
+    - d6_node_translation
diff --git a/core/modules/node/migrations/d7_node_revision.yml b/core/modules/content_translation/migrations/d7_node_revision_translation.yml
similarity index 60%
copy from core/modules/node/migrations/d7_node_revision.yml
copy to core/modules/content_translation/migrations/d7_node_revision_translation.yml
index 7310b0d5b0..d163cea4ec 100644
--- a/core/modules/node/migrations/d7_node_revision.yml
+++ b/core/modules/content_translation/migrations/d7_node_revision_translation.yml
@@ -1,17 +1,18 @@
-id: d7_node_revision
-label: Node revisions
-audit: true
+id: d7_node_revision_translation
+label: Node revision translations
 migration_tags:
   - Drupal 7
+  - translation
   - Content
+  - Multilingual
 deriver: Drupal\node\Plugin\migrate\D7NodeDeriver
 source:
   plugin: d7_node_revision
+  translations: true
 process:
   # If you are using this file to build a custom migration consider removing
-  # the nid and vid fields to allow incremental migrations.
-  nid: nid
-  vid: vid
+  # the nid field to allow incremental migrations.
+  nid: tnid
   langcode:
     plugin: default_value
     source: language
@@ -26,8 +27,13 @@ process:
   revision_uid: revision_uid
   revision_log: log
   revision_timestamp: timestamp
+  content_translation_source: source_langcode
 destination:
   plugin: entity_revision:node
+  translations: true
+  content_translation_update_definitions:
+    - node
+  destination_module: content_translation
 migration_dependencies:
   required:
-    - d7_node
+    - d7_node_translation
diff --git a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php
index ab73909171..e50c3aac52 100644
--- a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php
+++ b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php
@@ -129,7 +129,7 @@ public function testFieldInstances() {
     $this->assertEntity('node.test_content_type.field_float_list', 'Float List', 'list_float', FALSE, FALSE);
     $this->assertEntity('node.test_content_type.field_long_text', 'Long text', 'text_with_summary', FALSE, FALSE);
     $this->assertEntity('node.test_content_type.field_term_reference', 'Term Reference', 'entity_reference', FALSE, FALSE);
-    $this->assertEntity('node.test_content_type.field_text', 'Text', 'string', FALSE, FALSE);
+    $this->assertEntity('node.test_content_type.field_text', 'Text', 'string', FALSE, TRUE);
     $this->assertEntity('comment.comment_node_test_content_type.field_integer', 'Integer', 'integer', FALSE, TRUE);
     $this->assertEntity('user.user.field_file', 'File', 'file', FALSE, FALSE);
 
diff --git a/core/modules/file/migrations/d6_upload.yml b/core/modules/file/migrations/d6_upload.yml
index 1c34e5873c..a4e1dedf61 100644
--- a/core/modules/file/migrations/d6_upload.yml
+++ b/core/modules/file/migrations/d6_upload.yml
@@ -7,7 +7,6 @@ source:
   plugin: d6_upload
 process:
   nid: nid
-  vid: vid
   langcode:
     plugin: user_langcode
     source: language
diff --git a/core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php
index 24e552edde..39c17be6f4 100644
--- a/core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php
+++ b/core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php
@@ -227,6 +227,9 @@ protected function updateEntity(EntityInterface $entity, Row $row) {
         $language = $row->getDestinationProperty($property);
         if (!$entity->hasTranslation($language)) {
           $entity->addTranslation($language);
+          if ($this->storage->getEntityType()->isRevisionable()) {
+            $entity->setNewRevision(TRUE);
+          }
 
           // We're adding a translation, so delete it on rollback.
           $rollback_action = MigrateIdMapInterface::ROLLBACK_DELETE;
diff --git a/core/modules/migrate_drupal/tests/fixtures/drupal6.php b/core/modules/migrate_drupal/tests/fixtures/drupal6.php
index caa55b0e4c..c40bb46a4d 100644
--- a/core/modules/migrate_drupal/tests/fixtures/drupal6.php
+++ b/core/modules/migrate_drupal/tests/fixtures/drupal6.php
@@ -3066,6 +3066,18 @@
   'active' => '1',
   'locked' => '0',
 ))
+->values(array(
+  'field_name' => 'field_text_field',
+  'type' => 'text',
+  'global_settings' => 'a:4:{s:15:"text_processing";s:1:"0";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
+  'required' => '0',
+  'multiple' => '0',
+  'db_storage' => '1',
+  'module' => 'text',
+  'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:6:"normal";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
+  'active' => '1',
+  'locked' => '0',
+))
 ->execute();
 $connection->schema()->createTable('content_node_field_instance', array(
   'fields' => array(
@@ -3519,6 +3531,18 @@
   'widget_module' => 'number',
   'widget_active' => '1',
 ))
+->values(array(
+  'field_name' => 'field_text_field',
+  'type_name' => 'page',
+  'weight' => '31',
+  'label' => 'Text',
+  'widget_type' => 'text_textfield',
+  'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_text_field][0][value";}}s:17:"default_value_php";N;}',
+  'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
+  'description' => '',
+  'widget_module' => 'text',
+  'widget_active' => '1',
+))
 ->execute();
 $connection->schema()->createTable('content_type_employee', array(
   'fields' => array(
@@ -3673,21 +3697,28 @@
 ->values(array(
   'vid' => '13',
   'nid' => '10',
-  'field_text_field_value' => NULL,
+  'field_text_field_value' => 'McCoy first revision (en)',
   'field_reference_nid' => '13',
   'field_reference_2_nid' => '13',
 ))
 ->values(array(
   'vid' => '14',
   'nid' => '11',
-  'field_text_field_value' => NULL,
+  'field_text_field_value' => 'McCoy first revision (fr)',
   'field_reference_nid' => '20',
   'field_reference_2_nid' => '20',
 ))
+->values(array(
+  'vid' => '15',
+  'nid' => '12',
+  'field_text_field_value' => 'Zulu first revision (zu)',
+  'field_reference_nid' => NULL,
+  'field_reference_2_nid' => NULL,
+))
 ->values(array(
   'vid' => '16',
   'nid' => '13',
-  'field_text_field_value' => NULL,
+  'field_text_field_value' => 'Zulu first revision (en)',
   'field_reference_nid' => '10',
   'field_reference_2_nid' => '10',
 ))
@@ -3698,7 +3729,34 @@
   'field_reference_nid' => '11',
   'field_reference_2_nid' => '11',
 ))
-->execute();
+->values(array(
+  'vid' => '24',
+  'nid' => '10',
+  'field_text_field_value' => 'McCoy current revision (en)',
+  'field_reference_nid' => '13',
+  'field_reference_2_nid' => '13',
+))
+->values(array(
+  'vid' => '25',
+  'nid' => '11',
+  'field_text_field_value' => 'McCoy current revision (fr)',
+  'field_reference_nid' => '20',
+  'field_reference_2_nid' => '20',
+))
+->values(array(
+  'vid' => '26',
+  'nid' => '12',
+  'field_text_field_value' => 'Zulu current revision (zu)',
+  'field_reference_nid' => NULL,
+  'field_reference_2_nid' => NULL,
+))
+->values(array(
+  'vid' => '27',
+  'nid' => '13',
+  'field_text_field_value' => 'Zulu current revision (en)',
+  'field_reference_nid' => '10',
+  'field_reference_2_nid' => '10',
+))->execute();
 $connection->schema()->createTable('content_type_story', array(
   'fields' => array(
     'nid' => array(
@@ -44615,14 +44673,14 @@
 ))
 ->values(array(
   'nid' => '10',
-  'vid' => '13',
+  'vid' => '24',
   'type' => 'page',
   'language' => 'en',
   'title' => 'The Real McCoy',
   'uid' => '1',
   'status' => '1',
   'created' => '1444238800',
-  'changed' => '1444238808',
+  'changed' => '1521927089',
   'comment' => '2',
   'promote' => '1',
   'moderate' => '0',
@@ -44632,14 +44690,14 @@
 ))
 ->values(array(
   'nid' => '11',
-  'vid' => '14',
+  'vid' => '25',
   'type' => 'page',
   'language' => 'fr',
   'title' => 'Le Vrai McCoy',
   'uid' => '1',
   'status' => '1',
   'created' => '1444239050',
-  'changed' => '1444239050',
+  'changed' => '1521927113',
   'comment' => '2',
   'promote' => '1',
   'moderate' => '0',
@@ -44649,14 +44707,14 @@
 ))
 ->values(array(
   'nid' => '12',
-  'vid' => '15',
+  'vid' => '26',
   'type' => 'page',
   'language' => 'zu',
   'title' => 'Abantu zulu',
   'uid' => '1',
   'status' => '1',
   'created' => '1444238800',
-  'changed' => '1444238808',
+  'changed' => '1521927131',
   'comment' => '0',
   'promote' => '0',
   'moderate' => '0',
@@ -44666,14 +44724,14 @@
 ))
 ->values(array(
   'nid' => '13',
-  'vid' => '16',
+  'vid' => '27',
   'type' => 'page',
   'language' => 'en',
   'title' => 'The Zulu People',
   'uid' => '1',
   'status' => '1',
   'created' => '1444239050',
-  'changed' => '1444239050',
+  'changed' => '1521927148',
   'comment' => '0',
   'promote' => '0',
   'moderate' => '0',
@@ -45397,10 +45455,10 @@
   'nid' => '10',
   'vid' => '13',
   'uid' => '1',
-  'title' => 'The Real McCoy',
+  'title' => 'The Real McCoy (first revision)',
   'body' => "In the original, Queen's English.",
   'teaser' => "In the original, Queen's English.",
-  'log' => '',
+  'log' => 'First revision (en)',
   'timestamp' => '1444238808',
   'format' => '1',
 ))
@@ -45408,10 +45466,10 @@
   'nid' => '11',
   'vid' => '14',
   'uid' => '1',
-  'title' => 'Le Vrai McCoy',
+  'title' => 'Le Vrai McCoy (first revision)',
   'body' => 'Ooh là là!',
   'teaser' => 'Ooh là là!',
-  'log' => '',
+  'log' => 'First revision (fr)',
   'timestamp' => '1444239050',
   'format' => '1',
 ))
@@ -45419,10 +45477,10 @@
   'nid' => '12',
   'vid' => '15',
   'uid' => '1',
-  'title' => 'Abantu zulu',
+  'title' => 'Abantu zulu (first revision)',
   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
-  'log' => '',
+  'log' => 'First revision (zu)',
   'timestamp' => '1444238808',
   'format' => '1',
 ))
@@ -45430,10 +45488,10 @@
   'nid' => '13',
   'vid' => '16',
   'uid' => '1',
-  'title' => 'The Zulu People',
+  'title' => 'The Zulu People (first revision)',
   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
-  'log' => '',
+  'log' => 'First revision (en)',
   'timestamp' => '1444239050',
   'format' => '1',
 ))
@@ -45547,6 +45605,50 @@
   'timestamp' => '1534014687',
   'format' => '1',
 ))
+->values(array(
+  'nid' => '10',
+  'vid' => '24',
+  'uid' => '1',
+  'title' => 'The Real McCoy',
+  'body' => "In the original, Queen's English.",
+  'teaser' => "In the original, Queen's English.",
+  'log' => 'Current revision (en)',
+  'timestamp' => '1521927089',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '25',
+  'uid' => '1',
+  'title' => 'Le Vrai McCoy',
+  'body' => 'Ooh là là!',
+  'teaser' => 'Ooh là là!',
+  'log' => 'Current revision (fr)',
+  'timestamp' => '1521927113',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '12',
+  'vid' => '26',
+  'uid' => '1',
+  'title' => 'Abantu zulu',
+  'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'log' => 'Current revision (zu)',
+  'timestamp' => '1521927131',
+  'format' => '1',
+))
+->values(array(
+  'nid' => '13',
+  'vid' => '27',
+  'uid' => '1',
+  'title' => 'The Zulu People',
+  'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
+  'log' => 'Current revision (en)',
+  'timestamp' => '1521927148',
+  'format' => '1',
+))
 ->execute();
 $connection->schema()->createTable('node_type', array(
   'fields' => array(
@@ -48278,7 +48380,7 @@
 ->values(array(
   'fid' => '3',
   'nid' => '12',
-  'vid' => '15',
+  'vid' => '26',
   'description' => 'file 12-15-3',
   'list' => '0',
   'weight' => '0',
diff --git a/core/modules/migrate_drupal/tests/fixtures/drupal7.php b/core/modules/migrate_drupal/tests/fixtures/drupal7.php
index dcdb0897d3..004f80ebf4 100644
--- a/core/modules/migrate_drupal/tests/fixtures/drupal7.php
+++ b/core/modules/migrate_drupal/tests/fixtures/drupal7.php
@@ -3386,6 +3386,18 @@
   'created' => '1531922278',
   'changed' => '1531922279',
 ))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'entity_id' => '25',
+  'revision_id' => '25',
+  'language' => 'en',
+  'source' => '',
+  'uid' => '1',
+  'status' => '1',
+  'translate' => '0',
+  'created' => '1564617749',
+  'changed' => '1564617749',
+))
 ->execute();
 $connection->schema()->createTable('entity_translation_revision', array(
   'fields' => array(
@@ -3856,9 +3868,9 @@
   'storage_module' => 'field_sql_storage',
   'storage_active' => '1',
   'locked' => '0',
-  'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:1:{s:10:"max_length";s:3:"256";}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:21:"field_data_field_text";a:2:{s:5:"value";s:16:"field_text_value";s:6:"format";s:17:"field_text_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_text";a:2:{s:5:"value";s:16:"field_text_value";s:6:"format";s:17:"field_text_format";}}}}}s:12:"foreign keys";a:1:{s:6:"format";a:2:{s:5:"table";s:13:"filter_format";s:7:"columns";a:1:{s:6:"format";s:6:"format";}}}s:7:"indexes";a:1:{s:6:"format";a:1:{i:0;s:6:"format";}}s:2:"id";s:2:"21";}',
+  'data' => 'a:7:{s:12:"translatable";b:1;s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:10:"max_length";s:3:"256";s:23:"entity_translation_sync";b:0;}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:21:"field_data_field_text";a:2:{s:5:"value";s:16:"field_text_value";s:6:"format";s:17:"field_text_format";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_text";a:2:{s:5:"value";s:16:"field_text_value";s:6:"format";s:17:"field_text_format";}}}}}s:12:"foreign keys";a:1:{s:6:"format";a:2:{s:5:"table";s:13:"filter_format";s:7:"columns";a:1:{s:6:"format";s:6:"format";}}}s:7:"indexes";a:1:{s:6:"format";a:1:{i:0;s:6:"format";}}s:2:"id";s:2:"21";}',
   'cardinality' => '1',
-  'translatable' => '0',
+  'translatable' => '1',
   'deleted' => '0',
 ))
 ->values(array(
@@ -5080,7 +5092,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'body_value' => "...is that it's the absolute best show ever. Trust me, I would know.",
@@ -5092,7 +5104,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '0',
   'body_value' => "is - ...is that it's the absolute best show ever. Trust me, I would know.",
@@ -5493,7 +5505,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_boolean_value' => '1',
@@ -5703,7 +5715,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_date_value' => '2015-01-20 04:15:00',
@@ -5791,7 +5803,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_date_with_end_time_value' => '1421727300',
@@ -5874,10 +5886,10 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
-  'field_date_without_time_value' => '2015-01-20T00:00:00',
+  'field_date_without_time_value' => '2015-01-19T06:00:00',
 ))
 ->execute();
 $connection->schema()->createTable('field_data_field_datetime_without_time', array(
@@ -5959,10 +5971,10 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
-  'field_datetime_without_time_value' => '2015-01-20 00:00:00',
+  'field_datetime_without_time_value' => '2015-01-19 06:00:00',
 ))
 ->execute();
 $connection->schema()->createTable('field_data_field_email', array(
@@ -6041,7 +6053,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_email_email' => 'default@example.com',
@@ -6051,7 +6063,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '1',
   'field_email_email' => 'another@example.com',
@@ -6148,7 +6160,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_file_fid' => '2',
@@ -6245,7 +6257,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_float_value' => '1',
@@ -6350,7 +6362,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_float_list_value' => '3.1416',
@@ -6542,7 +6554,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_images_fid' => '1',
@@ -6658,7 +6670,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'en',
   'delta' => '0',
   'field_integer_value' => '5',
@@ -6668,7 +6680,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'fr',
   'delta' => '0',
   'field_integer_value' => '6',
@@ -6678,7 +6690,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'is',
   'delta' => '0',
   'field_integer_value' => '7',
@@ -6820,7 +6832,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_integer_list_value' => '7',
@@ -6914,7 +6926,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_link_url' => 'http://google.com',
@@ -6926,23 +6938,23 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'field_link_url' => '<front>',
-  'field_link_title' => 'Home',
-  'field_link_attributes' => 'a:0:{}',
+  'field_link_title' => NULL,
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
 ))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '0',
   'field_link_url' => '<front>',
-  'field_link_title' => 'Home',
+  'field_link_title' => NULL,
   'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
 ))
 ->execute();
@@ -7116,7 +7128,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_node_entityreference_target_id' => '2',
@@ -7198,7 +7210,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '6',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_phone_value' => '99-99-99-99',
@@ -7318,7 +7330,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '6',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_private_file_fid' => '4',
@@ -7554,7 +7566,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'field_reference_target_id' => '5',
@@ -7564,7 +7576,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '0',
   'field_reference_target_id' => '4',
@@ -7574,7 +7586,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '4',
-  'revision_id' => '4',
+  'revision_id' => '13',
   'language' => 'und',
   'delta' => '0',
   'field_reference_target_id' => '3',
@@ -7584,7 +7596,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '5',
-  'revision_id' => '5',
+  'revision_id' => '14',
   'language' => 'und',
   'delta' => '0',
   'field_reference_target_id' => '2',
@@ -7690,7 +7702,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'field_reference_2_target_id' => '5',
@@ -7700,7 +7712,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '0',
   'field_reference_2_target_id' => '4',
@@ -7710,7 +7722,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '4',
-  'revision_id' => '4',
+  'revision_id' => '13',
   'language' => 'und',
   'delta' => '0',
   'field_reference_2_target_id' => '3',
@@ -7720,7 +7732,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '5',
-  'revision_id' => '5',
+  'revision_id' => '14',
   'language' => 'und',
   'delta' => '0',
   'field_reference_2_target_id' => '2',
@@ -7803,7 +7815,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'field_tags_tid' => '9',
@@ -7813,7 +7825,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '0',
   'field_tags_tid' => '9',
@@ -7823,7 +7835,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '1',
   'field_tags_tid' => '14',
@@ -7833,7 +7845,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '1',
   'field_tags_tid' => '14',
@@ -7843,7 +7855,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '2',
   'field_tags_tid' => '17',
@@ -7853,7 +7865,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '2',
   'field_tags_tid' => '17',
@@ -7959,7 +7971,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_term_entityreference_target_id' => '17',
@@ -7969,7 +7981,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '1',
   'field_term_entityreference_target_id' => '15',
@@ -8052,10 +8064,10 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
-  'field_term_reference_tid' => '4',
+  'field_term_reference_tid' => '25',
 ))
 ->values(array(
   'entity_type' => 'taxonomy_term',
@@ -8150,8 +8162,30 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
-  'language' => 'und',
+  'revision_id' => '16',
+  'language' => 'en',
+  'delta' => '0',
+  'field_text_value' => 'qwerty (2nd rev)',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_text_value' => 'fr - qwerty',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'is',
   'delta' => '0',
   'field_text_value' => 'qwerty',
   'field_text_format' => NULL,
@@ -8324,7 +8358,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_text_list_value' => 'Some more text',
@@ -8694,6 +8728,63 @@
   'mysql_character_set' => 'utf8',
 ));
 
+$connection->insert('field_data_field_text_plain')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_plain_value',
+  'field_text_plain_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'DS9 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'is - DS9 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'is - Firefly 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'Firefly 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->execute();
 $connection->schema()->createTable('field_data_field_text_plain_filtered', array(
   'fields' => array(
     'entity_type' => array(
@@ -9173,7 +9264,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
   'field_user_entityreference_target_id' => '2',
@@ -9279,7 +9370,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'field_vocab_fixed_tid' => '24',
@@ -9385,7 +9476,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'field_vocab_localize_tid' => '20',
@@ -9395,7 +9486,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '0',
   'field_vocab_localize_tid' => '20',
@@ -9501,7 +9592,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '2',
-  'revision_id' => '2',
+  'revision_id' => '11',
   'language' => 'und',
   'delta' => '0',
   'field_vocab_translate_tid' => '21',
@@ -9511,7 +9602,7 @@
   'bundle' => 'article',
   'deleted' => '0',
   'entity_id' => '3',
-  'revision_id' => '3',
+  'revision_id' => '12',
   'language' => 'und',
   'delta' => '0',
   'field_vocab_translate_tid' => '23',
@@ -9675,6 +9766,17 @@
   'name_field_value' => 'Term3 á íslensku',
   'name_field_format' => NULL,
 ))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '25',
+  'revision_id' => '25',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term3 in plain old English',
+  'name_field_format' => NULL,
+))
 ->execute();
 $connection->schema()->createTable('field_data_subject_field', array(
   'fields' => array(
@@ -10036,10 +10138,10 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'en',
   'delta' => '0',
-  'title_field_value' => 'An English Node',
+  'title_field_value' => 'An English Node (2nd rev)',
   'title_field_format' => NULL,
 ))
 ->values(array(
@@ -10047,10 +10149,10 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'fr',
   'delta' => '0',
-  'title_field_value' => 'A French Node',
+  'title_field_value' => 'A French Node (2nd rev)',
   'title_field_format' => NULL,
 ))
 ->values(array(
@@ -10058,7 +10160,7 @@
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'is',
   'delta' => '0',
   'title_field_value' => 'An Icelandic Node',
@@ -10185,6 +10287,18 @@
   'body_summary' => '',
   'body_format' => 'filtered_html',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => "...is that it's the absolute best show ever. Trust me, I would know.",
+  'body_summary' => '',
+  'body_format' => 'filtered_html',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -10599,6 +10713,26 @@
   'delta' => '0',
   'field_boolean_value' => '1',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_boolean_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_boolean_value' => '1',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_color', array(
   'fields' => array(
@@ -10811,98 +10945,140 @@
   'delta' => '0',
   'field_date_value' => '2015-01-20 04:15:00',
 ))
-->execute();
-$connection->schema()->createTable('field_revision_field_date_with_end_time', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_date_with_end_time_value' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'field_date_with_end_time_value2' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'revision_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_revision_field_date_with_end_time')
-->fields(array(
-  'entity_type',
-  'bundle',
-  'deleted',
-  'entity_id',
-  'revision_id',
-  'language',
-  'delta',
-  'field_date_with_end_time_value',
-  'field_date_with_end_time_value2',
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_value' => '2015-01-20 04:15:00',
 ))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'test_content_type',
   'deleted' => '0',
   'entity_id' => '1',
-  'revision_id' => '1',
+  'revision_id' => '16',
   'language' => 'und',
   'delta' => '0',
-  'field_date_with_end_time_value' => '1421727300',
-  'field_date_with_end_time_value2' => '1421727300',
+  'field_date_value' => '2015-01-20 04:15:00',
 ))
 ->execute();
-$connection->schema()->createTable('field_revision_field_date_without_time', array(
+$connection->schema()->createTable('field_revision_field_date_with_end_time', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '128',
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'default' => '0',
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'not null' => TRUE,
+      'length' => '32',
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'size' => 'normal',
+      'unsigned' => TRUE,
+    ),
+    'field_date_with_end_time_value' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+    'field_date_with_end_time_value2' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'size' => 'normal',
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'deleted',
+    'entity_id',
+    'revision_id',
+    'language',
+    'delta',
+  ),
+  'mysql_character_set' => 'utf8',
+));
+
+$connection->insert('field_revision_field_date_with_end_time')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_date_with_end_time_value',
+  'field_date_with_end_time_value2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_with_end_time_value' => '1421727300',
+  'field_date_with_end_time_value2' => '1421727300',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_with_end_time_value' => '1421727300',
+  'field_date_with_end_time_value2' => '1421727300',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_with_end_time_value' => '1421727300',
+  'field_date_with_end_time_value2' => '1421727300',
+))
+->execute();
+$connection->schema()->createTable('field_revision_field_date_without_time', array(
   'fields' => array(
     'entity_type' => array(
       'type' => 'varchar',
@@ -10982,7 +11158,27 @@
   'revision_id' => '1',
   'language' => 'und',
   'delta' => '0',
-  'field_date_without_time_value' => '2015-01-20T00:00:00',
+  'field_date_without_time_value' => '2015-01-19T06:00:00',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_without_time_value' => '2015-01-19T06:00:00',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_date_without_time_value' => '2015-01-19T06:00:00',
 ))
 ->execute();
 $connection->schema()->createTable('field_revision_field_datetime_without_time', array(
@@ -11068,7 +11264,27 @@
   'revision_id' => '1',
   'language' => 'und',
   'delta' => '0',
-  'field_datetime_without_time_value' => '2015-01-20 00:00:00',
+  'field_datetime_without_time_value' => '2015-01-19 06:00:00',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_datetime_without_time_value' => '2015-01-19 06:00:00',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_datetime_without_time_value' => '2015-01-19 06:00:00',
 ))
 ->execute();
 $connection->schema()->createTable('field_revision_field_email', array(
@@ -11153,6 +11369,26 @@
   'delta' => '0',
   'field_email_email' => 'default@example.com',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_email_email' => 'default@example.com',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_email_email' => 'default@example.com',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'test_content_type',
@@ -11163,6 +11399,26 @@
   'delta' => '1',
   'field_email_email' => 'another@example.com',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '1',
+  'field_email_email' => 'another@example.com',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'field_email_email' => 'another@example.com',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_file', array(
   'fields' => array(
@@ -11263,6 +11519,30 @@
   'field_file_display' => '1',
   'field_file_description' => 'file desc',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_file_fid' => '2',
+  'field_file_display' => '1',
+  'field_file_description' => 'file desc',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_file_fid' => '2',
+  'field_file_display' => '1',
+  'field_file_description' => 'file desc',
+))
 ->values(array(
   'entity_type' => 'user',
   'bundle' => 'user',
@@ -11359,6 +11639,26 @@
   'delta' => '0',
   'field_float_value' => '1',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_value' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_value' => '1',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_float_list', array(
   'fields' => array(
@@ -11465,6 +11765,26 @@
   'delta' => '0',
   'field_float_list_value' => '3.1416',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_list_value' => '3.1416',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_float_list_value' => '3.1416',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_image', array(
   'fields' => array(
@@ -11663,6 +11983,34 @@
   'field_images_width' => '93',
   'field_images_height' => '93',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_images_fid' => '1',
+  'field_images_alt' => 'alt text',
+  'field_images_title' => 'title text',
+  'field_images_width' => '93',
+  'field_images_height' => '93',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_images_fid' => '1',
+  'field_images_alt' => 'alt text',
+  'field_images_title' => 'title text',
+  'field_images_width' => '93',
+  'field_images_height' => '93',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_integer', array(
   'fields' => array(
@@ -11776,6 +12124,26 @@
   'delta' => '0',
   'field_integer_value' => '5',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'en',
+  'delta' => '0',
+  'field_integer_value' => '5',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'test_content_type',
@@ -11786,6 +12154,26 @@
   'delta' => '0',
   'field_integer_value' => '6',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_integer_value' => '6',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'test_content_type',
@@ -11796,6 +12184,26 @@
   'delta' => '0',
   'field_integer_value' => '7',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'is',
+  'delta' => '0',
+  'field_integer_value' => '7',
+))
 ->values(array(
   'entity_type' => 'user',
   'bundle' => 'user',
@@ -11919,6 +12327,26 @@
   'delta' => '0',
   'field_integer_list_value' => '7',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_integer_list_value' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_integer_list_value' => '7',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_link', array(
   'fields' => array(
@@ -12016,6 +12444,30 @@
   'field_link_title' => 'Click Here',
   'field_link_attributes' => 'a:1:{s:5:"title";s:10:"Click Here";}',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => 'http://google.com',
+  'field_link_title' => 'Click Here',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:10:"Click Here";}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => 'http://google.com',
+  'field_link_title' => 'Click Here',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:10:"Click Here";}',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12025,8 +12477,20 @@
   'language' => 'und',
   'delta' => '0',
   'field_link_url' => '<front>',
+  'field_link_title' => 'Home;',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
   'field_link_title' => 'Home',
-  'field_link_attributes' => 'a:0:{}',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
 ))
 ->values(array(
   'entity_type' => 'node',
@@ -12040,6 +12504,18 @@
   'field_link_title' => 'Home',
   'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_link_url' => '<front>',
+  'field_link_title' => 'Home',
+  'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_long_text', array(
   'fields' => array(
@@ -12218,6 +12694,26 @@
   'delta' => '0',
   'field_node_entityreference_target_id' => '2',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_node_entityreference_target_id' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_node_entityreference_target_id' => '2',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_phone', array(
   'fields' => array(
@@ -12311,6 +12807,26 @@
   'delta' => '0',
   'field_phone_value' => '99-99-99-99',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_phone_value' => '99-99-99-99',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_phone_value' => '99-99-99-99',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_private_file', array(
   'fields' => array(
@@ -12422,6 +12938,18 @@
   'field_private_file_display',
   'field_private_file_description',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_private_file_fid' => '4',
+  'field_private_file_display' => '1',
+  'field_private_file_description' => '',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'test_content_type',
@@ -12434,6 +12962,30 @@
   'field_private_file_display' => '1',
   'field_private_file_description' => '',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_private_file_fid' => '4',
+  'field_private_file_display' => '1',
+  'field_private_file_description' => '',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_private_file_fid' => '4',
+  'field_private_file_display' => '1',
+  'field_private_file_description' => '',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_rating', array(
   'fields' => array(
@@ -12670,6 +13222,16 @@
   'delta' => '0',
   'field_reference_target_id' => '5',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '5',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12680,6 +13242,16 @@
   'delta' => '0',
   'field_reference_target_id' => '4',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '4',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12690,6 +13262,16 @@
   'delta' => '0',
   'field_reference_target_id' => '3',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '3',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12700,6 +13282,16 @@
   'delta' => '0',
   'field_reference_target_id' => '2',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_target_id' => '2',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_reference_2', array(
   'fields' => array(
@@ -12807,6 +13399,16 @@
   'delta' => '0',
   'field_reference_2_target_id' => '5',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '5',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12817,6 +13419,16 @@
   'delta' => '0',
   'field_reference_2_target_id' => '4',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '4',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12827,6 +13439,16 @@
   'delta' => '0',
   'field_reference_2_target_id' => '3',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '3',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12837,6 +13459,16 @@
   'delta' => '0',
   'field_reference_2_target_id' => '2',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_reference_2_target_id' => '2',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_tags', array(
   'fields' => array(
@@ -12921,6 +13553,16 @@
   'delta' => '0',
   'field_tags_tid' => '9',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12931,6 +13573,16 @@
   'delta' => '0',
   'field_tags_tid' => '9',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_tags_tid' => '9',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12941,6 +13593,16 @@
   'delta' => '1',
   'field_tags_tid' => '14',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12951,6 +13613,16 @@
   'delta' => '1',
   'field_tags_tid' => '14',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '1',
+  'field_tags_tid' => '14',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12961,6 +13633,16 @@
   'delta' => '2',
   'field_tags_tid' => '17',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -12971,6 +13653,16 @@
   'delta' => '2',
   'field_tags_tid' => '17',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'field_tags_tid' => '17',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_term_entityreference', array(
   'fields' => array(
@@ -13078,6 +13770,26 @@
   'delta' => '0',
   'field_term_entityreference_target_id' => '17',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_entityreference_target_id' => '17',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_entityreference_target_id' => '17',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'test_content_type',
@@ -13088,6 +13800,26 @@
   'delta' => '1',
   'field_term_entityreference_target_id' => '15',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '1',
+  'field_term_entityreference_target_id' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'field_term_entityreference_target_id' => '15',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_term_reference', array(
   'fields' => array(
@@ -13170,7 +13902,27 @@
   'revision_id' => '1',
   'language' => 'und',
   'delta' => '0',
-  'field_term_reference_tid' => '4',
+  'field_term_reference_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_reference_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_term_reference_tid' => '25',
 ))
 ->values(array(
   'entity_type' => 'taxonomy_term',
@@ -13267,7 +14019,95 @@
   'deleted' => '0',
   'entity_id' => '1',
   'revision_id' => '1',
-  'language' => 'und',
+  'language' => 'en',
+  'delta' => '0',
+  'field_text_value' => 'qwerty',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'en',
+  'delta' => '0',
+  'field_text_value' => 'qwerty (2nd rev)',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'en',
+  'delta' => '0',
+  'field_text_value' => 'qwerty (2nd rev)',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_text_value' => 'qwerty',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_text_value' => 'qwerty',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'fr',
+  'delta' => '0',
+  'field_text_value' => 'fr - qwerty',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'is',
+  'delta' => '0',
+  'field_text_value' => 'qwerty',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'is',
+  'delta' => '0',
+  'field_text_value' => 'qwerty',
+  'field_text_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'is',
   'delta' => '0',
   'field_text_value' => 'qwerty',
   'field_text_format' => NULL,
@@ -13447,6 +14287,26 @@
   'delta' => '0',
   'field_text_list_value' => 'Some more text',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_list_value' => 'Some more text',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_list_value' => 'Some more text',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_text_long_filtered', array(
   'fields' => array(
@@ -13816,6 +14676,96 @@
   'mysql_character_set' => 'utf8',
 ));
 
+$connection->insert('field_revision_field_text_plain')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_text_plain_value',
+  'field_text_plain_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'DS9 1st rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'DS9 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'is - DS9 1st rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'is - DS9 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'is - Firefly 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '5',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'Firefly 1st rev',
+  'field_text_plain_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'field_text_plain_value' => 'Firefly 2nd rev',
+  'field_text_plain_format' => NULL,
+))
+->execute();
 $connection->schema()->createTable('field_revision_field_text_plain_filtered', array(
   'fields' => array(
     'entity_type' => array(
@@ -14284,6 +15234,48 @@
   'mysql_character_set' => 'utf8',
 ));
 
+$connection->insert('field_revision_field_user_entityreference')
+->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'field_user_entityreference_target_id',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'field_user_entityreference_target_id' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'field_user_entityreference_target_id' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'field_user_entityreference_target_id' => '2',
+))
+->execute();
 $connection->schema()->createTable('field_revision_field_vocab_fixed', array(
   'fields' => array(
     'entity_type' => array(
@@ -14390,6 +15382,16 @@
   'delta' => '0',
   'field_vocab_fixed_tid' => '24',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_fixed_tid' => '24',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_vocab_localize', array(
   'fields' => array(
@@ -14497,6 +15499,16 @@
   'delta' => '0',
   'field_vocab_localize_tid' => '20',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -14507,6 +15519,16 @@
   'delta' => '0',
   'field_vocab_localize_tid' => '20',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_localize_tid' => '20',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_field_vocab_translate', array(
   'fields' => array(
@@ -14614,6 +15636,16 @@
   'delta' => '0',
   'field_vocab_translate_tid' => '21',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '21',
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'article',
@@ -14624,6 +15656,16 @@
   'delta' => '0',
   'field_vocab_translate_tid' => '23',
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'field_vocab_translate_tid' => '23',
+))
 ->execute();
 $connection->schema()->createTable('field_revision_name_field', array(
   'fields' => array(
@@ -14784,6 +15826,17 @@
   'name_field_value' => 'Term3 á íslensku',
   'name_field_format' => NULL,
 ))
+->values(array(
+  'entity_type' => 'taxonomy_term',
+  'bundle' => 'test_vocabulary',
+  'deleted' => '0',
+  'entity_id' => '25',
+  'revision_id' => '25',
+  'language' => 'en',
+  'delta' => '0',
+  'name_field_value' => 'Term3 in plain old English',
+  'name_field_format' => NULL,
+))
 ->execute();
 $connection->schema()->createTable('field_revision_subject_field', array(
   'fields' => array(
@@ -15151,7 +16204,29 @@
   'revision_id' => '1',
   'language' => 'en',
   'delta' => '0',
-  'title_field_value' => 'An English Node',
+  'title_field_value' => 'An English Node (1st rev)',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'en',
+  'delta' => '0',
+  'title_field_value' => 'An English Node (2nd rev)',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'en',
+  'delta' => '0',
+  'title_field_value' => 'An English Node (2nd rev)',
   'title_field_format' => NULL,
 ))
 ->values(array(
@@ -15165,6 +16240,28 @@
   'title_field_value' => 'A French Node',
   'title_field_format' => NULL,
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'fr',
+  'delta' => '0',
+  'title_field_value' => 'A French Node',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'fr',
+  'delta' => '0',
+  'title_field_value' => 'A French Node (2nd rev)',
+  'title_field_format' => NULL,
+))
 ->values(array(
   'entity_type' => 'node',
   'bundle' => 'test_content_type',
@@ -15176,6 +16273,28 @@
   'title_field_value' => 'An Icelandic Node',
   'title_field_format' => NULL,
 ))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '15',
+  'language' => 'is',
+  'delta' => '0',
+  'title_field_value' => 'An Icelandic Node',
+  'title_field_format' => NULL,
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'test_content_type',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '16',
+  'language' => 'is',
+  'delta' => '0',
+  'title_field_value' => 'An Icelandic Node',
+  'title_field_format' => NULL,
+))
 ->execute();
 $connection->schema()->createTable('file_managed', array(
   'fields' => array(
@@ -15346,14 +16465,14 @@
   'module' => 'file',
   'type' => 'node',
   'id' => '1',
-  'count' => '3',
+  'count' => '5',
 ))
 ->values(array(
   'fid' => '2',
   'module' => 'file',
   'type' => 'node',
   'id' => '1',
-  'count' => '2',
+  'count' => '4',
 ))
 ->values(array(
   'fid' => '2',
@@ -15369,6 +16488,13 @@
   'id' => '1',
   'count' => '1',
 ))
+->values(array(
+  'fid' => '4',
+  'module' => 'file',
+  'type' => 'node',
+  'id' => '1',
+  'count' => '3',
+))
 ->execute();
 $connection->schema()->createTable('filter', array(
   'fields' => array(
@@ -17814,612 +18940,4860 @@
   'version',
 ))
 ->values(array(
-  'lid' => '1',
-  'location' => 'misc/drupal.js',
+  'lid' => '1',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An AJAX HTTP error occurred.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '2',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'HTTP Result Code: !status',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '3',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'An AJAX HTTP request terminated abnormally.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '4',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'Debugging information follows.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '5',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'Path: !uri',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '6',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'StatusText: !statusText',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '7',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'ResponseText: !responseText',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '8',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'ReadyState: !readyState',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '9',
+  'location' => 'misc/collapse.js',
+  'textgroup' => 'default',
+  'source' => 'Hide',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '10',
+  'location' => 'misc/collapse.js',
+  'textgroup' => 'default',
+  'source' => 'Show',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '11',
+  'location' => 'modules/toolbar/toolbar.js',
+  'textgroup' => 'default',
+  'source' => 'Show shortcuts',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '12',
+  'location' => 'modules/toolbar/toolbar.js',
+  'textgroup' => 'default',
+  'source' => 'Hide shortcuts',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '13',
+  'location' => 'misc/machine-name.js',
+  'textgroup' => 'default',
+  'source' => 'Edit',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '14',
+  'location' => 'modules/comment/comment-node-form.js',
+  'textgroup' => 'default',
+  'source' => '@number comments per page',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '15',
+  'location' => 'misc/vertical-tabs.js',
+  'textgroup' => 'default',
+  'source' => '(active tab)',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '16',
+  'location' => 'modules/node/content_types.js',
+  'textgroup' => 'default',
+  'source' => 'Requires a title',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '17',
+  'location' => 'modules/node/content_types.js; modules/node/node.js',
+  'textgroup' => 'default',
+  'source' => 'Not published',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '18',
+  'location' => 'modules/node/content_types.js',
+  'textgroup' => 'default',
+  'source' => "Don't display post information",
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '19',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Re-order rows by numerical weight instead of dragging.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '20',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Show row weights',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '21',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Hide row weights',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '22',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Drag to re-order',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '23',
+  'location' => 'misc/tabledrag.js',
+  'textgroup' => 'default',
+  'source' => 'Changes made in this table will not be saved until the form is submitted.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '24',
+  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
+  'textgroup' => 'default',
+  'source' => 'Other',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '25',
+  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
+  'textgroup' => 'default',
+  'source' => '@count year from now',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '26',
+  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
+  'textgroup' => 'default',
+  'source' => '@count years from now',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '27',
+  'location' => 'modules/file/file.js',
+  'textgroup' => 'default',
+  'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '28',
+  'location' => 'misc/ajax.js',
+  'textgroup' => 'default',
+  'source' => 'Please wait...',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '29',
+  'location' => 'modules/field/modules/text/text.js',
+  'textgroup' => 'default',
+  'source' => 'Hide summary',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '30',
+  'location' => 'modules/field/modules/text/text.js',
+  'textgroup' => 'default',
+  'source' => 'Edit summary',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '31',
+  'location' => 'misc/autocomplete.js',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete popup',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '32',
+  'location' => 'misc/autocomplete.js',
+  'textgroup' => 'default',
+  'source' => 'Searching for matches...',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '33',
+  'location' => 'modules/contextual/contextual.js',
+  'textgroup' => 'default',
+  'source' => 'Configure',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '34',
+  'location' => 'misc/tableselect.js',
+  'textgroup' => 'default',
+  'source' => 'Select all rows in this table',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '35',
+  'location' => 'misc/tableselect.js',
+  'textgroup' => 'default',
+  'source' => 'Deselect all rows in this table',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '36',
+  'location' => 'modules/user/user.permissions.js',
+  'textgroup' => 'default',
+  'source' => 'This permission is inherited from the authenticated user role.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '37',
+  'location' => 'modules/filter/filter.admin.js',
+  'textgroup' => 'default',
+  'source' => 'Enabled',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '38',
+  'location' => 'modules/filter/filter.admin.js',
+  'textgroup' => 'default',
+  'source' => 'Disabled',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '39',
+  'location' => 'modules/menu/menu.js',
+  'textgroup' => 'default',
+  'source' => 'Not in menu',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '40',
+  'location' => 'modules/book/book.js',
+  'textgroup' => 'default',
+  'source' => 'Not in book',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '41',
+  'location' => 'modules/book/book.js',
+  'textgroup' => 'default',
+  'source' => 'New book',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '42',
+  'location' => 'modules/node/node.js',
+  'textgroup' => 'default',
+  'source' => 'New revision',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '43',
+  'location' => 'modules/node/node.js',
+  'textgroup' => 'default',
+  'source' => 'No revision',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '44',
+  'location' => 'modules/node/node.js',
+  'textgroup' => 'default',
+  'source' => 'By @name on @date',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '45',
+  'location' => 'modules/node/node.js',
+  'textgroup' => 'default',
+  'source' => 'By @name',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '46',
+  'location' => 'modules/path/path.js',
+  'textgroup' => 'default',
+  'source' => 'Alias: @alias',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '47',
+  'location' => 'modules/path/path.js',
+  'textgroup' => 'default',
+  'source' => 'No alias',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '48',
+  'location' => 'misc/drupal.js',
+  'textgroup' => 'default',
+  'source' => 'CustomMessage: !customMessage',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '49',
+  'location' => 'modules/block/block.js; sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'textgroup' => 'default',
+  'source' => 'Not restricted',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '50',
+  'location' => 'modules/block/block.js',
+  'textgroup' => 'default',
+  'source' => 'Restricted to certain pages',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '51',
+  'location' => 'modules/block/block.js',
+  'textgroup' => 'default',
+  'source' => 'Not customizable',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '52',
+  'location' => 'modules/block/block.js',
+  'textgroup' => 'default',
+  'source' => 'The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '53',
+  'location' => 'modules/block/block.js',
+  'textgroup' => 'default',
+  'source' => 'The block cannot be placed in this region.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '54',
+  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'textgroup' => 'default',
+  'source' => 'Translatable',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '55',
+  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'textgroup' => 'default',
+  'source' => 'Not translatable',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '56',
+  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'textgroup' => 'default',
+  'source' => 'Restricted to certain languages',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '57',
+  'location' => 'blocks:block:1:title',
+  'textgroup' => 'blocks',
+  'source' => 'Mildly amusing limerick of the day',
+  'context' => 'block:1:title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '58',
+  'location' => 'misc/ajax.js',
+  'textgroup' => 'default',
+  'source' => 'The response failed verification so will not be processed.',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '59',
+  'location' => 'misc/ajax.js',
+  'textgroup' => 'default',
+  'source' => 'The callback URL is not local and not trusted: !url',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '60',
+  'location' => 'blocks:block:1:body',
+  'textgroup' => 'blocks',
+  'source' => "A fellow jumped off a high wall\r\nAnd had a most terrible fall\r\nHe went back to bed\r\nWith a bump on his head\r\nThat's why you don't jump off a wall",
+  'context' => 'block:1:body',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '61',
+  'location' => 'node:type:article:name',
+  'textgroup' => 'node',
+  'source' => 'Article',
+  'context' => 'type:article:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '62',
+  'location' => 'node:type:article:title_label',
+  'textgroup' => 'node',
+  'source' => 'Title',
+  'context' => 'type:article:title_label',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '63',
+  'location' => 'node:type:article:description',
+  'textgroup' => 'node',
+  'source' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
+  'context' => 'type:article:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '64',
+  'location' => 'node:type:article:help',
+  'textgroup' => 'node',
+  'source' => 'Help text for articles',
+  'context' => 'type:article:help',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '65',
+  'location' => 'node:type:book:name',
+  'textgroup' => 'node',
+  'source' => 'Book page',
+  'context' => 'type:book:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '66',
+  'location' => 'node:type:book:title_label',
+  'textgroup' => 'node',
+  'source' => 'Title',
+  'context' => 'type:book:title_label',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '67',
+  'location' => 'node:type:book:description',
+  'textgroup' => 'node',
+  'source' => '<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.',
+  'context' => 'type:book:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '68',
+  'location' => 'node:type:page:name',
+  'textgroup' => 'node',
+  'source' => 'Basic page',
+  'context' => 'type:page:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '69',
+  'location' => 'node:type:page:title_label',
+  'textgroup' => 'node',
+  'source' => 'Title',
+  'context' => 'type:page:title_label',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '70',
+  'location' => 'node:type:page:description',
+  'textgroup' => 'node',
+  'source' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
+  'context' => 'type:page:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '71',
+  'location' => 'node:type:page:help',
+  'textgroup' => 'node',
+  'source' => 'Help text for basic pages',
+  'context' => 'type:page:help',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '72',
+  'location' => 'node:type:test_content_type:name',
+  'textgroup' => 'node',
+  'source' => 'Test content type',
+  'context' => 'type:test_content_type:name',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '73',
+  'location' => 'node:type:test_content_type:title_label',
+  'textgroup' => 'node',
+  'source' => 'Title',
+  'context' => 'type:test_content_type:title_label',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '74',
+  'location' => 'node:type:test_content_type:description',
+  'textgroup' => 'node',
+  'source' => 'This is the description of the test content type.',
+  'context' => 'type:test_content_type:description',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '75',
+  'location' => 'node:type:test_content_type:help',
+  'textgroup' => 'node',
+  'source' => 'Help text for test content type',
+  'context' => 'type:test_content_type:help',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '76',
+  'location' => 'blocks:user:login:title',
+  'textgroup' => 'blocks',
+  'source' => 'User login title',
+  'context' => 'user:login:title',
+  'version' => '1',
+))
+->values(array(
+  'lid' => '77',
+  'location' => 'sites/all/modules/entity_translation/entity_translation.node-form.js',
+  'textgroup' => 'default',
+  'source' => 'Translation published',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '78',
+  'location' => 'sites/all/modules/entity_translation/entity_translation.node-form.js',
+  'textgroup' => 'default',
+  'source' => 'Translation not published',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '79',
+  'location' => 'sites/all/modules/entity_translation/entity_translation.node-form.js',
+  'textgroup' => 'default',
+  'source' => 'Flag translations as outdated',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '80',
+  'location' => 'sites/all/modules/entity_translation/entity_translation.node-form.js',
+  'textgroup' => 'default',
+  'source' => 'Do not flag translations as outdated',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '81',
+  'location' => 'sites/all/modules/entity_translation/entity_translation.node-form.js',
+  'textgroup' => 'default',
+  'source' => 'Needs to be updated',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '82',
+  'location' => 'sites/all/modules/entity_translation/entity_translation.node-form.js',
+  'textgroup' => 'default',
+  'source' => 'Does not need to be updated',
+  'context' => '',
+  'version' => 'none',
+))
+->values(array(
+  'lid' => '83',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Public files',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '84',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Public local files served by the webserver.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '85',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Temporary files',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '86',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Temporary local files for upload and previews.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '87',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Private files',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '88',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Private local files served by Drupal.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '89',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Title',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '90',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Name',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '91',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Description',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '92',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Subject',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '93',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Comment',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '94',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Full comment',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '95',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Blog entry',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '96',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Use for multi-user blogs. Every user gets a personal blog.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '97',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Forum topic',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '98',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'A <em>forum topic</em> starts a new discussion thread within a forum.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '99',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@node_type comment',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '100',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '101',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Full content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '102',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Teaser',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '103',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'RSS',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '104',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Search index',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '105',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Search result highlighting input',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '106',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'File',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '107',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy term',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '108',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy term page',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '109',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy vocabulary',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '110',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '111',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User account',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '112',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'A special cache used to store objects that are being edited; it serves to save state in an ordinarily stateless environment.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '113',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Print',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '114',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Nodes',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '115',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Users',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '116',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Files',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '117',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Nodes represent the main site content items.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '118',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Users who have created accounts on your site.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '119',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Uploaded file.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '120',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Comments',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '121',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Remark or note that refers to a node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '122',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy terms',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '123',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy terms are used for classifying content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '124',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy vocabularies',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '125',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Vocabularies contain related taxonomy terms, which are used for classifying content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '126',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'French',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '127',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Long',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '128',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Medium',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '129',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Short',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '130',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '<em>Edit @type</em> @title',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '131',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'When either saving new content or updating existing content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '132',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After saving new content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '133',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After saving updated content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '134',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After deleting content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '135',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'When content is viewed by an authenticated user',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '136',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'When either saving a new comment or updating an existing comment',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '137',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After saving a new comment',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '138',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After saving an updated comment',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '139',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After deleting a comment',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '140',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'When a comment is being viewed by an authenticated user',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '141',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After saving a new term to the database',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '142',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After saving an updated term to the database',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '143',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After deleting a term',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '144',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'When cron runs',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '145',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After creating a new user account',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '146',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After updating a user account',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '147',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After a user has been deleted',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '148',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After a user has logged in',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '149',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'After a user has logged out',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '150',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => "When a user's profile is being viewed",
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '151',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Revision information',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '152',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Create new revision',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '153',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Revision log message',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '154',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Provide an explanation of the changes you are making. This will help other authors understand your motivations.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '155',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Authoring information',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '156',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Anonymous',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '157',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Authored by',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '158',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Leave blank for %anonymous.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '159',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Authored on',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '160',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Format: %time. The date format is YYYY-MM-DD and %timezone is the time zone offset from UTC. Leave blank to use the time of form submission.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '161',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Publishing options',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '162',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Published',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '163',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Promoted to front page',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '164',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Sticky at top of lists',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '165',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Save',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '166',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Preview',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '167',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Delete',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '168',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Date',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '169',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '170',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Date (ISO format)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '171',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '172',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Date (Unix timestamp)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '173',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Store a date in the database as a timestamp, deprecated format to support legacy data.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '174',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores and renders email addresses.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '175',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Entity Reference',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '176',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field reference another entity.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '177',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores the ID of a file as an integer value.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '178',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Image',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '179',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores the ID of an image file as an integer value.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '180',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Link',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '181',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Store a title, href, and attributes in the database to assemble a link.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '182',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'List (integer)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '183',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => "This field stores integer values from a list of allowed 'value => label' pairs, i.e. 'Lifetime in days': 1 => 1 day, 7 => 1 week, 31 => 1 month.",
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '184',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'List (float)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '185',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => "This field stores float values from a list of allowed 'value => label' pairs, i.e. 'Fraction': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.",
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '186',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'List (text)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '187',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => "This field stores text values from a list of allowed 'value => label' pairs, i.e. 'US States': IL => Illinois, IA => Iowa, IN => Indiana.",
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '188',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Boolean',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '189',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores simple on/off or yes/no options.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '190',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Integer',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '191',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores a number in the database as an integer.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '192',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Decimal',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '193',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores a number in the database in a fixed decimal format.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '194',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Float',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '195',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores a number in the database in a floating point format.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '196',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Phone Number',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '197',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Term reference',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '198',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores a reference to a taxonomy term.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '199',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '200',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores varchar text in the database.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '201',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Long text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '202',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores long text in the database.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '203',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Long text and summary',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '204',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field stores long text in the database along with optional summary text.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '205',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Select list',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '206',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Text field',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '207',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '208',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'An autocomplete text field.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '209',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete (Tags style)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '210',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Check boxes/radio buttons',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '211',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Single on/off checkbox',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '212',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete term widget (tagging)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '213',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Text area (multiple rows)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '214',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Text area with a summary',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '215',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Linked and wrapped',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '216',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Date and time',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '217',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Time ago',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '218',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Plain',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '219',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Default email link',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '220',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Display the email address as a mailto link.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '221',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Email contact form',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '222',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Display a contact form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '223',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Email plain text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '224',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Display the email address as plain text.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '225',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Label',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '226',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Display the label of the referenced entities.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '227',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Entity id',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '228',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Display the id of the referenced entities.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '229',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Rendered entity',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '230',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Display the referenced entities rendered by entity_view().',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '231',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Generic file',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '232',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Table of files',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '233',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL to file',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '234',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Default translated',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '235',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Title, as link (default)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '236',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Title, as plain text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '237',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Host, as plain text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '238',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL, as link',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '239',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL, as plain text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '240',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL, absolute',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '241',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Domain, as link',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '242',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL with the protocol removed',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '243',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Short, as link with title "Link"',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '244',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Label, as link with label as title',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '245',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Separate title and URL',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '246',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Default',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '247',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Key',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '248',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Unformatted',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '249',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Plain text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '250',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'RSS category',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '251',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Trimmed',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '252',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Summary or trimmed',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '253',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Default SQL storage',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '254',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Stores fields in the local SQL database, using per-field tables.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '255',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Field',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '256',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Field instance',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '257',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Default value',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '258',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Block',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '259',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Body',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '260',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Fields',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '261',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Configurable fields descriptions, defaults, options, etc.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '262',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Blocks',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '263',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Configurable blocks titles and content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '264',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Weight for row @number',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '265',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add another item',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '266',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '- None -',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '267',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'N/A',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '268',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Summary',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '269',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Leave blank to use trimmed value of full text as the summary.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '270',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Simple (with optional filter by bundle)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '271',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Book outline',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '272',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Weight',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '273',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Pages at a given level are ordered first by weight and then by title.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '274',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Book',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '275',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Your page will be a part of the selected book.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '276',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Change book (update list of parents)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '277',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Comment settings',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '278',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Open',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '279',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Closed',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '280',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Hidden',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '281',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Users with the "Post comments" permission can post comments.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '282',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Users cannot post comments, but existing comments will be displayed.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '283',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Comments are hidden from view.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '284',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Language',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '285',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Language neutral',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '286',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'English',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '287',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Icelandic',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '288',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Main menu',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '289',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Management',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '290',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Test Menu',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '291',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Navigation',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '292',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User menu',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '293',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL path settings',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '294',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL alias',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '295',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => "Optionally specify an alternative URL by which this content can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don't add a trailing slash or the URL alias won't work.",
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '296',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Original language',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '297',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Delete translation',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '298',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Translation',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '299',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'An unpublished translation will not be visible for non-administrators.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '300',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This translation is published',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '301',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This translation needs to be updated',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '302',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'When this option is checked, this translation needs to be updated because the source post has changed. Uncheck when the translation is up to date again.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '303',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'all languages',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '304',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User autocomplete',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '305',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Show End Date',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '306',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@field_name',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '307',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Jan',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '308',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Feb',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '309',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Mar',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '310',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Apr',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '311',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'May',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '312',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Jun',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '313',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Jul',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '314',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Aug',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '315',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Sep',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '316',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Oct',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '317',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Nov',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '318',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Dec',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '319',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Month',
+  'context' => 'datetime',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '320',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Day',
+  'context' => 'datetime',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '321',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Year',
+  'context' => 'datetime',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '322',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Hour',
+  'context' => 'datetime',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '323',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Minute',
+  'context' => 'datetime',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '324',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'to:',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '325',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => "Empty 'End date' values will use the 'Start date' values.",
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '326',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@field_name Start date',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '327',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@field_name End date',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '328',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Format: @date',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '329',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Upload',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '330',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Remove',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '331',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Choose a file',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '332',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Microsoft Office document icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '333',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Office spreadsheet icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '334',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Office presentation icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '335',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'PDF icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '336',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Movie icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '337',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Audio icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '338',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Image icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '339',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Package icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '340',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'HTML icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '341',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Plain text icon',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '342',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Binary Data',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '343',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The description may be used as the label of the link to the file.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '344',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Alternate text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '345',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This text will be used by screen readers, search engines, or when the image cannot be loaded.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '346',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The title is used as a tool tip when the user hovers the mouse over the image.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '347',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'URL',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '348',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The link title is limited to @maxlength characters maximum.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '349',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Link "title" attribute',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '350',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Text format',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '351',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Autocomplete taxonomy',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '352',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Entity Reference Autocomplete',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '353',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '354',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Help',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '355',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Page top',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '356',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Page bottom',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '357',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'First sidebar',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '358',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'View',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '359',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Translate',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '360',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Outline',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '361',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Revisions',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '362',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Track',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '363',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add to %shortcut_set shortcuts',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '364',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Home',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '365',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'You are here',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '366',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Status message',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '367',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Error message',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '368',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Warning message',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '369',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Primary tabs',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '370',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '!local-task-title!active',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '371',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Secondary tabs',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '372',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'This field is required.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '373',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '!title !required',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '374',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Datetime without time (all languages)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '375',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Date without time (all languages)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '376',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Date (all languages)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '377',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Date With End Time (all languages)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '378',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Order',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '379',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size KB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '380',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size MB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '381',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size GB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '382',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size TB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '383',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size PB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '384',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size EB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '385',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size ZB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '386',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => '@size YB',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '387',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'More information about text formats',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '388',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Limit allowed HTML tags',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '389',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Convert line breaks into HTML (i.e. <code>&lt;br&gt;</code> and <code>&lt;p&gt;</code>)',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '390',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Convert URLs into links',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '391',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Correct faulty and chopped off HTML',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '392',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Display any HTML as plain text',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '393',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'PHP evaluator',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '394',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Executes a piece of PHP code. The usage of this filter should be restricted to administrators only!',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '395',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Web page addresses and e-mail addresses turn into links automatically.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '396',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Allowed HTML tags: @tags',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '397',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Lines and paragraphs break automatically.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '398',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'No HTML tags allowed.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '399',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'You may post PHP code. You should include &lt;?php ?&gt; tags.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '400',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Vertical Tabs',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '401',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Appearance',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '402',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Select and configure your themes.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '403',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Configuration',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '404',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Administer settings.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '405',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Administer content and comments.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '406',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Index',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '407',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Modules',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '408',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Extend site functionality.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '409',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'People',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '410',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Manage user accounts, roles, and permissions.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '411',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Reports',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '412',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'View reports, updates, and errors.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '413',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Structure',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '414',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Administer blocks, content types, menus, etc.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '415',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Tasks',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '416',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Reference for usage, configuration, and modules.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '417',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Administrative toolbar',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '418',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Hello <strong>@username</strong>',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '419',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Log out',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '420',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '421',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Edit shortcuts',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '422',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Skip to main content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '423',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Entity field',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '424',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Entity extra field',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '425',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Secondary navigation links',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '426',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the secondary_links (local tasks) as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '427',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Page elements',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '428',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Status messages',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '429',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the status messages of the current page as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '430',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Actions',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '431',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the action links (local tasks) as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '432',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Site slogan',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '433',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => "Add the site's slogan as content.",
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '434',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the help text of the current page as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '435',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Feed icons',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '436',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the site feed_icons statement as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '437',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Site name',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '438',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The name of the site, optionally links to the front page.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '439',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Site logo',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '440',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the logo trail as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '441',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Primary navigation links',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '442',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the primary_links (local tasks) as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '443',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Tabs',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '444',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the tabs (local tasks) as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '445',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Page title',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '446',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the page title as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '447',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Breadcrumb',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '448',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add the breadcrumb trail as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '449',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User picture',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '450',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The picture of a user.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '451',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User links',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '452',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User links of the referenced user.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '453',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User profile',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '454',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The profile of a user.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '455',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'User signature',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '456',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The signature of a user.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '457',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'General form',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '458',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Everything in the form that is not displayed by other content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '459',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Form',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '460',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Term name',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '461',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The name of this taxonomy term.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '462',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Term',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '463',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Term description',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '464',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Term description.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '465',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'List of related terms',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '466',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Terms related to an existing term; may be child, siblings or top level.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '467',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Existing node',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '468',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Add a node from your site as content.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '469',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Custom',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '470',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Custom content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '471',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node created date',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '472',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The date the referenced node was created.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '473',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node terms',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '474',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Taxonomy terms of the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '475',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node title',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '476',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The title of the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '477',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Book navigation menu',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '478',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The book menu belonging to the current book node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '479',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node body',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '480',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The body of the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '481',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node content',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '482',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The content of the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '483',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node type description',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '484',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node type description.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '485',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Book children',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '486',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The children menu the book the node belongs to.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '487',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node last updated date',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '488',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The date the referenced node was last updated.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '489',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Comments and comment form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '490',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The comments and comment form for the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '491',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node author',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '492',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The author of the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '493',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node comments',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '494',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The comments of the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '495',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Comment form',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '496',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'A form to add a new comment.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '497',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Attached files',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '498',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'A list of files attached to the node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '499',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node links',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '500',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node links of the referenced node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '501',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Book navigation pager',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '502',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The navigational pager and sub pages of the current book node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '503',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Vocabulary terms',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '504',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'All the terms in a vocabulary.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '505',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Vocabulary',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '506',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Tokens',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '507',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form menu settings',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '508',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Menu settings on the Node form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '509',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form author information',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '510',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Author information on the Node form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '511',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form publishing options',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '512',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Publishing options on the Node form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '513',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form revision log message',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '514',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Revision log message for the node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '515',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form book options',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '516',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Book options for the node.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '517',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form languages',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '518',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The language selection form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '519',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form comment settings',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '520',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Comment settings on the Node form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '521',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form submit buttons',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '522',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Submit buttons for the node form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '523',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form title field',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '524',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The node title form.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '525',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Node form url path settings',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '526',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'Contact form',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '527',
+  'location' => '/fr/node/1/edit/fr',
+  'textgroup' => 'default',
+  'source' => 'The site contact form that allows users to send a message to site administrators.',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '528',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'An AJAX HTTP error occurred.',
+  'source' => 'Widgets',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '2',
-  'location' => 'misc/drupal.js',
+  'lid' => '529',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'HTTP Result Code: !status',
+  'source' => 'User contact form',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '3',
-  'location' => 'misc/drupal.js',
+  'lid' => '530',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'An AJAX HTTP request terminated abnormally.',
+  'source' => 'The site contact form that allows users to contact other users.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '4',
-  'location' => 'misc/drupal.js',
+  'lid' => '531',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Debugging information follows.',
+  'source' => 'Advanced search form',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '5',
-  'location' => 'misc/drupal.js',
+  'lid' => '532',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Path: !uri',
+  'source' => 'A search form with advanced options.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '6',
-  'location' => 'misc/drupal.js',
+  'lid' => '533',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'StatusText: !statusText',
+  'source' => 'Keywords',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '7',
-  'location' => 'misc/drupal.js',
+  'lid' => '534',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'ResponseText: !responseText',
+  'source' => 'Search results',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '8',
-  'location' => 'misc/drupal.js',
+  'lid' => '535',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'ReadyState: !readyState',
+  'source' => 'The results of a search using keywords.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '9',
-  'location' => 'misc/collapse.js',
+  'lid' => '536',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Hide',
+  'source' => 'Comment created date',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '10',
-  'location' => 'misc/collapse.js',
+  'lid' => '537',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Show',
+  'source' => 'The date the referenced comment was created.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '11',
-  'location' => 'modules/toolbar/toolbar.js',
+  'lid' => '538',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Show shortcuts',
+  'source' => 'Comment links',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '12',
-  'location' => 'modules/toolbar/toolbar.js',
+  'lid' => '539',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Hide shortcuts',
+  'source' => 'Comment links of the referenced comment.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '13',
-  'location' => 'misc/machine-name.js',
+  'lid' => '540',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Edit',
+  'source' => 'Comment Reply Form',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '14',
-  'location' => 'modules/comment/comment-node-form.js',
+  'lid' => '541',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => '@number comments per page',
+  'source' => 'A form to add a new comment reply.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '15',
-  'location' => 'misc/vertical-tabs.js',
+  'lid' => '542',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => '(active tab)',
+  'source' => 'Only numbers and the decimal separator (@separator) allowed in %field.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '16',
-  'location' => 'modules/node/content_types.js',
+  'lid' => '543',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Requires a title',
+  'source' => 'Only numbers are allowed in %field.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '17',
-  'location' => 'modules/node/content_types.js; modules/node/node.js',
+  'lid' => '544',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Not published',
+  'source' => 'Taxonomy index',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '18',
-  'location' => 'modules/node/content_types.js',
+  'lid' => '545',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => "Don't display post information",
+  'source' => 'Include the term references created by instances of this field carried by node entities in the core {taxonomy_index} table. This will allow various modules to handle them like core term_reference fields.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '19',
-  'location' => 'misc/tabledrag.js',
+  'lid' => '546',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Re-order rows by numerical weight instead of dragging.',
+  'source' => 'view',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '20',
-  'location' => 'misc/tabledrag.js',
+  'lid' => '547',
+  'location' => '/fr/node/1/edit/fr',
   'textgroup' => 'default',
-  'source' => 'Show row weights',
+  'source' => '@type %title has been updated.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '21',
-  'location' => 'misc/tabledrag.js',
+  'lid' => '548',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Hide row weights',
+  'source' => 'Monday',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '22',
-  'location' => 'misc/tabledrag.js',
+  'lid' => '549',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Drag to re-order',
+  'source' => 'January',
+  'context' => 'Long month name',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '550',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Add child page',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '23',
-  'location' => 'misc/tabledrag.js',
+  'lid' => '551',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Changes made in this table will not be saved until the form is submitted.',
+  'source' => 'Printer-friendly version',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '24',
-  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
+  'lid' => '552',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Other',
+  'source' => 'Show a printer-friendly version of this book page and its sub-pages.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '25',
-  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
+  'lid' => '553',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => '@count year from now',
+  'source' => 'Add new comment',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '26',
-  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
+  'lid' => '554',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => '@count years from now',
+  'source' => 'Share your thoughts and opinions related to this posting.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '27',
-  'location' => 'modules/file/file.js',
+  'lid' => '555',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
+  'source' => 'delete',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '28',
-  'location' => 'misc/ajax.js',
+  'lid' => '556',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Please wait...',
+  'source' => 'edit',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '29',
-  'location' => 'modules/field/modules/text/text.js',
+  'lid' => '557',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Hide summary',
+  'source' => 'reply',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '30',
-  'location' => 'modules/field/modules/text/text.js',
+  'lid' => '558',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Edit summary',
+  'source' => 'Your name',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '31',
-  'location' => 'misc/autocomplete.js',
+  'lid' => '559',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Autocomplete popup',
+  'source' => 'View user profile.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '32',
-  'location' => 'misc/autocomplete.js',
+  'lid' => '560',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Searching for matches...',
+  'source' => 'E-mail',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '33',
-  'location' => 'modules/contextual/contextual.js',
+  'lid' => '561',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Configure',
+  'source' => 'The content of this field is kept private and will not be shown publicly.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '34',
-  'location' => 'misc/tableselect.js',
+  'lid' => '562',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Select all rows in this table',
+  'source' => 'Homepage',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '35',
-  'location' => 'misc/tableselect.js',
+  'lid' => '563',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Deselect all rows in this table',
+  'source' => 'Status',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '36',
-  'location' => 'modules/user/user.permissions.js',
+  'lid' => '564',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'This permission is inherited from the authenticated user role.',
+  'source' => '@count reads',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '37',
-  'location' => 'modules/filter/filter.admin.js',
+  'lid' => '565',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Enabled',
+  'source' => 'Header',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '38',
-  'location' => 'modules/filter/filter.admin.js',
+  'lid' => '566',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Disabled',
+  'source' => 'Highlighted',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '39',
-  'location' => 'modules/menu/menu.js',
+  'lid' => '567',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Not in menu',
+  'source' => 'Featured',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '40',
-  'location' => 'modules/book/book.js',
+  'lid' => '568',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Not in book',
+  'source' => 'Sidebar first',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '41',
-  'location' => 'modules/book/book.js',
+  'lid' => '569',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'New book',
+  'source' => 'Sidebar second',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '42',
-  'location' => 'modules/node/node.js',
+  'lid' => '570',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'New revision',
+  'source' => 'Triptych first',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '43',
-  'location' => 'modules/node/node.js',
+  'lid' => '571',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'No revision',
+  'source' => 'Triptych middle',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '44',
-  'location' => 'modules/node/node.js',
+  'lid' => '572',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'By @name on @date',
+  'source' => 'Triptych last',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '45',
-  'location' => 'modules/node/node.js',
+  'lid' => '573',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'By @name',
+  'source' => 'Footer first column',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '46',
-  'location' => 'modules/path/path.js',
+  'lid' => '574',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Alias: @alias',
+  'source' => 'Footer second column',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '47',
-  'location' => 'modules/path/path.js',
+  'lid' => '575',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'No alias',
+  'source' => 'Footer third column',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '48',
-  'location' => 'misc/drupal.js',
+  'lid' => '576',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'CustomMessage: !customMessage',
+  'source' => 'Footer fourth column',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '49',
-  'location' => 'modules/block/block.js; sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'lid' => '577',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Not restricted',
+  'source' => 'Footer',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '50',
-  'location' => 'modules/block/block.js',
+  'lid' => '578',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Restricted to certain pages',
+  'source' => 'Search',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '51',
-  'location' => 'modules/block/block.js',
+  'lid' => '579',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Not customizable',
+  'source' => 'Enter the terms you wish to search for.',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '52',
-  'location' => 'modules/block/block.js',
+  'lid' => '580',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.',
+  'source' => 'Compose tips',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '53',
-  'location' => 'modules/block/block.js',
+  'lid' => '581',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'The block cannot be placed in this region.',
+  'source' => 'Blogs',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '54',
-  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'lid' => '582',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Translatable',
+  'source' => 'Books',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '55',
-  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'lid' => '583',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Not translatable',
+  'source' => 'Contact',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '56',
-  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
+  'lid' => '584',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'Restricted to certain languages',
+  'source' => 'Feed aggregator',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '57',
-  'location' => 'blocks:block:1:title',
-  'textgroup' => 'blocks',
-  'source' => 'Mildly amusing limerick of the day',
-  'context' => 'block:1:title',
-  'version' => '1',
+  'lid' => '585',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Forums',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '58',
-  'location' => 'misc/ajax.js',
+  'lid' => '586',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'The response failed verification so will not be processed.',
+  'source' => 'Recent content',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '59',
-  'location' => 'misc/ajax.js',
+  'lid' => '587',
+  'location' => '/fr/node/1',
   'textgroup' => 'default',
-  'source' => 'The callback URL is not local and not trusted: !url',
+  'source' => 'Powered by <a href="@poweredby">Drupal</a>',
   'context' => '',
-  'version' => 'none',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '60',
-  'location' => 'blocks:block:1:body',
-  'textgroup' => 'blocks',
-  'source' => "A fellow jumped off a high wall\r\nAnd had a most terrible fall\r\nHe went back to bed\r\nWith a bump on his head\r\nThat's why you don't jump off a wall",
-  'context' => 'block:1:body',
-  'version' => '1',
+  'lid' => '588',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'My account',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '61',
-  'location' => 'node:type:article:name',
-  'textgroup' => 'node',
-  'source' => 'Article',
-  'context' => 'type:article:name',
-  'version' => '1',
+  'lid' => '589',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Secondary menu',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '62',
-  'location' => 'node:type:article:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:article:title_label',
-  'version' => '1',
+  'lid' => '590',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Search form',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '63',
-  'location' => 'node:type:article:description',
-  'textgroup' => 'node',
-  'source' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
-  'context' => 'type:article:description',
-  'version' => '1',
+  'lid' => '591',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Configure block',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '64',
-  'location' => 'node:type:article:help',
-  'textgroup' => 'node',
-  'source' => 'Help text for articles',
-  'context' => 'type:article:help',
-  'version' => '1',
+  'lid' => '592',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'List links',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '65',
-  'location' => 'node:type:book:name',
-  'textgroup' => 'node',
-  'source' => 'Book page',
-  'context' => 'type:book:name',
-  'version' => '1',
+  'lid' => '593',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Edit menu',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '66',
-  'location' => 'node:type:book:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:book:title_label',
-  'version' => '1',
+  'lid' => '594',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Mon',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '67',
-  'location' => 'node:type:book:description',
-  'textgroup' => 'node',
-  'source' => '<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.',
-  'context' => 'type:book:description',
-  'version' => '1',
+  'lid' => '595',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Permalink',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '68',
-  'location' => 'node:type:page:name',
-  'textgroup' => 'node',
-  'source' => 'Basic page',
-  'context' => 'type:page:name',
-  'version' => '1',
+  'lid' => '596',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'Submitted by !username on !datetime',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '69',
-  'location' => 'node:type:page:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:page:title_label',
-  'version' => '1',
+  'lid' => '597',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => '« first',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '70',
-  'location' => 'node:type:page:description',
-  'textgroup' => 'node',
-  'source' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
-  'context' => 'type:page:description',
-  'version' => '1',
+  'lid' => '598',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => '‹ previous',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '71',
-  'location' => 'node:type:page:help',
-  'textgroup' => 'node',
-  'source' => 'Help text for basic pages',
-  'context' => 'type:page:help',
-  'version' => '1',
+  'lid' => '599',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'next ›',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '72',
-  'location' => 'node:type:test_content_type:name',
-  'textgroup' => 'node',
-  'source' => 'Test content type',
-  'context' => 'type:test_content_type:name',
-  'version' => '1',
+  'lid' => '600',
+  'location' => '/fr/node/1',
+  'textgroup' => 'default',
+  'source' => 'last »',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '73',
-  'location' => 'node:type:test_content_type:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:test_content_type:title_label',
-  'version' => '1',
+  'lid' => '601',
+  'location' => '/fr/node/1/revisions',
+  'textgroup' => 'default',
+  'source' => 'Revisions for %title',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '74',
-  'location' => 'node:type:test_content_type:description',
-  'textgroup' => 'node',
-  'source' => 'This is the description of the test content type.',
-  'context' => 'type:test_content_type:description',
-  'version' => '1',
+  'lid' => '602',
+  'location' => '/fr/node/1/revisions',
+  'textgroup' => 'default',
+  'source' => 'Revision',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '75',
-  'location' => 'node:type:test_content_type:help',
-  'textgroup' => 'node',
-  'source' => 'Help text for test content type',
-  'context' => 'type:test_content_type:help',
-  'version' => '1',
+  'lid' => '603',
+  'location' => '/fr/node/1/revisions',
+  'textgroup' => 'default',
+  'source' => 'Operations',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->values(array(
-  'lid' => '76',
-  'location' => 'blocks:user:login:title',
-  'textgroup' => 'blocks',
-  'source' => 'User login title',
-  'context' => 'user:login:title',
-  'version' => '1',
+  'lid' => '604',
+  'location' => '/fr/node/1/revisions',
+  'textgroup' => 'default',
+  'source' => '!date by !username',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '605',
+  'location' => '/fr/node/1/revisions',
+  'textgroup' => 'default',
+  'source' => 'current revision',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '606',
+  'location' => '/fr/node/1/revisions',
+  'textgroup' => 'default',
+  'source' => 'revert',
+  'context' => '',
+  'version' => '7.40',
+))
+->values(array(
+  'lid' => '607',
+  'location' => '/fr/node/1/revisions',
+  'textgroup' => 'default',
+  'source' => 'Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.',
+  'context' => '',
+  'version' => '7.40',
 ))
 ->execute();
 $connection->schema()->createTable('locales_target', array(
@@ -40324,14 +45698,14 @@
 ))
 ->values(array(
   'nid' => '1',
-  'vid' => '1',
+  'vid' => '16',
   'type' => 'test_content_type',
   'language' => 'en',
-  'title' => 'A Node',
+  'title' => 'A French Node (2nd rev)',
   'uid' => '2',
   'status' => '1',
   'created' => '1421727515',
-  'changed' => '1441032132',
+  'changed' => '1564617852',
   'comment' => '2',
   'promote' => '1',
   'sticky' => '0',
@@ -40340,14 +45714,14 @@
 ))
 ->values(array(
   'nid' => '2',
-  'vid' => '2',
+  'vid' => '11',
   'type' => 'article',
   'language' => 'en',
   'title' => 'The thing about Deep Space 9',
   'uid' => '2',
   'status' => '1',
   'created' => '1441306772',
-  'changed' => '1441306832',
+  'changed' => '1564543637',
   'comment' => '2',
   'promote' => '1',
   'sticky' => '0',
@@ -40356,14 +45730,14 @@
 ))
 ->values(array(
   'nid' => '3',
-  'vid' => '3',
+  'vid' => '12',
   'type' => 'article',
   'language' => 'is',
   'title' => 'is - The thing about Deep Space 9',
   'uid' => '1',
   'status' => '1',
   'created' => '1471428152',
-  'changed' => '1471428152',
+  'changed' => '1564543706',
   'comment' => '2',
   'promote' => '1',
   'sticky' => '0',
@@ -40372,14 +45746,14 @@
 ))
 ->values(array(
   'nid' => '4',
-  'vid' => '4',
+  'vid' => '13',
   'type' => 'article',
   'language' => 'is',
-  'title' => 'is - The thing about Firefly',
+  'title' => 'is - The thing about Firefly (1st rev)',
   'uid' => '1',
   'status' => '1',
   'created' => '1478755274',
-  'changed' => '1478755274',
+  'changed' => '1564543810',
   'comment' => '1',
   'promote' => '1',
   'sticky' => '0',
@@ -40388,14 +45762,14 @@
 ))
 ->values(array(
   'nid' => '5',
-  'vid' => '5',
+  'vid' => '14',
   'type' => 'article',
   'language' => 'en',
-  'title' => 'en - The thing about Firefly',
+  'title' => 'en - The thing about Firefly (2nd rev)',
   'uid' => '1',
   'status' => '1',
   'created' => '1478755314',
-  'changed' => '1478755314',
+  'changed' => '1564543929',
   'comment' => '1',
   'promote' => '1',
   'sticky' => '0',
@@ -40845,9 +46219,9 @@
   'nid' => '1',
   'vid' => '1',
   'uid' => '1',
-  'title' => 'A Node',
-  'log' => '',
-  'timestamp' => '1441032132',
+  'title' => 'An English Node (1st rev)',
+  'log' => 'English 1st rev',
+  'timestamp' => '1564617749',
   'status' => '1',
   'comment' => '2',
   'promote' => '1',
@@ -40857,9 +46231,9 @@
   'nid' => '2',
   'vid' => '2',
   'uid' => '1',
-  'title' => 'The thing about Deep Space 9',
-  'log' => '',
-  'timestamp' => '1441306832',
+  'title' => 'The thing about Deep Space 9 (1st rev)',
+  'log' => 'DS9 1st rev',
+  'timestamp' => '1564543588',
   'status' => '1',
   'comment' => '2',
   'promote' => '1',
@@ -40869,9 +46243,9 @@
   'nid' => '3',
   'vid' => '3',
   'uid' => '1',
-  'title' => 'is - The thing about Deep Space 9',
-  'log' => '',
-  'timestamp' => '1471428152',
+  'title' => 'is - The thing about Deep Space 9 (1st rev)',
+  'log' => 'is - DS9 1st rev',
+  'timestamp' => '1564543677',
   'status' => '1',
   'comment' => '2',
   'promote' => '1',
@@ -40881,8 +46255,8 @@
   'nid' => '4',
   'vid' => '4',
   'uid' => '1',
-  'title' => 'is - The thing about Firefly',
-  'log' => '',
+  'title' => 'is - The thing about Firefly (1st rev)',
+  'log' => 'is - Firefly 1st rev',
   'timestamp' => '1478755274',
   'status' => '1',
   'comment' => '1',
@@ -40893,9 +46267,9 @@
   'nid' => '5',
   'vid' => '5',
   'uid' => '1',
-  'title' => 'en - The thing about Firefly',
-  'log' => '',
-  'timestamp' => '1478755314',
+  'title' => 'en - The thing about Firefly (1st rev)',
+  'log' => 'Firefly 1st rev',
+  'timestamp' => '1564543887',
   'status' => '1',
   'comment' => '1',
   'promote' => '1',
@@ -40961,6 +46335,78 @@
   'promote' => '1',
   'sticky' => '0',
 ))
+->values(array(
+  'nid' => '2',
+  'vid' => '11',
+  'uid' => '1',
+  'title' => 'The thing about Deep Space 9',
+  'log' => 'DS9 2nd rev',
+  'timestamp' => '1564543637',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '12',
+  'uid' => '1',
+  'title' => 'is - The thing about Deep Space 9',
+  'log' => 'is - DS9 2nd rev',
+  'timestamp' => '1564543706',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '13',
+  'uid' => '1',
+  'title' => 'is - The thing about Firefly',
+  'log' => 'is - Firefly 2nd rev',
+  'timestamp' => '1564543810',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '14',
+  'uid' => '1',
+  'title' => 'en - The thing about Firefly',
+  'log' => 'Firefly 2nd rev',
+  'timestamp' => '1564543929',
+  'status' => '1',
+  'comment' => '1',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '15',
+  'uid' => '1',
+  'title' => 'An English Node (2nd rev)',
+  'log' => 'English 2nd rev',
+  'timestamp' => '1564617785',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '16',
+  'uid' => '1',
+  'title' => 'A French Node (2nd rev)',
+  'log' => 'French - 2nd rev',
+  'timestamp' => '1564617852',
+  'status' => '1',
+  'comment' => '2',
+  'promote' => '1',
+  'sticky' => '0',
+))
 ->execute();
 $connection->schema()->createTable('node_type', array(
   'fields' => array(
@@ -52838,30 +58284,6 @@
   'sticky',
   'created',
 ))
-->values(array(
-  'nid' => '1',
-  'tid' => '4',
-  'sticky' => '0',
-  'created' => '1421727515',
-))
-->values(array(
-  'nid' => '1',
-  'tid' => '4',
-  'sticky' => '0',
-  'created' => '1421727515',
-))
-->values(array(
-  'nid' => '1',
-  'tid' => '17',
-  'sticky' => '0',
-  'created' => '1421727515',
-))
-->values(array(
-  'nid' => '1',
-  'tid' => '15',
-  'sticky' => '0',
-  'created' => '1421727515',
-))
 ->values(array(
   'nid' => '6',
   'tid' => '1',
@@ -52940,6 +58362,24 @@
   'sticky' => '0',
   'created' => '1441306772',
 ))
+->values(array(
+  'nid' => '1',
+  'tid' => '25',
+  'sticky' => '0',
+  'created' => '1421727515',
+))
+->values(array(
+  'nid' => '1',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1421727515',
+))
+->values(array(
+  'nid' => '1',
+  'tid' => '15',
+  'sticky' => '0',
+  'created' => '1421727515',
+))
 ->execute();
 $connection->schema()->createTable('taxonomy_term_data', array(
   'fields' => array(
@@ -53249,6 +58689,16 @@
   'language' => 'fr',
   'i18n_tsid' => '0',
 ))
+->values(array(
+  'tid' => '25',
+  'vid' => '3',
+  'name' => 'Term3 in plain old English',
+  'description' => NULL,
+  'format' => NULL,
+  'weight' => '0',
+  'language' => 'und',
+  'i18n_tsid' => '0',
+))
 ->execute();
 $connection->schema()->createTable('taxonomy_term_hierarchy', array(
   'fields' => array(
@@ -53363,6 +58813,10 @@
   'tid' => '24',
   'parent' => '0',
 ))
+->values(array(
+  'tid' => '25',
+  'parent' => '0',
+))
 ->values(array(
   'tid' => '4',
   'parent' => '3',
diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php
index 0b2735c8ea..8339142975 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php
@@ -108,6 +108,9 @@ protected function migrateContent(array $include = []) {
     }
     if (in_array('revisions', $include)) {
       $this->executeMigrations(['d6_node_revision']);
+      if (in_array('translations', $include)) {
+        $this->executeMigrations(['d6_node_revision_translation']);
+      }
     }
   }
 
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
index a83527035a..bc1a029f41 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
@@ -70,8 +70,8 @@ protected function getEntityCounts() {
       'contact_message' => 0,
       'configurable_language' => 5,
       'editor' => 2,
-      'field_config' => 95,
-      'field_storage_config' => 66,
+      'field_config' => 96,
+      'field_storage_config' => 67,
       'file' => 7,
       'filter_format' => 7,
       'image_style' => 5,
diff --git a/core/modules/node/migrations/d6_node.yml b/core/modules/node/migrations/d6_node.yml
index 524448bc38..d0d503aa19 100644
--- a/core/modules/node/migrations/d6_node.yml
+++ b/core/modules/node/migrations/d6_node.yml
@@ -7,6 +7,8 @@ migration_tags:
 deriver: Drupal\node\Plugin\migrate\D6NodeDeriver
 source:
   plugin: d6_node
+  constants:
+    revision_translation_affected: true
 process:
   # In D6, nodes always have a tnid, but it's zero for untranslated nodes.
   # We normalize it to equal the nid in that case.
@@ -35,7 +37,7 @@ process:
   revision_uid: revision_uid
   revision_log: log
   revision_timestamp: timestamp
-
+  revision_translation_affected: constants/revision_translation_affected
 #  unmapped d6 fields.
 #  tnid
 #  translate
diff --git a/core/modules/node/migrations/d6_node_revision.yml b/core/modules/node/migrations/d6_node_revision.yml
index 732c9abe27..1e0ddabcab 100644
--- a/core/modules/node/migrations/d6_node_revision.yml
+++ b/core/modules/node/migrations/d6_node_revision.yml
@@ -7,6 +7,8 @@ migration_tags:
 deriver: Drupal\node\Plugin\migrate\D6NodeDeriver
 source:
   plugin: d6_node_revision
+  constants:
+    revision_translation_affected: true
 process:
   # If you are using this file to build a custom migration consider removing
   # the nid and vid fields to allow incremental migrations.
@@ -32,7 +34,7 @@ process:
   revision_uid: revision_uid
   revision_log: log
   revision_timestamp: timestamp
-
+  revision_translation_affected: constants/revision_translation_affected
 #  unmapped d6 fields.
 #  tnid
 #  translate
diff --git a/core/modules/node/migrations/d7_node.yml b/core/modules/node/migrations/d7_node.yml
index 5bf826164a..7ccae408c9 100644
--- a/core/modules/node/migrations/d7_node.yml
+++ b/core/modules/node/migrations/d7_node.yml
@@ -7,6 +7,8 @@ migration_tags:
 deriver: Drupal\node\Plugin\migrate\D7NodeDeriver
 source:
   plugin: d7_node
+  constants:
+    revision_translation_affected: true
 process:
   # If you are using this file to build a custom migration consider removing
   # the nid and vid fields to allow incremental migrations.
@@ -29,6 +31,7 @@ process:
   revision_uid: revision_uid
   revision_log: log
   revision_timestamp: timestamp
+  revision_translation_affected: constants/revision_translation_affected
 destination:
   plugin: entity:node
 migration_dependencies:
diff --git a/core/modules/node/migrations/d7_node_revision.yml b/core/modules/node/migrations/d7_node_revision.yml
index 7310b0d5b0..15722ed4b4 100644
--- a/core/modules/node/migrations/d7_node_revision.yml
+++ b/core/modules/node/migrations/d7_node_revision.yml
@@ -7,6 +7,8 @@ migration_tags:
 deriver: Drupal\node\Plugin\migrate\D7NodeDeriver
 source:
   plugin: d7_node_revision
+  constants:
+    revision_translation_affected: true
 process:
   # If you are using this file to build a custom migration consider removing
   # the nid and vid fields to allow incremental migrations.
@@ -26,6 +28,7 @@ process:
   revision_uid: revision_uid
   revision_log: log
   revision_timestamp: timestamp
+  revision_translation_affected: constants/revision_translation_affected
 destination:
   plugin: entity_revision:node
 migration_dependencies:
diff --git a/core/modules/node/src/Plugin/migrate/D6NodeDeriver.php b/core/modules/node/src/Plugin/migrate/D6NodeDeriver.php
index a8fa1d0bbe..899a1c4372 100644
--- a/core/modules/node/src/Plugin/migrate/D6NodeDeriver.php
+++ b/core/modules/node/src/Plugin/migrate/D6NodeDeriver.php
@@ -69,7 +69,7 @@ public static function create(ContainerInterface $container, $base_plugin_id) {
    * {@inheritdoc}
    */
   public function getDerivativeDefinitions($base_plugin_definition) {
-    if ($base_plugin_definition['id'] == 'd6_node_translation' && !$this->includeTranslations) {
+    if (in_array('translation', $base_plugin_definition['migration_tags']) && !$this->includeTranslations) {
       // Refuse to generate anything.
       return $this->derivatives;
     }
@@ -99,7 +99,7 @@ public function getDerivativeDefinitions($base_plugin_definition) {
         // If this migration is based on the d6_node_revision migration or
         // is for translations of nodes, it should explicitly depend on the
         // corresponding d6_node variant.
-        if (in_array($base_plugin_definition['id'], ['d6_node_revision', 'd6_node_translation'])) {
+        if ($base_plugin_definition['id'] == ['d6_node_revision'] || in_array('translation', $base_plugin_definition['migration_tags'])) {
           $values['migration_dependencies']['required'][] = 'd6_node:' . $node_type;
         }
 
diff --git a/core/modules/node/src/Plugin/migrate/source/d6/NodeRevision.php b/core/modules/node/src/Plugin/migrate/source/d6/NodeRevision.php
index 629249888d..e0988294d0 100644
--- a/core/modules/node/src/Plugin/migrate/source/d6/NodeRevision.php
+++ b/core/modules/node/src/Plugin/migrate/source/d6/NodeRevision.php
@@ -2,8 +2,6 @@
 
 namespace Drupal\node\Plugin\migrate\source\d6;
 
-use Drupal\Core\Database\Query\SelectInterface;
-
 /**
  * Drupal 6 node revision source from database.
  *
@@ -40,11 +38,4 @@ public function getIds() {
     return $ids;
   }
 
-  /**
-   * {@inheritdoc}
-   */
-  protected function handleTranslations(SelectInterface $query) {
-    // @todo in https://www.drupal.org/node/2746541
-  }
-
 }
diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeRevisionTranslationTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeRevisionTranslationTest.php
new file mode 100644
index 0000000000..9eb4376492
--- /dev/null
+++ b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeRevisionTranslationTest.php
@@ -0,0 +1,95 @@
+<?php
+
+namespace Drupal\Tests\node\Kernel\Migrate\d6;
+
+use Drupal\node\NodeInterface;
+
+/**
+ * Tests node revision migrations.
+ *
+ * @group node
+ */
+class MigrateNodeRevisionTranslationTest extends MigrateNodeTestBase {
+
+  /**
+   * The entity storage for node.
+   *
+   * @var \Drupal\Core\Entity\EntityStorageInterface
+   */
+  protected $nodeStorage;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = [
+    'content_translation',
+    'language',
+    'menu_ui',
+    // Required for translation migrations.
+    'migrate_drupal_multilingual',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+
+    $this->executeMigrations([
+      'language',
+      'd6_language_content_settings',
+      'd6_node',
+      'd6_node_revision',
+      'd6_node_translation',
+      'd6_node_revision_translation',
+    ]);
+
+    $this->nodeStorage = $this->container->get('entity_type.manager')
+      ->getStorage('node');
+  }
+
+  /**
+   * Asserts various aspects of a node revision.
+   *
+   * @param int $id
+   *   The revision ID.
+   * @param string $langcode
+   *   The revision language.
+   * @param string $title
+   *   The expected title.
+   * @param string $log
+   *   The revision log message.
+   * @param string $field_text_field
+   *   The expected field_text_field field value.
+   * @param int $revision_translation_affected
+   *   The revision translation affected field value.
+   */
+  protected function assertRevision($id, $langcode, $title, $log, $field_text_field, $revision_translation_affected) {
+    /* @var  \Drupal\node\NodeInterface $revision */
+    $revision = $this->nodeStorage->loadRevision($id)
+      ->getTranslation($langcode);
+    $this->assertInstanceOf(NodeInterface::class, $revision);
+    $this->assertSame($title, $revision->getTitle());
+    $this->assertSame($log, $revision->revision_log->value);
+    $this->assertSame($field_text_field, $revision->field_text_field->value);
+    $this->assertSame($revision_translation_affected, $revision->get('revision_translation_affected')->value);
+  }
+
+  /**
+   * Tests the migration of node revisions with translated nodes.
+   */
+  public function testNodeTranslationRevisions() {
+    // Test the first revision.
+    $this->assertRevision(13, 'en', 'The Real McCoy (first revision)', 'First revision (en)', 'McCoy first revision (en)', '1');
+    $this->assertRevision(2007, 'fr', 'Le Vrai McCoy (first revision)', 'First revision (fr)', 'McCoy first revision (fr)', '1');
+    $this->assertRevision(15, 'zu', 'Abantu zulu (first revision)', 'First revision (zu)', 'Zulu first revision (zu)', '1');
+    $this->assertRevision(2008, 'en', 'The Zulu People (first revision)', 'First revision (en)', 'Zulu first revision (en)', '1');
+
+    // Test the current revision.
+    $this->assertRevision(24, 'en', 'The Real McCoy', 'Current revision (en)', 'McCoy current revision (en)', '1');
+    $this->assertRevision(2004, 'fr', 'Le Vrai McCoy', 'Current revision (fr)', 'McCoy current revision (fr)', '1');
+    $this->assertRevision(26, 'zu', 'Abantu zulu', 'Current revision (zu)', 'Zulu current revision (zu)', '1');
+    $this->assertRevision(2005, 'en', 'The Zulu People', 'Current revision (en)', 'Zulu current revision (en)', '1');
+  }
+
+}
diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeRevisionTranslationTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeRevisionTranslationTest.php
new file mode 100644
index 0000000000..1909d4ca90
--- /dev/null
+++ b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeRevisionTranslationTest.php
@@ -0,0 +1,132 @@
+<?php
+
+namespace Drupal\Tests\node\Kernel\Migrate\d7;
+
+use Drupal\node\NodeInterface;
+use Drupal\Tests\file\Kernel\Migrate\d7\FileMigrationSetupTrait;
+use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
+
+/**
+ * Tests node revision migrations.
+ *
+ * @group node
+ */
+class MigrateNodeRevisionTranslationTest extends MigrateDrupal7TestBase {
+
+  use FileMigrationSetupTrait;
+
+  /**
+   * The entity storage for node.
+   *
+   * @var \Drupal\Core\Entity\EntityStorageInterface
+   */
+  protected $nodeStorage;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = [
+    'content_translation',
+    'comment',
+    'datetime',
+    'file',
+    'filter',
+    'image',
+    'language',
+    'link',
+    // Required for translation migrations.
+    'migrate_drupal_multilingual',
+    'menu_ui',
+    'node',
+    'taxonomy',
+    'telephone',
+    'text',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+
+    $this->fileMigrationSetup();
+
+    $this->installEntitySchema('node');
+    $this->installEntitySchema('comment');
+    $this->installEntitySchema('taxonomy_term');
+    $this->installSchema('comment', ['comment_entity_statistics']);
+    $this->installSchema('node', ['node_access']);
+
+    $this->migrateUsers();
+    $this->migrateFields();
+    $this->executeMigrations([
+      'language',
+      'd7_language_content_settings',
+      'd7_comment_field',
+      'd7_comment_field_instance',
+      'd7_node',
+      'd7_node_translation',
+      'd7_node_revision',
+      'd7_node_revision_translation',
+    ]);
+    $this->nodeStorage = $this->container->get('entity_type.manager')->getStorage('node');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getFileMigrationInfo() {
+    return [
+      'path' => 'public://sites/default/files/cube.jpeg',
+      'size' => '3620',
+      'base_path' => 'public://',
+      'plugin_id' => 'd7_file',
+    ];
+  }
+
+  /**
+   * Asserts various aspects of a node revision.
+   *
+   * @param int $id
+   *   The revision ID.
+   * @param string $langcode
+   *   The revision language.
+   * @param string $title
+   *   The expected title.
+   * @param string $log
+   *   The revision log message.
+   * @param string $field_text_plain
+   *   The expected field_text_plain field value.
+   * @param int $revision_translation_affected
+   *   The revision translation affected field value.
+   */
+  protected function assertRevision($id, $langcode, $title, $log, $field_text_plain, $revision_translation_affected) {
+    /* @var  \Drupal\node\NodeInterface $revision */
+    $revision = $this->nodeStorage->loadRevision($id)->getTranslation($langcode);
+    $this->assertInstanceOf(NodeInterface::class, $revision);
+    $this->assertSame($title, $revision->getTitle());
+    $this->assertSame($log, $revision->revision_log->value);
+    if ($field_text_plain) {
+      $this->assertSame($field_text_plain, $revision->field_text_plain->value);
+    }
+    $this->assertSame($revision_translation_affected, $revision->get('revision_translation_affected')->value);
+  }
+
+  /**
+   * Tests the migration of node revisions with translated nodes.
+   */
+  public function testNodeTranslationRevisions() {
+    // Test the 1st revision.
+    $this->assertRevision(2, 'en', 'The thing about Deep Space 9 (1st rev)', 'DS9 1st rev', 'DS9 1st rev', '1');
+    $this->assertRevision(18, 'is', 'is - The thing about Deep Space 9 (1st rev)', 'is - DS9 1st rev', 'is - DS9 1st rev', '1');
+    $this->assertRevision(4, 'is', 'is - The thing about Firefly (1st rev)', 'is - Firefly 1st rev', NULL, '1');
+    $this->assertRevision(19, 'en', 'en - The thing about Firefly (1st rev)', 'Firefly 1st rev', 'Firefly 1st rev', '1');
+
+    // Test the 2nd revision.
+    $this->assertRevision(11, 'en', 'The thing about Deep Space 9', 'DS9 2nd rev', 'DS9 2nd rev', '1');
+    $this->assertRevision(14, 'is', 'is - The thing about Deep Space 9', 'is - DS9 2nd rev', 'is - DS9 2nd rev', '1');
+    $this->assertRevision(13, 'is', 'is - The thing about Firefly', 'is - Firefly 2nd rev', NULL, '1');
+    $this->assertRevision(15, 'en', 'en - The thing about Firefly', 'Firefly 2nd rev', 'Firefly 2nd rev', '1');
+  }
+
+}
