mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
This commit is contained in:
parent
8f6edc4517
commit
22b50800e8
2 changed files with 7 additions and 7 deletions
|
@ -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'>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue