diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-28 14:11:49 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-28 14:11:49 +0000 |
commit | cc3ec29e87892690edd4be337aea84f685326401 (patch) | |
tree | e4d09eb5c1f496e4ab06b7e94035a6c8424900ba /modules/poll/poll.module | |
parent | 42a987316f1252b6b1aed4294869d61f41961038 (diff) | |
download | brdo-cc3ec29e87892690edd4be337aea84f685326401.tar.gz brdo-cc3ec29e87892690edd4be337aea84f685326401.tar.bz2 |
- Committed Goba's translation fixes.
Diffstat (limited to 'modules/poll/poll.module')
-rw-r--r-- | modules/poll/poll.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/poll/poll.module b/modules/poll/poll.module index de68cb451..1d4680a61 100644 --- a/modules/poll/poll.module +++ b/modules/poll/poll.module @@ -122,7 +122,7 @@ function poll_form(&$node, &$help, &$error) { $output .= form_submit(t("Preview")) ."<br /><br /><br />"; for ($a = 0; $a < $node->choices; $a++) { - $output .= form_textfield(t("Choice") ." ". ($a + 1), "choice][$a", $node->choice[$a], 50, 127, $error["choice][$a"]); + $output .= form_textfield(t("Choice %n", array("%n" => ($a + 1))), "choice][$a", $node->choice[$a], 50, 127, $error["choice][$a"]); if ($admin) { $output .= form_textfield(t("Votes for choice %n", array("%n" => ($a + 1))), "chvotes][$a", $node->chvotes[$a] ? $node->chvotes[$a] : 0, 7, 7, $error["chvotes][$a"]); } |