jacobwb / hashover

Free and Open Source PHP Comment System

Home Page:http://tildehash.com/?page=hashover

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Adding 'email_tooltip' to locales.php

q2apro opened this issue · comments

To make it clear for the user why he can enter the URL I suggest to provide an extra tooltip translation. Currently there is only:

'email'     => 'E-mail Address',

which is used for the placeholder and the tooltip of the email input field.

I suggest adding:

'email_tooltip' => 'E-mail Address for notifications',

And changing in javascript-mode.php (two occurences):

title="' . $this->text['email'] . '"

to

title="' . $this->text['email_tooltip'] . '"

Maybe this could be done for all tooltips, providing separate _tooltip entries.

Update: Same goes for the placeholder.

The "Nickname" and "Password" fields already do this. Adding more is a good idea.