summaryrefslogtreecommitdiff
path: root/modules/taxonomy.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r--modules/taxonomy.module7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module
index ccccd36c4..24d0062fd 100644
--- a/modules/taxonomy.module
+++ b/modules/taxonomy.module
@@ -244,14 +244,15 @@ function taxonomy_form($vocabulary_id, $value = 0) {
}
else {
$verb = "can";
- $blank = "<none>";
+ $blank = t("<none>");
}
+
if ($vocabulary->multiple) {
- $description = "You $verb choose one or more terms for this node";
+ $description = t("You $verb choose one or more terms for this node.");
$multiple = 1;
}
else {
- $description = "You $verb choose one term for this node";
+ $description = t("You $verb choose one term for this node.");
$multiple = 0;
}
return _taxonomy_term_select($vocabulary->name, "taxonomy", $value, $vocabulary_id, $description, $multiple, $blank);