Hackfut Security File Manager
Current Path:
/usr/share/perl5/Locale
usr
/
share
/
perl5
/
Locale
/
📁
..
📄
Constants.pm
(924 B)
📄
Constants.pod
(1.32 KB)
📄
Country.pm
(13.23 KB)
📄
Country.pod
(8.27 KB)
📄
Currency.pm
(6.27 KB)
📄
Currency.pod
(4.36 KB)
📄
Language.pm
(4.75 KB)
📄
Language.pod
(3.48 KB)
📁
Maketext
📄
Maketext.pm
(14.76 KB)
📄
Maketext.pod
(47.34 KB)
📄
Script.pm
(7.15 KB)
📄
Script.pod
(6 KB)
Editing: Constants.pm
# # Locale::Constants - defined constants for identifying codesets # # $Id: Constants.pm,v 2.7 2004/06/10 21:19:34 neilb Exp $ # package Locale::Constants; use strict; require Exporter; #----------------------------------------------------------------------- # Public Global Variables #----------------------------------------------------------------------- use vars qw($VERSION @ISA @EXPORT); $VERSION = sprintf("%d.%02d", q$Revision: 2.7 $ =~ /(\d+)\.(\d+)/); @ISA = qw(Exporter); @EXPORT = qw(LOCALE_CODE_ALPHA_2 LOCALE_CODE_ALPHA_3 LOCALE_CODE_NUMERIC LOCALE_CODE_DEFAULT); #----------------------------------------------------------------------- # Constants #----------------------------------------------------------------------- use constant LOCALE_CODE_ALPHA_2 => 1; use constant LOCALE_CODE_ALPHA_3 => 2; use constant LOCALE_CODE_NUMERIC => 3; use constant LOCALE_CODE_DEFAULT => LOCALE_CODE_ALPHA_2; 1;
Upload File
Create Folder