summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
committerDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
commit15671f471b5097fd20c5951a9c835de9bb05fc5b (patch)
treeb3b22b4f670da5c6880cadb593eae285bf623995 /modules/trigger
parent97fdc491917f6f12d734cb13bf2101cfc12096fd (diff)
downloadbrdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.gz
brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.bz2
- Patch #332123 by webchick, lilou: remove t() function from schema descriptions.
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.install10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/trigger/trigger.install b/modules/trigger/trigger.install
index 981ad5dbf..03c8585bf 100644
--- a/modules/trigger/trigger.install
+++ b/modules/trigger/trigger.install
@@ -25,34 +25,34 @@ function trigger_uninstall() {
*/
function trigger_schema() {
$schema['trigger_assignments'] = array(
- 'description' => t('Maps trigger to hook and operation assignments from trigger.module.'),
+ 'description' => 'Maps trigger to hook and operation assignments from trigger.module.',
'fields' => array(
'hook' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
- 'description' => t('Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.'),
+ 'description' => 'Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.',
),
'op' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
- 'description' => t('Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.'),
+ 'description' => 'Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.',
),
'aid' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
- 'description' => t("Primary Key: Action's {actions}.aid."),
+ 'description' => "Primary Key: Action's {actions}.aid.",
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
- 'description' => t('The weight of the trigger assignment in relation to other triggers.'),
+ 'description' => 'The weight of the trigger assignment in relation to other triggers.',
),
),
'primary key' => array('hook', 'op', 'aid'),