diff options
author | Loui Chang <louipc.ist@gmail.com> | 2008-12-03 09:54:58 +0100 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2008-12-17 18:58:17 +0100 |
commit | 368d48358ef6b561458f18314043762f3cf7d3d3 (patch) | |
tree | e16b96f3dcd077b991d40ea4e226706d2ec66cf6 | |
parent | b498a61ba2508854ad0199b377207e8ae82dde29 (diff) | |
download | aur-368d48358ef6b561458f18314043762f3cf7d3d3.tar.gz aur-368d48358ef6b561458f18314043762f3cf7d3d3.tar.xz |
Remove colons from translated strings in login_form.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
-rw-r--r-- | web/template/login_form.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/login_form.php b/web/template/login_form.php index 727afd0a..70c24c71 100644 --- a/web/template/login_form.php +++ b/web/template/login_form.php @@ -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"); ?>" /> |