diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-15 13:01:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-15 13:01:11 +0000 |
commit | 15671f471b5097fd20c5951a9c835de9bb05fc5b (patch) | |
tree | b3b22b4f670da5c6880cadb593eae285bf623995 /modules/menu | |
parent | 97fdc491917f6f12d734cb13bf2101cfc12096fd (diff) | |
download | brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.gz brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.bz2 |
- Patch #332123 by webchick, lilou: remove t() function from schema descriptions.
Diffstat (limited to 'modules/menu')
-rw-r--r-- | modules/menu/menu.install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/menu/menu.install b/modules/menu/menu.install index 6f927c965..16b4792ef 100644 --- a/modules/menu/menu.install +++ b/modules/menu/menu.install @@ -28,26 +28,26 @@ function menu_uninstall() { */ function menu_schema() { $schema['menu_custom'] = array( - 'description' => t('Holds definitions for top-level custom menus (for example, Main menu).'), + 'description' => 'Holds definitions for top-level custom menus (for example, Main menu).', 'fields' => array( 'menu_name' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '', - 'description' => t('Primary Key: Unique key for menu. This is used as a block delta so length is 32.'), + 'description' => 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.', ), 'title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Menu title; displayed at top of block.'), + 'description' => 'Menu title; displayed at top of block.', ), 'description' => array( 'type' => 'text', 'not null' => FALSE, - 'description' => t('Menu description.'), + 'description' => 'Menu description.', ), ), 'primary key' => array('menu_name'), |