diff options
| -rw-r--r-- | src/locales/ja/company/index.ts | 4 | ||||
| -rw-r--r-- | src/locales/ja/company/legal_entity_type.ts (renamed from src/locales/ja/company/type.ts) | 0 | ||||
| -rw-r--r-- | src/locales/ja/company/name_pattern.ts | 4 | ||||
| -rw-r--r-- | src/locales/zh_CN/company/index.ts | 4 | ||||
| -rw-r--r-- | src/locales/zh_CN/company/legal_entity_type.ts (renamed from src/locales/zh_CN/company/type.ts) | 0 | ||||
| -rw-r--r-- | src/locales/zh_CN/company/name_pattern.ts | 4 |
6 files changed, 8 insertions, 8 deletions
diff --git a/src/locales/ja/company/index.ts b/src/locales/ja/company/index.ts index 290ceacf..000b59c3 100644 --- a/src/locales/ja/company/index.ts +++ b/src/locales/ja/company/index.ts @@ -4,13 +4,13 @@ */ import type { CompanyDefinition } from '../../..'; import category from './category'; +import legal_entity_type from './legal_entity_type'; import name_pattern from './name_pattern'; -import type_ from './type'; const company: CompanyDefinition = { category, + legal_entity_type, name_pattern, - type: type_, }; export default company; diff --git a/src/locales/ja/company/type.ts b/src/locales/ja/company/legal_entity_type.ts index 71250e42..71250e42 100644 --- a/src/locales/ja/company/type.ts +++ b/src/locales/ja/company/legal_entity_type.ts diff --git a/src/locales/ja/company/name_pattern.ts b/src/locales/ja/company/name_pattern.ts index d3b6941d..30f2a6de 100644 --- a/src/locales/ja/company/name_pattern.ts +++ b/src/locales/ja/company/name_pattern.ts @@ -1,4 +1,4 @@ export default [ - '{{company.type}}{{person.last_name.generic}}{{company.category}}', - '{{person.last_name.generic}}{{company.category}}{{company.type}}', + '{{company.legal_entity_type}}{{person.last_name.generic}}{{company.category}}', + '{{person.last_name.generic}}{{company.category}}{{company.legal_entity_type}}', ]; diff --git a/src/locales/zh_CN/company/index.ts b/src/locales/zh_CN/company/index.ts index 290ceacf..000b59c3 100644 --- a/src/locales/zh_CN/company/index.ts +++ b/src/locales/zh_CN/company/index.ts @@ -4,13 +4,13 @@ */ import type { CompanyDefinition } from '../../..'; import category from './category'; +import legal_entity_type from './legal_entity_type'; import name_pattern from './name_pattern'; -import type_ from './type'; const company: CompanyDefinition = { category, + legal_entity_type, name_pattern, - type: type_, }; export default company; diff --git a/src/locales/zh_CN/company/type.ts b/src/locales/zh_CN/company/legal_entity_type.ts index 8c17760c..8c17760c 100644 --- a/src/locales/zh_CN/company/type.ts +++ b/src/locales/zh_CN/company/legal_entity_type.ts diff --git a/src/locales/zh_CN/company/name_pattern.ts b/src/locales/zh_CN/company/name_pattern.ts index 2325cc69..0c95fd80 100644 --- a/src/locales/zh_CN/company/name_pattern.ts +++ b/src/locales/zh_CN/company/name_pattern.ts @@ -1,4 +1,4 @@ export default [ - '{{location.city}}{{person.first_name.generic}}{{company.category}}{{company.type}}', - '{{location.state}}{{person.first_name.generic}}{{company.category}}{{company.type}}', + '{{location.city}}{{person.first_name.generic}}{{company.category}}{{company.legal_entity_type}}', + '{{location.state}}{{person.first_name.generic}}{{company.category}}{{company.legal_entity_type}}', ]; |
