1# Common tools for test files to find the locales which exist on the 2# system. Caller should have verified that this isn't miniperl before calling 3# the functions. 4 5# Note that it's okay that some languages have their native names 6# capitalized here even though that's not "right". They are lowercased 7# anyway later during the scanning process (and besides, some clueless 8# vendor might have them capitalized erroneously anyway). 9 10# Functions whose names begin with underscore are internal helper functions 11# for this file, and are not to be used by outside callers. 12 13use Config; 14use strict; 15use warnings; 16use feature 'state'; 17 18eval { require POSIX; import POSIX 'locale_h'; }; 19my $has_locale_h = ! $@; 20 21my @known_categories = ( qw(LC_ALL LC_COLLATE LC_CTYPE LC_MESSAGES LC_MONETARY 22 LC_NUMERIC LC_TIME LC_ADDRESS LC_IDENTIFICATION 23 LC_MEASUREMENT LC_PAPER LC_TELEPHONE LC_SYNTAX 24 LC_TOD)); 25my @platform_categories; 26 27sub is_category_valid($) { 28 my $cat_name = shift =~ s/^LC_//r; 29 30 # Recognize Configure option to exclude a category 31 return $Config{ccflags} !~ /\bD?NO_LOCALE_$cat_name\b/; 32} 33 34# LC_ALL can be -1 on some platforms. And, in fact the implementors could 35# legally use any integer to represent any category. But it makes the most 36# sense for them to have used small integers. Below, we create new locale 37# numbers for ones missing from this machine. We make them very negative, 38# hopefully more negative than anything likely to be a valid category on the 39# platform, but also below is a check to be sure that our guess is valid. 40my $max_bad_category_number = -1000000; 41 42# Initialize this hash so that it looks like e.g., 43# 6 => 'CTYPE', 44# where 6 is the value of &POSIX::LC_CTYPE 45my %category_name; 46my %category_number; 47if ($has_locale_h) { 48 my $number_for_missing_category = $max_bad_category_number; 49 foreach my $name (@known_categories) { 50 my $number = eval "&POSIX::$name"; 51 if ($@) { 52 # Use a negative number (smaller than any legitimate category 53 # number) if the platform doesn't support this category, so we 54 # have an entry for all the ones that might be specified in calls 55 # to us. 56 $number = $number_for_missing_category--; 57 } 58 elsif ( $number !~ / ^ -? \d+ $ /x 59 || $number <= $max_bad_category_number) 60 { 61 # We think this should be an int. And it has to be larger than 62 # any of our synthetic numbers. 63 die "Unexpected locale category number '$number' for $name" 64 } 65 else { 66 push @platform_categories, $name; 67 } 68 69 $name =~ s/LC_//; 70 $category_name{$number} = "$name"; 71 $category_number{$name} = $number; 72 } 73} 74 75sub _my_diag($) { 76 my $message = shift; 77 if (defined &main::diag) { 78 diag($message); 79 } 80 else { 81 local($\, $", $,) = (undef, ' ', ''); 82 print STDERR $message, "\n"; 83 } 84} 85 86sub _my_fail($) { 87 my $message = shift; 88 if (defined &main::fail) { 89 fail($message); 90 } 91 else { 92 local($\, $", $,) = (undef, ' ', ''); 93 print "not ok 0 $message\n"; 94 } 95} 96 97sub _trylocale ($$$$) { # For use only by other functions in this file! 98 99 # Adds the locale given by the first parameter to the list given by the 100 # 3rd iff the platform supports the locale in each of the category numbers 101 # given by the 2nd parameter, which is either a single category or a 102 # reference to a list of categories. 103 # 104 # The 4th parameter is true if to accept locales that aren't apparently 105 # fully compatible with Perl. 106 107 my $locale = shift; 108 my $categories = shift; 109 my $list = shift; 110 my $allow_incompatible = shift; 111 112 return if ! $locale || grep { $locale eq $_ } @$list; 113 114 # This is a toy (pig latin) locale that is not fully implemented on some 115 # systems 116 return if $locale =~ / ^ pig $ /ix; 117 118 # Certain platforms have a crippled locale system in which setlocale 119 # returns success for just about any possible locale name, but if anything 120 # actually happens as a result of the call, it is that the underlying 121 # locale is set to a system default, likely C or C.UTF-8. We can't test 122 # such systems fully, but we shouldn't disable the user from using 123 # locales, as it may work out for them (or not). 124 return if defined $Config{d_setlocale_accepts_any_locale_name} 125 && $locale !~ / ^ (?: C | POSIX | C\.UTF-8 ) $/ix; 126 127 $categories = [ $categories ] unless ref $categories; 128 129 my $badutf8 = 0; 130 my $plays_well = 1; 131 132 use warnings 'locale'; 133 134 local $SIG{__WARN__} = sub { 135 $badutf8 = 1 if grep { /Malformed UTF-8/ } @_; 136 $plays_well = 0 if grep { 137 /Locale .* may not work well(?# 138 )|The Perl program will use the expected meanings/i 139 } @_; 140 }; 141 142 # Incompatible locales aren't warned about unless using locales. 143 use locale; 144 145 # Sort the input so CTYPE is first, COLLATE comes after all but ALL. This 146 # is because locale.c detects bad locales only with CTYPE, and COLLATE on 147 # some platforms can core dump if it is a bad locale. 148 my @sorted; 149 my $has_ctype = 0; 150 my $has_all = 0; 151 my $has_collate = 0; 152 foreach my $category (@$categories) { 153 die "category '$category' must instead be a number" 154 unless $category =~ / ^ -? \d+ $ /x; 155 if ($category_name{$category} eq 'CTYPE') { 156 $has_ctype = 1; 157 } 158 elsif ($category_name{$category} eq 'ALL') { 159 $has_all = 1; 160 } 161 elsif ($category_name{$category} eq 'COLLATE') { 162 $has_collate = 1; 163 } 164 else { 165 push @sorted, $category unless grep { $_ == $category } @sorted; 166 } 167 } 168 push @sorted, $category_number{'COLLATE'} if $has_collate; 169 push @sorted, $category_number{'ALL'} if $has_all; 170 unshift @sorted, $category_number{'CTYPE'} if $has_ctype || ! $allow_incompatible; 171 172 foreach my $category (@sorted) { 173 return unless setlocale($category, $locale); 174 last if $badutf8 || ! $plays_well; 175 } 176 177 if ($badutf8) { 178 _my_fail("Verify locale name doesn't contain malformed utf8"); 179 return; 180 } 181 push @$list, $locale if $plays_well || $allow_incompatible; 182} 183 184sub _decode_encodings { # For use only by other functions in this file! 185 my @enc; 186 187 foreach (split(/ /, shift)) { 188 if (/^(\d+)$/) { 189 push @enc, "ISO8859-$1"; 190 push @enc, "iso8859$1"; # HP 191 if ($1 eq '1') { 192 push @enc, "roman8"; # HP 193 } 194 push @enc, $_; 195 push @enc, "$_.UTF-8"; 196 push @enc, "$_.65001"; # Windows UTF-8 197 push @enc, "$_.ACP"; # Windows ANSI code page 198 push @enc, "$_.OCP"; # Windows OEM code page 199 push @enc, "$_.1252"; # Windows 200 } 201 } 202 if ($^O eq 'os390') { 203 push @enc, qw(IBM-037 IBM-819 IBM-1047); 204 } 205 push @enc, "UTF-8"; 206 push @enc, "65001"; # Windows UTF-8 207 208 return @enc; 209} 210 211sub valid_locale_categories() { 212 # Returns a list of the locale categories (expressed as strings, like 213 # "LC_ALL) known to this program that are available on this platform. 214 215 return grep { is_category_valid($_) } @platform_categories; 216} 217 218sub locales_enabled(;$) { 219 # If no parameter is specified, the function returns 1 if there is any 220 # "safe" locale handling available to the caller; otherwise 0. Safeness 221 # is defined here as the caller operating in the main thread of a program, 222 # or if threaded locales are safe on the platform and Configured to be 223 # used. This sub is used for testing purposes, and for those, this 224 # definition of safety is sufficient, and necessary to get some tests to 225 # run on certain configurations on certain platforms. But beware that the 226 # main thread can change the locale of any subthreads unless 227 # ${^SAFE_LOCALES} is non-zero. 228 # 229 # Use the optional parameter to discover if a particular category or 230 # categories are available on the system. 1 is returned if the global 231 # criteria described in the previous paragraph are true, AND if all the 232 # specified categories are available on the platform and Configured to be 233 # used. Otherwise 0 is returned. The parameter is either a single POSIX 234 # locale category or a reference to a list of them. Each category must be 235 # its name as a string, like 'LC_TIME' (the initial 'LC_' is optional), or 236 # the number this platform uses to signify the category (e.g., 237 # 'locales_enabled(&POSIX::LC_CTYPE)' 238 # 239 # When the function returns 1 and a parameter was specified as a list 240 # reference, the reference will be altered on return to point to an 241 # equivalent list such that the categories are numeric instead of strings 242 # and sorted to meet the input expectations of _trylocale(). 243 # 244 # It is a fatal error to call this with something that isn't a known 245 # category to this file. If this happens, look first for a typo, and 246 # second if you are using a category unknown to Perl. In the latter case 247 # a bug report should be submitted. 248 249 # khw cargo-culted the '?' in the pattern on the next line. 250 return 0 if $Config{ccflags} =~ /\bD?NO_LOCALE\b/; 251 252 # If we can't load the POSIX XS module, we can't have locales even if they 253 # normally would be available 254 return 0 if ! defined &DynaLoader::boot_DynaLoader; 255 256 # Don't test locales where they aren't safe. On systems with unsafe 257 # threads, for the purposes of testing, we consider the main thread safe, 258 # and all other threads unsafe. 259 if (! ${^SAFE_LOCALES}) { 260 return 0 if $^O eq 'os390'; # Threaded locales don't work well here 261 require threads; 262 return 0 if threads->tid() != 0; 263 } 264 265 # If no setlocale, we need the POSIX 2008 alternatives 266 if (! $Config{d_setlocale}) { 267 return 0 if $Config{ccflags} =~ /\bD?NO_POSIX_2008_LOCALE\b/; 268 return 0 unless $Config{d_newlocale}; 269 return 0 unless $Config{d_uselocale}; 270 return 0 unless $Config{d_duplocale}; 271 return 0 unless $Config{d_freelocale}; 272 } 273 274 # Done with the global possibilities. Now check if any passed in category 275 # is disabled. 276 277 my $categories_ref = $_[0]; 278 my $return_categories_numbers = 0; 279 my @categories_numbers; 280 my $has_LC_ALL = 0; 281 my $has_LC_COLLATE = 0; 282 283 if (defined $categories_ref) { 284 my @local_categories_copy; 285 286 my $reftype = ref $categories_ref; 287 if ($reftype eq 'ARRAY') { 288 @local_categories_copy = @$categories_ref; 289 $return_categories_numbers = 1; 290 } 291 elsif ($reftype ne "") { 292 die "Parameter to locales_enabled() must be an ARRAY;" 293 . " instead you used a $reftype"; 294 } 295 else { # Single category passed in 296 @local_categories_copy = $categories_ref; 297 } 298 299 for my $category_name_or_number (@local_categories_copy) { 300 my $name; 301 my $number; 302 if ($category_name_or_number =~ / ^ -? \d+ $ /x) { 303 $number = $category_name_or_number; 304 die "Invalid locale category number '$number'" 305 unless grep { $number == $_ } keys %category_name; 306 $name = $category_name{$number}; 307 } 308 else { 309 $name = $category_name_or_number; 310 $name =~ s/ ^ LC_ //x; 311 foreach my $trial (keys %category_name) { 312 if ($category_name{$trial} eq $name) { 313 $number = $trial; 314 last; 315 } 316 } 317 die "Invalid locale category name '$name'" 318 unless defined $number; 319 } 320 321 return 0 if $number <= $max_bad_category_number 322 || ! is_category_valid($name); 323 324 325 eval "defined &POSIX::LC_$name"; 326 return 0 if $@; 327 328 if ($return_categories_numbers) { 329 if ($name eq 'CTYPE') { 330 unshift @categories_numbers, $number; # Always first 331 } 332 elsif ($name eq 'ALL') { 333 $has_LC_ALL = 1; 334 } 335 elsif ($name eq 'COLLATE') { 336 $has_LC_COLLATE = 1; 337 } 338 else { 339 push @categories_numbers, $number; 340 } 341 } 342 } 343 } 344 345 if ($return_categories_numbers) { 346 347 # COLLATE comes after all other locales except ALL, which comes last 348 if ($has_LC_COLLATE) { 349 push @categories_numbers, $category_number{'COLLATE'}; 350 } 351 if ($has_LC_ALL) { 352 push @categories_numbers, $category_number{'ALL'}; 353 } 354 355 @$categories_ref = @categories_numbers; 356 } 357 358 return 1; 359} 360 361 362sub find_locales ($;$) { 363 364 # Returns an array of all the locales we found on the system. If the 365 # optional 2nd parameter is non-zero, the list includes all found locales; 366 # otherwise it is restricted to those locales that play well with Perl, as 367 # far as we can easily determine. 368 # 369 # The first parameter is either a single locale category or a reference to 370 # a list of categories to find valid locales for it (or in the case of 371 # multiple) for all of them. Each category can be a name (like 'LC_ALL' 372 # or simply 'ALL') or the C enum value for the category. 373 374 my $input_categories = shift; 375 my $allow_incompatible = shift // 0; 376 377 my @categories = (ref $input_categories) ? $input_categories->@* : $input_categories; 378 return unless locales_enabled(\@categories); 379 380 # Note, the subroutine call above converts the $categories into a form 381 # suitable for _trylocale(). 382 383 # Visual C's CRT goes silly on strings of the form "en_US.ISO8859-1" 384 # and mingw32 uses said silly CRT 385 # This doesn't seem to be an issue any more, at least on Windows XP, 386 # so re-enable the tests for Windows XP onwards. 387 my $winxp = ($^O eq 'MSWin32' && defined &Win32::GetOSVersion && 388 join('.', (Win32::GetOSVersion())[1..2]) >= 5.1); 389 return if (($^O eq 'MSWin32' && !$winxp) 390 && $Config{cc} =~ /^(cl|gcc|g\+\+|ici)/i); 391 392 my @Locale; 393 _trylocale("C", \@categories, \@Locale, $allow_incompatible); 394 _trylocale("POSIX", \@categories, \@Locale, $allow_incompatible); 395 396 if ($Config{d_has_C_UTF8} && $Config{d_has_C_UTF8} eq 'true') { 397 _trylocale("C.UTF-8", \@categories, \@Locale, $allow_incompatible); 398 } 399 400 # There's no point in looking at anything more if we know that setlocale 401 # will return success on any garbage or non-garbage name. 402 return sort @Locale if defined $Config{d_setlocale_accepts_any_locale_name}; 403 404 foreach (1..16) { 405 _trylocale("ISO8859-$_", \@categories, \@Locale, $allow_incompatible); 406 _trylocale("iso8859$_", \@categories, \@Locale, $allow_incompatible); 407 _trylocale("iso8859-$_", \@categories, \@Locale, $allow_incompatible); 408 _trylocale("iso_8859_$_", \@categories, \@Locale, $allow_incompatible); 409 _trylocale("isolatin$_", \@categories, \@Locale, $allow_incompatible); 410 _trylocale("isolatin-$_", \@categories, \@Locale, $allow_incompatible); 411 _trylocale("iso_latin_$_", \@categories, \@Locale, $allow_incompatible); 412 } 413 414 # Sanitize the environment so that we can run the external 'locale' 415 # program without the taint mode getting grumpy. 416 417 # $ENV{PATH} is special in VMS. 418 delete local $ENV{PATH} if $^O ne 'VMS' or $Config{d_setenv}; 419 420 # Other subversive stuff. 421 delete local @ENV{qw(IFS CDPATH ENV BASH_ENV)}; 422 423 if (-x "/usr/bin/locale" 424 && open(LOCALES, '-|', "/usr/bin/locale -a 2>/dev/null")) 425 { 426 while (<LOCALES>) { 427 # It seems that /usr/bin/locale steadfastly outputs 8 bit data, which 428 # ain't great when we're running this testPERL_UNICODE= so that utf8 429 # locales will cause all IO hadles to default to (assume) utf8 430 next unless utf8::valid($_); 431 chomp; 432 _trylocale($_, \@categories, \@Locale, $allow_incompatible); 433 } 434 close(LOCALES); 435 } elsif ($^O eq 'VMS' 436 && defined($ENV{'SYS$I18N_LOCALE'}) 437 && -d 'SYS$I18N_LOCALE') 438 { 439 # The SYS$I18N_LOCALE logical name search list was not present on 440 # VAX VMS V5.5-12, but was on AXP && VAX VMS V6.2 as well as later versions. 441 opendir(LOCALES, "SYS\$I18N_LOCALE:"); 442 while ($_ = readdir(LOCALES)) { 443 chomp; 444 _trylocale($_, \@categories, \@Locale, $allow_incompatible); 445 } 446 close(LOCALES); 447 } elsif (($^O eq 'openbsd' || $^O eq 'bitrig' ) && -e '/usr/share/locale') { 448 449 # OpenBSD doesn't have a locale executable, so reading 450 # /usr/share/locale is much easier and faster than the last resort 451 # method. 452 453 opendir(LOCALES, '/usr/share/locale'); 454 while ($_ = readdir(LOCALES)) { 455 chomp; 456 _trylocale($_, \@categories, \@Locale, $allow_incompatible); 457 } 458 close(LOCALES); 459 } else { # Final fallback. Try our list of locales hard-coded here 460 461 # This is going to be slow. 462 my @Data; 463 464 # Locales whose name differs if the utf8 bit is on are stored in these 465 # two files with appropriate encodings. 466 my $data_file = ($^H & 0x08 || (${^OPEN} || "") =~ /:utf8/) 467 ? _source_location() . "/lib/locale/utf8" 468 : _source_location() . "/lib/locale/latin1"; 469 if (-e $data_file) { 470 @Data = do $data_file; 471 } 472 else { 473 _my_diag(__FILE__ . ":" . __LINE__ . ": '$data_file' doesn't exist"); 474 } 475 476 # The rest of the locales are in this file. 477 state @my_data = <DATA>; close DATA if fileno DATA; 478 push @Data, @my_data; 479 480 foreach my $line (@Data) { 481 chomp $line; 482 my ($locale_name, $language_codes, $country_codes, $encodings) = 483 split /:/, $line; 484 _my_diag(__FILE__ . ":" . __LINE__ . ": Unexpected syntax in '$line'") 485 unless defined $locale_name; 486 my @enc = _decode_encodings($encodings); 487 foreach my $loc (split(/ /, $locale_name)) { 488 _trylocale($loc, \@categories, \@Locale, $allow_incompatible); 489 foreach my $enc (@enc) { 490 _trylocale("$loc.$enc", \@categories, \@Locale, 491 $allow_incompatible); 492 } 493 $loc = lc $loc; 494 foreach my $enc (@enc) { 495 _trylocale("$loc.$enc", \@categories, \@Locale, 496 $allow_incompatible); 497 } 498 } 499 foreach my $lang (split(/ /, $language_codes)) { 500 _trylocale($lang, \@categories, \@Locale, $allow_incompatible); 501 foreach my $country (split(/ /, $country_codes)) { 502 my $lc = "${lang}_${country}"; 503 _trylocale($lc, \@categories, \@Locale, $allow_incompatible); 504 foreach my $enc (@enc) { 505 _trylocale("$lc.$enc", \@categories, \@Locale, 506 $allow_incompatible); 507 } 508 my $lC = "${lang}_\U${country}"; 509 _trylocale($lC, \@categories, \@Locale, $allow_incompatible); 510 foreach my $enc (@enc) { 511 _trylocale("$lC.$enc", \@categories, \@Locale, 512 $allow_incompatible); 513 } 514 } 515 } 516 } 517 } 518 519 @Locale = sort @Locale; 520 521 return @Locale; 522} 523 524sub is_locale_utf8 ($) { # Return a boolean as to if core Perl thinks the input 525 # is a UTF-8 locale 526 527 # On z/OS, even locales marked as UTF-8 aren't. 528 return 0 if ord "A" != 65; 529 530 return 0 unless locales_enabled('LC_CTYPE'); 531 532 my $locale = shift; 533 534 use locale; 535 no warnings 'locale'; # We may be trying out a weird locale 536 537 my $save_locale = setlocale(&POSIX::LC_CTYPE()); 538 if (! $save_locale) { 539 ok(0, "Verify could save previous locale"); 540 return 0; 541 } 542 543 if (! setlocale(&POSIX::LC_CTYPE(), $locale)) { 544 ok(0, "Verify could setlocale to $locale"); 545 return 0; 546 } 547 548 my $ret = 0; 549 550 # Use an op that gives different results for UTF-8 than any other locale. 551 # If a platform has UTF-8 locales, there should be at least one locale on 552 # most platforms with UTF-8 in its name, so if there is a bug in the op 553 # giving a false negative, we should get a failure for those locales as we 554 # go through testing all the locales on the platform. 555 if (CORE::fc(chr utf8::unicode_to_native(0xdf)) ne "ss") { 556 if ($locale =~ /UTF-?8/i) { 557 ok (0, "Verify $locale with UTF-8 in name is a UTF-8 locale"); 558 } 559 } 560 else { 561 $ret = 1; 562 } 563 564 die "Couldn't restore locale '$save_locale'" 565 unless setlocale(&POSIX::LC_CTYPE(), $save_locale); 566 567 return $ret; 568} 569 570sub find_utf8_ctype_locales (;$) { # Return the names of the locales that core 571 # Perl thinks are UTF-8 LC_CTYPE locales. 572 # Optional parameter is a reference to a 573 # list of locales to try; if omitted, this 574 # tries all locales it can find on the 575 # platform 576 return unless locales_enabled('LC_CTYPE'); 577 578 my $locales_ref = shift; 579 my @return; 580 581 if (! defined $locales_ref) { 582 583 my @locales = find_locales(&POSIX::LC_CTYPE()); 584 $locales_ref = \@locales; 585 } 586 587 foreach my $locale (@$locales_ref) { 588 push @return, $locale if is_locale_utf8($locale); 589 } 590 591 return @return; 592} 593 594 595sub find_utf8_ctype_locale (;$) { # Return the name of a locale that core Perl 596 # thinks is a UTF-8 LC_CTYPE non-turkic 597 # locale. 598 # Optional parameter is a reference to a 599 # list of locales to try; if omitted, this 600 # tries all locales it can find on the 601 # platform 602 my $try_locales_ref = shift; 603 604 my @utf8_locales = find_utf8_ctype_locales($try_locales_ref); 605 my @turkic_locales = find_utf8_turkic_locales($try_locales_ref); 606 607 my %seen_turkic; 608 609 # Create undef elements in the hash for turkic locales 610 @seen_turkic{@turkic_locales} = (); 611 612 foreach my $locale (@utf8_locales) { 613 return $locale unless exists $seen_turkic{$locale}; 614 } 615 616 return; 617} 618 619sub find_utf8_turkic_locales (;$) { 620 621 # Return the name of all the locales that core Perl thinks are UTF-8 622 # Turkic LC_CTYPE. Optional parameter is a reference to a list of locales 623 # to try; if omitted, this tries all locales it can find on the platform 624 625 my @return; 626 627 return unless locales_enabled('LC_CTYPE'); 628 629 my $save_locale = setlocale(&POSIX::LC_CTYPE()); 630 foreach my $locale (find_utf8_ctype_locales(shift)) { 631 use locale; 632 setlocale(&POSIX::LC_CTYPE(), $locale); 633 push @return, $locale if uc('i') eq "\x{130}"; 634 } 635 setlocale(&POSIX::LC_CTYPE(), $save_locale); 636 637 return @return; 638} 639 640sub find_utf8_turkic_locale (;$) { 641 my @turkics = find_utf8_turkic_locales(shift); 642 643 return unless @turkics; 644 return $turkics[0] 645} 646 647 648# returns full path to the directory containing the current source 649# file, inspired by mauke's Dir::Self 650sub _source_location { 651 require File::Spec; 652 653 my $caller_filename = (caller)[1]; 654 655 my $loc = File::Spec->rel2abs( 656 File::Spec->catpath( 657 (File::Spec->splitpath($caller_filename))[0, 1], '' 658 ) 659 ); 660 661 return ($loc =~ /^(.*)$/)[0]; # untaint 662} 663 6641 665 666# Format of data is: locale_name, language_codes, country_codes, encodings 667__DATA__ 668Afrikaans:af:za:1 15 669Arabic:ar:dz eg sa:6 arabic8 670Brezhoneg Breton:br:fr:1 15 671Bulgarski Bulgarian:bg:bg:5 672Chinese:zh:cn tw:cn.EUC eucCN eucTW euc.CN euc.TW Big5 GB2312 tw.EUC 673Hrvatski Croatian:hr:hr:2 674Cymraeg Welsh:cy:cy:1 14 15 675Czech:cs:cz:2 676Dansk Danish:da:dk:1 15 677Nederlands Dutch:nl:be nl:1 15 678English American British:en:au ca gb ie nz us uk zw:1 15 cp850 679Esperanto:eo:eo:3 680Eesti Estonian:et:ee:4 6 13 681Suomi Finnish:fi:fi:1 15 682Flamish::fl:1 15 683Deutsch German:de:at be ch de lu:1 15 684Euskaraz Basque:eu:es fr:1 15 685Galego Galician:gl:es:1 15 686Ellada Greek:el:gr:7 g8 687Frysk:fy:nl:1 15 688Greenlandic:kl:gl:4 6 689Hebrew:iw:il:8 hebrew8 690Hungarian:hu:hu:2 691Indonesian:id:id:1 15 692Gaeilge Irish:ga:IE:1 14 15 693Italiano Italian:it:ch it:1 15 694Nihongo Japanese:ja:jp:euc eucJP jp.EUC sjis 695Korean:ko:kr: 696Latine Latin:la:va:1 15 697Latvian:lv:lv:4 6 13 698Lithuanian:lt:lt:4 6 13 699Macedonian:mk:mk:1 15 700Maltese:mt:mt:3 701Moldovan:mo:mo:2 702Norsk Norwegian:no no\@nynorsk nb nn:no:1 15 703Occitan:oc:es:1 15 704Polski Polish:pl:pl:2 705Rumanian:ro:ro:2 706Russki Russian:ru:ru su ua:5 koi8 koi8r KOI8-R koi8u cp1251 cp866 707Serbski Serbian:sr:yu:5 708Slovak:sk:sk:2 709Slovene Slovenian:sl:si:2 710Sqhip Albanian:sq:sq:1 15 711Svenska Swedish:sv:fi se:1 15 712Thai:th:th:11 tis620 713Turkish:tr:tr:9 turkish8 714Yiddish:yi::1 15 715