Convert Number To Word

Hello,

We are usign the pluging Convert Number To Word:

but I need in spanish language, 

Someone knows if I can traslate it? usign plugins or somehing like that?

Thank you so much, regards.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    A Score Level 1
    in reply to Ashwin

    if the solution from above works for you, why not try to use some mathematics to extract the value after the comma and then write that value.

     fixed(1234.45,0) - 1234.45 = 0.45

    Now, if you want two decimal precition.

    0.45 x 100 = 45

    Then you need to say call your expression that gives you the number (for example, but providing it the fixed(1234.45)) concatenate a comma and call your function again with  ( fixed(1234.45,0) - 1234.45) x100

Children