Change Accept and Decline in Events

Does anybody have an idea how I could change Accept and Decline in the invitation in the events module into another language.
These two items are not in the translation table.

In the invitation template you can use $fp_events_link and $fp_events_link_declined which will handle the responses of the invitation.

The final invitation has the links showing as Accept and Decline. Is it possible and where to change this?

Can you post here the exact contents of your invitation email? It makes it easier for me to try and help you find the relevant place in the code.

It’s all there in the sample invitation template of SuiteCRM.

Enclosed are the template and the corresponding email delegates receive.

You’ll find the links being constructed in

modules/FP_events/controller.php

stuff like this:

/var/www/html/modules/FP_events/controller.php:399:                $event->link_declined = "<a href='".$sugar_config['ste_url']."/index.php?entryPoint=responseEntryPoint&event=".$event->id."&delegate=".$contact->id."&type=c&response=declie'>Decline</a>";

See that “declie”? That sure looks like a bug. :slight_smile:

And the fact that this is hard-coded is also wrong. It should be a string so it would be translatable and customizable…