I have a decimal field in a form that I need to format as a currency field. I am using the num.currency display pattern and this works great since it will format the $ sign to the front or back depending on the language being English or french. The only problem is that I have a requirement to always display the decimal places even if they are 0. So for instance I need to show 200.00 as $200.00 if the language is English and 200,00$ if the language is French. I have tried a display pattern of num.currency{$zzzzzzzzzzzz9.99} but it will only show $200 in english and 200$ in French.
Thanks