diff --git a/frappe/utils/data.py b/frappe/utils/data.py index c42a741017..ca8f25c80a 100644 --- a/frappe/utils/data.py +++ b/frappe/utils/data.py @@ -1353,12 +1353,12 @@ def money_in_words( # 0.00 if main == "0" and fraction in ["00", "000"]: - out = "{} {}".format(main_currency, _("Zero")) + out = _(main_currency, context="Currency") + " " + _("Zero") # 0.XX elif main == "0": out = _(in_words(fraction, in_million).title()) + " " + fraction_currency else: - out = main_currency + " " + _(in_words(main, in_million).title()) + out = _(main_currency, context="Currency") + " " + _(in_words(main, in_million).title()) if cint(fraction): out = ( out