summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-12 12:52:01 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-12 12:52:01 -0400
commit2354faf7ac87f191b7d4906e40e82172199accb9 (patch)
tree004fa15a68e31565cf36236a31c8e838b0dfdddc /actions
parentf4be93d2852dac7c5b8a6ecce66f047a53bba6c5 (diff)
add instructions to each form entry in forms
darcs-hash:20080612165201-84dde-1abc45a0b2fd24002bc6f3449e9fc521d4f02eac.gz
Diffstat (limited to 'actions')
-rw-r--r--actions/avatar.php2
-rw-r--r--actions/login.php3
-rw-r--r--actions/password.php6
-rw-r--r--actions/profilesettings.php22
-rw-r--r--actions/register.php16
-rw-r--r--actions/remotesubscribe.php7
6 files changed, 33 insertions, 23 deletions
diff --git a/actions/avatar.php b/actions/avatar.php
index b91dd794c..61d7e770d 100644
--- a/actions/avatar.php
+++ b/actions/avatar.php
@@ -40,7 +40,7 @@ class AvatarAction extends SettingsAction {
$user = common_current_user();
$profile = $user->getProfile();
- $original = $profile->getOriginal();
+ $original = $profile->getOriginalAvatar();
if ($original) {
common_element('img', array('src' => $original->url,
diff --git a/actions/login.php b/actions/login.php
index 1a69bd9c4..5544fd878 100644
--- a/actions/login.php
+++ b/actions/login.php
@@ -66,8 +66,7 @@ class LoginAction extends Action {
} else {
common_element('div', 'instructions',
_t('Login with your username and password. ' .
- 'Don\'t have a username yet? Choose register above. ' .
- '(Forgot your password? No way to get it back... yet. It\'s on the TODO list!)'));
+ 'Don\'t have a username yet? Choose register above. '));
}
common_element_start('form', array('method' => 'POST',
'id' => 'login',
diff --git a/actions/password.php b/actions/password.php
index ee61c3e97..603ae58ea 100644
--- a/actions/password.php
+++ b/actions/password.php
@@ -36,8 +36,10 @@ class PasswordAction extends SettingsAction {
'action' =>
common_local_url('password')));
common_password('oldpassword', _t('Old password'));
- common_password('newpassword', _t('New password'));
- common_password('confirm', _t('Confirm'));
+ common_password('newpassword', _t('New password'),
+ _t('6 or more characters'));
+ common_password('confirm', _t('Confirm'),
+ _t('same as password above'));
common_submit('submit', _t('Change'));
common_element_end('form');
common_show_footer();
diff --git a/actions/profilesettings.php b/actions/profilesettings.php
index 755c293c7..22a7fbac1 100644
--- a/actions/profilesettings.php
+++ b/actions/profilesettings.php
@@ -31,10 +31,9 @@ class ProfilesettingsAction extends SettingsAction {
if ($msg) {
$this->message($msg, $success);
} else {
- common_element('div', 'instructions',
- _t('You can update your personal profile info here so people know more about you. ' .
- 'Nickname must be 1-64 lowercase letters or numbers -- no punctuation or spaces. ' .
- 'Full name, bio, and location can be whatever you want. Email address should be valid.'));
+ common_element('div', 'instructions',
+ _t('You can update your personal profile info here '.
+ 'so people know more about you. '));
}
common_element_start('form', array('method' => 'POST',
'id' => 'profilesettings',
@@ -42,17 +41,22 @@ class ProfilesettingsAction extends SettingsAction {
common_local_url('profilesettings')));
# too much common patterns here... abstractable?
common_input('nickname', _t('Nickname'),
- ($this->arg('nickname')) ? $this->arg('nickname') : $profile->nickname);
+ ($this->arg('nickname')) ? $this->arg('nickname') : $profile->nickname,
+ _t('1-64 lowercase letters or numbers, no punctuation or spaces'));
common_input('fullname', _t('Full name'),
($this->arg('fullname')) ? $this->arg('fullname') : $profile->fullname);
common_input('email', _t('Email address'),
- ($this->arg('email')) ? $this->arg('email') : $user->email);
+ ($this->arg('email')) ? $this->arg('email') : $user->email,
+ _t('Used only for updates, announcements, and password recovery'));
common_input('homepage', _t('Homepage'),
- ($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage);
+ ($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage,
+ _t('URL of your homepage, blog, or profile on another site'));
common_textarea('bio', _t('Bio'),
- ($this->arg('bio')) ? $this->arg('bio') : $profile->bio);
+ ($this->arg('bio')) ? $this->arg('bio') : $profile->bio,
+ _t('Describe yourself and your interests in 140 chars'));
common_input('location', _t('Location'),
- ($this->arg('location')) ? $this->arg('location') : $profile->location);
+ ($this->arg('location')) ? $this->arg('location') : $profile->location,
+ _t('Where you are, like "City, State (or Region), Country"'));
common_submit('submit', _t('Save'));
common_element_end('form');
common_show_footer();
diff --git a/actions/register.php b/actions/register.php
index e192d5296..d2c87f7bb 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -123,17 +123,19 @@ class RegisterAction extends Action {
common_element('div', 'error', $error);
} else {
common_element('div', 'instructions',
- _t('You can create a new account with the following form. ' .
- 'Your user name must be 1-64 characters, only lowercase letters or numbers. ' .
- 'Passwords have to match, and your email address should be valid.'));
+ _t('You can create a new account to start posting notices. '));
}
common_element_start('form', array('method' => 'POST',
'id' => 'login',
'action' => common_local_url('register')));
- common_input('nickname', _t('Nickname'));
- common_password('password', _t('Password'));
- common_password('confirm', _t('Confirm'));
- common_input('email', _t('Email'));
+ common_input('nickname', _t('Nickname'), NULL,
+ _t('1-64 lowercase letters or numbers, no punctuation or spaces'));
+ common_password('password', _t('Password'),
+ _t('6 or more characters'));
+ common_password('confirm', _t('Confirm'),
+ _t('Same as password above'));
+ common_input('email', _t('Email'), NULL,
+ _t('Used only for updates, announcements, and password recovery'));
common_element_start('p');
common_element('input', array('type' => 'checkbox',
'id' => 'license',
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php
index d00d48f9e..739c92eea 100644
--- a/actions/remotesubscribe.php
+++ b/actions/remotesubscribe.php
@@ -41,14 +41,17 @@ class RemotesubscribeAction extends Action {
function show_form($err=NULL) {
$nickname = $this->trimmed('nickname');
+ $profile = $this->trimmed('profile');
common_show_header(_t('Remote subscribe'));
if ($err) {
common_element('div', 'error', $err);
}
common_element_start('form', array('id' => 'remotesubscribe', 'method' => 'POST',
'action' => common_local_url('remotesubscribe')));
- common_input('nickname', _t('User nickname'), $nickname);
- common_input('profile', _t('Profile URL'));
+ common_input('nickname', _t('User nickname'), $nickname,
+ _t('Nickname of the user you want to follow'));
+ common_input('profile', _t('Profile URL'), $profile,
+ _t('URL of your profile on another compatible microblogging service'));
common_submit('submit', _t('Subscribe'));
common_element_end('form');
common_show_footer();