Search code examples
reactjsmdbootstrapmdbreact

MDBReact table change labels locale


Is it possible to change MDBReact Table texts such as "Show entries" into Spanish? Thank you.


Solution

  • You could do :

    <MDBDataTable infoLabel={["Afficher", "à", "de", "éléments"]} searchLabel="chercher"/>
    

    by overriding

    <MDBDataTable infoLabel={["Showing", "to", "of", "entries"]} />