I have some problem with adding language translation to OTRS. I already write coding in .pm file which stated at below but when I test interface, the language test could not read on OTRS interface, it is appear (??????) as below picture. do you have any solution ?. please help me
Thank you.

Code: Select all
package Kernel::Language::th;
use strict;
use warnings;
use vars qw(@ISA $VERSION);
sub Data {
my $Self = shift;
# $$START$$
# possible charsets
$Self->{Charset} = ['utf-8', ];
# date formats (%A=WeekDay;%B=LongMonth;%T=Time;%D=Day;%M=Month;%Y=Jear;)
$Self->{DateFormat} = '%D.%M.%Y %T';
$Self->{DateFormatLong} = '%A %D %B %T %Y';
$Self->{DateFormatShort} = '%D.%M.%Y';
$Self->{DateInputFormat} = '%D.%M.%Y';
$Self->{DateInputFormatLong} = '%D.%M.%Y - %T';
$Self->{Translation} = {
# Template: AAABase
'Yes' => 'ใช่',
'update' => 'อัปเดต,
};
# $$STOP$$
return 1;
}
1;