File tree 4 files changed +27
-0
lines changed
4 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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 number Diff line number Diff line change
1
+ export default [
2
+ '{{person.last_name.generic}} e {{person.last_name.generic}}' ,
3
+ '{{person.last_name.generic}} {{company.legal_entity_type}}' ,
4
+ ] ;
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import type { LocaleDefinition } from '../..';
6
6
import cell_phone from './cell_phone' ;
7
7
import color from './color' ;
8
8
import commerce from './commerce' ;
9
+ import company from './company' ;
9
10
import date from './date' ;
10
11
import internet from './internet' ;
11
12
import location from './location' ;
@@ -17,6 +18,7 @@ const pt_PT: LocaleDefinition = {
17
18
cell_phone,
18
19
color,
19
20
commerce,
21
+ company,
20
22
date,
21
23
internet,
22
24
location,
You can’t perform that action at this time.
0 commit comments