feat: translate indian number system symbols (#17694)

This commit is contained in:
Raffael Meyer 2022-08-01 15:38:02 +02:00 committed by GitHub
parent 3927522873
commit e72a02e42c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,15 +20,15 @@ export default {
indian: [
{
divisor: 1.0e7,
symbol: "Cr"
symbol: __("Cr", null, "Number system")
},
{
divisor: 1.0e5,
symbol: "Lakh"
symbol: __("Lakh", null, "Number system")
},
{
divisor: 1.0e3,
symbol: "K"
symbol: __("K", null, "Number system")
}
]
};