how to change "Create New Phone Ticket"

Moderator: crythias

Post Reply
wiegandr
Znuny newbie
Posts: 32
Joined: 23 Jun 2016, 08:55
Znuny Version: OTRS5
Real Name: Ralf Wiegand
Company: TML Technologies

how to change "Create New Phone Ticket"

Post by wiegandr »

hello all -
After agents click on "New Phone Ticket", the the pop shows as title "Create New Phone Ticket". How can I change this?
Thank You, your help is appreciated.

Ralf Wiegand
RStraub
Znuny guru
Posts: 2210
Joined: 13 Mar 2014, 09:16
Znuny Version: 6.0.14
Real Name: Rolf Straub

Re: how to change "Create New Phone Ticket"

Post by RStraub »

Hello Ralf,

the least intrusive way to accomplish this, would be to add a new translation in ~otrs/Kernel/Language.

You even can translate english to english, like so in a custom file "en_Custom.pm":

Code: Select all

package Kernel::Language::en_Custom;
use strict;
use warnings;
use utf8;

sub Data {
    my $Self = shift;
    $Self->{Translation}->{'Create New Phone Ticket'} = 'Some random new text';
}

1;

Currently using: OTRS 6.0.14 -- MariaDB -- Ubuntu 16 LTS
Post Reply