diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-05-31 20:29:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-05-31 20:29:30 +0000 |
commit | 38aaf5f35d8bc51f6792989a1a7732be5a1e7676 (patch) | |
tree | c782e563cf5862f5b03c066fd34171a7d2128f71 /modules/taxonomy/taxonomy.module | |
parent | b0ea30ed85b9e737bc6b3c7c5b7ec6ffe73c7803 (diff) | |
download | brdo-38aaf5f35d8bc51f6792989a1a7732be5a1e7676.tar.gz brdo-38aaf5f35d8bc51f6792989a1a7732be5a1e7676.tar.bz2 |
- Added missing translations and the like.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index ccccd36c4..24d0062fd 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/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); |