Skip to content

Commit

Permalink
translation: fix patron form editor translation problem
Browse files Browse the repository at this point in the history
* Fixes translations problems on fields 'communication_channel' and 'communication_language' in the patron form definition
* Closes #572

Co-Authored-by: Renaud Michotte <[email protected]>
  • Loading branch information
zannkukai committed Dec 12, 2019
1 parent bf37f9c commit fca4ea8
Showing 1 changed file with 28 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,22 +125,40 @@
{
"key": "communication_channel",
"required": true,
"titleMap": {
"email": "Email",
"mail": "Mail"
},
"titleMap": [
{
"value": "email",
"name": "Email"
},
{
"value": "mail",
"name": "Mail"
}
],
"placeHolder": "Select\u2026"
},
{
"key": "communication_language",
"required": true,
"type": "select",
"titleMap": {
"eng": "English",
"fre": "French",
"ger": "German",
"ita": "Italian"
},
"titleMap": [
{
"name": "English",
"value": "eng"
},
{
"name": "French",
"value": "fre"
},
{
"name": "German",
"value": "ger"
},
{
"name": "Italian",
"value": "ita"
}
],
"placeHolder": "Select\u2026"
}
]
Expand Down

0 comments on commit fca4ea8

Please sign in to comment.