Actions
Translations
Translations:Custom translation/17/en
From LimeSurvey Manual
- In Theme editor select the Navigation part
- Search for
Template:GT("Submit")
(in navigator.twig)
- Replace by
Template:GT("Validate")
- Create the source message
INSERT INTO lime_source_message (id, category, message) VALUES (NULL, NULL, 'Validate');
- Check the ID (if it's the 1st : ID is 1) and use it for next instruction
- Create the related translation :
INSERT INTO lime_message (id, language, translation) VALUES ('1', 'fr', 'Valider');