summaryrefslogtreecommitdiffstats
path: root/web/html/addvote.php
diff options
context:
space:
mode:
authorLoui Chang <louipc.ist@gmail.com>2008-12-21 21:10:25 +0100
committerCallan Barrett <wizzomafizzo@gmail.com>2008-12-22 05:29:46 +0100
commit22b50800e8fbda48830a3f2dfcc6a8ca5efb3a1c (patch)
tree84ec0a2c1a1c4fb351a98eba05d5ea03a186bda7 /web/html/addvote.php
parent8f6edc4517ec0b6b8b5f441cb93bffe794180ed6 (diff)
downloadaur-22b50800e8fbda48830a3f2dfcc6a8ca5efb3a1c.tar.gz
aur-22b50800e8fbda48830a3f2dfcc6a8ca5efb3a1c.tar.xz
Make some translatable strings friendlier to common usage.
Removing trailing colons and whitespace makes them more usable. Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Diffstat (limited to 'web/html/addvote.php')
-rw-r--r--web/html/addvote.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/addvote.php b/web/html/addvote.php
index a31a1ff5..5c1ff334 100644
--- a/web/html/addvote.php
+++ b/web/html/addvote.php
@@ -68,15 +68,15 @@ if ($atype == "Trusted User" OR $atype == "Developer") {
<p><?php print __("Submit a proposal to vote on.") ?></p>
<?php if (!empty($error)) { print $error . "<br />"; } ?>
<form action='addvote.php' method='post'>
-<b><?php print __("Applicant/TU:") ?></b>
+<b><?php print __('Applicant/TU') ?></b>
<input type='text' name='user' value='<?php if (!empty($_POST['user'])) { print htmlentities($_POST['user'], ENT_QUOTES); } ?>'>
<?php print __("(empty if not applicable)") ?>
<br />
-<b><?php print __("Length in days:") ?></b>
+<b><?php print __('Length in days') ?></b>
<input type='text' name='length' value='<?php if (!empty($_POST['length'])) { print htmlentities($_POST['length'], ENT_QUOTES); } ?>'>
<?php print __("(defaults to 7 if empty)") ?>
<br />
-<b><?php print __("Proposal:") ?></b><br />
+<b><?php print __('Proposal') ?></b><br />
<textarea name='agenda' rows='10' cols='50'><?php if (!empty($_POST['agenda'])) { print htmlentities($_POST['agenda']); } ?></textarea><br />
<input type='hidden' name='addVote' value='1'>
<input type='submit' class='button' value='Submit'>