diff --git a/core/modules/block/block.install b/core/modules/block/block.install
index 6cdb67c..1f91028 100644
--- a/core/modules/block/block.install
+++ b/core/modules/block/block.install
@@ -129,7 +129,6 @@ function block_update_8003() {
     'not null' => TRUE,
     'default' => '',
     'description' => 'Custom title for the block. (Empty string will use block default title, - None - will remove the title, text will cause block to use specified title.)',
-    'translatable' => TRUE,
     )
   );
 }
diff --git a/core/modules/block/custom_block/custom_block.install b/core/modules/block/custom_block/custom_block.install
index 4a0e4b0..fdda3f3 100644
--- a/core/modules/block/custom_block/custom_block.install
+++ b/core/modules/block/custom_block/custom_block.install
@@ -24,7 +24,6 @@ function custom_block_schema() {
         'not null' => FALSE,
         'size' => 'big',
         'description' => 'Block contents.',
-        'translatable' => TRUE,
       ),
       'info' => array(
         'type' => 'varchar',
diff --git a/core/modules/menu_link/menu_link.install b/core/modules/menu_link/menu_link.install
index d45314a..b8a471d 100644
--- a/core/modules/menu_link/menu_link.install
+++ b/core/modules/menu_link/menu_link.install
@@ -65,13 +65,11 @@ function menu_link_schema() {
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'translatable' => TRUE,
       ),
       'options' => array(
         'description' => 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.',
         'type' => 'blob',
         'not null' => FALSE,
-        'translatable' => TRUE,
         'serialize' => TRUE,
       ),
       'module' => array(
diff --git a/core/modules/node/node.install b/core/modules/node/node.install
index 12a6945..ec2390d 100644
--- a/core/modules/node/node.install
+++ b/core/modules/node/node.install
@@ -296,7 +296,6 @@ function node_schema() {
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'translatable' => TRUE,
       ),
       'base' => array(
         'description' => 'The base string used to construct callbacks corresponding to this node type.',
@@ -315,14 +314,12 @@ function node_schema() {
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'medium',
-        'translatable' => TRUE,
       ),
       'help' => array(
         'description' => 'Help information shown to the user when creating a {node} of this type.',
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'medium',
-        'translatable' => TRUE,
       ),
       'has_title' => array(
         'description' => 'Boolean indicating whether this type uses the {node}.title field.',
@@ -337,7 +334,6 @@ function node_schema() {
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'translatable' => TRUE,
       ),
       'custom' => array(
         'description' => 'A boolean indicating whether this type is defined by a module (FALSE) or by a user via Add content type (TRUE).',
diff --git a/core/modules/node/node.module b/core/modules/node/node.module
index ff073ae..efbbad3 100644
--- a/core/modules/node/node.module
+++ b/core/modules/node/node.module
@@ -735,7 +735,6 @@ function _node_types_build($rebuild = FALSE) {
     }
   }
   $query = db_select('node_type', 'nt')
-    ->addTag('translatable')
     ->addTag('node_type_access')
     ->fields('nt')
     ->orderBy('nt.type', 'ASC');
diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index cfc9a4e..f61e39b 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -553,7 +553,6 @@ function system_schema() {
         'type' => 'blob',
         'not null' => TRUE,
         'size' => 'big',
-        'translatable' => TRUE,
       ),
     ),
     'primary key' => array('name'),
@@ -756,7 +755,6 @@ function system_schema() {
         'type' => 'blob',
         'not null' => TRUE,
         'size' => 'big',
-        'translatable' => TRUE,
       ),
     ),
     'primary key' => array('collection', 'name'),
@@ -785,7 +783,6 @@ function system_schema() {
         'type' => 'blob',
         'not null' => TRUE,
         'size' => 'big',
-        'translatable' => TRUE,
       ),
       'expire' => array(
         'description' => 'The time since Unix epoch in seconds when this item expires. Defaults to the maximum possible time.',
@@ -1739,7 +1736,6 @@ function system_update_8023() {
         'type' => 'blob',
         'not null' => TRUE,
         'size' => 'big',
-        'translatable' => TRUE,
       ),
       'expire' => array(
         'description' => 'The time since Unix epoch in seconds when this item expires. Defaults to the maximum possible time.',
diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php
index 18acd7e..d402c3a 100644
--- a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php
+++ b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php
@@ -37,7 +37,6 @@ public function create(array $values) {
    */
   protected function buildQuery($ids, $revision_id = FALSE) {
     $query = parent::buildQuery($ids, $revision_id);
-    $query->addTag('translatable');
     $query->addTag('term_access');
     return $query;
   }
diff --git a/core/modules/taxonomy/taxonomy.install b/core/modules/taxonomy/taxonomy.install
index 7b1d331..fef48fb 100644
--- a/core/modules/taxonomy/taxonomy.install
+++ b/core/modules/taxonomy/taxonomy.install
@@ -58,14 +58,12 @@ function taxonomy_schema() {
         'not null' => TRUE,
         'default' => '',
         'description' => 'The term name.',
-        'translatable' => TRUE,
       ),
       'description' => array(
         'type' => 'text',
         'not null' => FALSE,
         'size' => 'big',
         'description' => 'A description of the term.',
-        'translatable' => TRUE,
       ),
       'format' => array(
         'type' => 'varchar',
diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module
index 4b1a2b1..348a0b9 100644
--- a/core/modules/taxonomy/taxonomy.module
+++ b/core/modules/taxonomy/taxonomy.module
@@ -736,7 +736,6 @@ function taxonomy_get_tree($vid, $parent = 0, $max_depth = NULL, $load_entities
     $query = db_select('taxonomy_term_data', 't');
     $query->join('taxonomy_term_hierarchy', 'h', 'h.tid = t.tid');
     $result = $query
-      ->addTag('translatable')
       ->addTag('term_access')
       ->fields('t')
       ->fields('h', array('parent'))
diff --git a/core/modules/taxonomy/taxonomy.pages.inc b/core/modules/taxonomy/taxonomy.pages.inc
index fbd29f1..b6f1329 100644
--- a/core/modules/taxonomy/taxonomy.pages.inc
+++ b/core/modules/taxonomy/taxonomy.pages.inc
@@ -130,7 +130,6 @@ function taxonomy_autocomplete($field_name) {
     }
 
     $query = db_select('taxonomy_term_data', 't');
-    $query->addTag('translatable');
     $query->addTag('term_access');
 
     // Do not select already entered terms.
diff --git a/core/modules/user/user.install b/core/modules/user/user.install
index 10e429c..c7fd16b 100644
--- a/core/modules/user/user.install
+++ b/core/modules/user/user.install
@@ -454,7 +454,6 @@ function user_update_8002() {
     'not null' => TRUE,
     'default' => '',
     'description' => 'Role label.',
-    'translatable' => TRUE,
   );
   db_change_field('role', 'name', 'name', $column);
   // Remove unique index.
diff --git a/core/modules/views/includes/ajax.inc b/core/modules/views/includes/ajax.inc
index 6bf8869..65ecd3f 100644
--- a/core/modules/views/includes/ajax.inc
+++ b/core/modules/views/includes/ajax.inc
@@ -159,7 +159,6 @@ function views_ajax_autocomplete_taxonomy($vid) {
   if ($tag_last != '') {
 
     $query = db_select('taxonomy_term_data', 't');
-    $query->addTag('translatable');
     $query->addTag('term_access');
 
     // Do not select already entered terms.
