• Hi,

    I would like to translate the “complimentary” ticket type, but I can’t find where to do it. It’s not in the .po file. Is it hard-coded? I would be satisfied if it could only be translated on the generated tickets.

    Best Regards,
    Ronald

    • This topic was modified 5 years, 2 months ago by degarnaal.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello, there is really no need to do that. The complementary field is only visible to admin’s and the end-user never sees it

    Thread Starter degarnaal

    (@degarnaal)

    The text “Complimentary” is shown on the ticket, that’s what I would like to change (not that I’m planning to generate a lot of them ?? ).

    Plugin Author Joe Dolson

    (@joedolson)

    If you need this only on the ticket itself, you could use a custom ticket template, and include the following where it calls mt_ticket_type():

    if ( 'complimentary' == mt_get_ticket_type() ) {
       echo 'Translated Complimentary Term';
    } else {
       mt_ticket_type();
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Rename “Complimentary” ticket type’ is closed to new replies.