diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-07-07 21:15:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-07-07 21:15:11 +0000 |
commit | 3106ddd5df168874a17b2ee41291ba76e1f11eac (patch) | |
tree | 8005d1c30786b45fa9a8a5860b509f23a4a26696 | |
parent | 747db4763f5c3492faea9e8241bfb1f8a786c2c7 (diff) | |
download | brdo-3106ddd5df168874a17b2ee41291ba76e1f11eac.tar.gz brdo-3106ddd5df168874a17b2ee41291ba76e1f11eac.tar.bz2 |
- Bug #8823: fixed typo: '..' -> '.'.
-rw-r--r-- | themes/xtemplate/xtemplate.theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/xtemplate/xtemplate.theme b/themes/xtemplate/xtemplate.theme index 7d4bceffd..60efdeeb5 100644 --- a/themes/xtemplate/xtemplate.theme +++ b/themes/xtemplate/xtemplate.theme @@ -28,7 +28,7 @@ function xtemplate_settings() { $group = form_textarea(t('Logo'), 'xtemplate_logo', variable_get('xtemplate_logo', "<img src=\"themes/xtemplate/$template_directory/logo.png\" alt=\"Logo\" />"), 70, 4, t('The HTML code for displaying the logo.')); $group .= form_textarea(t('Primary links'), 'xtemplate_primary_links', variable_get('xtemplate_primary_links', l('edit primary links', 'admin/themes/xtemplate')), 70, 8, t('The HTML code for the primary links.')); $group .= form_textarea(t('Secondary links'), 'xtemplate_secondary_links', variable_get('xtemplate_secondary_links', l('edit secondary links', 'admin/themes/xtemplate')), 70, 8, t('The HTML code for the secondary links.')); - $group .= form_textarea(t('Message on front page'), 'xtemplate_mission', variable_get('xtemplate_mission', 'edit mission'), 70, 6, t('This text will be displayed on the front page. It can be used to display a mission statement, announcement or site description..')); + $group .= form_textarea(t('Message on front page'), 'xtemplate_mission', variable_get('xtemplate_mission', 'edit mission'), 70, 6, t('This text will be displayed on the front page. It can be used to display a mission statement, announcement or site description.')); $group .= form_radios(t('Search box'), 'xtemplate_search_box', variable_get('xtemplate_search_box', 0), array(t('Disabled'), t('Enabled')), t('Show a search box in the upper right corner.')); $output .= form_group(t('Header settings'), $group); |