Fix button hover assert.

svn path=/trunk/netsurf/; revision=6585
This commit is contained in:
Michael Drake 2009-02-20 20:48:30 +00:00
parent dd6031d297
commit de7a20499a
6 changed files with 7 additions and 1 deletions

View File

@ -477,6 +477,7 @@ FormCheckbox:Anklicken um die Option an/abzuschalten
FormRadio:Anklicken wählt diese Option
FormSubmit:Daten übertragen an %s
FormBadSubmit:Achtung: Daten können nicht gesendet werden
FormButton:Warning: button can not be activated
FormTextarea:Anklicken zum Editieren
FormTextbox:Anklicken zum Bearbeiten des Feldes
FormReset:Reset form (not implemented)

View File

@ -477,6 +477,7 @@ FormCheckbox:Click to check this option
FormRadio:Click to choose this option
FormSubmit:Send form to %s
FormBadSubmit:Warning: form can not be submitted
FormButton:Warning: button can not be activated
FormTextarea:Click to edit the text
FormTextbox:Click to edit this field
FormReset:Reset form (not implemented)

View File

@ -477,6 +477,7 @@ FormCheckbox:Cliquer pour cocher cette option
FormRadio:Cliquer pour choisir cette option
FormSubmit:Envoyer le formulaire à %s
FormBadSubmit:Alerte: le formulaire n'a pas pu être envoyé
FormButton:Warning: button can not be activated
FormTextarea:Cliquer pour éditer ce texte
FormTextbox:Cliquer pour éditer ce champ
FormReset:RAZ du formulaire (non implémenté)

View File

@ -478,6 +478,7 @@ FormCheckbox:Clicca per verificare questa opzione
FormRadio:Clicca per scegliere questa opzione
FormSubmit:Invia form a %s
FormBadSubmit:Attenzione: Il form non può essere inviato
FormButton:Warning: button can not be activated
FormTextarea:Clicca per editare il testo
FormTextbox:Clicca per editare il campo
FormReset:Resetta form (non ancora implementato)

View File

@ -477,6 +477,7 @@ FormCheckbox:Klikken selekteert deze optie
FormRadio:Klikken kiest deze optie
FormSubmit:Verstuur data naar %s
FormBadSubmit:Waarschuwing: data kan niet verzonden worden
FormButton:Warning: button can not be activated
FormTextarea:Klikken om tekst te bewerken
FormTextbox:Klikken om dit veld te bewerken
FormReset:Reset form (not implemented)

View File

@ -1581,7 +1581,8 @@ void browser_window_mouse_action_html(struct browser_window *bw,
status = messages_get("FormFile");
break;
case GADGET_BUTTON:
/* Do nothing, as this gadget cannot be activated */
/* This gadget cannot be activated */
status = messages_get("FormButton");
break;
}