sibiraj-s / ngx-editor

🖋️ Rich Text Editor for angular using ProseMirror
https://sibiraj-s.github.io/ngx-editor/
MIT License
423 stars 182 forks source link

[Feature request]: Customize "Please enter valid url." #532

Closed willdochnur closed 6 days ago

willdochnur commented 1 month ago

Proposal

I would like to customize the validation hint "Please enter valid url.".

Willing to submit a PR?

None

sibiraj-s commented 6 days ago

Added in v17.1.0

sibiraj-s commented 6 days ago

You can configure via

NgxEditorModule.forRoot({
  locals: {
    enterValidUrl: "Please enter a valid URL",
  },
});

See the docs for more details