summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-16 19:06:25 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-16 19:06:25 +0000
commit60c5878351cc547dbfda260fefcf378491c958ec (patch)
tree9985db3bf964c09cb8564b54c79f345d773edf21 /modules/system/system.install
parent4430d46334127c69d5ff97ce2e15475c0fae2654 (diff)
downloadbrdo-60c5878351cc547dbfda260fefcf378491c958ec.tar.gz
brdo-60c5878351cc547dbfda260fefcf378491c958ec.tar.bz2
- Patch #593746 by #593746 by sun, andypost: prepare Drupal core for dynamic data translation.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index e69bb6e24..f29f45f9d 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -568,6 +568,7 @@ function system_schema() {
'type' => 'text',
'not null' => TRUE,
'size' => 'big',
+ 'translatable' => TRUE,
),
),
'primary key' => array('name'),
@@ -1162,11 +1163,13 @@ function system_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' => 'text',
'not null' => FALSE,
+ 'translatable' => TRUE,
),
'module' => array(
'description' => 'The name of the module that generated this link.',