mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Remove colons from translated strings in login_form.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
parent
b498a61ba2
commit
368d48358e
1 changed files with 2 additions and 2 deletions
|
@ -12,12 +12,12 @@
|
|||
}
|
||||
?>
|
||||
<form method="post">
|
||||
<label><?php print __("Username:"); ?></label>
|
||||
<label><?php print __('Username') . ':'; ?></label>
|
||||
<input type="text" name="user" size="30" maxlength="<?php print USERNAME_MAX_LEN; ?>" value="<?php
|
||||
if (isset($_POST['user'])) {
|
||||
print htmlspecialchars($_POST['user'], ENT_QUOTES);
|
||||
} ?>" />
|
||||
<label><?php print __("Password:"); ?></label>
|
||||
<label><?php print __('Password') . ':'; ?></label>
|
||||
<input type="password" name="passwd" size="30" maxlength="<?php print PASSWD_MAX_LEN; ?>" />
|
||||
<input type="checkbox" name="remember_me" /><?php print __("Remember me"); ?>
|
||||
<input type="submit" class="button" value="<?php print __("Login"); ?>" />
|
||||
|
|
Loading…
Add table
Reference in a new issue