I have a table like below with headers(In English) name, email, id, hire date.
I want to add header with local language name above English headers name
Input
| Name | Email | ID | Hire date |
| a | p | 1 | 25-06-21 |
| b | q | 2 | 26-06-21 |
| c | r | 3 | 27-06-21 |
In output table i want to add one more header in local language along with English headers
Output
| Nome | E-mail | ID | Data di assunzione |
| Name | Email | ID | Hire date |
| a | p | 1 | 25-06-21 |
| b | q | 2 | 26-06-21 |
| c | r | 3 | 27-06-21 |
I also have mapping for it
| Local | Eng Names |
| Nome | Name |
| E-mail | Email |
| ID | ID |
| Data di assunzione | Hire date |
Any idea how it