summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-02 09:01:23 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-02 09:01:23 +0000
commit130c1492c5ff2fe4fd6d0e6fa8c4eb9b55b1311d (patch)
tree8deb63b57567a250aee08e9af8e1eb31986d8414
parentac89011bfdd840de49384e547885ff05f5e5d811 (diff)
downloadbrdo-130c1492c5ff2fe4fd6d0e6fa8c4eb9b55b1311d.tar.gz
brdo-130c1492c5ff2fe4fd6d0e6fa8c4eb9b55b1311d.tar.bz2
#61304 by fgm, use t() for a string.
-rw-r--r--includes/theme.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 20d0d0f81..3d933194e 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -625,10 +625,10 @@ function theme_form_element($title, $value, $description = NULL, $id = NULL, $re
if ($title) {
if ($id) {
- $output .= ' <label for="'. form_clean_id($id) .'">'. $title .":$required</label>\n";
+ $output .= ' <label for="'. form_clean_id($id) .'">'. t('%title: %required', array('%title' => $title, '%required' => $required)) . "</label>\n";
}
else {
- $output .= ' <label>'. $title .":$required</label>\n";
+ $output .= ' <label>'. t('%title: %required', array('%title' => $title, '%required' => $required)) . "</label>\n";
}
}