mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 12:36:51 +03:00
Fix button hover assert.
svn path=/trunk/netsurf/; revision=6585
This commit is contained in:
parent
dd6031d297
commit
de7a20499a
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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é)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user