diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-19 15:41:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-19 15:41:57 +0000 |
commit | fa25c7a0ca13b57f098f0d2a2f7379ce73086723 (patch) | |
tree | dbc21e6623702f93fbb93e74b0ac33691c8b3011 /modules/system/system.module | |
parent | feb61eea867a51bf061c0a7067126539810c34ec (diff) | |
download | brdo-fa25c7a0ca13b57f098f0d2a2f7379ce73086723.tar.gz brdo-fa25c7a0ca13b57f098f0d2a2f7379ce73086723.tar.bz2 |
- Code improvements by Stefan: use capital letters for header titles (and added some missing t() functions).
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index ceb1eac96..fc116064c 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -233,11 +233,11 @@ function system_listing($type) { // the throttle mechanism requires additional modules always be enabled $throttle_required = array_merge($required, array('modules/statistics.module', 'modules/throttle.module')); - $header = array(t('name'), t('description'), t('status'), t('throttle')); + $header = array(t('Name'), t('Description'), t('Status'), t('Throttle')); } else { $required = array(); - $header = array(t('name'), t('description'), t('enable'), t('default')); + $header = array(t('Name'), t('Description'), t('Enable'), t('Default')); } foreach ($files as $filename => $file) { |