Skip to content

Commit

Permalink
feat(locale): add finance module for zh_CN (#2370)
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolPlayLin committed Sep 17, 2023
1 parent a7d25fa commit aea4c9b
Show file tree
Hide file tree
Showing 8 changed files with 824 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/locales/zh_CN/finance/account_type.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default [
'支票',
'储蓄',
'货币市场',
'投资',
'房屋贷款',
'信用卡',
'汽车贷款',
'个人贷款',
];
14 changes: 14 additions & 0 deletions src/locales/zh_CN/finance/credit_card/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { FinanceDefinition } from '../../../..';
import mastercard from './mastercard';
import visa from './visa';

const credit_card: FinanceDefinition['credit_card'] = {
mastercard,
visa,
};

export default credit_card;
1 change: 1 addition & 0 deletions src/locales/zh_CN/finance/credit_card/mastercard.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['5[1-5]##-####-####-###L'];
1 change: 1 addition & 0 deletions src/locales/zh_CN/finance/credit_card/visa.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['4###########L', '4###-####-####-###L'];
Loading

0 comments on commit aea4c9b

Please sign in to comment.