summaryrefslogtreecommitdiffstats
path: root/web/template/login_form.php
diff options
context:
space:
mode:
authorLoui Chang <louipc.ist@gmail.com>2008-12-03 09:54:58 +0100
committerLoui Chang <louipc.ist@gmail.com>2008-12-17 18:58:17 +0100
commit368d48358ef6b561458f18314043762f3cf7d3d3 (patch)
treee16b96f3dcd077b991d40ea4e226706d2ec66cf6 /web/template/login_form.php
parentb498a61ba2508854ad0199b377207e8ae82dde29 (diff)
downloadaur-368d48358ef6b561458f18314043762f3cf7d3d3.tar.gz
aur-368d48358ef6b561458f18314043762f3cf7d3d3.tar.xz
Remove colons from translated strings in login_form.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template/login_form.php')
-rw-r--r--web/template/login_form.php4
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"); ?>" />