Remove placeholders for name fields in settings (no more Sofaer)

This commit is contained in:
flaburgan 2013-08-10 13:35:32 +02:00
parent 420561c502
commit 485c0dae7f
3 changed files with 5 additions and 4 deletions

View file

@ -35,6 +35,7 @@
* Adjust Facebook character limit to reality [#4380](https://github.com/diaspora/diaspora/issues/4380) * Adjust Facebook character limit to reality [#4380](https://github.com/diaspora/diaspora/issues/4380)
* Restore truncated URLs when posting to Twitter [#4211](https://github.com/diaspora/diaspora/issues/4211) * Restore truncated URLs when posting to Twitter [#4211](https://github.com/diaspora/diaspora/issues/4211)
* Fix mobile search tags [#4392](https://github.com/diaspora/diaspora/issues/4392) * Fix mobile search tags [#4392](https://github.com/diaspora/diaspora/issues/4392)
* Remove placeholders for name fields in settings (no more Sofaer) [#4385](https://github.com/diaspora/diaspora/pull/4385)
## Features ## Features
* Admin: add option to find users under 13 (COPPA) [#4252](https://github.com/diaspora/diaspora/pull/4252) * Admin: add option to find users under 13 (COPPA) [#4252](https://github.com/diaspora/diaspora/pull/4252)

View file

@ -42,10 +42,10 @@
%h4 %h4
= t('profiles.edit.your_name') = t('profiles.edit.your_name')
= label_tag 'profile[first_name]', t('profiles.edit.first_name') = label_tag 'profile[first_name]', t('profiles.edit.first_name')
= text_field_tag 'profile[first_name]', profile.first_name, :placeholder => "Raphael" = text_field_tag 'profile[first_name]', profile.first_name
= label_tag 'profile[first_name]', t('profiles.edit.last_name') = label_tag 'profile[first_name]', t('profiles.edit.last_name')
= text_field_tag 'profile[last_name]', profile.last_name, :placeholder => "Sofaer" = text_field_tag 'profile[last_name]', profile.last_name
%br %br

View file

@ -49,10 +49,10 @@
%h4 %h4
= t('profiles.edit.your_name') = t('profiles.edit.your_name')
= label_tag 'profile[first_name]', t('profiles.edit.first_name') = label_tag 'profile[first_name]', t('profiles.edit.first_name')
= text_field_tag 'profile[first_name]', profile.first_name, :placeholder => "Raphael" = text_field_tag 'profile[first_name]', profile.first_name
= label_tag 'profile[first_name]', t('profiles.edit.last_name') = label_tag 'profile[first_name]', t('profiles.edit.last_name')
= text_field_tag 'profile[last_name]', profile.last_name, :placeholder => "Sofaer" = text_field_tag 'profile[last_name]', profile.last_name
%br %br