Translations

Support forumCategory: QuestionsTranslations
yannick_boschel asked 3 years ago
Even Json files are translated in French, the locations, services, employees, connections, vacation and tools tabs are still in English ! How could we have this solved ? Thanks and best regards.
PB replied 3 years ago

I agree

1 Answers
chrslcy answered 2 years ago
For anyone interested, I managed to translate the tabs by installing the 'Admin CSS MU' plugin and then using this CSS (change as needed):  /* SERVICES to EVENTS */
#ea-admin-services .app-page-title--description.easy,#ea-admin-services span.btn-wrapper--label {
visibility: hidden;
position: relative;
} #ea-admin-services .app-page-title--description.easy:after {
visibility: visible;
position: absolute;
top: 0;
left: 0;
content: "Events";
} #ea-admin-services span.btn-wrapper--label:after {
visibility: visible;
position: absolute;
top: 2px;
left: 0;
content: "Add event";
} /* EMPLOYEES to GROUPS */
#ea-admin-workers .app-page-title--description.easy,#ea-admin-workers span.btn-wrapper--label {
visibility: hidden;
position: relative;
} #ea-admin-workers .app-page-title--description.easy:after {
visibility: visible;
position: absolute;
top: 0;
left: 0;
content: "Groups";
} #ea-admin-workers span.btn-wrapper--label:after {
visibility: visible;
position: absolute;
top: 2px;
left: 0;
content: "Add group";
} /* CONNECTIONS to AVAILABILITY */
#ea-admin-connections .app-page-title--description.easy,#ea-admin-connections span.btn-wrapper--label {
visibility: hidden;
position: relative;
} #ea-admin-connections .app-page-title--description.easy:after {
visibility: visible;
position: absolute;
top: 0;
left: 0;
content: "Availability";
} #ea-admin-connections span.btn-wrapper--label:after {
visibility: visible;
position: absolute;
top: 2px;
left: 0;
} #ea-admin-connections button:first-child span.btn-wrapper--label:after {
content: "Add availability in bulk";
} #ea-admin-connections button:nth-child(2) span.btn-wrapper--label:after {
content: "Add availability";
} It's a shame that the plugin cannot be fully translated, but at least this solution patches the problem.