Skip to content

Commit 0fd0402

Browse files
feat(locale): implement company info on pt_PT locale (#3022)
1 parent a210619 commit 0fd0402

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

src/locales/pt_PT/company/index.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { CompanyDefinition } from '../../..';
6+
import legal_entity_type from './legal_entity_type';
7+
import name_pattern from './name_pattern';
8+
9+
const company: CompanyDefinition = {
10+
legal_entity_type,
11+
name_pattern,
12+
};
13+
14+
export default company;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default [
2+
'EI', // Empresário em Nome Individual: Sole Proprietorship
3+
'LDA', // Sociedade por Quotas: Private Limited Company
4+
'SA', // Sociedade Anónima: Public Limited Company
5+
'SCR', // Sociedade de Capital de Risco: Venture Capital Company
6+
'ULTDA', // Sociedade Unipessoal por Quotas: Single Shareholder Private Limited Company
7+
];
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export default [
2+
'{{person.last_name.generic}} e {{person.last_name.generic}}',
3+
'{{person.last_name.generic}} {{company.legal_entity_type}}',
4+
];

src/locales/pt_PT/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import type { LocaleDefinition } from '../..';
66
import cell_phone from './cell_phone';
77
import color from './color';
88
import commerce from './commerce';
9+
import company from './company';
910
import date from './date';
1011
import internet from './internet';
1112
import location from './location';
@@ -17,6 +18,7 @@ const pt_PT: LocaleDefinition = {
1718
cell_phone,
1819
color,
1920
commerce,
21+
company,
2022
date,
2123
internet,
2224
location,

0 commit comments

Comments
 (0)