/usr/share/otrs/Kernel/Language.pm is in otrs2 6.0.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | # --
# Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
package Kernel::Language;
use strict;
use warnings;
use Exporter qw(import);
our @EXPORT_OK = qw(Translatable); ## no critic
use File::stat;
use Digest::MD5;
use Kernel::System::DateTime;
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::Log',
'Kernel::System::Main',
);
=head1 NAME
Kernel::Language - global language interface
=head1 DESCRIPTION
All language functions.
=head1 PUBLIC INTERFACE
=head2 new()
create a language object. Do not use it directly, instead use:
use Kernel::System::ObjectManager;
local $Kernel::OM = Kernel::System::ObjectManager->new(
'Kernel::Language' => {
UserLanguage => 'de',
},
);
my $LanguageObject = $Kernel::OM->Get('Kernel::Language');
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {%Param};
bless( $Self, $Type );
# 0=off; 1=on; 2=get all not translated words; 3=get all requests
$Self->{Debug} = 0;
# get needed object
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
my $MainObject = $Kernel::OM->Get('Kernel::System::Main');
# user language
$Self->{UserLanguage} = $Param{UserLanguage}
|| $ConfigObject->Get('DefaultLanguage')
|| 'en';
# check if language is configured
my %Languages = %{ $ConfigObject->Get('DefaultUsedLanguages') };
if ( !$Languages{ $Self->{UserLanguage} } ) {
$Self->{UserLanguage} = 'en';
}
# take time zone
$Self->{TimeZone} = $Param{UserTimeZone} || $Param{TimeZone} || Kernel::System::DateTime->OTRSTimeZoneGet();
# Debug
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'debug',
Message => "UserLanguage = $Self->{UserLanguage}",
);
}
my $Home = $ConfigObject->Get('Home') . '/';
my $LanguageFile = "Kernel::Language::$Self->{UserLanguage}";
# load text catalog ...
if ( !$MainObject->Require($LanguageFile) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Sorry, can't locate or load $LanguageFile "
. "translation! Check the Kernel/Language/$Self->{UserLanguage}.pm (perl -cw)!",
);
}
else {
push @{ $Self->{LanguageFiles} }, "$Home/Kernel/Language/$Self->{UserLanguage}.pm";
}
my $LanguageFileDataMethod = $LanguageFile->can('Data');
# Execute translation map by calling language file data method via reference.
if ($LanguageFileDataMethod) {
if ( $LanguageFileDataMethod->($Self) ) {
# Debug info.
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'debug',
Message => "Kernel::Language::$Self->{UserLanguage} load ... done.",
);
}
}
}
else {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Sorry, can't load $LanguageFile! Check if it provides Data method",
);
}
# load action text catalog ...
my $CustomTranslationModule = '';
my $CustomTranslationFile = '';
# do not include addition translation files, a new translation file gets created
if ( !$Param{TranslationFile} ) {
# looking to addition translation files
my @Files = $MainObject->DirectoryRead(
Directory => $Home . "Kernel/Language/",
Filter => "$Self->{UserLanguage}_*.pm",
);
FILE:
for my $File (@Files) {
# get module name based on file name
my $Module = $File =~ s/^$Home(.*)\.pm$/$1/rg;
$Module =~ s/\/\//\//g;
$Module =~ s/\//::/g;
# ignore language translation files like (en_GB, en_CA, ...)
next FILE if $Module =~ /.._..$/;
# Remember custom files to load at the end.
if ( $Module =~ /_Custom$/ ) {
$CustomTranslationModule = $Module;
$CustomTranslationFile = $File;
next FILE;
}
# load translation module
if ( !$MainObject->Require($Module) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Sorry, can't load $Module! Check the $File (perl -cw)!",
);
next FILE;
}
else {
push @{ $Self->{LanguageFiles} }, $File;
}
my $ModuleDataMethod = $Module->can('Data');
if ( !$ModuleDataMethod ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Sorry, can't load $Module! Check if it provides Data method.",
);
next FILE;
}
# Execute translation map by calling module data method via reference.
if ( eval { $ModuleDataMethod->($Self) } ) {
# debug info
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'debug',
Message => "$Module load ... done.",
);
}
}
}
# load custom text catalog ...
if ( $CustomTranslationModule && $MainObject->Require($CustomTranslationModule) ) {
push @{ $Self->{LanguageFiles} }, $CustomTranslationFile;
my $CustomTranslationDataMethod = $CustomTranslationModule->can('Data');
# Execute translation map by calling custom module data method via reference.
if ($CustomTranslationDataMethod) {
if ( eval { $CustomTranslationDataMethod->($Self) } ) {
# Debug info.
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'Debug',
Message => "$CustomTranslationModule load ... done.",
);
}
}
}
else {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Sorry, can't load $CustomTranslationModule! Check if it provides Data method.",
);
}
}
}
# if no return charset is given, use recommended return charset
if ( !$Self->{ReturnCharset} ) {
$Self->{ReturnCharset} = $Self->GetRecommendedCharset();
}
# get source file charset
# what charset should I use (take it from translation file)!
if ( $Self->{Charset} && ref $Self->{Charset} eq 'ARRAY' ) {
$Self->{TranslationCharset} = $Self->{Charset}->[-1];
}
return $Self;
}
=head2 Translatable()
this is a no-op to mark a text as translatable in the Perl code.
=cut
sub Translatable {
return shift;
}
=head2 Translate()
translate a text with placeholders.
my $Text = $LanguageObject->Translate('Hello %s!', 'world');
=cut
sub Translate {
my ( $Self, $Text, @Parameters ) = @_;
$Text //= '';
$Text = $Self->{Translation}->{$Text} || $Text;
return $Text if !@Parameters;
for ( 0 .. $#Parameters ) {
return $Text if !defined $Parameters[$_];
$Text =~ s/\%(s|d)/$Parameters[$_]/;
}
return $Text;
}
=head2 FormatTimeString()
formats a timestamp according to the specified date format for the current
language (locale).
my $Date = $LanguageObject->FormatTimeString(
'2009-12-12 12:12:12', # timestamp
'DateFormat', # which date format to use, e. g. DateFormatLong
0, # optional, hides the seconds from the time output
);
Please note that the TimeZone will not be applied in the case of DateFormatShort (date only)
to avoid switching to another date.
If you only pass an ISO date ('2009-12-12'), it will be returned unchanged.
Invalid strings will also be returned with an error logged.
=cut
sub FormatTimeString {
my ( $Self, $String, $Config, $Short ) = @_;
return '' if !$String;
$Config ||= 'DateFormat';
$Short ||= 0;
# Valid timestamp
if ( $String =~ /(\d{4})-(\d{2})-(\d{2})\s(\d{2}):(\d{2}):(\d{2})/ ) {
my $ReturnString = $Self->{$Config} || "$Config needs to be translated!";
my $DateTimeObject = $Kernel::OM->Create(
'Kernel::System::DateTime',
ObjectParams => {
String => $String,
},
);
if ( !$DateTimeObject ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Invalid date/time string $String.",
);
return $String;
}
# Convert to time zone, but only if we actually display the time!
# Otherwise the date might be off by one day because of the TimeZone diff.
if ( $Self->{TimeZone} && $Config ne 'DateFormatShort' ) {
$DateTimeObject->ToTimeZone( TimeZone => $Self->{TimeZone} );
}
my $DateTimeValues = $DateTimeObject->Get();
my $Year = $DateTimeValues->{Year};
my $Month = sprintf "%02d", $DateTimeValues->{Month};
my $MonthAbbr = $DateTimeValues->{MonthAbbr};
my $Day = sprintf "%02d", $DateTimeValues->{Day};
my $DayAbbr = $DateTimeValues->{DayAbbr};
my $Hour = sprintf "%02d", $DateTimeValues->{Hour};
my $Minute = sprintf "%02d", $DateTimeValues->{Minute};
my $Second = sprintf "%02d", $DateTimeValues->{Second};
if ($Short) {
$ReturnString =~ s/\%T/$Hour:$Minute/g;
}
else {
$ReturnString =~ s/\%T/$Hour:$Minute:$Second/g;
}
$ReturnString =~ s/\%D/$Day/g;
$ReturnString =~ s/\%M/$Month/g;
$ReturnString =~ s/\%Y/$Year/g;
$ReturnString =~ s{(\%A)}{$Self->Translate($DayAbbr);}egx;
$ReturnString
=~ s{(\%B)}{$Self->Translate($MonthAbbr);}egx;
# output time zone only if it differs from OTRS' time zone
if (
$Config ne 'DateFormatShort'
&& $Self->{TimeZone}
&& $Self->{TimeZone} ne Kernel::System::DateTime->OTRSTimeZoneGet()
)
{
return $ReturnString . " ($Self->{TimeZone})";
}
return $ReturnString;
}
# Invalid string passed? (don't log for ISO dates)
if ( $String !~ /^(\d{2}:\d{2}:\d{2})$/ ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'notice',
Message => "No FormatTimeString() translation found for '$String' string!",
);
}
return $String;
}
=head2 GetRecommendedCharset()
DEPRECATED. Don't use this function any more, 'utf-8' is always the internal charset.
Returns the recommended charset for frontend (based on translation
file or utf-8).
my $Charset = $LanguageObject->GetRecommendedCharset().
=cut
sub GetRecommendedCharset {
my $Self = shift;
return 'utf-8';
}
=head2 GetPossibleCharsets()
Returns an array of possible charsets (based on translation file).
my @Charsets = $LanguageObject->GetPossibleCharsets().
=cut
sub GetPossibleCharsets {
my $Self = shift;
return @{ $Self->{Charset} } if $Self->{Charset};
return;
}
=head2 Time()
Returns a time string in language format (based on translation file).
$Time = $LanguageObject->Time(
Action => 'GET',
Format => 'DateFormat',
);
$TimeLong = $LanguageObject->Time(
Action => 'GET',
Format => 'DateFormatLong',
);
$TimeLong = $LanguageObject->Time(
Action => 'RETURN',
Format => 'DateFormatLong',
Year => 1977,
Month => 10,
Day => 27,
Hour => 20,
Minute => 10,
Second => 05,
);
These tags are supported: %A=WeekDay;%B=LongMonth;%T=Time;%D=Day;%M=Month;%Y=Year;
Note that %A only works correctly with Action GET, it might be dropped otherwise.
Also note that it is also possible to pass HTML strings for date input:
$TimeLong = $LanguageObject->Time(
Action => 'RETURN',
Format => 'DateInputFormatLong',
Mode => 'NotNumeric',
Year => '<input value="2014"/>',
Month => '<input value="1"/>',
Day => '<input value="10"/>',
Hour => '<input value="11"/>',
Minute => '<input value="12"/>',
Second => '<input value="13"/>',
);
Note that %B may not work in NonNumeric mode.
=cut
sub Time {
my ( $Self, %Param ) = @_;
# check needed stuff
for (qw(Action Format)) {
if ( !$Param{$_} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $_!",
);
return;
}
}
my $ReturnString = $Self->{ $Param{Format} } || 'Need to be translated!';
my ( $Year, $Month, $MonthAbbr, $Day, $DayAbbr, $Hour, $Minute, $Second );
# set or get time
if ( lc $Param{Action} eq 'get' ) {
my $DateTimeObject = $Kernel::OM->Create(
'Kernel::System::DateTime',
ObjectParams => {
TimeZone => $Self->{TimeZone},
},
);
my $DateTimeValues = $DateTimeObject->Get();
$Year = $DateTimeValues->{Year};
$Month = sprintf "%02d", $DateTimeValues->{Month};
$MonthAbbr = $DateTimeValues->{MonthAbbr};
$Day = sprintf "%02d", $DateTimeValues->{Day};
$DayAbbr = $DateTimeValues->{DayAbbr};
$Hour = sprintf "%02d", $DateTimeValues->{Hour};
$Minute = sprintf "%02d", $DateTimeValues->{Minute};
$Second = sprintf "%02d", $DateTimeValues->{Second};
}
elsif ( lc $Param{Action} eq 'return' ) {
$Year = $Param{Year} || 0;
$Month = $Param{Month} || 0;
$Day = $Param{Day} || 0;
$Hour = $Param{Hour} || 0;
$Minute = $Param{Minute} || 0;
$Second = $Param{Second} || 0;
my @MonthAbbrs = qw/Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec/;
$MonthAbbr = defined $Month && $Month =~ m/^\d+$/ ? $MonthAbbrs[ $Month - 1 ] : '';
}
# do replace
if ( ( lc $Param{Action} eq 'get' ) || ( lc $Param{Action} eq 'return' ) ) {
my $Time = '';
if ( $Param{Mode} && $Param{Mode} =~ /^NotNumeric$/i ) {
if ( !$Second ) {
$Time = "$Hour:$Minute";
}
else {
$Time = "$Hour:$Minute:$Second";
}
}
else {
$Time = sprintf( "%02d:%02d:%02d", $Hour, $Minute, $Second );
$Day = sprintf( "%02d", $Day );
$Month = sprintf( "%02d", $Month );
}
$ReturnString =~ s/\%T/$Time/g;
$ReturnString =~ s/\%D/$Day/g;
$ReturnString =~ s/\%M/$Month/g;
$ReturnString =~ s/\%Y/$Year/g;
$ReturnString =~ s{(\%A)}{defined $DayAbbr ? $Self->Translate($DayAbbr) : '';}egx;
$ReturnString
=~ s{(\%B)}{defined $MonthAbbr ? $Self->Translate($MonthAbbr) : '';}egx;
return $ReturnString;
}
return $ReturnString;
}
=head2 LanguageChecksum()
This function returns an MD5 sum that is generated from all loaded language files and their modification timestamps.
Whenever a file is changed, added or removed, this checksum will change.
=cut
sub LanguageChecksum {
my $Self = shift;
# Create a string with filenames and file modification times of the loaded language files.
my $LanguageString = '';
for my $File ( @{ $Self->{LanguageFiles} } ) {
# get file metadata
my $Stat = stat($File);
if ( !$Stat ) {
print STDERR "Error: cannot stat file '$File': $!";
return;
}
$LanguageString .= $File . $Stat->mtime();
}
return Digest::MD5::md5_hex($LanguageString);
}
1;
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<http://otrs.org/>).
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (AGPL). If you
did not receive this file, see L<http://www.gnu.org/licenses/agpl.txt>.
=cut
|