/usr/share/perl5/Padre/Locale.pm is in padre 1.00+dfsg-3.
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 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 | package Padre::Locale;
=pod
=head1 NAME
Padre::Locale - Locale support for Padre
=head1 DESCRIPTION
B<Padre::Locale> is a utility library that implements locale and encoding
support for the L<Padre> editor, and serves as an integration point between
the various identifier systems (Wx identifiers, ISO639, RFC3066, RFC4646)
The module implements a collection of public functions that can be called
by various parts of the editor to get locale and encoding information.
None of the functions in B<Padre::Locale> are exported. Because the need
for encoding and locale functionality is very high in a user-facing
application like Padre, the resulting quantity of exports would be very
very high.
Forcing all calls to the functions to be fully referenced assists in
reducing the complexity of the Perl symbol table (saving a small amount of
memory) and serves to improve maintainability, as there can always be
certainty about where a particular function is being called from.
=head1 FUNCTIONS
TO BE COMPLETED
=cut
use 5.008;
use strict;
use warnings;
use utf8; # Encoding of this source code
use List::Util ();
use File::Spec ();
# NOTE: Normally, namespace convention is that modules outside of
# Padre::Wx should not implement anything using Wx modules.
# We make an exception in this case, because we're only using the locale
# logic in Wx, which isn't related to widgets anyway.
use Padre::Constant ();
use Padre::Util ();
use Padre::Config ();
use Padre::Wx ();
use Padre::Locale::T;
use Padre::Logger;
use constant DEFAULT => 'en-gb';
use constant SHAREDIR => Padre::Util::sharedir('locale');
our $VERSION = '1.00';
# The RFC4646 table is the primary language data table and contains
# mappings from a Padre-supported language to all the relevant data
# about that language.
# According to the RFC all identifiers are case-insensitive, but for
# simplicity (for now) we list them all as lower-case.
my %RFC4646;
# The utf8text could/should be taken from gettext translations of the iso-codes package
# file:///usr/share/locale/*/LC_MESSAGES/iso_639.mo
# file:///usr/share/xml/iso-codes/iso_639.xml
# http://pkg-isocodes.alioth.debian.org/
sub label {
my $name = shift;
return $RFC4646{$name}->{utf8text} ? $RFC4646{$name}->{utf8text} : $name;
}
BEGIN {
%RFC4646 = (
# The default language for Padre is "United Kingdom English".
# This is the most common English dialect, used not only in
# the UK, but also other Commonwealth countries such as
# Australia, New Zealand, India, and Canada (sort of...)
# The following entry for it is heavily commented for
# documentation purposes.
'en-gb' => {
# REQUIRED: The gettext msgid for the language.
gettext => _T('English (United Kingdom)'),
# REQUIRED: The native name of the language
utf8text => 'English (United Kingdom)',
# OPTIONAL: Mapping to ISO 639 language tag.
# Used by Padre's first-generation locale support
# This should be lowercase.
iso639 => 'en',
# OPTIONAL: Mapping to the ISO 3166 country code.
# This should be uppercase.
iso3166 => 'GB',
# REQUIRED: The wxWidgets language (integer) identifier.
# http://docs.wxwidgets.org/stable/wx_languagecodes.html#languagecodes
wxid => Wx::LANGUAGE_ENGLISH_UK,
# OPTIONAL: Recommended language fallback sequence.
# This is an ordered list of alternative languages
# that Padre should try to use if no first-class
# support is available for this language.
# This is mainly used to allow closest-dialect support.
# For example, if full support for "Portugese Portugese"
# is not available, we first attempt to use
# "Brazillian Portugese" first, before falling back on
# "American English" and only then the default.
# Entries in the fallback list express intent, and
# they do not need to have an entry in %RFC4646.
fallback => [],
# OPTIONAL: If this language is an official language with
# a .po file (except for en-gb of course).
supported => 1,
},
# Example entry for an language which is not supported directly,
# but which Padre is aware of.
'en-au' => {
gettext => _T('English (Australia)'),
utf8text => 'English (Australia)',
iso639 => 'en',
iso3166 => 'AU',
wxid => Wx::LANGUAGE_ENGLISH_AUSTRALIA,
# Even though en-gb is the default language, in this
# specific case there is a clearly expressed desire for
# this fallback path.
# If we are ever forced for technical reasons to move to
# using en-us as a default, this group would explicitly
# wish to retain the final fallback to en-gb.
# NOTE: The en-nz is debatable
fallback => [ 'en-nz', 'en-gb' ],
},
# The fallback entry when Wx can't determine a language
'x-unknown' => {
gettext => _T('Unknown'),
utf8text => 'Unknown',
iso639 => 'en', # For convenience
iso3166 => undef,
wxid => Wx::LANGUAGE_UNKNOWN,
fallback => [],
},
# The official languages are listed sorted by identifier.
# NOTE: Please do not populate entries into this list unless
# you are a native speaker of a particular language and are
# fully aware of any idiosyncracies for that language.
'ar' => {
gettext => _T('Arabic'),
utf8text => 'عربي',
iso639 => 'ar',
iso3166 => undef,
wxid => Wx::LANGUAGE_ARABIC,
fallback => [],
supported => 1,
},
'cz' => {
gettext => _T('Czech'),
utf8text => 'Česky',
iso639 => 'cz',
iso3166 => undef,
wxid => Wx::LANGUAGE_CZECH,
fallback => [],
supported => 1,
},
'da' => {
gettext => _T('Danish'),
utf8text => 'Dansk',
iso639 => 'da',
iso3166 => 'DA',
wxid => Wx::LANGUAGE_DANISH,
fallback => [ 'en-gb', 'en-us' ],
supported => 0,
},
'de' => {
gettext => _T('German'),
utf8text => 'Deutsch',
iso639 => 'de',
iso3166 => undef,
wxid => Wx::LANGUAGE_GERMAN,
fallback => [],
supported => 1,
},
'en' => {
gettext => _T('English'),
utf8text => 'English',
iso639 => 'en',
iso3166 => undef,
wxid => Wx::LANGUAGE_ENGLISH,
fallback => [],
},
'en-ca' => {
gettext => _T('English (Canada)'),
utf8text => 'English (Canada)',
iso639 => 'en',
iso3166 => undef,
wxid => Wx::LANGUAGE_ENGLISH_CANADA,
fallback => [ 'en-us', 'en-gb' ],
},
'en-nz' => {
gettext => _T('English (New Zealand)'),
utf8text => 'English (New Zealand)',
iso639 => 'en',
iso3166 => 'NZ',
wxid => Wx::LANGUAGE_ENGLISH_NEW_ZEALAND,
# NOTE: The en-au is debatable
fallback => [ 'en-au', 'en-gb' ],
},
'en-us' => {
gettext => _T('English (United States)'),
utf8text => 'English (United States)',
iso639 => 'en',
iso3166 => 'US',
wxid => Wx::LANGUAGE_ENGLISH_US,
fallback => [ 'en-ca', 'en-gb' ],
},
'es-ar' => {
gettext => _T('Spanish (Argentina)'),
utf8text => 'Español (Argentina)',
iso639 => 'sp',
iso3166 => 'AR',
wxid => Wx::LANGUAGE_SPANISH_ARGENTINA,
fallback => [ 'es-es', 'en-us' ],
supported => 0,
},
'es-es' => {
# Simplify until there's another Spanish
# gettext => 'Spanish (Spain)',
# utf8text => 'Español (de España)',
gettext => _T('Spanish'),
utf8text => 'Español',
iso639 => 'sp',
iso3166 => 'SP',
wxid => Wx::LANGUAGE_SPANISH,
fallback => [],
supported => 1,
},
'fa' => {
gettext => _T('Persian (Iran)'),
utf8text => 'پارسی (ایران)',
iso639 => 'prs',
iso3166 => undef,
wxid => Wx::LANGUAGE_FARSI,
fallback => [],
supported => 1
},
'fr-ca' => {
gettext => _T('French (Canada)'),
utf8text => 'Français (Canada)',
iso639 => 'fr',
iso3166 => 'CA',
wxid => Wx::LANGUAGE_FRENCH_CANADIAN,
fallback => ['fr'],
supported => 0,
},
'fr' => {
# Simplify until there's another French
# gettext => 'French (France)',
# utf8text => 'Français (France)',
gettext => _T('French'),
utf8text => 'Français',
iso639 => 'fr',
iso3166 => undef,
wxid => Wx::LANGUAGE_FRENCH,
fallback => [],
supported => 1,
},
'he' => {
gettext => _T('Hebrew'),
utf8text => 'עברית',
iso639 => 'he',
iso3166 => undef,
wxid => Wx::LANGUAGE_HEBREW,
fallback => [],
supported => 1,
},
'hu' => {
gettext => _T('Hungarian'),
utf8text => 'Magyar',
iso639 => 'hu',
iso3166 => undef,
wxid => Wx::LANGUAGE_HUNGARIAN,
fallback => [],
supported => 1,
},
'it-it' => {
# Simplify until there's another Italian
# gettext => 'Italian (Italy)',
# utf8text => 'Italiano (Italy)',
gettext => _T('Italian'),
utf8text => 'Italiano',
iso639 => 'it',
iso3166 => 'IT',
wxid => Wx::LANGUAGE_ITALIAN,
fallback => [],
supported => 1,
},
'ja' => {
gettext => _T('Japanese'),
utf8text => '日本語',
iso639 => 'ja',
iso3166 => undef,
wxid => Wx::LANGUAGE_JAPANESE,
fallback => ['en-us'],
supported => 1,
},
'ko' => {
gettext => _T('Korean'),
utf8text => '한국어',
iso639 => 'ko',
iso3166 => 'KR',
wxid => Wx::LANGUAGE_KOREAN,
fallback => [],
supported => 1,
},
'nl-nl' => {
# Simplify until there's another Dutch
# gettext => 'Dutch (Netherlands)',
# utf8text => 'Nederlands (Nederlands)',
gettext => _T('Dutch'),
utf8text => 'Nederlands',
iso639 => 'nl',
iso3166 => 'NL',
wxid => Wx::LANGUAGE_DUTCH,
fallback => ['nl-be'],
supported => 1,
},
'nl-be' => {
gettext => _T('Dutch (Belgium)'),
utf8text => 'Nederlands (België)',
iso639 => 'nl',
iso3166 => 'BE',
wxid => Wx::LANGUAGE_DUTCH_BELGIAN,
fallback => ['nl-nl'],
supported => 0,
},
'no' => {
gettext => _T('Norwegian'),
utf8text => 'Norsk',
iso639 => 'no',
iso3166 => 'NO',
wxid => Wx::LANGUAGE_NORWEGIAN_BOKMAL,
fallback => [ 'en-gb', 'en-us' ],
supported => 1,
},
'pl' => {
gettext => _T('Polish'),
utf8text => 'Polski',
iso639 => 'pl',
iso3166 => 'PL',
wxid => Wx::LANGUAGE_POLISH,
fallback => [],
supported => 1,
},
'pt-br' => {
gettext => _T('Portuguese (Brazil)'),
utf8text => 'Português (Brasil)',
iso639 => 'pt',
iso3166 => 'BR',
wxid => Wx::LANGUAGE_PORTUGUESE_BRAZILIAN,
fallback => ['pt-pt'],
supported => 1,
},
'pt-pt' => {
gettext => _T('Portuguese (Portugal)'),
utf8text => 'Português (Europeu)',
iso639 => 'pt',
iso3166 => 'PT',
wxid => Wx::LANGUAGE_PORTUGUESE,
fallback => ['pt-br'],
supported => 0,
},
'ru' => {
gettext => _T('Russian'),
utf8text => 'Русский',
iso639 => 'ru',
iso3166 => undef,
wxid => Wx::LANGUAGE_RUSSIAN,
fallback => [],
supported => 1,
},
'tr' => {
gettext => _T('Turkish'),
utf8text => 'Türkçe',
iso639 => 'tr',
iso3166 => 'TR',
wxid => Wx::LANGUAGE_TURKISH,
fallback => [],
supported => 1,
},
'zh' => {
gettext => _T('Chinese'),
utf8text => 'Chinese',
iso639 => 'zh',
iso3166 => undef,
wxid => Wx::LANGUAGE_CHINESE,
fallback => [ 'zh-tw', 'zh-cn', 'en-us' ],
supported => 0,
},
'zh-cn' => {
gettext => _T('Chinese (Simplified)'),
utf8text => '中文 (简体)',
iso639 => 'zh',
iso3166 => 'CN',
wxid => Wx::LANGUAGE_CHINESE_SIMPLIFIED,
fallback => [ 'zh-tw', 'en-us' ],
supported => 1,
},
'zh-tw' => {
gettext => _T('Chinese (Traditional)'),
utf8text => '正體中文 (繁體)',
iso639 => 'zh',
iso3166 => 'TW',
wxid => Wx::LANGUAGE_CHINESE_TRADITIONAL,
fallback => [ 'zh-cn', 'en-us' ],
supported => 1,
},
# RFC4646 supports the interesting idea of comedy languages.
# We'll put these at the end :)
# Mostly what these do is uncover issues that might arise when
# a language is not supported by various older standards.
'x-klingon' => {
gettext => _T('Klingon'),
utf8text => 'Klingon', # TO DO Fix this at some point
iso639 => undef,
iso3166 => undef,
wxid => undef,
fallback => ['en-gb'], # Debatable... :)
supported => 0,
},
);
# Post-process to find the language that each language
# will actually fall back to, rather than prefer to fall back to.
foreach my $id ( keys %RFC4646 ) {
my $lang = $RFC4646{$id};
$lang->{actual} = List::Util::first {
$RFC4646{$_}->{supported};
}
( $id, @{ $lang->{fallback} }, DEFAULT );
}
}
use constant WX => Wx::Locale::GetSystemLanguage();
use constant system_rfc4646 => List::Util::first {
defined $RFC4646{$_}->{wxid}
&& $RFC4646{$_}->{wxid} == WX;
}
sort keys %RFC4646;
use constant last_resort_rfc4646 => 'en-gb';
#####################################################################
# Locale 2.0 Implementation
# Find the rfc4646 to use by default
sub rfc4646 {
my $config = Padre::Config->read;
my $locale = $_[0] || $config->locale;
if ( $locale and not $RFC4646{$locale} ) {
# Bad or unsupported configuration
$locale = undef;
}
# Try for the system default
$locale ||= system_rfc4646;
# Use the fallback default
$locale ||= DEFAULT;
# Return supported language for this language
return $RFC4646{$locale}->{actual};
}
sub rfc4646_exists {
defined $RFC4646{ $_[0] };
}
sub iso639 {
my $id = rfc4646();
my $iso639 = $RFC4646{$id}{iso639};
}
sub system_iso639 {
my $system = system_rfc4646();
my $iso639 = $RFC4646{$system}{iso639};
}
# Given a rfc4646 identifier, sets the language globally
# and returns the relevant Wx::Locale object.
sub object {
my $langcode = shift;
undef $langcode if ref($langcode);
my $id = rfc4646($langcode);
my $lang = $RFC4646{$id}->{wxid};
my $locale = Wx::Locale->new($lang);
$locale->AddCatalogLookupPathPrefix( Padre::Util::sharedir('locale') );
unless ( $locale->IsLoaded($id) ) {
my $file = Padre::Util::sharefile( 'locale', $id ) . '.mo';
$locale->AddCatalog($id) if -f $file;
}
return $locale;
}
sub menu_view_languages {
return map { $_ => Wx::gettext( $RFC4646{$_}->{gettext} ) } grep { $RFC4646{$_}->{supported} } sort keys %RFC4646;
}
#####################################################################
# Encoding Support
sub encoding_system_default {
my $encoding;
if (Padre::Constant::MAC) {
# In mac system Wx::Locale::GetSystemEncodingName() couldn't
# return the name of encoding directly.
# Use LC_CTYPE to guess system default encoding.
require POSIX;
my $loc = POSIX::setlocale( POSIX::LC_CTYPE() );
if ( $loc =~ m/^(C|POSIX)/i ) {
$encoding = 'ascii';
} elsif ( $loc =~ /\./ ) {
my ( $language, $codeset ) = split /\./, $loc;
$encoding = $codeset;
} elsif ( uc $loc eq 'UTF-8') {
$encoding = 'utf-8';
}
} elsif (Padre::Constant::WIN32) {
# In windows system Wx::Locale::GetSystemEncodingName() returns
# like ``windows-1257'' and it matches as ``cp1257''
# refer to src/common/intl.cpp
$encoding = Wx::Locale::GetSystemEncodingName();
$encoding =~ s/^windows-/cp/i;
} elsif (Padre::Constant::UNIX) {
$encoding = Wx::Locale::GetSystemEncodingName();
unless ($encoding) {
# this is not a usual case, but...
require POSIX;
my $loc = POSIX::setlocale( POSIX::LC_CTYPE() );
if ( $loc =~ m/^(C|POSIX)/i ) {
$encoding = 'ascii';
} elsif ( $loc =~ /\./ ) {
my ( $language, $codeset ) = split /\./, $loc;
$encoding = $codeset;
}
}
} else {
$encoding = Wx::Locale::GetSystemEncodingName();
}
unless ($encoding) {
# fail to get system default encoding
warn "Could not find system($^O) default encoding. "
. "Please check it manually and report your environment to the Padre development team.";
return;
}
TRACE("Encoding system default: ($encoding)") if DEBUG;
return $encoding;
}
sub encoding_from_string {
my $content = shift;
# Because Encode::Guess is slow and expensive, do an initial fast
# regexp scan for the simplest and most common "ascii" encoding.
return 'ascii' unless defined $content;
return 'ascii' unless $content =~ /[^[:ascii:]]/;
# FIX ME
# This is a just heuristic approach. Maybe there is a better way. :)
# Japanese and Chinese have to be tested. Only Korean is tested.
#
# If locale of config is one of CJK, then we could guess more correctly.
# Any type of locale which is supported by Encode::Guess could be added.
# Or, we'll use system default encode setting
# If we cannot get system default, then forced it to set 'utf-8'
my $default = '';
my @guesses = ();
my $encoding = '';
my $language = rfc4646();
if ( $language eq 'ko' ) { # Korean
@guesses = qw/utf-8 euc-kr/;
} elsif ( $language eq 'ja' ) { # Japan (not yet tested)
@guesses = qw/utf-8 iso8859-1 euc-jp shiftjis 7bit-jis/;
} elsif ( $language =~ /^zh/ ) { # Chinese (not yet tested)
@guesses = qw/utf-8 iso8859-1 euc-cn/;
} else {
$default ||= encoding_system_default();
@guesses = ($default) if $default;
}
require Encode::Guess;
push @guesses, 'latin1';
my $guess = Encode::Guess::guess_encoding( $content, @guesses );
unless ( defined $guess ) {
$guess = ''; # To avoid warnings
}
TRACE("Encoding guess: ($guess)") if DEBUG;
# Wow, nice!
if ( ref($guess) and ref($guess) =~ m/^Encode::/ ) {
$encoding = $guess->name;
# utf-8 is in suggestion
} elsif ( $guess =~ m/utf8/ ) {
$encoding = 'utf-8';
# Choose from suggestion
} elsif ( $guess =~ m/or/ ) {
my @suggest_encodings = split /\sor\s/, "$guess";
$encoding = $suggest_encodings[0];
# Use system default
} else {
$default ||= encoding_system_default();
$encoding = $default;
}
unless ($encoding) {
# Failed to guess encoding from contents
warn "Could not find encoding. Defaulting to 'utf-8'. "
. "Please check it manually and report to the Padre development team.";
$encoding = 'utf-8';
}
TRACE("Encoding selected: ($encoding)") if DEBUG;
return $encoding;
}
1;
# Copyright 2008-2013 The Padre development team as listed in Padre.pm.
# LICENSE
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl 5 itself.
|