diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-27 12:43:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-27 12:43:18 +0000 |
commit | f2f3416549391ce0102c193abcea3fdd5d1d98ef (patch) | |
tree | d4c7f57e9fa22877d73b642ecfba9ed08aa06d66 /modules/upload | |
parent | 163f1accd9e80664f8f62c7d86487417df39caf4 (diff) | |
download | brdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.gz brdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.bz2 |
- Patch #80934 by timnc: more t() fixes.
Diffstat (limited to 'modules/upload')
-rw-r--r-- | modules/upload/upload.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index 6a2ffc7a3..084c2ed40 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -227,7 +227,7 @@ function upload_admin_settings() { foreach ($roles as $rid => $role) { $form['settings_role_'. $rid] = array( '#type' => 'fieldset', - '#title' => t('Settings for %role', array('%role' => $role)), + '#title' => t('Settings for @role', array('@role' => $role)), '#collapsible' => TRUE, '#collapsed' => TRUE, ); |