diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-02-01 21:04:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-02-01 21:04:42 +0000 |
commit | dc938c533bbf94f2ce2400cfc006d1f1ced8e96d (patch) | |
tree | f7a94dc4fa8079e30bb7b6f44c46c0249004e19d /themes | |
parent | 928435a565a58facca9c01d1fc186b5e3cfc0a2c (diff) | |
download | brdo-dc938c533bbf94f2ce2400cfc006d1f1ced8e96d.tar.gz brdo-dc938c533bbf94f2ce2400cfc006d1f1ced8e96d.tar.bz2 |
- Patch #5567 by Goba: fixed t() functions, cleanup of locale module's help,
fixed translation issues in taxonomy module, etc.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/chameleon/default.css | 1 | ||||
-rw-r--r-- | themes/xtemplate/xtemplate.theme | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/themes/chameleon/default.css b/themes/chameleon/default.css index c33c46f12..8c3d36926 100644 --- a/themes/chameleon/default.css +++ b/themes/chameleon/default.css @@ -90,4 +90,3 @@ br { .form-item textarea { font-size: 1em; } - diff --git a/themes/xtemplate/xtemplate.theme b/themes/xtemplate/xtemplate.theme index cfba361d0..62d67efa2 100644 --- a/themes/xtemplate/xtemplate.theme +++ b/themes/xtemplate/xtemplate.theme @@ -11,7 +11,7 @@ $GLOBALS["xtemplate"]->template->SetNullBlock(" "); // "" doesnt work! function xtemplate_settings() { $output .= 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..")); $output .= form_textfield(t("Stylesheet URL"), "xtemplate_stylesheet", variable_get("xtemplate_stylesheet", "themes/xtemplate/xtemplate.css"), 70, 300, t("The URL for your theme's cascading stylesheet.")); - $output .= form_textarea(t("Logo"), "xtemplate_logo", variable_get("xtemplate_logo", "<img src=\"themes/xtemplate/images/druplicon.gif\" alt=\"Druplicon\" />"), 70, 4, t("The HTML code for displaying the logo.")); + $output .= form_textarea(t("Logo"), "xtemplate_logo", variable_get("xtemplate_logo", "<img src=\"themes/xtemplate/images/druplicon.gif\" alt=\"Druplicon - Drupal logo\" />"), 70, 4, t("The HTML code for displaying the logo.")); $output .= form_textarea(t("Primary links"), "xtemplate_primary_links", variable_get("xtemplate_primary_links", l("edit primary links", "admin/system/themes/xtemplate")), 70, 8, t("The HTML code for the primary links.")); $output .= form_textarea(t("Secondary links"), "xtemplate_secondary_links", variable_get("xtemplate_secondary_links", l("edit secondary links", "admin/system/themes/xtemplate")), 70, 8, t("The HTML code for the secondary links.")); $output .= 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.")); |