summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/taxonomy/taxonomy.install')
-rw-r--r--modules/taxonomy/taxonomy.install4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install
index 736347485..148322000 100644
--- a/modules/taxonomy/taxonomy.install
+++ b/modules/taxonomy/taxonomy.install
@@ -41,12 +41,14 @@ 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,
),
'weight' => array(
'type' => 'int',
@@ -108,6 +110,7 @@ function taxonomy_schema() {
'not null' => TRUE,
'default' => '',
'description' => 'Name of the vocabulary.',
+ 'translatable' => TRUE,
),
'machine_name' => array(
'type' => 'varchar',
@@ -121,6 +124,7 @@ function taxonomy_schema() {
'not null' => FALSE,
'size' => 'big',
'description' => 'Description of the vocabulary.',
+ 'translatable' => TRUE,
),
'relations' => array(
'type' => 'int',