-
-
Notifications
You must be signed in to change notification settings - Fork 929
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(locale): add company name to zh_CN (#2203)
- Loading branch information
1 parent
7687511
commit c3b540f
Showing
5 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export default [ | ||
'水产', | ||
'林业', | ||
'矿业', | ||
'建设', | ||
'食品', | ||
'印刷', | ||
'电力', | ||
'燃气', | ||
'网络科技', | ||
'物流', | ||
'保险', | ||
'旅游发展', | ||
'传媒', | ||
'运输', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
import type { CompanyDefinition } from '../../..'; | ||
import category from './category'; | ||
import name_pattern from './name_pattern'; | ||
import type_ from './type'; | ||
|
||
const company: CompanyDefinition = { | ||
category, | ||
name_pattern, | ||
type: type_, | ||
}; | ||
|
||
export default company; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default [ | ||
'{{location.state}}{{person.first_name}}{{company.category}}{{company.type}}', | ||
'{{location.city}}{{person.first_name}}{{company.category}}{{company.type}}', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export default [ | ||
'有限责任公司', | ||
'股份有限公司', | ||
'有限公司', | ||
'(集团)有限公司', | ||
'集团有限公司', | ||
'无限公司', | ||
'无限责任公司', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters