My challenge is to add new types for an account.
In this file i've added the types "Supplier" and "Provider".
Path: /Modules/Crm/Resources/metadata/entityDefs/Account.json
In this file i've added the types "Supplier" and "Provider" too.
Path: /Modules/Crm/Resources/i18n/de_DE/Account.json
My problem is that i can see "Supplier" and "Provider" in the drop down menu because it is not in german.
How can i resolve the problem?
In this file i've added the types "Supplier" and "Provider".
Path: /Modules/Crm/Resources/metadata/entityDefs/Account.json
PHP Code:
{
"fields": {
...
"type": {
"type": "enum",
"options": ["", "Customer", "Investor", "Partner", "Reseller", "Supplier", "Provider"],
"default": ""
},
...
}
Path: /Modules/Crm/Resources/i18n/de_DE/Account.json
PHP Code:
{
...
"options": {
"type": {
"Customer": "Kunde",
"Investor": "Investor",
"Partner": "Partner",
"Reseller": "Wiederverkäufer",
"Supplier": "Lieferant",
"Provider": "Dienstleister"
},
...
}
How can i resolve the problem?
Comment