-
-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement company info on pt_PT locale
- Loading branch information
1 parent
8a35e70
commit 068044c
Showing
4 changed files
with
27 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,14 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
import type { CompanyDefinition } from '../../..'; | ||
import legal_entity_type from './legal_entity_type'; | ||
import name_pattern from './name_pattern'; | ||
|
||
const company: CompanyDefinition = { | ||
legal_entity_type, | ||
name_pattern, | ||
}; | ||
|
||
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,7 @@ | ||
export default [ | ||
'EI', // Empresário em Nome Individual: Sole Proprietorship | ||
'LDA', // Sociedade por Quotas: Private Limited Company | ||
'SA', // Sociedade Anónima: Public Limited Company | ||
'SCR', // Sociedade de Capital de Risco: Venture Capital Company | ||
'ULTDA', // Sociedade Unipessoal por Quotas: Single Shareholder Private Limited 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 [ | ||
'{{person.last_name.generic}} e {{person.last_name.generic}}', | ||
'{{person.last_name.generic}} {{company.legal_entity_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