init
This commit is contained in:
commit
44f31f8b9f
402 changed files with 47865 additions and 0 deletions
47
plugins/numbro/languages/zh.js
Normal file
47
plugins/numbro/languages/zh.js
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
module.exports = {
|
||||
languageTag: 'zh-CN',
|
||||
delimiters: {
|
||||
thousands: ',',
|
||||
decimal: '.'
|
||||
},
|
||||
abbreviations: {
|
||||
thousand: '千',
|
||||
million: '百万',
|
||||
billion: '十亿',
|
||||
trillion: '兆'
|
||||
},
|
||||
ordinal() {
|
||||
return '.'
|
||||
},
|
||||
currency: {
|
||||
symbol: '¥',
|
||||
position: 'prefix',
|
||||
code: 'CNY'
|
||||
},
|
||||
currencyFormat: {
|
||||
thousandSeparated: true,
|
||||
totalLength: 4,
|
||||
spaceSeparated: true,
|
||||
average: true
|
||||
},
|
||||
formats: {
|
||||
fourDigits: {
|
||||
totalLength: 4,
|
||||
spaceSeparated: true,
|
||||
average: true
|
||||
},
|
||||
fullWithTwoDecimals: {
|
||||
thousandSeparated: true,
|
||||
mantissa: 2
|
||||
},
|
||||
fullWithTwoDecimalsNoCurrency: {
|
||||
mantissa: 2,
|
||||
thousandSeparated: true
|
||||
},
|
||||
fullWithNoDecimals: {
|
||||
output: 'currency',
|
||||
thousandSeparated: true,
|
||||
mantissa: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue