Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(locale): Add finance module for zh_CN #2370

Merged
merged 11 commits into from Sep 17, 2023
10 changes: 10 additions & 0 deletions src/locales/zh_CN/finance/account_type.ts
@@ -0,0 +1,10 @@
export default [
'支票',
'储蓄',
'货币市场',
'投资',
'房屋贷款',
'信用卡',
'汽车贷款',
'个人贷款',
];
14 changes: 14 additions & 0 deletions src/locales/zh_CN/finance/credit_card/index.ts
@@ -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
@@ -0,0 +1 @@
export default ['5[1-5]##-####-####-###L', '6771-89##-####-###L'];
CoolPlayLin marked this conversation as resolved.
Show resolved Hide resolved
1 change: 1 addition & 0 deletions src/locales/zh_CN/finance/credit_card/visa.ts
@@ -0,0 +1 @@
export default ['4###########L', '4###-####-####-###L'];