first commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
deny from all
|
||||
+529
@@ -0,0 +1,529 @@
|
||||
## +----------------------------------------------------------------------+
|
||||
## | OpenConf |
|
||||
## +----------------------------------------------------------------------+
|
||||
## | Copyright (c) 2002-2020 Zakon Group LLC. All Rights Reserved. |
|
||||
## +----------------------------------------------------------------------+
|
||||
## | This source file is subject to the OpenConf License, available on |
|
||||
## | the OpenConf web site: www.OpenConf.com |
|
||||
## +----------------------------------------------------------------------+
|
||||
|
||||
# NOTE: It is important that a ; only appear at the end of a SQL statement
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `acceptance`
|
||||
#
|
||||
|
||||
CREATE TABLE `acceptance` (
|
||||
`value` varchar(50) NOT NULL default '',
|
||||
`color` varchar(6) default 'ffffff',
|
||||
`publish` tinyint unsigned NOT NULL default '0',
|
||||
`title` varchar(255) default NULL,
|
||||
`accepted` tinyint unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`value`),
|
||||
KEY `publish` (`publish`),
|
||||
KEY `accepted` (`accepted`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `author`
|
||||
#
|
||||
|
||||
CREATE TABLE `author` (
|
||||
`paperid` int unsigned NOT NULL default '0',
|
||||
`position` tinyint unsigned NOT NULL default '0',
|
||||
`name_last` varchar(255) NOT NULL default '',
|
||||
`name_first` varchar(255) default NULL,
|
||||
`position_title` varchar(255) default NULL,
|
||||
`department` varchar(255) default NULL,
|
||||
`organization` varchar(150) default NULL,
|
||||
`country` varchar(255) default NULL,
|
||||
`email` varchar(150) default NULL,
|
||||
`honorific` varchar(255) DEFAULT NULL,
|
||||
`suffix` varchar(255) DEFAULT NULL,
|
||||
`address` varchar(255) DEFAULT NULL,
|
||||
`address2` varchar(255) DEFAULT NULL,
|
||||
`city` varchar(255) DEFAULT NULL,
|
||||
`spc` varchar(255) DEFAULT NULL,
|
||||
`postcode` varchar(255) DEFAULT NULL,
|
||||
`phone` varchar(255) DEFAULT NULL,
|
||||
`url` varchar(255) DEFAULT NULL,
|
||||
`facebook` varchar(255) DEFAULT NULL,
|
||||
`twitter` varchar(255) DEFAULT NULL,
|
||||
`linkedin` varchar(255) DEFAULT NULL,
|
||||
`photo` varchar(255) DEFAULT NULL,
|
||||
`presenter` varchar(255) DEFAULT NULL,
|
||||
`biography` text DEFAULT NULL,
|
||||
`role` text DEFAULT NULL,
|
||||
`orcid` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`paperid`,`position`),
|
||||
KEY `organization` (`organization`),
|
||||
KEY `email` (`email`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `config`
|
||||
#
|
||||
|
||||
CREATE TABLE `config` (
|
||||
`module` varchar(100) NOT NULL default '',
|
||||
`setting` varchar(100) NOT NULL default '',
|
||||
`value` longtext,
|
||||
`name` varchar(100) default NULL,
|
||||
`description` text,
|
||||
`parse` tinyint unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`setting`),
|
||||
KEY `module` (`module`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `conflict`
|
||||
#
|
||||
|
||||
CREATE TABLE `conflict` (
|
||||
`paperid` int unsigned NOT NULL default '0',
|
||||
`reviewerid` int unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`paperid`,`reviewerid`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `email_queue`
|
||||
#
|
||||
|
||||
CREATE TABLE `email_queue` (
|
||||
`id` int unsigned NOT NULL auto_increment,
|
||||
`queued` datetime NOT NULL,
|
||||
`sent` datetime default NULL,
|
||||
`tries` tinyint NOT NULL default '0',
|
||||
`to` varchar(255) NOT NULL,
|
||||
`subject` varchar(255) NOT NULL,
|
||||
`body` text NOT NULL,
|
||||
`reference_id` varchar(50) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `queued` (`queued`),
|
||||
KEY `sent` (`sent`)
|
||||
) AUTO_INCREMENT=1 ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `log`
|
||||
#
|
||||
|
||||
CREATE TABLE `log` (
|
||||
`logid` int unsigned NOT NULL auto_increment,
|
||||
`datetime` datetime NOT NULL,
|
||||
`entry` text NOT NULL,
|
||||
`type` varchar(50) NOT NULL default 'sql',
|
||||
`extra` text,
|
||||
PRIMARY KEY (`logid`),
|
||||
KEY `type` (`type`)
|
||||
) AUTO_INCREMENT=1 ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `modules`
|
||||
#
|
||||
|
||||
CREATE TABLE `modules` (
|
||||
`moduleId` varchar(100) NOT NULL default '',
|
||||
`moduleActive` tinyint unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`moduleId`),
|
||||
KEY `enabled` (`moduleActive`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `paper`
|
||||
#
|
||||
|
||||
CREATE TABLE `paper` (
|
||||
`paperid` int unsigned NOT NULL auto_increment,
|
||||
`accepted` varchar(50) default NULL,
|
||||
`password` varchar(255) default NULL,
|
||||
`title` varchar(1000) NOT NULL default '',
|
||||
`student` varchar(1) default NULL,
|
||||
`type` varchar(255) default NULL,
|
||||
`contactid` tinyint unsigned NOT NULL default '0',
|
||||
`altcontact` varchar(255) default NULL,
|
||||
`submissiondate` date NOT NULL,
|
||||
`lastupdate` date default NULL,
|
||||
`consent` text,
|
||||
`format` varchar(10) default NULL,
|
||||
`keywords` text,
|
||||
`comments` text,
|
||||
`abstract` text,
|
||||
`pcnotes` text,
|
||||
`edittoken` varchar(100) default NULL,
|
||||
`edittime` int unsigned default NULL,
|
||||
PRIMARY KEY (`paperid`),
|
||||
KEY `accepted` (`accepted`)
|
||||
) AUTO_INCREMENT=1 ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `paperadvocate`
|
||||
#
|
||||
|
||||
CREATE TABLE `paperadvocate` (
|
||||
`paperid` int unsigned NOT NULL default '0',
|
||||
`advocateid` int unsigned NOT NULL default '0',
|
||||
`adv_recommendation` varchar(30) default NULL,
|
||||
`adv_comments` text,
|
||||
PRIMARY KEY (`paperid`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `paperreviewer`
|
||||
#
|
||||
|
||||
CREATE TABLE `paperreviewer` (
|
||||
`paperid` int unsigned NOT NULL default '0',
|
||||
`reviewerid` int unsigned NOT NULL default '0',
|
||||
`completed` enum('T','F') NOT NULL default 'F',
|
||||
`assigned` date default NULL,
|
||||
`updated` date default NULL,
|
||||
`score` smallint unsigned default NULL,
|
||||
`recommendation` tinyint unsigned default NULL,
|
||||
`category` tinyint unsigned default NULL,
|
||||
`value` varchar(20) default NULL,
|
||||
`familiar` enum('High','Low','Moderate') default NULL,
|
||||
`bpcandidate` enum('Yes','No','Unsure') default NULL,
|
||||
`length` enum('Yes','No','Unsure') default NULL,
|
||||
`difference` tinyint unsigned default NULL,
|
||||
`pccomments` text,
|
||||
`authorcomments` text,
|
||||
PRIMARY KEY (`paperid`,`reviewerid`),
|
||||
KEY `completed` (`completed`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `papersession`
|
||||
#
|
||||
|
||||
CREATE TABLE `papersession` (
|
||||
`paperid` int unsigned NOT NULL default '0',
|
||||
`reviewerid` int unsigned NOT NULL default '0',
|
||||
`topicid` tinyint unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`paperid`,`reviewerid`,`topicid`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `papertopic`
|
||||
#
|
||||
|
||||
CREATE TABLE `papertopic` (
|
||||
`paperid` int unsigned NOT NULL default '0',
|
||||
`topicid` tinyint unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`paperid`,`topicid`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `reviewer`
|
||||
#
|
||||
|
||||
CREATE TABLE `reviewer` (
|
||||
`reviewerid` int unsigned NOT NULL auto_increment,
|
||||
`username` varchar(255) NOT NULL default '',
|
||||
`password` varchar(255) NOT NULL default '',
|
||||
`name_last` varchar(40) NOT NULL default '',
|
||||
`name_first` varchar(60) default NULL,
|
||||
`email` varchar(150) NOT NULL default '',
|
||||
`orcid` varchar(255) default NULL,
|
||||
`url` varchar(255) default NULL,
|
||||
`organization` varchar(150) default NULL,
|
||||
`country` varchar(2) default NULL,
|
||||
`telephone` varchar(30) default NULL,
|
||||
`onprogramcommittee` enum('T','F') NOT NULL default 'F',
|
||||
`comments` text,
|
||||
`signupdate` date DEFAULT NULL,
|
||||
`lastupdate` date DEFAULT NULL,
|
||||
`lastsignin` date DEFAULT NULL,
|
||||
`consent` text,
|
||||
PRIMARY KEY (`reviewerid`),
|
||||
KEY `onprogramcommittee` (`onprogramcommittee`),
|
||||
KEY `email` (`email`),
|
||||
KEY `organization` (`organization`)
|
||||
) AUTO_INCREMENT=1 ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `reviewertopic`
|
||||
#
|
||||
|
||||
CREATE TABLE `reviewertopic` (
|
||||
`reviewerid` int unsigned NOT NULL default '0',
|
||||
`topicid` tinyint unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`reviewerid`,`topicid`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `status`
|
||||
#
|
||||
|
||||
CREATE TABLE `status` (
|
||||
`module` varchar(100) NOT NULL default '',
|
||||
`setting` varchar(100) NOT NULL default '',
|
||||
`description` text,
|
||||
`status` tinyint unsigned NOT NULL default '0',
|
||||
`name` varchar(100) default NULL,
|
||||
`open` datetime default NULL,
|
||||
`close` datetime default NULL,
|
||||
`dependency` varchar(100) default NULL,
|
||||
`order` tinyint unsigned default '0',
|
||||
PRIMARY KEY (`setting`),
|
||||
KEY `module` (`module`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `template`
|
||||
#
|
||||
|
||||
CREATE TABLE `template` (
|
||||
`templateid` varchar(100) NOT NULL default '',
|
||||
`type` varchar(30) NOT NULL DEFAULT 'email',
|
||||
`module` varchar(100) NOT NULL default '',
|
||||
`name` varchar(255) NOT NULL default '',
|
||||
`subject` varchar(255) default NULL,
|
||||
`body` text,
|
||||
`updated` date default NULL,
|
||||
`variables` text,
|
||||
PRIMARY KEY (`templateid`),
|
||||
KEY `module` (`module`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `topic`
|
||||
#
|
||||
|
||||
CREATE TABLE `topic` (
|
||||
`topicid` tinyint unsigned NOT NULL default '0',
|
||||
`topicname` varchar(255) NOT NULL default '',
|
||||
`short` varchar(50) default NULL,
|
||||
PRIMARY KEY (`topicid`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `withdrawn`
|
||||
#
|
||||
|
||||
CREATE TABLE `withdrawn` (
|
||||
`paperid` int unsigned NOT NULL default '0',
|
||||
`title` varchar(255) NOT NULL default '',
|
||||
`contact_author` varchar(255) NOT NULL default '',
|
||||
`contact_email` varchar(150) default NULL,
|
||||
`papersql` longtext NOT NULL,
|
||||
`authorsql` text NOT NULL,
|
||||
`topicsql` text,
|
||||
`withdraw_date` datetime default NULL,
|
||||
`withdrawn_by` enum('Author','Chair') default NULL,
|
||||
PRIMARY KEY (`paperid`)
|
||||
) ;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Data for table `acceptance`
|
||||
#
|
||||
|
||||
INSERT INTO `acceptance` (`value`, `color`, `publish`, `title`, `accepted`) VALUES('Accept', 'aaffaa', 1, 'Papers', 1);
|
||||
INSERT INTO `acceptance` (`value`, `color`, `publish`, `title`, `accepted`) VALUES('Reject', 'ffcccc', 0, '', 0);
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Data for table `config`
|
||||
#
|
||||
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_advocateReadPapers', '1', 'Allow Adv. to View All Submissions', 'Allow advocates to read all submitted submissions', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_advocateSeeAuthors', '0', 'Allow Adv. See Authors?', 'Allow advocates to see submission authors', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_advocateSeeDecision', '0', 'Allow Adv. See Decision', 'Allow advocates to see acceptance decision', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_advocateSeeOtherReviews', '0', 'Allow Adv. to See All Reviews', 'Allow advocates to see reviews of non-assigned submissions', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_allowConflictOverride', '0', 'Allow Conflict Override', 'Allow Chair to override conflict settings when making manual assignments. This will also determine whether advocate/reviewers see listings in conflict.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_allowEmailConflict', '0', 'Allow Email Conflict', 'Allow a submission author and reviewer to have the same email address', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_allowOrgConflict', '0', 'Allow Organization Conflict', 'Allow a submission author and reviewer to have the same organization name', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_authorOneContact', '0', 'Set Author 1 as Contact', 'Auto set Author 1 as contact author and hide Contact ID field (1=Yes, 0=No (default)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_authorsMinDisplay', '3', 'Min. Authors', 'Minimum number of authors to display on submission form', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_authorsMax', '20', 'Max. Authors', 'Maximum number of authors allowed per submission', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_authorsRequiredData', '0', 'Authors Required Data', 'Author(s) for whom required sub. form fields must be filled in (0=All, 1=First, 2=Contact)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_authorSeePendingSubReviews', '0', 'Display Reviews to Author if Sub. Decision Pending', 'Allow authors to see reviews when checking status if submission decision is pending', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_authorViewSubIfEditClosed', '0', 'View Sub. if Edit Closed', 'Allow author to view submission if editing is closed (1=Yes, 0=No (default)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chair_pwd', 'c23a11a3dbbbb527ae1e54981868619361425340ad6b32e222', 'Chair Password', 'Chair Password', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chair_uname', 'chair', 'Chair Username', 'Chair Login name', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chairChangePassword', '1', 'Allow Chair Change Pwd', 'Allow Chair to change password?', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chairFailedSignIn', '', 'Chair Failed Sign Ins', 'for internal use', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chairMFA', '', 'Chair Multi-Factor Authentication', 'Enter email address to receive authentication code or leave blank to disable', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chairMFAcode', '', 'Chair MFA Code', 'for internal use', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chairPasswordForgot', '1', 'Display Chair Pwd Forgot', 'Display Chair Sign In Password "i forgot it"?', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_ChairTimeout', '60', 'Chair Timeout', 'Chair session timeout in minutes or enter 0 for no timeout. Note: subject to server PHP settings.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_chairUsernameForgot', '1', 'Enable Chair Get Username', 'Display Chair Sign In Username "i forgot it"?', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_confirmmail', 'openconf@example.com', 'Confirm Email', 'Receives a copy of confirmation emails sent to authors and reviewers (e.g., submissions, edits, signups) - see Email Notification below. A comma-delimited list of address (without spaces) is permitted.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_committeeFooter', '', 'Committee Footer', 'Notice to appear at the bottom of the main committee page', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_confName', 'OCC2022', 'Short Name/Title', 'Event/Journal abbreviated name, primarily used in email from and subject lines. Quotes not permitted.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_confNameFull', 'OpenConf Conference 2022', 'Full Name/Title', 'Full name of event/journal for use on Web pages and in email messages', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_confURL', 'https://www.openconf.com', 'Website Address', 'Complete event/journal Website address', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_dataDir', 'data/', 'Data Directory', 'Directory for data files offset from openconf/ or full path, include trailing slash (/)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_editAcceptedOnly', '0', 'Edit Accepted Only', 'Restrict Edit Submission to accepted submissions only (1=Accepted only, 0=All)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_emailAuthorOnUpload', 0, 'Email Author on Upload', 'Emails the author when a file is uploaded', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_emailAuthorRecipients', 0, 'Author Email Recipients', 'Author(s) to receive notices and Chair emails (0: contact only, 1: all)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_emailWrap', '70', 'Email Wrap', 'Number of characters at which to wrap email lines - only used when displaying a preview message via chair/email.php', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_extar', 'pdf', 'File Formats', 'File formats to accept (select at least one). Use FileType module to verify file is in the proper format', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_fileLimit', '', 'File Limit', 'File upload size limit in MB', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_footerFile', 'footer.php', 'Footer File', 'File containing the footer section of OpenConf pages', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_friendlyURLs', '0', 'Friendly URLs', 'Friendly URLs are more easily indexed by search engines. Only limited parts of OpenConf make use of this option, and it requires RewriteEngine. Use this feature carefully (still under development).', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_googleAnalytics', '', 'Google Analytics', 'Google Analytics code snippet for tracking access. Must begin with script tag', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_headerFile', 'header.php', 'Header File', 'File containing the header section of OpenConf pages', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_hideCmtFields', 'fs_personal:orcid', 'Hide Cmt. Profile Form Fields', 'Comma-delimited list of committee profile form fields to not display (e.g., fieldset:field,fieldset:field,fieldset:field). Overridden by Custom Forms module if used.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_hideRevFields', '', 'Hide Rev. Form Fields', 'Comma-delimited list of review form fields to not display (e.g., field1,field2,field3). Overridden by Custom Forms module if used.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_hideSubFields', 'fs_general:type,fs_general:student,fs_authors:honorific,fs_authors:suffix,fs_authors:position_title,fs_authors:department,fs_authors:address,fs_authors:address2,fs_authors:city,fs_authors:spc,fs_authors:postcode,fs_authors:phone,fs_authors:url,fs_authors:facebook,fs_authors:twitter,fs_authors:linkedin,fs_authors:presenter,fs_authors:biography,fs_authors:orcid,fs_authors:photo,fs_authors:role,fs_content:file', 'Hide Sub. Form Fields', 'Comma-delimited list of submission form fields to not display (e.g., fieldset:field,fieldset:field,fieldset:field). Overridden by Custom Forms module if used.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_headerImage', '', 'Header Image', 'Complete web address for an image to be displayed in place of conference name atop pages', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_homePageNotice', '', 'Home Page Notice', 'Notice appearing atop OpenConf home page', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_includeReferenceSearchLinks', '0', 'Include Reference Service Links', 'Include reference service links on committee abstract page (1=Yes, 0=No)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_keycode_program', CONCAT('pckey-',LEFT(MD5(CONCAT(UUID(),RAND())), 6)), 'Program Cmt. Keycode', 'Keycode for signing up as a program committee member. May enter a comma-delimited list (no spaces).', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_keycode_reviewer', CONCAT('revkey-',LEFT(MD5(CONCAT(UUID(),RAND())), 6)), 'Reviewer Keycode', 'Keycode for signing up as a reviewer committee member. May enter a comma-delimited list (no spaces).', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_localeDefault', 'en', 'Default Locale', 'Default locale for initial display', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_locales', 'en', 'Available Locales', 'Locales available for user to choose between', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_logSQL', '0', 'Log DB Update SQL', 'Log the SQL statements used to update database', 0);
|
||||
INSERT INTO `config` VALUES ('OC', 'OC_mailCopyLast', '0', 'Forward Last Bulk Email', 'Forwards to the Confirm Email address a copy of the last bulk email sent', 0);
|
||||
INSERT INTO `config` VALUES ('OC', 'OC_mailHeaders', 'From: "$OC_confName" <$OC_pcemail>\r\nReply-To: $OC_pcemail\r\nX-OC: PHP/OpenConf', 'Mail Headers', 'Headers sent to PHP mail() function. Do not include trailing \\r\\n', 1);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_mailUTF8', '1', 'Encode Mail for UTF-8', 'Sends out encoded messages supporting UTF-8', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_minReviewersPerPaper', '3', 'Reviewers per Submission', 'Default minimum number used when auto assigning reviewers to submissions', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_multipleCommitteeTopics', '1', 'Multiple Cmt. Topics', 'Allow multiple topics to be selected by committee members (or just one)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_multipleSubmissionTopics', '1', 'Multiple Sub. Topics', 'Allow multiple submission topics to be selected (or just one). Overridden by Custom Forms module.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyAuthorEdit', '1', 'Notify of Sub. Edit', 'Notify when a submission is edited (updated)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyAuthorEmailPapers', '0', 'Notify Sub. Requested', 'Notify when list of submissions requested', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyAuthorReset', '0', 'Notify Author Pwd Reset', 'Notify when author resets password', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyAuthorSubmit', '1', 'Notify Submission', 'Notify when a submission is made', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyAuthorUpload', '1', 'Notify File Uploaded', 'Notify when a file is uploaded', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyAuthorWithdraw', '1', 'Notify Sub. Withdrawn', 'Notify when a submission is withdrawn', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyIncludeIP', '0', 'Include IP', 'Include IP address in email notices', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyReviewerEmailUsername', '0', 'Notify Rev. Email Username', 'Notify when committee member requests username be emailed', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyReviewerProfileUpdate', '0', 'Notify Rev. Profile Update', 'Notify when a committee member updates profile', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyReviewerReset', '0', 'Notify Reviewer Pwd Reset', 'Notify when a committee member resets their password', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_notifyReviewerSignup', '1', 'Notify Reviewer Sign Up', 'Notify when a committee member signs up for an account', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_paperAdvocates', '1', 'Use Sub. Advocates', 'Indicates whether submission advocate functionality is to be used', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_paperDir', '$OC_dataDir$papers/', 'File Directory', 'Directory where files are stored for review - offset from openconf/[dir]/', 1);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_paperSubNote', '', 'Submission Notice', 'Notice appearing atop submission page', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_pcemail', 'openconf@example.com', 'Chair Email', 'Used as the general contact email, including the From header for outgoing messages, and in case of errors or other follow-up. Although a comma-delimited list of addresses (without spaces) is permitted, this is not recommended as many mail servers will reject messages coming from multiple addresses.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_privacy_banner_options', '{"display":0,"message":"This website uses cookies to provide essential services only.","dismiss":"X","link":"","href":""}', 'Cookie Banner Options', 'JSON-encoded list of attributes (display, message, dismiss, link)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_privacy_display', '1', 'Privacy Policy Link Display', 'Whether and where to display a Privacy Policy Link (0: none, 1: menu, 2: page footer).', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_privacy_link', '', 'Privacy Policy Web Address', 'Full web address to privacy policy on remote site. Leave blank to use built-in privacy template.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_programSignUpNotice', '', 'Adv. Sign Up Notice', 'Notice to appear atop program committee sign up page', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_queueEmails', '1', 'Queue Emails', 'Queues emails for delivery, storing each in the database', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_requiredField', '', 'Required Field', 'Required field designator - experimental', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerCompleteBeforeSAR', '1', 'Require Rev. Complete Own First', 'Only allow reviewer to see reviews of assigned submissions if own is complete', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerReadPapers', '1', 'Allow Rev. View All Submissions', 'Allow reviewers to read all submittions', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerSeeAdvocate', '0', 'Allow Rev. See Advocate', 'Allow reviewers to see submission advocate', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerSeeAssignedReviews', '0', 'Allow Rev. See Assigned Reviews', 'Allow reviewers to see other''s review of assigned submissions', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerSeeAuthors', '0', 'Allow Rev. See Authors', 'Allow reviewers to see submission authors (i.e., non-blind reviews)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerSeeDecision', '0', 'Allow Rev. See Decision', 'Allow reviewers to see acceptance decision', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerSeeOtherReviewers', '1', 'Allow Rev. See Other Rev. Info', 'Allow reviewers to see each other''s information', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerSeeOtherReviews', '0', 'Allow Rev. to See All Reviews', 'Allow reviewer to see reviews of non-assigned submissions', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerUnassignReviews', '0', 'Allow Rev. to Unassign Own Reviews', 'Allow reviewer to unassign review and delete review data', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_reviewerSignUpNotice', '', 'Rev. Sign Up Notice', 'Notice to appear atop reviewer sign up page', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_ReviewerTimeout', '60', 'Reviewer Timeout', 'Reviewer session timeout in minutes or enter 0 for no timeout. Note: subject to server PHP settings.', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_subBackupEmail', NULL, 'Sub. Backup Email', 'Submission Backup Address - will get a submission''s SQL statements', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_subConfirmNotice', '<p><strong>Thank you for your submission. Your submission ID number is [:sid:]. Please write this number down and include it in any communications with us.</strong></p>\n\n<p><strong>Below is the information submitted. We have also emailed a copy to the submission contact. If you notice any problems or do <em>not</em> receive the email within 24 hours, please contact us.</strong></p>\n\n<p>[:formfields:]</p>', 'Sub. Confirm Notice', 'Notice displayed on Make Submission confirmation page. Variables: [:sid:] = submission ID, [:formfields:] = form fields', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_subtypes', 'Paper', 'Sub. Types', 'Internal Use Only', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_topicDisplayAlpha', '0', 'Display Topics Alphabetically', 'Display topics on submission and committee sign up forms alphabetically', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_timeZone', 'UTC', 'Time Zone', 'Default time zone for use by OpenConf', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_version', '7.20', 'OpenConf Version', 'Current OpenConf software version, manual modification discouraged', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_versionLatest', '7.20', 'Latest Version', 'Latest version of software - used for update notification', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_wordForAuthor', 'Author', 'Word for Author', 'English (US) word to be used for Author (e.g., Author, Presenter, Applicant) -- must pluralize with s at the end', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('OC', 'OC_wordForChair', 'Chair', 'Word for Chair', 'English (US) word to be used for Chair (e.g., Chair, Administrator, Editor)', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('filetype', 'MOD_FILETYPE_chairoverride', '1', 'Skip Check if Chair', 'Skips file format check if Chair uploading', 0);
|
||||
INSERT INTO `config` (`module`, `setting`, `value`, `name`, `description`, `parse`) VALUES ('filetype', 'MOD_FILETYPE_allow_rtfforword', '1', 'Accept RTF for Word Doc', 'Permit RTF MS Word docs', 0);
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Data for table `modules`
|
||||
#
|
||||
|
||||
INSERT INTO `modules` (`moduleId`, `moduleActive`) VALUES ('filetype', 1);
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Data for table `status`
|
||||
#
|
||||
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_submissions_open', NULL, 0, 'New Submission', NULL, NULL, NULL, 1);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_edit_open', NULL, 0, 'Edit Submission', NULL, NULL, NULL, 2);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_withdraw_open', NULL, 0, 'Withdraw Submission', NULL, NULL, NULL, 3);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_upload_open', NULL, 0, 'Upload File', NULL, NULL, NULL, 4);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_view_file_open', NULL, 0, 'View File', NULL, NULL, NULL, 5);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_status_open', 'When open, lets author check acceptance status and view reviewer comments (based on OC_authorSeePendingSubReviews)', 0, 'Check Status', NULL, NULL, NULL, 6);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_rev_signup_open', NULL, 0, 'Review Cmt. Sign Up', NULL, NULL, NULL, 10);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_rev_signin_open', NULL, 0, 'Review Cmt. Sign In', NULL, NULL, NULL, 11);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_reviewing_open', NULL, 0, 'Reviewing', NULL, NULL, NULL, 12);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_pc_signup_open', NULL, 0, 'Program Cmt. Sign Up', NULL, NULL, 'OC_paperAdvocates', 15);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_pc_signin_open', 'If closed and Review Cmt. Sign In is open, Program Cmt. members may still sign in, however will not be able to advocate submissions even if Advocating is open', 0, 'Program Cmt. Sign In', NULL, NULL, 'OC_paperAdvocates', 16);
|
||||
INSERT INTO `status` (`module`, `setting`, `description`, `status`, `name`, `open`, `close`, `dependency`, `order`) VALUES ('OC', 'OC_advocating_open', NULL, 0, 'Advocating', NULL, NULL, 'OC_paperAdvocates', 17);
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Data for table `template`
|
||||
#
|
||||
|
||||
INSERT INTO `template` VALUES ('authors_accept', 'email', 'OC', 'Authors - Accepted Submission', '[[:OC_confName:]] Your submission has been accepted!', 'On behalf of the [:OC_confNameFull:], I am pleased to inform you that your submission, titled\n\n[:title:]\n\nhas been accepted. \n\nWe have included the reviewers'' feedback at the end of this message.\n\nCongratulations,\n Program Committee, [:OC_confName:]\n [:OC_pcemail:]\n\n[:review-fields:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('authors_nofile', 'email', 'OC', 'Authors - Missing File', '[[:OC_confName:]] Missing File', 'Thank you again for submitting to the [:OC_confNameFull:]. Please note however that we have not yet received your file. At your earliest convenience, please upload your file so that we may begin the review process. \n\nYour file may be uploaded through the [:OC_confName:] OpenConf system accessible at our Web site: [:OC_confURL:] .\n\nSubmission ID: [:paperid:]\nSubmission Title: [:title:]\n\nThank you,\n Program Committee, [:OC_confName:]\n [:OC_pcemail:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('authors_reject', 'email', 'OC', 'Authors - Rejected Submission', '[[:OC_confName:]] Submission [:paperid:] declined', 'Dear Author,\n\nOn behalf of the [:OC_confNameFull:], I am sorry to inform you that your submission, titled \n\n[:title:]\n\nhas not been accepted. We received many excellent submissions this year, and were limited in the number we could accept.\n\nAt the end of this email you will find a set of comments from the submission reviewers. If you have questions about the comments, please contact the Chair.\n\nSincerely,\n Program Committee, [:OC_confName:]\n [:OC_pcemail:]\n\n[:review-fields:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('pc_assigned', 'email', 'OC', 'Program Committee - Submissions Assigned', '[[:OC_confName:]] Submissions have been assigned to advocates', 'Now that the submission reviews have been completed, it is time to perform your advocate duties in preparation for the Program Committee meeting. Your duties include:\n\n1. Read all the reviews and be able to present the results of the review at the PC meeting.\n2. If the reviews are in conflict (for example, some saying Clear Accept, while others say Reject) then we ask that you read the submission (unless you already have) to form your own opinion.\n3. If you feel that the submission needs an additional review, let us know and we will try to obtain an additional review prior to the PC meeting.\n\nThank you again for supporting [:OC_confNameFull:].\n\n[:OC_confName:] Program Chair\n[:OC_pcemail:]\n[:OC_confURL:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('pc_norecommendation', 'email', 'OC', 'Program Committee - Missing Recommendation', '[[:OC_confName:]] Missing recommendation', 'Dear [:OC_confName:] Advocate,\n\nJust a reminder to complete your submission recommendations as soon as possible. We show that you have at least one submission assigned for which no recommendation has been provided.\n\nIn case you don''t recall the instructions:\n\nYou will find the submissions assigned to you by going to [:OC_confURL:], selecting OpenConf, and signing in under Committee Members (functions are available to reset your user id and password if you''ve forgotten them). This will display the list of submissions you have been assigned to review. Clicking on the submission title will bring up the online review form and clicking on the file symbol to the right of the submission title will bring up a copy of the file. You may reopen and modify or amend previously submitted reviews.\n\nThank you for your support of [:OC_confNameFull:].\n\n[:OC_confName:] Program Chair\n[:OC_pcemail:]\n[:OC_confURL:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('reviewers_assigned', 'email', 'OC', 'Reviewers - Reviews Assigned', '[[:OC_confName:]] Submissions have been assigned for review', 'Dear [:OC_confName:] Reviewer,\n\nThank you for signing up to review submissions submitted to [:OC_confName:]. It is now time for the review process to begin and submission assignments have been made. Using the username and password you created when you registered to be a reviewer, you will find the submissions assigned to you by going to [:OC_confURL:], selecting OpenConf, and signing in under Committee Members. This will display the list of submissions you have been assigned to review. Clicking on the submission title will bring up the online review form and clicking on the file symbol to the right of the submission title will bring up a copy of the file. You may reopen and modify or amend previously submitted reviews.\n\nIf you do not remember your username and password, features are available to let you reset them if you still remember the email address you specified when filling out the reviewer registration form.\n\nAs much as possible we tried to assign submissions that we think will interest you. We apologize in advance if you are not interested or knowledgeable about the topic areas you were assigned. If you will not be able to review a submission, please inform us IMMEDIATELY so we can reassign the submission to someone else.\n\nREMINDER: By reviewing unpublished submissions, you are accepting the ethical responsibility not to disclose their contents to anyone else.\n\nIf we assigned you your own submission or a submission for which you have a conflict of interest, let us know and we will reassign you!\n\nPlease complete these reviews as soon as possible. \n\nThanks again for helping make [:OC_confNameFull:] a success!\n\n[:OC_confName:] Program Chair\n[:OC_pcemail:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('reviewers_nocomment', 'email', 'OC', 'Reviewers - Missing Author Comments', '[[:OC_confName:]] Missing comments for authors', 'Please be sure to fill out the Comments for the Authors field in all reviews. We show that you have at least one review assigned for which you have not included any comments.\n\nIn case you don''t recall the instructions:\n\nYou will find the submissions assigned to you by going to [:OC_confURL:], selecting OpenConf, and signing in under Committee Members (functions are available to reset your user id and password if you''ve forgotten them). This will display the list of submissions you have been assigned to review. Clicking on the submission title will bring up the online review form and clicking on the file symbol to the right of the submission title will bring up a copy of the file. You may reopen and modify or amend previously submitted reviews.\n\nThank you for your support of [:OC_confNameFull:].\n\n[:OC_confName:] Program Chair\n[:OC_pcemail:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('reviewers_noreview', 'email', 'OC', 'Reviewers - Missing Review', '[[:OC_confName:]] Missing review', 'Just a reminder to complete your submission reviews as soon as possible. We show that you have at least one review assigned for which you have not indicated that it is completed or that is missing a recommendation.\n\nIn case you don''t recall the instructions:\n\nYou will find the submissions assigned to you by going to [:OC_confURL:], selecting OpenConf, and signing in under Committee Members (functions are available to reset your user id and password if you''ve forgotten them). This will display the list of submissions you have been assigned to review. Clicking on the submission title will bring up the online review form and clicking on the file symbol to the right of the submission title will bring up a copy of the file. You may reopen and modify or amend previously submitted reviews.\n\nThank you for your support of [:OC_confNameFull:].\n\n[:OC_confName:] Program Chair\n[:OC_pcemail:]\n', NULL, NULL);
|
||||
INSERT INTO `template` VALUES ('reviewers_reminder', 'email', 'OC', 'Reviewers - Reminder', '[[:OC_confName:]] Submissions have been assigned for review', 'Just a reminder to complete your submission reviews as soon as possible. For those who haven''t started and don''t recall the instructions:\n\nYou will find the submissions assigned to you by going to [:OC_confURL:], selecting OpenConf, and signing in under Committee Members (functions are available to reset your user id and password if you''ve forgotten them). This will display the list of submissions you have been assigned to review. Clicking on the submission title will bring up the online review form and clicking on the file symbol to the right of the submission title will bring up a copy of the file. You may reopen and modify or amend previously submitted reviews.\n\nThank you for your support of [:OC_confNameFull:].\n\n[:OC_confName:] Program Chair\n[:OC_pcemail:]\n', NULL, NULL);
|
||||
|
||||
INSERT INTO `template` VALUES ('author-edit', 'notification', 'OC', 'Author - Edit Submission', 'Submission Update ID [:sid:]', '[:fields:]', NULL, '{"fields":"Fields","sid":"Submission ID"}');
|
||||
INSERT INTO `template` VALUES ('author-submit', 'notification', 'OC', 'Author - New Submission', 'Submission ID [:sid:]', 'Thank you for your submission to [:OC_confName:]. Below is a copy of the information submitted for your records.\n\n[:fields:]', NULL, '{"fields":"Fields","sid":"Submission ID"}');
|
||||
INSERT INTO `template` VALUES ('author-upload', 'notification', 'OC', 'Author - File Upload', 'Submission ID [:sid:] file uploaded', 'Submission ID [:sid:] has been uploaded.\n\n[:error:]', NULL, '{"sid":"Submission ID","error":"Upload Error"}');
|
||||
INSERT INTO `template` VALUES ('author-withdraw', 'notification', 'OC', 'Author - Withdraw Submission', 'Submission Withdraw - ID [:sid:]', 'The submission below has been withdrawn at the author''s request. If you did not intend to withdraw the submission, please reply back.\n\n[:submission:]', NULL, '{"sid":"Submission ID","submission":"Submission ID/Title"}');
|
||||
INSERT INTO `template` VALUES ('chair-assign_reviews', 'notification', 'OC', 'Chair - Manual Review Assignment(s)', 'New Reviewer Assignment(s)', 'New assignments have been made for you to review in the [:OC_confName:] OpenConf system:\n\n\n[:assignments:]\n\nThank you.', NULL, '{"assignments":"New Assignments","name_first":"First Name","name_last":"Last Name","name":"Full Name","reviewerid":"Reviewer ID","username":"Username"}');
|
||||
INSERT INTO `template` VALUES ('chair-assign_advocates', 'notification', 'OC', 'Chair - Manual Advocate Assignment(s)', 'New Advocate Assignment(s)', 'New assignments have been made for you to advocate in the [:OC_confName:] OpenConf system:\n\n\n[:assignments:]\n\nThank you.', NULL, '{"assignments":"New Assignments","name_first":"First Name","name_last":"Last Name","name":"Full Name","advocateid":"Advocate ID","username":"Username"}');
|
||||
INSERT INTO `template` VALUES ('committee-review', 'notification', 'OC', 'Reviewer - Submit Review', 'Review of submission [:sid:]', 'Following is a copy of your review for submission number [:sid:] submitted to [:OC_confName:]. Note that you will receive this email even if an error occurred during submission.\n\n[:fields:]', NULL, '{"fields":"Fields","sid":"Submission ID"}');
|
||||
INSERT INTO `template` VALUES ('committee-reviewunassign', 'notification', 'OC', 'Reviewer - Unassign Review', 'Review Unassigned [:sid:]-[:reviewerid:]', 'Reviewer [:name:] ([:reviewerid:]) has been unassigned from submission:\n\n[:sid:]. [:title:]', NULL, '{"sid":"Submission ID","title":"Submission Title","reviewerid":"Reviewer ID","username":"Reviewer Username","name":"Reviewer Name"}');
|
||||
INSERT INTO `template` VALUES ('committee-withdrawnsub', 'notification', 'OC', 'Committee - Withdrawn Submission', 'Submission [:sid:] Withdrawn', 'The submission below has been withdrawn and is no longer assigned to you.\n\n[:sid:]. [:title:]', NULL, '{"sid":"Submission ID","title":"Submission Title","memberid":"Member ID","username":"Member Username","name":"Member Name"}');
|
||||
INSERT INTO `template` VALUES ('committee-signup', 'notification', 'OC', 'Committee - New Signup', 'Committee Signup', 'Thank you for signing up for the [:OC_confName:] [:committee:]. Below is the information you provided. If you have any questions, please contact [:OC_pcemail:] or reply to this email.\n\n[:fields:]', NULL, '{"committee":"Committee Type","fields":"Fields"}');
|
||||
INSERT INTO `template` VALUES ('committee-update', 'notification', 'OC', 'Committee - Profile Update', 'Committee Member Profile Updated', 'Your profile has been updated. The submitted information follows below:\n\n[:fields:]', NULL, '{"fields":"Fields"}');
|
||||
|
||||
INSERT INTO `template` VALUES ('privacy_policy', 'other', 'OC', 'Privacy Policy', '', '<p><strong>What information is being collected?</strong></p>\n\n<p>For anyone browsing our web site, our server records the page visited, IP address where the request came from, and if included the browser type and referring web page.</p>\n\n<p>If you choose to make a submission, become a reviewer or advocate, or serve as a discussant or session chair, we will request your name, email address, and affiliation, along with possibly other information as denoted when filling out the respective form for each role.</p>\n\n<p><strong>Who is collecting it?</strong></p>\n\n<p>Information is collected by the entity and/or activity named atop this page. You may contact us by using the Email menu link above.</p>\n\n<p><strong>How is it collected?</strong></p>\n\n<p>Information used in this system is collected through the forms provided (e.g., submission, account sign up), or automatically through our server logs (e.g., page visited, IP address).</p>\n\n<p><strong>Why is it being collected?</strong></p>\n\n<p>Information is being collected in relation to the activity named atop this page and your optional participation in this activity.</p>\n\n<p><strong>How will it be used?</strong></p>\n\n<p>The information automatically recorded by our server is used to troubleshoot issues and improve our service. Other information collected is used for evaluation, communication, and publishing related to the activity specified above.</p>\n\n<p><strong>Who will it be shared with?</strong></p>\n\n<p>Information collected is shared with the organizers of the above activity. A subset of information may also be shared with other participants in the activity (e.g., reviewers). Some of the information (e.g., name, affiliation) of accepted submitters and other participants may also be made publicly available to meet the goals of the activity.</p>\n\n<p>By virtue of the information being hosted on a server, the information is accessible to our hosting provider and subject to their privacy policy. Additional third-party providers may include: payment processor, plagiarism detection service, copyright processing service, reviewer credit service, publishing service.</p>\n\n<p><strong>How do I correct information or request its erasure?</strong></p>\n\n<p>In order to correct information, submitters and committee members may use the Edit Submission and Update Profile options respectively. If these do not apply to you, are no longer accessible, or you wish to request erasure of your data, use the Email menu link above to contact us. We ask that you contact us as erasure of the data may impact others on the system and the activity specified above, thus requiring manual intervention and notification on our part.</p>\n\n<p><strong>Are cookies or other trackers used?</strong></p>\n\n<p>Temporary (session) cookies are used to maintain language selection and allow you to remain logged into your account without having to keep re-entering credentials — these cookies are removed upon signing out of your account or exiting your browser. Cookies are also stored for a 1-month period for maintaining personalized program options and a 1-year period for recording your cookie consent acknowledgement — these cookies do not store any personally-identifiable information.</p>', NULL, NULL);
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Data for table `topic`
|
||||
#
|
||||
|
||||
INSERT INTO `topic` (`topicid`, `topicname`, `short`) VALUES (1, 'default', '');
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------+
|
||||
// | OpenConf |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Copyright (c) 2002-2020 Zakon Group LLC. All Rights Reserved. |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | This source file is subject to the OpenConf License, available on |
|
||||
// | the OpenConf web site: www.OpenConf.com |
|
||||
// +----------------------------------------------------------------------+
|
||||
|
||||
// Session Var Name - should be unique to each instance of OpenConf
|
||||
define('OCC_SESSION_VAR_NAME', 'OPENCONF');
|
||||
|
||||
// Installation complete? (0=No, 1=Yes)
|
||||
define('OCC_INSTALL_COMPLETE', 0);
|
||||
|
||||
// Chair password may be used in place of reviewer/author pwd, and Chair may edit profile/submission
|
||||
define('OCC_CHAIR_PWD_TRUMPS', 1);
|
||||
|
||||
// Enable advanced configuration
|
||||
define('OCC_ADVANCED_CONFIG', 1);
|
||||
|
||||
// Encryption key
|
||||
define('OCC_ENC_KEY', '');
|
||||
|
||||
//// DATABASE
|
||||
|
||||
// Database user
|
||||
define('OCC_DB_USER', '');
|
||||
|
||||
// Database password
|
||||
define('OCC_DB_PASSWORD', '');
|
||||
|
||||
// Database hostname
|
||||
define('OCC_DB_HOST', '');
|
||||
|
||||
// Database port
|
||||
define('OCC_DB_PORT', 3306);
|
||||
|
||||
// Database name
|
||||
define('OCC_DB_NAME', '');
|
||||
|
||||
// Table prefix
|
||||
define('OCC_DB_PREFIX', '');
|
||||
|
||||
// Use SSL
|
||||
define("OCC_DB_USE_SSL", 0);
|
||||
|
||||
// Database SSL settings
|
||||
if (OCC_DB_USE_SSL == 1) {
|
||||
// Do not verify SSL certificate
|
||||
define("OCC_DB_SSL_NOVERIFY", 1);
|
||||
|
||||
// SSL Key File
|
||||
define("OCC_DB_SSL_KEY", '');
|
||||
|
||||
// SSL Certificate File
|
||||
define("OCC_DB_SSL_CERT", '');
|
||||
|
||||
// SSL CA File
|
||||
define("OCC_DB_SSL_CA", '');
|
||||
|
||||
// SSL CA Directory Path
|
||||
define("OCC_DB_SSL_CAPATH", '');
|
||||
|
||||
// SSL Cipher List
|
||||
define("OCC_DB_SSL_CIPHER", '');
|
||||
}
|
||||
@@ -0,0 +1,505 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
(This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.)
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
{description}
|
||||
Copyright (C) {year} {fullname}
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||
USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random
|
||||
Hacker.
|
||||
|
||||
{signature of Ty Coon}, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'IS' => 'آيسلندا',
|
||||
'ET' => 'إثيوبيا',
|
||||
'AZ' => 'أذربيجان',
|
||||
'AM' => 'أرمينيا',
|
||||
'AW' => 'أروبا',
|
||||
'ER' => 'إريتريا',
|
||||
'ES' => 'إسبانيا',
|
||||
'AU' => 'أستراليا',
|
||||
'EE' => 'إستونيا',
|
||||
'IL' => 'إسرائيل',
|
||||
'SZ' => 'إسواتيني',
|
||||
'AF' => 'أفغانستان',
|
||||
'AR' => 'الأرجنتين',
|
||||
'JO' => 'الأردن',
|
||||
'TF' => 'الأقاليم الجنوبية الفرنسية',
|
||||
'IO' => 'الإقليم البريطاني في المحيط الهندي',
|
||||
'EC' => 'الإكوادور',
|
||||
'AE' => 'الإمارات العربية المتحدة',
|
||||
'AL' => 'ألبانيا',
|
||||
'BH' => 'البحرين',
|
||||
'BR' => 'البرازيل',
|
||||
'PT' => 'البرتغال',
|
||||
'BA' => 'البوسنة والهرسك',
|
||||
'CZ' => 'التشيك',
|
||||
'ME' => 'الجبل الأسود',
|
||||
'DZ' => 'الجزائر',
|
||||
'DK' => 'الدانمرك',
|
||||
'CV' => 'الرأس الأخضر',
|
||||
'SV' => 'السلفادور',
|
||||
'SN' => 'السنغال',
|
||||
'SD' => 'السودان',
|
||||
'SE' => 'السويد',
|
||||
'EH' => 'الصحراء الغربية',
|
||||
'SO' => 'الصومال',
|
||||
'CN' => 'الصين',
|
||||
'IQ' => 'العراق',
|
||||
'GA' => 'الغابون',
|
||||
'VA' => 'الفاتيكان',
|
||||
'PH' => 'الفلبين',
|
||||
'CM' => 'الكاميرون',
|
||||
'KW' => 'الكويت',
|
||||
'DE' => 'ألمانيا',
|
||||
'MA' => 'المغرب',
|
||||
'MX' => 'المكسيك',
|
||||
'SA' => 'المملكة العربية السعودية',
|
||||
'GB' => 'المملكة المتحدة',
|
||||
'NO' => 'النرويج',
|
||||
'AT' => 'النمسا',
|
||||
'NE' => 'النيجر',
|
||||
'IN' => 'الهند',
|
||||
'US' => 'الولايات المتحدة',
|
||||
'JP' => 'اليابان',
|
||||
'YE' => 'اليمن',
|
||||
'GR' => 'اليونان',
|
||||
'AQ' => 'أنتاركتيكا',
|
||||
'AG' => 'أنتيغوا وبربودا',
|
||||
'AD' => 'أندورا',
|
||||
'ID' => 'إندونيسيا',
|
||||
'AO' => 'أنغولا',
|
||||
'AI' => 'أنغويلا',
|
||||
'UY' => 'أورغواي',
|
||||
'UZ' => 'أوزبكستان',
|
||||
'UG' => 'أوغندا',
|
||||
'UA' => 'أوكرانيا',
|
||||
'IR' => 'إيران',
|
||||
'IE' => 'أيرلندا',
|
||||
'IT' => 'إيطاليا',
|
||||
'PG' => 'بابوا غينيا الجديدة',
|
||||
'PY' => 'باراغواي',
|
||||
'PK' => 'باكستان',
|
||||
'PW' => 'بالاو',
|
||||
'BB' => 'بربادوس',
|
||||
'BM' => 'برمودا',
|
||||
'BN' => 'بروناي',
|
||||
'BE' => 'بلجيكا',
|
||||
'BG' => 'بلغاريا',
|
||||
'BZ' => 'بليز',
|
||||
'BD' => 'بنغلاديش',
|
||||
'PA' => 'بنما',
|
||||
'BJ' => 'بنين',
|
||||
'BT' => 'بوتان',
|
||||
'BW' => 'بوتسوانا',
|
||||
'PR' => 'بورتوريكو',
|
||||
'BF' => 'بوركينا فاسو',
|
||||
'BI' => 'بوروندي',
|
||||
'PL' => 'بولندا',
|
||||
'BO' => 'بوليفيا',
|
||||
'PF' => 'بولينيزيا الفرنسية',
|
||||
'PE' => 'بيرو',
|
||||
'BY' => 'بيلاروس',
|
||||
'TH' => 'تايلاند',
|
||||
'TW' => 'تايوان',
|
||||
'TM' => 'تركمانستان',
|
||||
'TR' => 'تركيا',
|
||||
'TA' => 'تريستان دا كونا',
|
||||
'TT' => 'ترينيداد وتوباغو',
|
||||
'TD' => 'تشاد',
|
||||
'CL' => 'تشيلي',
|
||||
'TZ' => 'تنزانيا',
|
||||
'TG' => 'توغو',
|
||||
'TV' => 'توفالو',
|
||||
'TK' => 'توكيلو',
|
||||
'TN' => 'تونس',
|
||||
'TO' => 'تونغا',
|
||||
'TL' => 'تيمور - ليشتي',
|
||||
'JM' => 'جامايكا',
|
||||
'GI' => 'جبل طارق',
|
||||
'AX' => 'جزر آلاند',
|
||||
'BS' => 'جزر البهاما',
|
||||
'KM' => 'جزر القمر',
|
||||
'IC' => 'جزر الكناري',
|
||||
'MQ' => 'جزر المارتينيك',
|
||||
'MV' => 'جزر المالديف',
|
||||
'UM' => 'جزر الولايات المتحدة النائية',
|
||||
'PN' => 'جزر بيتكيرن',
|
||||
'TC' => 'جزر توركس وكايكوس',
|
||||
'SB' => 'جزر سليمان',
|
||||
'FO' => 'جزر فارو',
|
||||
'FK' => 'جزر فوكلاند - جزر مالفيناس',
|
||||
'VG' => 'جزر فيرجن البريطانية',
|
||||
'VI' => 'جزر فيرجن التابعة للولايات المتحدة',
|
||||
'KY' => 'جزر كايمان',
|
||||
'CK' => 'جزر كوك',
|
||||
'CC' => 'جزر كوكوس (كيلينغ)',
|
||||
'MH' => 'جزر مارشال',
|
||||
'MP' => 'جزر ماريانا الشمالية',
|
||||
'WF' => 'جزر والس وفوتونا',
|
||||
'AC' => 'جزيرة أسينشيون',
|
||||
'BV' => 'جزيرة بوفيه',
|
||||
'CX' => 'جزيرة كريسماس',
|
||||
'CP' => 'جزيرة كليبيرتون',
|
||||
'IM' => 'جزيرة مان',
|
||||
'NF' => 'جزيرة نورفولك',
|
||||
'HM' => 'جزيرة هيرد وجزر ماكدونالد',
|
||||
'CF' => 'جمهورية أفريقيا الوسطى',
|
||||
'DO' => 'جمهورية الدومينيكان',
|
||||
'CG' => 'جمهورية الكونغو',
|
||||
'CD' => 'جمهورية الكونغو الديمقراطية',
|
||||
'ZA' => 'جنوب أفريقيا',
|
||||
'SS' => 'جنوب السودان',
|
||||
'GE' => 'جورجيا',
|
||||
'GS' => 'جورجيا الجنوبية وجزر ساندويتش الجنوبية',
|
||||
'DJ' => 'جيبوتي',
|
||||
'JE' => 'جيرسي',
|
||||
'DM' => 'دومينيكا',
|
||||
'DG' => 'دييغو غارسيا',
|
||||
'RW' => 'رواندا',
|
||||
'RU' => 'روسيا',
|
||||
'RO' => 'رومانيا',
|
||||
'RE' => 'روينيون',
|
||||
'ZM' => 'زامبيا',
|
||||
'ZW' => 'زيمبابوي',
|
||||
'CI' => 'ساحل العاج',
|
||||
'WS' => 'ساموا',
|
||||
'AS' => 'ساموا الأمريكية',
|
||||
'BL' => 'سان بارتليمي',
|
||||
'PM' => 'سان بيير ومكويلون',
|
||||
'MF' => 'سان مارتن',
|
||||
'SM' => 'سان مارينو',
|
||||
'VC' => 'سانت فنسنت وجزر غرينادين',
|
||||
'KN' => 'سانت كيتس ونيفيس',
|
||||
'LC' => 'سانت لوسيا',
|
||||
'SX' => 'سانت مارتن',
|
||||
'SH' => 'سانت هيلينا',
|
||||
'ST' => 'ساو تومي وبرينسيبي',
|
||||
'LK' => 'سريلانكا',
|
||||
'SJ' => 'سفالبارد وجان ماين',
|
||||
'SK' => 'سلوفاكيا',
|
||||
'SI' => 'سلوفينيا',
|
||||
'SG' => 'سنغافورة',
|
||||
'SY' => 'سوريا',
|
||||
'SR' => 'سورينام',
|
||||
'CH' => 'سويسرا',
|
||||
'SL' => 'سيراليون',
|
||||
'SC' => 'سيشل',
|
||||
'EA' => 'سيوتا وميليلا',
|
||||
'RS' => 'صربيا',
|
||||
'TJ' => 'طاجيكستان',
|
||||
'OM' => 'عُمان',
|
||||
'GM' => 'غامبيا',
|
||||
'GH' => 'غانا',
|
||||
'GD' => 'غرينادا',
|
||||
'GL' => 'غرينلاند',
|
||||
'GT' => 'غواتيمالا',
|
||||
'GP' => 'غوادلوب',
|
||||
'GU' => 'غوام',
|
||||
'GF' => 'غويانا الفرنسية',
|
||||
'GY' => 'غيانا',
|
||||
'GG' => 'غيرنزي',
|
||||
'GN' => 'غينيا',
|
||||
'GQ' => 'غينيا الاستوائية',
|
||||
'GW' => 'غينيا بيساو',
|
||||
'VU' => 'فانواتو',
|
||||
'FR' => 'فرنسا',
|
||||
'PS' => 'فلسطين',
|
||||
'VE' => 'فنزويلا',
|
||||
'FI' => 'فنلندا',
|
||||
'VN' => 'فيتنام',
|
||||
'FJ' => 'فيجي',
|
||||
'CY' => 'قبرص',
|
||||
'QA' => 'قطر',
|
||||
'KG' => 'قيرغيزستان',
|
||||
'KZ' => 'كازاخستان',
|
||||
'NC' => 'كاليدونيا الجديدة',
|
||||
'HR' => 'كرواتيا',
|
||||
'KH' => 'كمبوديا',
|
||||
'CA' => 'كندا',
|
||||
'CU' => 'كوبا',
|
||||
'CW' => 'كوراساو',
|
||||
'KR' => 'كوريا الجنوبية',
|
||||
'KP' => 'كوريا الشمالية',
|
||||
'CR' => 'كوستاريكا',
|
||||
'XK' => 'كوسوفو',
|
||||
'CO' => 'كولومبيا',
|
||||
'KI' => 'كيريباتي',
|
||||
'KE' => 'كينيا',
|
||||
'LV' => 'لاتفيا',
|
||||
'LA' => 'لاوس',
|
||||
'LB' => 'لبنان',
|
||||
'LU' => 'لوكسمبورغ',
|
||||
'LY' => 'ليبيا',
|
||||
'LR' => 'ليبيريا',
|
||||
'LT' => 'ليتوانيا',
|
||||
'LI' => 'ليختنشتاين',
|
||||
'LS' => 'ليسوتو',
|
||||
'MT' => 'مالطا',
|
||||
'ML' => 'مالي',
|
||||
'MY' => 'ماليزيا',
|
||||
'YT' => 'مايوت',
|
||||
'MG' => 'مدغشقر',
|
||||
'EG' => 'مصر',
|
||||
'MK' => 'مقدونيا الشمالية',
|
||||
'MO' => 'مكاو',
|
||||
'MW' => 'ملاوي',
|
||||
'MN' => 'منغوليا',
|
||||
'MR' => 'موريتانيا',
|
||||
'MU' => 'موريشيوس',
|
||||
'MZ' => 'موزمبيق',
|
||||
'MD' => 'مولدوفا',
|
||||
'MC' => 'موناكو',
|
||||
'MS' => 'مونتسرات',
|
||||
'MM' => 'ميانمار (بورما)',
|
||||
'FM' => 'ميكرونيزيا',
|
||||
'NA' => 'ناميبيا',
|
||||
'NR' => 'ناورو',
|
||||
'NP' => 'نيبال',
|
||||
'NG' => 'نيجيريا',
|
||||
'NI' => 'نيكاراغوا',
|
||||
'NZ' => 'نيوزيلندا',
|
||||
'NU' => 'نيوي',
|
||||
'HT' => 'هايتي',
|
||||
'HN' => 'هندوراس',
|
||||
'HU' => 'هنغاريا',
|
||||
'NL' => 'هولندا',
|
||||
'BQ' => 'هولندا الكاريبية',
|
||||
'HK' => 'هونغ كونغ',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Asia' => 'آسيا',
|
||||
'Arctic' => 'أركتيك',
|
||||
'Australia' => 'أستراليا',
|
||||
'Africa' => 'أفريقيا',
|
||||
'Atlantic' => 'الأطلنطى',
|
||||
'Pacific' => 'الهادى',
|
||||
'America' => 'أمريكا',
|
||||
'Antarctica' => 'أنتراكتيكا',
|
||||
'Indian' => 'إنديانا',
|
||||
'UTC' => 'أوتسي',
|
||||
'Europe' => 'أوروبا',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'أبيدجان',
|
||||
'Africa/Addis_Ababa' => 'أديس أبابا',
|
||||
'Africa/Asmara' => 'أسمرة',
|
||||
'Africa/Accra' => 'أكرا',
|
||||
'Africa/Algiers' => 'الجزائر',
|
||||
'Africa/Khartoum' => 'الخرطوم',
|
||||
'Africa/Casablanca' => 'الدار البيضاء',
|
||||
'Africa/El_Aaiun' => 'العيون',
|
||||
'Africa/Cairo' => 'القاهرة',
|
||||
'Africa/Bamako' => 'باماكو',
|
||||
'Africa/Banjul' => 'بانجول',
|
||||
'Africa/Bangui' => 'بانغوي',
|
||||
'Africa/Brazzaville' => 'برازافيل',
|
||||
'Africa/Blantyre' => 'بلانتاير',
|
||||
'Africa/Bujumbura' => 'بوجومبورا',
|
||||
'Africa/Porto-Novo' => 'بورتو نوفو',
|
||||
'Africa/Bissau' => 'بيساو',
|
||||
'Africa/Tunis' => 'تونس',
|
||||
'Africa/Juba' => 'جوبا',
|
||||
'Africa/Johannesburg' => 'جوهانسبرغ',
|
||||
'Africa/Djibouti' => 'جيبوتي',
|
||||
'Africa/Dar_es_Salaam' => 'دار السلام',
|
||||
'Africa/Dakar' => 'داكار',
|
||||
'Africa/Douala' => 'دوالا',
|
||||
'Africa/Sao_Tome' => 'ساو تومي',
|
||||
'Africa/Ceuta' => 'سيتا',
|
||||
'Africa/Tripoli' => 'طرابلس',
|
||||
'Africa/Gaborone' => 'غابورون',
|
||||
'Africa/Freetown' => 'فري تاون',
|
||||
'Africa/Kampala' => 'كامبالا',
|
||||
'Africa/Conakry' => 'كوناكري',
|
||||
'Africa/Kigali' => 'كيغالي',
|
||||
'Africa/Kinshasa' => 'كينشاسا',
|
||||
'Africa/Lagos' => 'لاغوس',
|
||||
'Africa/Luanda' => 'لواندا',
|
||||
'Africa/Lusaka' => 'لوساكا',
|
||||
'Africa/Lubumbashi' => 'لومبباشا',
|
||||
'Africa/Lome' => 'لومي',
|
||||
'Africa/Libreville' => 'ليبرفيل',
|
||||
'Africa/Maputo' => 'مابوتو',
|
||||
'Africa/Maseru' => 'ماسيرو',
|
||||
'Africa/Malabo' => 'مالابو',
|
||||
'Africa/Mbabane' => 'مباباني',
|
||||
'Africa/Mogadishu' => 'مقديشيو',
|
||||
'Africa/Monrovia' => 'مونروفيا',
|
||||
'Africa/Ndjamena' => 'نجامينا',
|
||||
'Africa/Nouakchott' => 'نواكشوط',
|
||||
'Africa/Niamey' => 'نيامي',
|
||||
'Africa/Nairobi' => 'نيروبي',
|
||||
'Africa/Harare' => 'هراري',
|
||||
'Africa/Ouagadougou' => 'واغادوغو',
|
||||
'Africa/Windhoek' => 'ويندهوك',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'أداك',
|
||||
'America/Aruba' => 'أروبا',
|
||||
'America/Araguaina' => 'أروجوانيا',
|
||||
'America/Asuncion' => 'أسونسيون',
|
||||
'America/Argentina/Ushuaia' => 'أشوا',
|
||||
'America/Iqaluit' => 'اكويلت',
|
||||
'America/El_Salvador' => 'السلفادور',
|
||||
'America/Martinique' => 'المارتينيك',
|
||||
'America/Antigua' => 'أنتيغوا',
|
||||
'America/Indiana/Indianapolis' => 'إنديانابوليس',
|
||||
'America/Anchorage' => 'أنشوراج',
|
||||
'America/Anguilla' => 'أنغويلا',
|
||||
'America/Ojinaga' => 'أوجيناجا',
|
||||
'America/Edmonton' => 'ايدمونتون',
|
||||
'America/Eirunepe' => 'ايرونبي',
|
||||
'America/Inuvik' => 'اينوفيك',
|
||||
'America/Paramaribo' => 'باراماريبو',
|
||||
'America/Pangnirtung' => 'بانجينتينج',
|
||||
'America/Bahia' => 'باهيا',
|
||||
'America/Bahia_Banderas' => 'باهيا بانديراس',
|
||||
'America/Boa_Vista' => 'باو فيستا',
|
||||
'America/Barbados' => 'بربادوس',
|
||||
'America/Blanc-Sablon' => 'بلانك-سابلون',
|
||||
'America/Belem' => 'بلم',
|
||||
'America/Belize' => 'بليز',
|
||||
'America/Panama' => 'بنما',
|
||||
'America/Port-au-Prince' => 'بورت أو برنس',
|
||||
'America/Port_of_Spain' => 'بورت أوف سبين',
|
||||
'America/Porto_Velho' => 'بورتو فيلو',
|
||||
'America/Puerto_Rico' => 'بورتوريكو',
|
||||
'America/Bogota' => 'بوغوتا',
|
||||
'America/Punta_Arenas' => 'بونتا أريناز',
|
||||
'America/Boise' => 'بويس',
|
||||
'America/Argentina/Buenos_Aires' => 'بوينوس أيرس',
|
||||
'America/Indiana/Petersburg' => 'بيترسبرغ',
|
||||
'America/North_Dakota/Beulah' => 'بيولا، داكوتا الشمالية',
|
||||
'America/Argentina/Tucuman' => 'تاكمان',
|
||||
'America/Chihuahua' => 'تشيواوا',
|
||||
'America/Tortola' => 'تورتولا',
|
||||
'America/Toronto' => 'تورونتو',
|
||||
'America/Tijuana' => 'تيخوانا',
|
||||
'America/Tegucigalpa' => 'تيغوسيغالبا',
|
||||
'America/Thunder_Bay' => 'ثندر باي',
|
||||
'America/Thule' => 'ثيل',
|
||||
'America/Jamaica' => 'جامايكا',
|
||||
'America/Glace_Bay' => 'جلاس باي',
|
||||
'America/Argentina/Jujuy' => 'جوجو',
|
||||
'America/Goose_Bay' => 'جوس باي',
|
||||
'America/Juneau' => 'جوني',
|
||||
'America/Lower_Princes' => 'حي الأمير السفلي',
|
||||
'America/Danmarkshavn' => 'دانمرك شافن',
|
||||
'America/Dawson' => 'داوسان',
|
||||
'America/Dawson_Creek' => 'داوسن كريك',
|
||||
'America/Denver' => 'دنفر',
|
||||
'America/Dominica' => 'دومينيكا',
|
||||
'America/Detroit' => 'ديترويت',
|
||||
'America/Rankin_Inlet' => 'رانكن انلت',
|
||||
'America/Rainy_River' => 'راني ريفر',
|
||||
'America/Regina' => 'ريجينا',
|
||||
'America/Resolute' => 'ريزولوت',
|
||||
'America/Recife' => 'ريسيف',
|
||||
'America/Argentina/Rio_Gallegos' => 'ريو جالييوس',
|
||||
'America/Rio_Branco' => 'ريوبرانكو',
|
||||
'America/Argentina/Salta' => 'سالطا',
|
||||
'America/Argentina/San_Juan' => 'سان خوان',
|
||||
'America/Argentina/San_Luis' => 'سان لويس',
|
||||
'America/St_Barthelemy' => 'سانت بارتيليمي',
|
||||
'America/St_Thomas' => 'سانت توماس',
|
||||
'America/St_Johns' => 'سانت جونس',
|
||||
'America/St_Vincent' => 'سانت فنسنت',
|
||||
'America/St_Kitts' => 'سانت كيتس',
|
||||
'America/St_Lucia' => 'سانت لوشيا',
|
||||
'America/Santarem' => 'سانتاريم',
|
||||
'America/Santo_Domingo' => 'سانتو دومينغو',
|
||||
'America/Santiago' => 'سانتياغو',
|
||||
'America/Sao_Paulo' => 'ساو باولو',
|
||||
'America/Scoresbysund' => 'سكورسبيسند',
|
||||
'America/North_Dakota/Center' => 'سنتر',
|
||||
'America/Swift_Current' => 'سوفت كارنت',
|
||||
'America/Sitka' => 'سيتكا',
|
||||
'America/Chicago' => 'شيكاغو',
|
||||
'America/Grand_Turk' => 'غراند ترك',
|
||||
'America/Grenada' => 'غرينادا',
|
||||
'America/Guatemala' => 'غواتيمالا',
|
||||
'America/Guadeloupe' => 'غوادلوب',
|
||||
'America/Guayaquil' => 'غواياكويل',
|
||||
'America/Nuuk' => 'غودثاب',
|
||||
'America/Guyana' => 'غيانا',
|
||||
'America/Vancouver' => 'فانكوفر',
|
||||
'America/Fort_Nelson' => 'فورت نيلسون',
|
||||
'America/Fortaleza' => 'فورتاليزا',
|
||||
'America/Indiana/Vevay' => 'فيفاي',
|
||||
'America/Indiana/Vincennes' => 'فينسينس',
|
||||
'America/Phoenix' => 'فينكس',
|
||||
'America/Argentina/Catamarca' => 'كاتاماركا',
|
||||
'America/Caracas' => 'كاراكاس',
|
||||
'America/Cambridge_Bay' => 'كامبرديج باي',
|
||||
'America/Cancun' => 'كانكون',
|
||||
'America/Cayman' => 'كايمان',
|
||||
'America/Cayenne' => 'كايين',
|
||||
'America/Kralendijk' => 'كرالنديك',
|
||||
'America/Creston' => 'كريستون',
|
||||
'America/Curacao' => 'كوراساو',
|
||||
'America/Atikokan' => 'كورال هاربر',
|
||||
'America/Argentina/Cordoba' => 'كوردوبا',
|
||||
'America/Costa_Rica' => 'كوستاريكا',
|
||||
'America/Campo_Grande' => 'كومبو جراند',
|
||||
'America/Indiana/Knox' => 'كونكس',
|
||||
'America/Cuiaba' => 'كيابا',
|
||||
'America/La_Paz' => 'لا باز',
|
||||
'America/Argentina/La_Rioja' => 'لا ريوجا',
|
||||
'America/Los_Angeles' => 'لوس انجلوس',
|
||||
'America/Kentucky/Louisville' => 'لويس فيل',
|
||||
'America/Lima' => 'ليما',
|
||||
'America/Matamoros' => 'ماتاموروس',
|
||||
'America/Indiana/Marengo' => 'مارنجو',
|
||||
'America/Marigot' => 'ماريغوت',
|
||||
'America/Mazatlan' => 'مازاتلان',
|
||||
'America/Maceio' => 'ماشيو',
|
||||
'America/Managua' => 'ماناغوا',
|
||||
'America/Manaus' => 'ماناوس',
|
||||
'America/Indiana/Tell_City' => 'مدينة تل، إنديانا',
|
||||
'America/Mexico_City' => 'مكسيكو سيتي',
|
||||
'America/Miquelon' => 'مكويلون',
|
||||
'America/Montserrat' => 'مونتسيرات',
|
||||
'America/Montevideo' => 'مونتفيديو',
|
||||
'America/Monterrey' => 'مونتيري',
|
||||
'America/Kentucky/Monticello' => 'مونتيسيلو',
|
||||
'America/Metlakatla' => 'ميتلاكاتلا',
|
||||
'America/Merida' => 'ميريدا',
|
||||
'America/Argentina/Mendoza' => 'ميندوزا',
|
||||
'America/Menominee' => 'مينوميني',
|
||||
'America/Nassau' => 'ناسو',
|
||||
'America/Noronha' => 'نوروناه',
|
||||
'America/Nome' => 'نوم',
|
||||
'America/Nipigon' => 'نيبيجون',
|
||||
'America/North_Dakota/New_Salem' => 'نيو ساليم',
|
||||
'America/New_York' => 'نيويورك',
|
||||
'America/Havana' => 'هافانا',
|
||||
'America/Halifax' => 'هاليفاكس',
|
||||
'America/Hermosillo' => 'هيرموسيلو',
|
||||
'America/Whitehorse' => 'وايت هورس',
|
||||
'America/Indiana/Winamac' => 'ويناماك',
|
||||
'America/Moncton' => 'وينكتون',
|
||||
'America/Winnipeg' => 'وينيبيج',
|
||||
'America/Yakutat' => 'ياكوتات',
|
||||
'America/Yellowknife' => 'يلونيف',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Palmer' => 'بالمير',
|
||||
'Antarctica/Troll' => 'ترول',
|
||||
'Antarctica/Davis' => 'دافيز',
|
||||
'Antarctica/DumontDUrville' => 'دي مونت دو روفيل',
|
||||
'Antarctica/Rothera' => 'روثيرا',
|
||||
'Antarctica/Syowa' => 'سايووا',
|
||||
'Antarctica/Vostok' => 'فوستوك',
|
||||
'Antarctica/Casey' => 'كاساي',
|
||||
'Antarctica/McMurdo' => 'ماك موردو',
|
||||
'Antarctica/Macquarie' => 'ماكواري',
|
||||
'Antarctica/Mawson' => 'ماوسون',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'لونجيربين',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Ulaanbaatar' => 'آلانباتار',
|
||||
'Asia/Atyrau' => 'أتيراو',
|
||||
'Asia/Urumqi' => 'أرومكي',
|
||||
'Asia/Aqtau' => 'أكتاو',
|
||||
'Asia/Aqtobe' => 'أكتوب',
|
||||
'Asia/Bahrain' => 'البحرين',
|
||||
'Asia/Riyadh' => 'الرياض',
|
||||
'Asia/Jerusalem' => 'القدس',
|
||||
'Asia/Kuwait' => 'الكويت',
|
||||
'Asia/Almaty' => 'ألماتي',
|
||||
'Asia/Anadyr' => 'أندير',
|
||||
'Asia/Oral' => 'أورال',
|
||||
'Asia/Ust-Nera' => 'أوست نيرا',
|
||||
'Asia/Omsk' => 'أومسك',
|
||||
'Asia/Irkutsk' => 'ايركيتسك',
|
||||
'Asia/Barnaul' => 'بارناول',
|
||||
'Asia/Baku' => 'باكو',
|
||||
'Asia/Bangkok' => 'بانكوك',
|
||||
'Asia/Brunei' => 'بروناي',
|
||||
'Asia/Bishkek' => 'بشكيك',
|
||||
'Asia/Baghdad' => 'بغداد',
|
||||
'Asia/Phnom_Penh' => 'بنوم بنه',
|
||||
'Asia/Pontianak' => 'بونتيانك',
|
||||
'Asia/Beirut' => 'بيروت',
|
||||
'Asia/Pyongyang' => 'بيونغ يانغ',
|
||||
'Asia/Taipei' => 'تايبيه',
|
||||
'Asia/Tbilisi' => 'تبليسي',
|
||||
'Asia/Choibalsan' => 'تشوبالسان',
|
||||
'Asia/Chita' => 'تشيتا',
|
||||
'Asia/Tomsk' => 'تومسك',
|
||||
'Asia/Thimphu' => 'تيمفو',
|
||||
'Asia/Jakarta' => 'جاكرتا',
|
||||
'Asia/Jayapura' => 'جايابيورا',
|
||||
'Asia/Khandyga' => 'خانديجا',
|
||||
'Asia/Dubai' => 'دبي',
|
||||
'Asia/Dhaka' => 'دكا',
|
||||
'Asia/Damascus' => 'دمشق',
|
||||
'Asia/Dushanbe' => 'دوشانبي',
|
||||
'Asia/Dili' => 'ديلي',
|
||||
'Asia/Yangon' => 'رانغون',
|
||||
'Asia/Srednekolymsk' => 'سريدنكوليمسك',
|
||||
'Asia/Sakhalin' => 'سكالين',
|
||||
'Asia/Samarkand' => 'سمرقند',
|
||||
'Asia/Singapore' => 'سنغافورة',
|
||||
'Asia/Seoul' => 'سول',
|
||||
'Asia/Shanghai' => 'شنغهاي',
|
||||
'Asia/Tashkent' => 'طشقند',
|
||||
'Asia/Tehran' => 'طهران',
|
||||
'Asia/Tokyo' => 'طوكيو',
|
||||
'Asia/Aden' => 'عدن',
|
||||
'Asia/Ashgabat' => 'عشق آباد',
|
||||
'Asia/Amman' => 'عمان',
|
||||
'Asia/Gaza' => 'غزة',
|
||||
'Asia/Famagusta' => 'فاماغوستا',
|
||||
'Asia/Vladivostok' => 'فلاديفوستك',
|
||||
'Asia/Vientiane' => 'فيانتيان',
|
||||
'Asia/Qatar' => 'قطر',
|
||||
'Asia/Qostanay' => 'قوستاناي',
|
||||
'Asia/Kabul' => 'كابول',
|
||||
'Asia/Kathmandu' => 'كاتماندو',
|
||||
'Asia/Kolkata' => 'كالكتا',
|
||||
'Asia/Kamchatka' => 'كامتشاتكا',
|
||||
'Asia/Karachi' => 'كراتشي',
|
||||
'Asia/Krasnoyarsk' => 'كراسنويارسك',
|
||||
'Asia/Kuala_Lumpur' => 'كوالا لامبور',
|
||||
'Asia/Colombo' => 'كولومبو',
|
||||
'Asia/Qyzylorda' => 'كيزيلوردا',
|
||||
'Asia/Kuching' => 'كيشينج',
|
||||
'Asia/Macau' => 'ماكاو',
|
||||
'Asia/Makassar' => 'ماكسار',
|
||||
'Asia/Manila' => 'مانيلا',
|
||||
'Asia/Magadan' => 'مجادن',
|
||||
'Asia/Ho_Chi_Minh' => 'مدينة هو تشي منة',
|
||||
'Asia/Muscat' => 'مسقط',
|
||||
'Asia/Novosibirsk' => 'نوفوسبيرسك',
|
||||
'Asia/Novokuznetsk' => 'نوفوكوزنتسك',
|
||||
'Asia/Nicosia' => 'نيقوسيا',
|
||||
'Asia/Hovd' => 'هوفد',
|
||||
'Asia/Hong_Kong' => 'هونغ كونغ',
|
||||
'Asia/Hebron' => 'هيبرون (مدينة الخليل)',
|
||||
'Asia/Yakutsk' => 'ياكتسك',
|
||||
'Asia/Yerevan' => 'يريفان',
|
||||
'Asia/Yekaterinburg' => 'يكاترنبيرج',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'أزورس',
|
||||
'Atlantic/Stanley' => 'استانلي',
|
||||
'Atlantic/Cape_Verde' => 'الرأس الأخضر',
|
||||
'Atlantic/Bermuda' => 'برمودا',
|
||||
'Atlantic/South_Georgia' => 'جورجيا الجنوبية',
|
||||
'Atlantic/Reykjavik' => 'ريكيافيك',
|
||||
'Atlantic/St_Helena' => 'سانت هيلينا',
|
||||
'Atlantic/Faroe' => 'فارو',
|
||||
'Atlantic/Canary' => 'كناري',
|
||||
'Atlantic/Madeira' => 'ماديرا',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'أديليد',
|
||||
'Australia/Eucla' => 'أوكلا',
|
||||
'Australia/Perth' => 'برثا',
|
||||
'Australia/Brisbane' => 'برسيبان',
|
||||
'Australia/Broken_Hill' => 'بروكن هيل',
|
||||
'Australia/Darwin' => 'دارون',
|
||||
'Australia/Sydney' => 'سيدني',
|
||||
'Australia/Currie' => 'كوري',
|
||||
'Australia/Lord_Howe' => 'لورد هاو',
|
||||
'Australia/Lindeman' => 'ليندمان',
|
||||
'Australia/Melbourne' => 'ميلبورن',
|
||||
'Australia/Hobart' => 'هوبارت',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Athens' => 'أثينا',
|
||||
'Europe/Astrakhan' => 'أستراخان',
|
||||
'Europe/Istanbul' => 'إسطنبول',
|
||||
'Europe/Vatican' => 'الفاتيكان',
|
||||
'Europe/Amsterdam' => 'أمستردام',
|
||||
'Europe/Andorra' => 'أندورا',
|
||||
'Europe/Uzhgorod' => 'أوزجرود',
|
||||
'Europe/Oslo' => 'أوسلو',
|
||||
'Europe/Ulyanovsk' => 'أوليانوفسك',
|
||||
'Europe/Paris' => 'باريس',
|
||||
'Europe/Bratislava' => 'براتيسلافا',
|
||||
'Europe/Prague' => 'براغ',
|
||||
'Europe/Berlin' => 'برلين',
|
||||
'Europe/Brussels' => 'بروكسل',
|
||||
'Europe/Belgrade' => 'بلغراد',
|
||||
'Europe/Bucharest' => 'بوخارست',
|
||||
'Europe/Budapest' => 'بودابست',
|
||||
'Europe/Podgorica' => 'بودغوريكا',
|
||||
'Europe/Busingen' => 'بوسنغن',
|
||||
'Europe/Tallinn' => 'تالين',
|
||||
'Europe/Chisinau' => 'تشيسيناو',
|
||||
'Europe/Tirane' => 'تيرانا',
|
||||
'Europe/Gibraltar' => 'جبل طارق',
|
||||
'Europe/Isle_of_Man' => 'جزيرة مان',
|
||||
'Europe/Jersey' => 'جيرسي',
|
||||
'Europe/Dublin' => 'دبلن',
|
||||
'Europe/Rome' => 'روما',
|
||||
'Europe/Riga' => 'ريغا',
|
||||
'Europe/Zaporozhye' => 'زابوروزي',
|
||||
'Europe/Zagreb' => 'زغرب',
|
||||
'Europe/Zurich' => 'زيورخ',
|
||||
'Europe/Saratov' => 'ساراتوف',
|
||||
'Europe/San_Marino' => 'سان مارينو',
|
||||
'Europe/Stockholm' => 'ستوكهولم',
|
||||
'Europe/Sarajevo' => 'سراييفو',
|
||||
'Europe/Skopje' => 'سكوبي',
|
||||
'Europe/Samara' => 'سمراء',
|
||||
'Europe/Simferopol' => 'سيمفروبول',
|
||||
'Europe/Sofia' => 'صوفيا',
|
||||
'Europe/Guernsey' => 'غيرنزي',
|
||||
'Europe/Vaduz' => 'فادوز',
|
||||
'Europe/Volgograd' => 'فولوجراد',
|
||||
'Europe/Vilnius' => 'فيلنيوس',
|
||||
'Europe/Vienna' => 'فيينا',
|
||||
'Europe/Kaliningrad' => 'كالينجراد',
|
||||
'Europe/Copenhagen' => 'كوبنهاغن',
|
||||
'Europe/Kirov' => 'كيروف',
|
||||
'Europe/Kiev' => 'كييف',
|
||||
'Europe/Lisbon' => 'لشبونة',
|
||||
'Europe/London' => 'لندن',
|
||||
'Europe/Luxembourg' => 'لوكسمبورغ',
|
||||
'Europe/Ljubljana' => 'ليوبليانا',
|
||||
'Europe/Mariehamn' => 'ماريهامن',
|
||||
'Europe/Malta' => 'مالطة',
|
||||
'Europe/Madrid' => 'مدريد',
|
||||
'Europe/Moscow' => 'موسكو',
|
||||
'Europe/Monaco' => 'موناكو',
|
||||
'Europe/Minsk' => 'مينسك',
|
||||
'Europe/Helsinki' => 'هلسنكي',
|
||||
'Europe/Warsaw' => 'وارسو',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Maldives' => 'المالديف',
|
||||
'Indian/Antananarivo' => 'أنتاناناريفو',
|
||||
'Indian/Chagos' => 'تشاغوس',
|
||||
'Indian/Comoro' => 'جزر القمر',
|
||||
'Indian/Reunion' => 'ريونيون',
|
||||
'Indian/Christmas' => 'كريسماس',
|
||||
'Indian/Cocos' => 'كوكوس',
|
||||
'Indian/Kerguelen' => 'كيرغويلين',
|
||||
'Indian/Mahe' => 'ماهي',
|
||||
'Indian/Mayotte' => 'مايوت',
|
||||
'Indian/Mauritius' => 'موريشيوس',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'أبيا',
|
||||
'Pacific/Easter' => 'استر',
|
||||
'Pacific/Enderbury' => 'اندربيرج',
|
||||
'Pacific/Auckland' => 'أوكلاند',
|
||||
'Pacific/Efate' => 'إيفات',
|
||||
'Pacific/Pago_Pago' => 'باغو باغو',
|
||||
'Pacific/Palau' => 'بالاو',
|
||||
'Pacific/Pohnpei' => 'باناب',
|
||||
'Pacific/Port_Moresby' => 'بور مورسبي',
|
||||
'Pacific/Bougainville' => 'بوغانفيل',
|
||||
'Pacific/Pitcairn' => 'بيتكيرن',
|
||||
'Pacific/Tarawa' => 'تاراوا',
|
||||
'Pacific/Tahiti' => 'تاهيتي',
|
||||
'Pacific/Chuuk' => 'ترك',
|
||||
'Pacific/Chatham' => 'تشاثام',
|
||||
'Pacific/Tongatapu' => 'تونغاتابو',
|
||||
'Pacific/Gambier' => 'جامبير',
|
||||
'Pacific/Galapagos' => 'جلاباجوس',
|
||||
'Pacific/Honolulu' => 'جونستون',
|
||||
'Pacific/Rarotonga' => 'راروتونغا',
|
||||
'Pacific/Saipan' => 'سايبان',
|
||||
'Pacific/Guadalcanal' => 'غوادالكانال',
|
||||
'Pacific/Guam' => 'غوام',
|
||||
'Pacific/Fakaofo' => 'فاكاوفو',
|
||||
'Pacific/Funafuti' => 'فونافوتي',
|
||||
'Pacific/Fiji' => 'فيجي',
|
||||
'Pacific/Kwajalein' => 'كواجالين',
|
||||
'Pacific/Kosrae' => 'كوسرا',
|
||||
'Pacific/Kiritimati' => 'كيريتي ماتي',
|
||||
'Pacific/Majuro' => 'ماجورو',
|
||||
'Pacific/Marquesas' => 'ماركيساس',
|
||||
'Pacific/Midway' => 'ميدواي',
|
||||
'Pacific/Nauru' => 'ناورو',
|
||||
'Pacific/Norfolk' => 'نورفولك',
|
||||
'Pacific/Noumea' => 'نوميا',
|
||||
'Pacific/Niue' => 'نيوي',
|
||||
'Pacific/Wake' => 'واك',
|
||||
'Pacific/Wallis' => 'واليس',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'أوتسي',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afganistan',
|
||||
'AL' => 'Albanija',
|
||||
'DZ' => 'Alžir',
|
||||
'VI' => 'Američka Djevičanska ostrva',
|
||||
'AS' => 'Američka Samoa',
|
||||
'UM' => 'Američka Vanjska Ostrva',
|
||||
'AD' => 'Andora',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Angvila',
|
||||
'AQ' => 'Antarktika',
|
||||
'AG' => 'Antigva i Barbuda',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenija',
|
||||
'AW' => 'Aruba',
|
||||
'AU' => 'Australija',
|
||||
'AT' => 'Austrija',
|
||||
'AZ' => 'Azerbejdžan',
|
||||
'BS' => 'Bahami',
|
||||
'BH' => 'Bahrein',
|
||||
'BD' => 'Bangladeš',
|
||||
'BB' => 'Barbados',
|
||||
'BE' => 'Belgija',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BY' => 'Bjelorusija',
|
||||
'BW' => 'Bocvana',
|
||||
'BO' => 'Bolivija',
|
||||
'BA' => 'Bosna i Hercegovina',
|
||||
'CX' => 'Božićno ostrvo',
|
||||
'BR' => 'Brazil',
|
||||
'VG' => 'Britanska Djevičanska ostrva',
|
||||
'IO' => 'Britanska Teritorija u Indijskom Okeanu',
|
||||
'BN' => 'Brunej',
|
||||
'BG' => 'Bugarska',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'BT' => 'Butan',
|
||||
'CF' => 'Centralnoafrička Republika',
|
||||
'ME' => 'Crna Gora',
|
||||
'TD' => 'Čad',
|
||||
'CZ' => 'Češka',
|
||||
'CL' => 'Čile',
|
||||
'DK' => 'Danska',
|
||||
'DG' => 'Dijego Garsija',
|
||||
'DM' => 'Dominika',
|
||||
'DO' => 'Dominikanska Republika',
|
||||
'CD' => 'DR Kongo',
|
||||
'DJ' => 'Džibuti',
|
||||
'EG' => 'Egipat',
|
||||
'EC' => 'Ekvador',
|
||||
'GQ' => 'Ekvatorijalna Gvineja',
|
||||
'ER' => 'Eritreja',
|
||||
'EE' => 'Estonija',
|
||||
'SZ' => 'Esvatini',
|
||||
'ET' => 'Etiopija',
|
||||
'FO' => 'Farska ostrva',
|
||||
'FJ' => 'Fidži',
|
||||
'PH' => 'Filipini',
|
||||
'FI' => 'Finska',
|
||||
'FK' => 'Folklandska (Malvinska) ostrva',
|
||||
'FR' => 'Francuska',
|
||||
'GF' => 'Francuska Gvajana',
|
||||
'PF' => 'Francuska Polinezija',
|
||||
'TF' => 'Francuske Južne Teritorije',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambija',
|
||||
'GH' => 'Gana',
|
||||
'GG' => 'Gernzi',
|
||||
'GI' => 'Gibraltar',
|
||||
'GR' => 'Grčka',
|
||||
'GD' => 'Grenada',
|
||||
'GL' => 'Grenland',
|
||||
'GE' => 'Gruzija',
|
||||
'GU' => 'Guam',
|
||||
'GP' => 'Gvadalupe',
|
||||
'GY' => 'Gvajana',
|
||||
'GT' => 'Gvatemala',
|
||||
'GN' => 'Gvineja',
|
||||
'GW' => 'Gvineja-Bisao',
|
||||
'HT' => 'Haiti',
|
||||
'HM' => 'Herd i arhipelag MekDonald',
|
||||
'NL' => 'Holandija',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'HR' => 'Hrvatska',
|
||||
'IN' => 'Indija',
|
||||
'ID' => 'Indonezija',
|
||||
'IQ' => 'Irak',
|
||||
'IR' => 'Iran',
|
||||
'IE' => 'Irska',
|
||||
'IS' => 'Island',
|
||||
'TL' => 'Istočni Timor',
|
||||
'IT' => 'Italija',
|
||||
'IL' => 'Izrael',
|
||||
'JM' => 'Jamajka',
|
||||
'JP' => 'Japan',
|
||||
'YE' => 'Jemen',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordan',
|
||||
'GS' => 'Južna Džordžija i Južna Sendvič ostrva',
|
||||
'KR' => 'Južna Koreja',
|
||||
'SS' => 'Južni Sudan',
|
||||
'ZA' => 'Južnoafrička Republika',
|
||||
'KY' => 'Kajmanska ostrva',
|
||||
'KH' => 'Kambodža',
|
||||
'CM' => 'Kamerun',
|
||||
'CA' => 'Kanada',
|
||||
'IC' => 'Kanarska ostrva',
|
||||
'CV' => 'Kape Verde',
|
||||
'BQ' => 'Karipska Holandija',
|
||||
'QA' => 'Katar',
|
||||
'KZ' => 'Kazahstan',
|
||||
'KE' => 'Kenija',
|
||||
'CN' => 'Kina',
|
||||
'CY' => 'Kipar',
|
||||
'KG' => 'Kirgistan',
|
||||
'KI' => 'Kiribati',
|
||||
'CC' => 'Kokosova (Keelingova) ostrva',
|
||||
'CO' => 'Kolumbija',
|
||||
'KM' => 'Komori',
|
||||
'XK' => 'Kosovo',
|
||||
'CR' => 'Kostarika',
|
||||
'CU' => 'Kuba',
|
||||
'CK' => 'Kukova ostrva',
|
||||
'CW' => 'Kurasao',
|
||||
'KW' => 'Kuvajt',
|
||||
'LA' => 'Laos',
|
||||
'LV' => 'Latvija',
|
||||
'LS' => 'Lesoto',
|
||||
'LB' => 'Liban',
|
||||
'LR' => 'Liberija',
|
||||
'LY' => 'Libija',
|
||||
'LI' => 'Lihtenštajn',
|
||||
'LT' => 'Litvanija',
|
||||
'LU' => 'Luksemburg',
|
||||
'MG' => 'Madagaskar',
|
||||
'HU' => 'Mađarska',
|
||||
'YT' => 'Majote',
|
||||
'MO' => 'Makao',
|
||||
'MW' => 'Malavi',
|
||||
'MV' => 'Maldivi',
|
||||
'MY' => 'Malezija',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MA' => 'Maroko',
|
||||
'MH' => 'Maršalova ostrva',
|
||||
'MQ' => 'Martinik',
|
||||
'MU' => 'Mauricijus',
|
||||
'MR' => 'Mauritanija',
|
||||
'MX' => 'Meksiko',
|
||||
'FM' => 'Mikronezija',
|
||||
'MM' => 'Mjanmar',
|
||||
'MD' => 'Moldavija',
|
||||
'MC' => 'Monako',
|
||||
'MN' => 'Mongolija',
|
||||
'MS' => 'Monserat',
|
||||
'MZ' => 'Mozambik',
|
||||
'NA' => 'Namibija',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigerija',
|
||||
'NI' => 'Nikaragva',
|
||||
'NU' => 'Niue',
|
||||
'NO' => 'Norveška',
|
||||
'NC' => 'Nova Kaledonija',
|
||||
'NZ' => 'Novi Zeland',
|
||||
'DE' => 'Njemačka',
|
||||
'CI' => 'Obala Slonovače',
|
||||
'AX' => 'Olandska ostrva',
|
||||
'OM' => 'Oman',
|
||||
'TC' => 'Ostrva Turks i Kaikos',
|
||||
'WF' => 'Ostrva Valis i Futuna',
|
||||
'AC' => 'Ostrvo Ascension',
|
||||
'BV' => 'Ostrvo Buve',
|
||||
'CP' => 'Ostrvo Kliperton',
|
||||
'IM' => 'Ostrvo Man',
|
||||
'NF' => 'Ostrvo Norfolk',
|
||||
'PK' => 'Pakistan',
|
||||
'PW' => 'Palau',
|
||||
'PS' => 'Palestina',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Papua Nova Gvineja',
|
||||
'PY' => 'Paragvaj',
|
||||
'PE' => 'Peru',
|
||||
'PN' => 'Pitkernska Ostrva',
|
||||
'PL' => 'Poljska',
|
||||
'PR' => 'Porto Riko',
|
||||
'PT' => 'Portugal',
|
||||
'CG' => 'Republika Kongo',
|
||||
'RE' => 'Reunion',
|
||||
'RW' => 'Ruanda',
|
||||
'RO' => 'Rumunija',
|
||||
'RU' => 'Rusija',
|
||||
'SV' => 'Salvador',
|
||||
'WS' => 'Samoa',
|
||||
'SM' => 'San Marino',
|
||||
'ST' => 'Sao Tome i Principe',
|
||||
'SA' => 'Saudijska Arabija',
|
||||
'SC' => 'Sejšeli',
|
||||
'SN' => 'Senegal',
|
||||
'EA' => 'Seuta i Melilja',
|
||||
'SL' => 'Sijera Leone',
|
||||
'SG' => 'Singapur',
|
||||
'SX' => 'Sint Marten',
|
||||
'SY' => 'Sirija',
|
||||
'US' => 'Sjedinjene Države',
|
||||
'KP' => 'Sjeverna Koreja',
|
||||
'MK' => 'Sjeverna Makedonija',
|
||||
'MP' => 'Sjeverna Marijanska ostrva',
|
||||
'SK' => 'Slovačka',
|
||||
'SI' => 'Slovenija',
|
||||
'SB' => 'Solomonska Ostrva',
|
||||
'SO' => 'Somalija',
|
||||
'RS' => 'Srbija',
|
||||
'SD' => 'Sudan',
|
||||
'SR' => 'Surinam',
|
||||
'SJ' => 'Svalbard i Jan Majen',
|
||||
'SH' => 'Sveta Helena',
|
||||
'LC' => 'Sveta Lucija',
|
||||
'BL' => 'Sveti Bartolomej',
|
||||
'KN' => 'Sveti Kits i Nevis',
|
||||
'MF' => 'Sveti Martin',
|
||||
'PM' => 'Sveti Petar i Mikelon',
|
||||
'VC' => 'Sveti Vinsent i Grenadin',
|
||||
'ES' => 'Španija',
|
||||
'LK' => 'Šri Lanka',
|
||||
'SE' => 'Švedska',
|
||||
'CH' => 'Švicarska',
|
||||
'TJ' => 'Tadžikistan',
|
||||
'TH' => 'Tajland',
|
||||
'TW' => 'Tajvan',
|
||||
'TZ' => 'Tanzanija',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad i Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TN' => 'Tunis',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TR' => 'Turska',
|
||||
'TV' => 'Tuvalu',
|
||||
'UG' => 'Uganda',
|
||||
'AE' => 'Ujedinjeni Arapski Emirati',
|
||||
'GB' => 'Ujedinjeno Kraljevstvo',
|
||||
'UA' => 'Ukrajina',
|
||||
'UY' => 'Urugvaj',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VU' => 'Vanuatu',
|
||||
'VA' => 'Vatikan',
|
||||
'VE' => 'Venecuela',
|
||||
'VN' => 'Vijetnam',
|
||||
'ZM' => 'Zambija',
|
||||
'EH' => 'Zapadna Sahara',
|
||||
'ZW' => 'Zimbabve',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Afrika',
|
||||
'America' => 'Amerika',
|
||||
'Antarctica' => 'Antarktik',
|
||||
'Arctic' => 'Arktik',
|
||||
'Atlantic' => 'Atlantski okean',
|
||||
'Australia' => 'Australija',
|
||||
'Asia' => 'Azija',
|
||||
'Europe' => 'Evropa',
|
||||
'Indian' => 'Indijski okean',
|
||||
'Pacific' => 'Pacifik',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addis Ababa',
|
||||
'Africa/Algiers' => 'Algiers',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es Salaam',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/Djibouti' => 'Džibuti',
|
||||
'Africa/El_Aaiun' => 'El Aaiun',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Cairo' => 'Kairo',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Kartum',
|
||||
'Africa/Casablanca' => 'Kazablanka',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lome',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadiš',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Ndjamena' => 'Ndjamena',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto-Novo',
|
||||
'Africa/Sao_Tome' => 'Sao Tome',
|
||||
'Africa/Tripoli' => 'Tripoli',
|
||||
'Africa/Tunis' => 'Tunis',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Angvila',
|
||||
'America/Antigua' => 'Antigva',
|
||||
'America/Araguaina' => 'Araguaina',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asuncion',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahia Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belem',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, Sjeverna Dakota',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogota',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancun',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayenne',
|
||||
'America/North_Dakota/Center' => 'Center, Sjeverna Dakota',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Argentina/Cordoba' => 'Cordoba',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiaba',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominika',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepe',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenada',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Guadeloupe' => 'Gvadalupe',
|
||||
'America/Guatemala' => 'Gvatemala',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Havana' => 'Havana',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamajka',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Cayman' => 'Kajman',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Costa_Rica' => 'Kostarika',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/Curacao' => 'Kurasao',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceio',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaus',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinique',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlan',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Merida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Mexico_City' => 'Mexico City',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, Sjeverna Dakota',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panama',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port_of_Spain' => 'Port of Spain',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Puerto_Rico' => 'Portoriko',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Rio Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Rio Gallegos',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/El_Salvador' => 'Salvador',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Santarem' => 'Santarem',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sao_Paulo' => 'Sao Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Barthelemy' => 'St. Barthelemy',
|
||||
'America/St_Johns' => 'St. John’s',
|
||||
'America/St_Kitts' => 'St. Kitts',
|
||||
'America/St_Lucia' => 'St. Lucia',
|
||||
'America/St_Thomas' => 'St. Thomas',
|
||||
'America/St_Vincent' => 'St. Vincent',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucuman',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Aden',
|
||||
'Asia/Aqtau' => 'Aktau',
|
||||
'Asia/Aqtobe' => 'Akutobe',
|
||||
'Asia/Almaty' => 'Almati',
|
||||
'Asia/Amman' => 'Aman',
|
||||
'Asia/Anadyr' => 'Anadir',
|
||||
'Asia/Ashgabat' => 'Ašhabad',
|
||||
'Asia/Atyrau' => 'Atiraj',
|
||||
'Asia/Baghdad' => 'Bagdad',
|
||||
'Asia/Bahrain' => 'Bahrein',
|
||||
'Asia/Baku' => 'Baku',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Bejrut',
|
||||
'Asia/Bishkek' => 'Biškek',
|
||||
'Asia/Brunei' => 'Bruneji',
|
||||
'Asia/Chita' => 'Chita',
|
||||
'Asia/Choibalsan' => 'Čojbalsan',
|
||||
'Asia/Dhaka' => 'Daka',
|
||||
'Asia/Damascus' => 'Damask',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubai',
|
||||
'Asia/Dushanbe' => 'Dušanbe',
|
||||
'Asia/Jayapura' => 'Džajapura',
|
||||
'Asia/Jakarta' => 'Džakarta',
|
||||
'Asia/Famagusta' => 'Famagusta',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Khandyga' => 'Handiga',
|
||||
'Asia/Hebron' => 'Hebron',
|
||||
'Asia/Ho_Chi_Minh' => 'Ho Ši Min',
|
||||
'Asia/Hong_Kong' => 'Hong Kong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Irkutsk' => 'Irkutsk',
|
||||
'Asia/Yakutsk' => 'Jakutsk',
|
||||
'Asia/Yekaterinburg' => 'Jekaterinburg',
|
||||
'Asia/Yerevan' => 'Jerevan',
|
||||
'Asia/Jerusalem' => 'Jeruzalem',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kamchatka' => 'Kamčatka',
|
||||
'Asia/Karachi' => 'Karači',
|
||||
'Asia/Qatar' => 'Katar',
|
||||
'Asia/Kathmandu' => 'Katmandu',
|
||||
'Asia/Qyzylorda' => 'Kizilorda',
|
||||
'Asia/Kolkata' => 'Kolkata',
|
||||
'Asia/Colombo' => 'Kolombo',
|
||||
'Asia/Qostanay' => 'Kostanaj',
|
||||
'Asia/Krasnoyarsk' => 'Krasnojarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kučing',
|
||||
'Asia/Kuwait' => 'Kuvajt',
|
||||
'Asia/Magadan' => 'Magadan',
|
||||
'Asia/Makassar' => 'Makasar',
|
||||
'Asia/Macau' => 'Makau',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Muskat',
|
||||
'Asia/Nicosia' => 'Nikozija',
|
||||
'Asia/Novokuznetsk' => 'Novokuznjeck',
|
||||
'Asia/Novosibirsk' => 'Novosibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Pyongyang' => 'Pjongjang',
|
||||
'Asia/Phnom_Penh' => 'Pnom Pen',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Yangon' => 'Rangun',
|
||||
'Asia/Riyadh' => 'Rijad',
|
||||
'Asia/Sakhalin' => 'Sahalin',
|
||||
'Asia/Samarkand' => 'Samarkand',
|
||||
'Asia/Seoul' => 'Seul',
|
||||
'Asia/Singapore' => 'Singapur',
|
||||
'Asia/Srednekolymsk' => 'Srednekolymsk',
|
||||
'Asia/Shanghai' => 'Šangaj',
|
||||
'Asia/Taipei' => 'Tajpej',
|
||||
'Asia/Tashkent' => 'Taškent',
|
||||
'Asia/Tbilisi' => 'Tbilisi',
|
||||
'Asia/Tehran' => 'Teheran',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tokyo' => 'Tokio',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Ulaanbaatar' => 'Ulan Bator',
|
||||
'Asia/Urumqi' => 'Urumči',
|
||||
'Asia/Ust-Nera' => 'Ust-Nera',
|
||||
'Asia/Vientiane' => 'Vijentijan',
|
||||
'Asia/Vladivostok' => 'Vladivostok',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azori',
|
||||
'Atlantic/Bermuda' => 'Bermuda',
|
||||
'Atlantic/Faroe' => 'Faroe',
|
||||
'Atlantic/Canary' => 'Kanari',
|
||||
'Atlantic/Cape_Verde' => 'Kape Verde',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Rejkjavik',
|
||||
'Atlantic/South_Georgia' => 'South Georgia',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
'Atlantic/St_Helena' => 'Sveta Helena',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaide',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Hau',
|
||||
'Australia/Melbourne' => 'Melburn',
|
||||
'Australia/Perth' => 'Pert',
|
||||
'Australia/Sydney' => 'Sidnej',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amsterdam',
|
||||
'Europe/Andorra' => 'Andora',
|
||||
'Europe/Astrakhan' => 'Astrahan',
|
||||
'Europe/Athens' => 'Atina',
|
||||
'Europe/Vienna' => 'Beč',
|
||||
'Europe/Belgrade' => 'Beograd',
|
||||
'Europe/Berlin' => 'Berlin',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Brisel',
|
||||
'Europe/Budapest' => 'Budimpešta',
|
||||
'Europe/Bucharest' => 'Bukurešt',
|
||||
'Europe/Busingen' => 'Busingen',
|
||||
'Europe/Zurich' => 'Cirih',
|
||||
'Europe/Dublin' => 'Dablin',
|
||||
'Europe/Guernsey' => 'Gernzi',
|
||||
'Europe/Gibraltar' => 'Gibraltar',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Istanbul' => 'Istanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kalinjingrad',
|
||||
'Europe/Kiev' => 'Kijev',
|
||||
'Europe/Kirov' => 'Kirov',
|
||||
'Europe/Chisinau' => 'Kišinjev',
|
||||
'Europe/Copenhagen' => 'Kopenhagen',
|
||||
'Europe/Lisbon' => 'Lisabon',
|
||||
'Europe/London' => 'London',
|
||||
'Europe/Luxembourg' => 'Luksemburg',
|
||||
'Europe/Ljubljana' => 'Ljubljana',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malta',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Monako',
|
||||
'Europe/Moscow' => 'Moskva',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Isle_of_Man' => 'Ostrvo Man',
|
||||
'Europe/Paris' => 'Pariz',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Prag',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Rim',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Saratov',
|
||||
'Europe/Simferopol' => 'Simferopolj',
|
||||
'Europe/Skopje' => 'Skoplje',
|
||||
'Europe/Sofia' => 'Sofija',
|
||||
'Europe/Stockholm' => 'Štokholm',
|
||||
'Europe/Tallinn' => 'Talin',
|
||||
'Europe/Tirane' => 'Tirana',
|
||||
'Europe/Ulyanovsk' => 'Ulyanovsk',
|
||||
'Europe/Uzhgorod' => 'Užgorod',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Warsaw' => 'Varšava',
|
||||
'Europe/Vatican' => 'Vatikan',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Volgograd' => 'Volgograd',
|
||||
'Europe/Zagreb' => 'Zagreb',
|
||||
'Europe/Zaporozhye' => 'Zaporožje',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Christmas' => 'Božićno ostrvo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Comoro' => 'Comoro',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Cocos' => 'Kokosova ostrva',
|
||||
'Indian/Mahe' => 'Mahe',
|
||||
'Indian/Maldives' => 'Maldivi',
|
||||
'Indian/Mauritius' => 'Mauricijus',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Reunion' => 'Reunion',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Easter' => 'Easter',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fidži',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galapagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Honolulu' => 'Johnston',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marquesas',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Noumea',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Pitcairn' => 'Pitkern',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wallis' => 'Valis',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afghanistan',
|
||||
'EG' => 'Ägypten',
|
||||
'AX' => 'Ålandinseln',
|
||||
'AL' => 'Albanien',
|
||||
'DZ' => 'Algerien',
|
||||
'AS' => 'Amerikanisch-Samoa',
|
||||
'VI' => 'Amerikanische Jungferninseln',
|
||||
'UM' => 'Amerikanische Überseeinseln',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antarktis',
|
||||
'AG' => 'Antigua und Barbuda',
|
||||
'GQ' => 'Äquatorialguinea',
|
||||
'AR' => 'Argentinien',
|
||||
'AM' => 'Armenien',
|
||||
'AW' => 'Aruba',
|
||||
'AC' => 'Ascension',
|
||||
'AZ' => 'Aserbaidschan',
|
||||
'ET' => 'Äthiopien',
|
||||
'AU' => 'Australien',
|
||||
'BS' => 'Bahamas',
|
||||
'BH' => 'Bahrain',
|
||||
'BD' => 'Bangladesch',
|
||||
'BB' => 'Barbados',
|
||||
'BY' => 'Belarus',
|
||||
'BE' => 'Belgien',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BT' => 'Bhutan',
|
||||
'BO' => 'Bolivien',
|
||||
'BQ' => 'Bonaire, Sint Eustatius und Saba',
|
||||
'BA' => 'Bosnien und Herzegowina',
|
||||
'BW' => 'Botsuana',
|
||||
'BV' => 'Bouvetinsel',
|
||||
'BR' => 'Brasilien',
|
||||
'VG' => 'Britische Jungferninseln',
|
||||
'IO' => 'Britisches Territorium im Indischen Ozean',
|
||||
'BN' => 'Brunei Darussalam',
|
||||
'BG' => 'Bulgarien',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'CV' => 'Cabo Verde',
|
||||
'EA' => 'Ceuta und Melilla',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'China',
|
||||
'CP' => 'Clipperton-Insel',
|
||||
'CK' => 'Cookinseln',
|
||||
'CR' => 'Costa Rica',
|
||||
'CI' => 'Côte d’Ivoire',
|
||||
'CW' => 'Curaçao',
|
||||
'DK' => 'Dänemark',
|
||||
'DE' => 'Deutschland',
|
||||
'DG' => 'Diego Garcia',
|
||||
'DM' => 'Dominica',
|
||||
'DO' => 'Dominikanische Republik',
|
||||
'DJ' => 'Dschibuti',
|
||||
'EC' => 'Ecuador',
|
||||
'SV' => 'El Salvador',
|
||||
'ER' => 'Eritrea',
|
||||
'EE' => 'Estland',
|
||||
'SZ' => 'Eswatini',
|
||||
'FK' => 'Falklandinseln (Malwinen)',
|
||||
'FO' => 'Färöer',
|
||||
'FJ' => 'Fidschi',
|
||||
'FI' => 'Finnland',
|
||||
'FR' => 'Frankreich',
|
||||
'GF' => 'Französisch-Guayana',
|
||||
'PF' => 'Französisch-Polynesien',
|
||||
'TF' => 'Französische Süd- und Antarktisgebiete',
|
||||
'GA' => 'Gabun',
|
||||
'GM' => 'Gambia',
|
||||
'GE' => 'Georgien',
|
||||
'GH' => 'Ghana',
|
||||
'GI' => 'Gibraltar',
|
||||
'GD' => 'Grenada',
|
||||
'GR' => 'Griechenland',
|
||||
'GL' => 'Grönland',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GY' => 'Guyana',
|
||||
'HT' => 'Haiti',
|
||||
'HM' => 'Heard und McDonaldinseln',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hongkong',
|
||||
'IN' => 'Indien',
|
||||
'ID' => 'Indonesien',
|
||||
'IQ' => 'Irak',
|
||||
'IR' => 'Iran',
|
||||
'IE' => 'Irland',
|
||||
'IS' => 'Island',
|
||||
'IM' => 'Isle of Man',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italien',
|
||||
'JM' => 'Jamaika',
|
||||
'JP' => 'Japan',
|
||||
'YE' => 'Jemen',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordanien',
|
||||
'KY' => 'Kaimaninseln',
|
||||
'KH' => 'Kambodscha',
|
||||
'CM' => 'Kamerun',
|
||||
'CA' => 'Kanada',
|
||||
'IC' => 'Kanarische Inseln',
|
||||
'KZ' => 'Kasachstan',
|
||||
'QA' => 'Katar',
|
||||
'KE' => 'Kenia',
|
||||
'KG' => 'Kirgisistan',
|
||||
'KI' => 'Kiribati',
|
||||
'CC' => 'Kokosinseln',
|
||||
'CO' => 'Kolumbien',
|
||||
'KM' => 'Komoren',
|
||||
'CD' => 'Kongo (Demokratische Republik)',
|
||||
'CG' => 'Kongo (Republik)',
|
||||
'XK' => 'Kosovo',
|
||||
'HR' => 'Kroatien',
|
||||
'CU' => 'Kuba',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laos',
|
||||
'LS' => 'Lesotho',
|
||||
'LV' => 'Lettland',
|
||||
'LB' => 'Libanon',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libyen',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Litauen',
|
||||
'LU' => 'Luxemburg',
|
||||
'MO' => 'Macau',
|
||||
'MG' => 'Madagaskar',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'MV' => 'Malediven',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MA' => 'Marokko',
|
||||
'MH' => 'Marshallinseln',
|
||||
'MQ' => 'Martinique',
|
||||
'MR' => 'Mauretanien',
|
||||
'MU' => 'Mauritius',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Mexiko',
|
||||
'FM' => 'Mikronesien',
|
||||
'MC' => 'Monaco',
|
||||
'MN' => 'Mongolei',
|
||||
'ME' => 'Montenegro',
|
||||
'MS' => 'Montserrat',
|
||||
'MZ' => 'Mosambik',
|
||||
'MM' => 'Myanmar',
|
||||
'NA' => 'Namibia',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NC' => 'Neukaledonien',
|
||||
'NZ' => 'Neuseeland',
|
||||
'NI' => 'Nicaragua',
|
||||
'NL' => 'Niederlande',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NU' => 'Niue',
|
||||
'KP' => 'Nordkorea',
|
||||
'MP' => 'Nördliche Marianen',
|
||||
'MK' => 'Nordmazedonien',
|
||||
'NF' => 'Norfolkinsel',
|
||||
'NO' => 'Norwegen',
|
||||
'OM' => 'Oman',
|
||||
'AT' => 'Österreich',
|
||||
'PK' => 'Pakistan',
|
||||
'PS' => 'Palästina',
|
||||
'PW' => 'Palau',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Papua-Neuguinea',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Philippinen',
|
||||
'PN' => 'Pitcairninseln',
|
||||
'PL' => 'Polen',
|
||||
'PT' => 'Portugal',
|
||||
'PR' => 'Puerto Rico',
|
||||
'MD' => 'Republik Moldau',
|
||||
'RE' => 'Réunion',
|
||||
'RW' => 'Ruanda',
|
||||
'RO' => 'Rumänien',
|
||||
'RU' => 'Russland',
|
||||
'SB' => 'Salomonen',
|
||||
'ZM' => 'Sambia',
|
||||
'WS' => 'Samoa',
|
||||
'SM' => 'San Marino',
|
||||
'ST' => 'São Tomé und Príncipe',
|
||||
'SA' => 'Saudi-Arabien',
|
||||
'SE' => 'Schweden',
|
||||
'CH' => 'Schweiz',
|
||||
'SN' => 'Senegal',
|
||||
'RS' => 'Serbien',
|
||||
'SC' => 'Seychellen',
|
||||
'SL' => 'Sierra Leone',
|
||||
'ZW' => 'Simbabwe',
|
||||
'SG' => 'Singapur',
|
||||
'SX' => 'Sint Maarten',
|
||||
'SK' => 'Slowakei',
|
||||
'SI' => 'Slowenien',
|
||||
'SO' => 'Somalia',
|
||||
'ES' => 'Spanien',
|
||||
'SJ' => 'Spitzbergen und Jan Mayen',
|
||||
'LK' => 'Sri Lanka',
|
||||
'BL' => 'St. Barthélemy',
|
||||
'SH' => 'St. Helena',
|
||||
'KN' => 'St. Kitts und Nevis',
|
||||
'LC' => 'St. Lucia',
|
||||
'MF' => 'St. Martin',
|
||||
'PM' => 'St. Pierre und Miquelon',
|
||||
'VC' => 'St. Vincent und die Grenadinen',
|
||||
'ZA' => 'Südafrika',
|
||||
'SD' => 'Sudan',
|
||||
'GS' => 'Südgeorgien und die Südlichen Sandwichinseln',
|
||||
'KR' => 'Südkorea',
|
||||
'SS' => 'Südsudan',
|
||||
'SR' => 'Suriname',
|
||||
'SY' => 'Syrien',
|
||||
'TJ' => 'Tadschikistan',
|
||||
'TW' => 'Taiwan',
|
||||
'TZ' => 'Tansania',
|
||||
'TH' => 'Thailand',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad und Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TD' => 'Tschad',
|
||||
'CZ' => 'Tschechien',
|
||||
'TN' => 'Tunesien',
|
||||
'TR' => 'Türkei',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TC' => 'Turks- und Caicosinseln',
|
||||
'TV' => 'Tuvalu',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraine',
|
||||
'HU' => 'Ungarn',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Usbekistan',
|
||||
'VU' => 'Vanuatu',
|
||||
'VA' => 'Vatikanstadt',
|
||||
'VE' => 'Venezuela',
|
||||
'AE' => 'Vereinigte Arabische Emirate',
|
||||
'US' => 'Vereinigte Staaten',
|
||||
'GB' => 'Vereinigtes Königreich',
|
||||
'VN' => 'Vietnam',
|
||||
'WF' => 'Wallis und Futuna',
|
||||
'CX' => 'Weihnachtsinsel',
|
||||
'EH' => 'Westsahara',
|
||||
'CF' => 'Zentralafrikanische Republik',
|
||||
'CY' => 'Zypern',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Afrika',
|
||||
'America' => 'America',
|
||||
'Antarctica' => 'Antarktika',
|
||||
'Arctic' => 'Arktis',
|
||||
'Asia' => 'Asien',
|
||||
'Atlantic' => 'Atlantik',
|
||||
'Australia' => 'Australien',
|
||||
'Europe' => 'Europa',
|
||||
'Indian' => 'Indian',
|
||||
'Pacific' => 'Pazifik',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addis Abeba',
|
||||
'Africa/Algiers' => 'Algier',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Daressalam',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/Djibouti' => 'Dschibuti',
|
||||
'Africa/El_Aaiun' => 'El Aaiún',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Cairo' => 'Kairo',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Khartum',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lomé',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadischu',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Ndjamena' => 'N’Djamena',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto Novo',
|
||||
'Africa/Sao_Tome' => 'São Tomé',
|
||||
'Africa/Tripoli' => 'Tripolis',
|
||||
'Africa/Tunis' => 'Tunis',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguilla',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaina',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asunción',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahia Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belem',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, North Dakota',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogotá',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancún',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayenne',
|
||||
'America/North_Dakota/Center' => 'Center, North Dakota',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Argentina/Cordoba' => 'Córdoba',
|
||||
'America/Costa_Rica' => 'Costa Rica',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiaba',
|
||||
'America/Curacao' => 'Curaçao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominica',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepe',
|
||||
'America/El_Salvador' => 'El Salvador',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenada',
|
||||
'America/Guadeloupe' => 'Guadeloupe',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Havana' => 'Havanna',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamaika',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Cayman' => 'Kaimaninseln',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceio',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaus',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinique',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlan',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Merida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Mexico_City' => 'Mexiko-Stadt',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, North Dakota',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panama',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port_of_Spain' => 'Port of Spain',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Puerto_Rico' => 'Puerto Rico',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Rio Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Rio Gallegos',
|
||||
'America/St_Barthelemy' => 'Saint-Barthélemy',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Santarem' => 'Santarem',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sao_Paulo' => 'São Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Johns' => 'St. John’s',
|
||||
'America/St_Kitts' => 'St. Kitts',
|
||||
'America/St_Lucia' => 'St. Lucia',
|
||||
'America/St_Thomas' => 'St. Thomas',
|
||||
'America/St_Vincent' => 'St. Vincent',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucuman',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Wostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Aden',
|
||||
'Asia/Aqtobe' => 'Aktobe',
|
||||
'Asia/Almaty' => 'Almaty',
|
||||
'Asia/Amman' => 'Amman',
|
||||
'Asia/Anadyr' => 'Anadyr',
|
||||
'Asia/Aqtau' => 'Aqtau',
|
||||
'Asia/Ashgabat' => 'Aşgabat',
|
||||
'Asia/Atyrau' => 'Atyrau',
|
||||
'Asia/Baghdad' => 'Bagdad',
|
||||
'Asia/Bahrain' => 'Bahrain',
|
||||
'Asia/Baku' => 'Baku',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Beirut',
|
||||
'Asia/Bishkek' => 'Bischkek',
|
||||
'Asia/Brunei' => 'Brunei Darussalam',
|
||||
'Asia/Khandyga' => 'Chandyga',
|
||||
'Asia/Hovd' => 'Chowd',
|
||||
'Asia/Colombo' => 'Colombo',
|
||||
'Asia/Damascus' => 'Damaskus',
|
||||
'Asia/Dhaka' => 'Dhaka',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubai',
|
||||
'Asia/Dushanbe' => 'Duschanbe',
|
||||
'Asia/Yerevan' => 'Eriwan',
|
||||
'Asia/Famagusta' => 'Famagusta',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Hebron' => 'Hebron',
|
||||
'Asia/Ho_Chi_Minh' => 'Ho-Chi-Minh-Stadt',
|
||||
'Asia/Hong_Kong' => 'Hongkong',
|
||||
'Asia/Irkutsk' => 'Irkutsk',
|
||||
'Asia/Jakarta' => 'Jakarta',
|
||||
'Asia/Yakutsk' => 'Jakutsk',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Yekaterinburg' => 'Jekaterinburg',
|
||||
'Asia/Jerusalem' => 'Jerusalem',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kolkata' => 'Kalkutta',
|
||||
'Asia/Kamchatka' => 'Kamtschatka',
|
||||
'Asia/Karachi' => 'Karatschi',
|
||||
'Asia/Qatar' => 'Katar',
|
||||
'Asia/Kathmandu' => 'Kathmandu',
|
||||
'Asia/Krasnoyarsk' => 'Krasnojarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kuching',
|
||||
'Asia/Kuwait' => 'Kuwait',
|
||||
'Asia/Macau' => 'Macau',
|
||||
'Asia/Magadan' => 'Magadan',
|
||||
'Asia/Makassar' => 'Makassar',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Maskat',
|
||||
'Asia/Nicosia' => 'Nikosia',
|
||||
'Asia/Novokuznetsk' => 'Nowokuznetsk',
|
||||
'Asia/Novosibirsk' => 'Nowosibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pyongyang' => 'Pjöngjang',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Qostanay' => 'Qostanai',
|
||||
'Asia/Qyzylorda' => 'Qysylorda',
|
||||
'Asia/Yangon' => 'Rangun',
|
||||
'Asia/Riyadh' => 'Riad',
|
||||
'Asia/Sakhalin' => 'Sachalin',
|
||||
'Asia/Samarkand' => 'Samarkand',
|
||||
'Asia/Seoul' => 'Seoul',
|
||||
'Asia/Shanghai' => 'Shanghai',
|
||||
'Asia/Singapore' => 'Singapur',
|
||||
'Asia/Srednekolymsk' => 'Srednekolymsk',
|
||||
'Asia/Taipei' => 'Taipeh',
|
||||
'Asia/Tashkent' => 'Taschkent',
|
||||
'Asia/Tehran' => 'Teheran',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tbilisi' => 'Tiflis',
|
||||
'Asia/Tokyo' => 'Tokio',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Chita' => 'Tschita',
|
||||
'Asia/Choibalsan' => 'Tschoibalsan',
|
||||
'Asia/Ulaanbaatar' => 'Ulaanbaatar',
|
||||
'Asia/Urumqi' => 'Ürümqi',
|
||||
'Asia/Ust-Nera' => 'Ust-Nera',
|
||||
'Asia/Vientiane' => 'Vientiane',
|
||||
'Asia/Vladivostok' => 'Wladiwostok',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azoren',
|
||||
'Atlantic/Bermuda' => 'Bermuda',
|
||||
'Atlantic/Cape_Verde' => 'Cabo Verde',
|
||||
'Atlantic/Faroe' => 'Färöer',
|
||||
'Atlantic/Canary' => 'Kanaren',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Reykjavík',
|
||||
'Atlantic/St_Helena' => 'St. Helena',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
'Atlantic/South_Georgia' => 'Südgeorgien',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaide',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sydney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amsterdam',
|
||||
'Europe/Andorra' => 'Andorra',
|
||||
'Europe/Astrakhan' => 'Astrachan',
|
||||
'Europe/Athens' => 'Athen',
|
||||
'Europe/Belgrade' => 'Belgrad',
|
||||
'Europe/Berlin' => 'Berlin',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Brüssel',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Bucharest' => 'Bukarest',
|
||||
'Europe/Busingen' => 'Büsingen',
|
||||
'Europe/Dublin' => 'Dublin',
|
||||
'Europe/Gibraltar' => 'Gibraltar',
|
||||
'Europe/Guernsey' => 'Guernsey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Isle_of_Man' => 'Isle of Man',
|
||||
'Europe/Istanbul' => 'Istanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kaliningrad',
|
||||
'Europe/Kiev' => 'Kiew',
|
||||
'Europe/Kirov' => 'Kirow',
|
||||
'Europe/Chisinau' => 'Kischinau',
|
||||
'Europe/Copenhagen' => 'Kopenhagen',
|
||||
'Europe/Lisbon' => 'Lissabon',
|
||||
'Europe/Ljubljana' => 'Ljubljana',
|
||||
'Europe/London' => 'London',
|
||||
'Europe/Luxembourg' => 'Luxemburg',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malta',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Monaco',
|
||||
'Europe/Moscow' => 'Moskau',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Paris' => 'Paris',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Prag',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Rom',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Zaporozhye' => 'Saporischja',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Saratow',
|
||||
'Europe/Simferopol' => 'Simferopol',
|
||||
'Europe/Skopje' => 'Skopje',
|
||||
'Europe/Sofia' => 'Sofia',
|
||||
'Europe/Stockholm' => 'Stockholm',
|
||||
'Europe/Tallinn' => 'Tallinn',
|
||||
'Europe/Tirane' => 'Tirana',
|
||||
'Europe/Ulyanovsk' => 'Uljanowsk',
|
||||
'Europe/Uzhgorod' => 'Uschgorod',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Vatican' => 'Vatikan',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Warsaw' => 'Warschau',
|
||||
'Europe/Vienna' => 'Wien',
|
||||
'Europe/Volgograd' => 'Wolgograd',
|
||||
'Europe/Zagreb' => 'Zagreb',
|
||||
'Europe/Zurich' => 'Zürich',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Cocos' => 'Cocos',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Comoro' => 'Komoren',
|
||||
'Indian/Mahe' => 'Mahe',
|
||||
'Indian/Maldives' => 'Malediven',
|
||||
'Indian/Mauritius' => 'Mauritius',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Reunion' => 'Réunion',
|
||||
'Indian/Christmas' => 'Weihnachtsinsel',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fidschi',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galapagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Honolulu' => 'Johnston',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marquesas',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Noumea',
|
||||
'Pacific/Easter' => 'Osterinsel',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Pitcairn' => 'Pitcairn',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afghanistan',
|
||||
'AX' => 'Åland Islands',
|
||||
'AL' => 'Albania',
|
||||
'DZ' => 'Algeria',
|
||||
'AS' => 'American Samoa',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antarctica',
|
||||
'AG' => 'Antigua and Barbuda',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenia',
|
||||
'AW' => 'Aruba',
|
||||
'AC' => 'Ascension Island',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbaijan',
|
||||
'BS' => 'Bahamas',
|
||||
'BH' => 'Bahrain',
|
||||
'BD' => 'Bangladesh',
|
||||
'BB' => 'Barbados',
|
||||
'BY' => 'Belarus',
|
||||
'BE' => 'Belgium',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BT' => 'Bhutan',
|
||||
'BO' => 'Bolivia',
|
||||
'BA' => 'Bosnia and Herzegovina',
|
||||
'BW' => 'Botswana',
|
||||
'BV' => 'Bouvet Island',
|
||||
'BR' => 'Brazil',
|
||||
'IO' => 'British Indian Ocean Territory',
|
||||
'VG' => 'British Virgin Islands',
|
||||
'BN' => 'Brunei',
|
||||
'BG' => 'Bulgaria',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'KH' => 'Cambodia',
|
||||
'CM' => 'Cameroon',
|
||||
'CA' => 'Canada',
|
||||
'IC' => 'Canary Islands',
|
||||
'CV' => 'Cape Verde',
|
||||
'BQ' => 'Caribbean Netherlands',
|
||||
'KY' => 'Cayman Islands',
|
||||
'CF' => 'Central African Republic',
|
||||
'EA' => 'Ceuta and Melilla',
|
||||
'TD' => 'Chad',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'China',
|
||||
'CX' => 'Christmas Island',
|
||||
'CP' => 'Clipperton Island',
|
||||
'CC' => 'Cocos (Keeling) Islands',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comoros',
|
||||
'CD' => 'Congo (DRC)',
|
||||
'CG' => 'Congo (Republic)',
|
||||
'CK' => 'Cook Islands',
|
||||
'CR' => 'Costa Rica',
|
||||
'HR' => 'Croatia',
|
||||
'CU' => 'Cuba',
|
||||
'CW' => 'Curaçao',
|
||||
'CY' => 'Cyprus',
|
||||
'CZ' => 'Czechia',
|
||||
'CI' => 'Côte d’Ivoire',
|
||||
'DK' => 'Denmark',
|
||||
'DG' => 'Diego Garcia',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominica',
|
||||
'DO' => 'Dominican Republic',
|
||||
'EC' => 'Ecuador',
|
||||
'EG' => 'Egypt',
|
||||
'SV' => 'El Salvador',
|
||||
'GQ' => 'Equatorial Guinea',
|
||||
'ER' => 'Eritrea',
|
||||
'EE' => 'Estonia',
|
||||
'SZ' => 'Eswatini',
|
||||
'ET' => 'Ethiopia',
|
||||
'FK' => 'Falkland Islands (Islas Malvinas)',
|
||||
'FO' => 'Faroe Islands',
|
||||
'FJ' => 'Fiji',
|
||||
'FI' => 'Finland',
|
||||
'FR' => 'France',
|
||||
'GF' => 'French Guiana',
|
||||
'PF' => 'French Polynesia',
|
||||
'TF' => 'French Southern Territories',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambia',
|
||||
'GE' => 'Georgia',
|
||||
'DE' => 'Germany',
|
||||
'GH' => 'Ghana',
|
||||
'GI' => 'Gibraltar',
|
||||
'GR' => 'Greece',
|
||||
'GL' => 'Greenland',
|
||||
'GD' => 'Grenada',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GY' => 'Guyana',
|
||||
'HT' => 'Haiti',
|
||||
'HM' => 'Heard and McDonald Islands',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'HU' => 'Hungary',
|
||||
'IS' => 'Iceland',
|
||||
'IN' => 'India',
|
||||
'ID' => 'Indonesia',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Iraq',
|
||||
'IE' => 'Ireland',
|
||||
'IM' => 'Isle of Man',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italy',
|
||||
'JM' => 'Jamaica',
|
||||
'JP' => 'Japan',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordan',
|
||||
'KZ' => 'Kazakhstan',
|
||||
'KE' => 'Kenya',
|
||||
'KI' => 'Kiribati',
|
||||
'XK' => 'Kosovo',
|
||||
'KW' => 'Kuwait',
|
||||
'KG' => 'Kyrgyzstan',
|
||||
'LA' => 'Laos',
|
||||
'LV' => 'Latvia',
|
||||
'LB' => 'Lebanon',
|
||||
'LS' => 'Lesotho',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libya',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Lithuania',
|
||||
'LU' => 'Luxembourg',
|
||||
'MO' => 'Macao',
|
||||
'MG' => 'Madagascar',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'MV' => 'Maldives',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MH' => 'Marshall Islands',
|
||||
'MQ' => 'Martinique',
|
||||
'MR' => 'Mauritania',
|
||||
'MU' => 'Mauritius',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Mexico',
|
||||
'FM' => 'Micronesia',
|
||||
'MD' => 'Moldova',
|
||||
'MC' => 'Monaco',
|
||||
'MN' => 'Mongolia',
|
||||
'ME' => 'Montenegro',
|
||||
'MS' => 'Montserrat',
|
||||
'MA' => 'Morocco',
|
||||
'MZ' => 'Mozambique',
|
||||
'MM' => 'Myanmar (Burma)',
|
||||
'NA' => 'Namibia',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NL' => 'Netherlands',
|
||||
'NC' => 'New Caledonia',
|
||||
'NZ' => 'New Zealand',
|
||||
'NI' => 'Nicaragua',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NU' => 'Niue',
|
||||
'NF' => 'Norfolk Island',
|
||||
'KP' => 'North Korea',
|
||||
'MK' => 'North Macedonia',
|
||||
'MP' => 'Northern Mariana Islands',
|
||||
'NO' => 'Norway',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PW' => 'Palau',
|
||||
'PS' => 'Palestine',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Papua New Guinea',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Philippines',
|
||||
'PN' => 'Pitcairn Islands',
|
||||
'PL' => 'Poland',
|
||||
'PT' => 'Portugal',
|
||||
'PR' => 'Puerto Rico',
|
||||
'QA' => 'Qatar',
|
||||
'RO' => 'Romania',
|
||||
'RU' => 'Russia',
|
||||
'RW' => 'Rwanda',
|
||||
'RE' => 'Réunion',
|
||||
'WS' => 'Samoa',
|
||||
'SM' => 'San Marino',
|
||||
'SA' => 'Saudi Arabia',
|
||||
'SN' => 'Senegal',
|
||||
'RS' => 'Serbia',
|
||||
'SC' => 'Seychelles',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SG' => 'Singapore',
|
||||
'SX' => 'Sint Maarten',
|
||||
'SK' => 'Slovakia',
|
||||
'SI' => 'Slovenia',
|
||||
'SB' => 'Solomon Islands',
|
||||
'SO' => 'Somalia',
|
||||
'ZA' => 'South Africa',
|
||||
'GS' => 'South Georgia and South Sandwich Islands',
|
||||
'KR' => 'South Korea',
|
||||
'SS' => 'South Sudan',
|
||||
'ES' => 'Spain',
|
||||
'LK' => 'Sri Lanka',
|
||||
'BL' => 'St. Barthélemy',
|
||||
'SH' => 'St. Helena',
|
||||
'KN' => 'St. Kitts and Nevis',
|
||||
'LC' => 'St. Lucia',
|
||||
'MF' => 'St. Martin',
|
||||
'PM' => 'St. Pierre and Miquelon',
|
||||
'VC' => 'St. Vincent and Grenadines',
|
||||
'SD' => 'Sudan',
|
||||
'SR' => 'Suriname',
|
||||
'SJ' => 'Svalbard and Jan Mayen',
|
||||
'SE' => 'Sweden',
|
||||
'CH' => 'Switzerland',
|
||||
'SY' => 'Syria',
|
||||
'ST' => 'São Tomé and Príncipe',
|
||||
'TW' => 'Taiwan',
|
||||
'TJ' => 'Tajikistan',
|
||||
'TZ' => 'Tanzania',
|
||||
'TH' => 'Thailand',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad and Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TN' => 'Tunisia',
|
||||
'TR' => 'Turkey',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TC' => 'Turks and Caicos Islands',
|
||||
'TV' => 'Tuvalu',
|
||||
'UM' => 'U.S. Outlying Islands',
|
||||
'VI' => 'U.S. Virgin Islands',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraine',
|
||||
'AE' => 'United Arab Emirates',
|
||||
'GB' => 'United Kingdom',
|
||||
'US' => 'United States',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VU' => 'Vanuatu',
|
||||
'VA' => 'Vatican City',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'WF' => 'Wallis and Futuna',
|
||||
'EH' => 'Western Sahara',
|
||||
'YE' => 'Yemen',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Africa',
|
||||
'America' => 'America',
|
||||
'Antarctica' => 'Antarctica',
|
||||
'Arctic' => 'Arctic',
|
||||
'Asia' => 'Asia',
|
||||
'Atlantic' => 'Atlantic',
|
||||
'Australia' => 'Australia',
|
||||
'Europe' => 'Europe',
|
||||
'Indian' => 'Indian',
|
||||
'Pacific' => 'Pacific',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addis Ababa',
|
||||
'Africa/Algiers' => 'Algiers',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Cairo' => 'Cairo',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es Salaam',
|
||||
'Africa/Djibouti' => 'Djibouti',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/El_Aaiun' => 'El Aaiun',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Khartoum',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lome',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadishu',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Ndjamena' => 'Ndjamena',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto-Novo',
|
||||
'Africa/Sao_Tome' => 'São Tomé',
|
||||
'Africa/Tripoli' => 'Tripoli',
|
||||
'Africa/Tunis' => 'Tunis',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguilla',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaina',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asunción',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahia Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belem',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, North Dakota',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogota',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancun',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayenne',
|
||||
'America/Cayman' => 'Cayman',
|
||||
'America/North_Dakota/Center' => 'Center, North Dakota',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Argentina/Cordoba' => 'Cordoba',
|
||||
'America/Costa_Rica' => 'Costa Rica',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiaba',
|
||||
'America/Curacao' => 'Curaçao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominica',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepe',
|
||||
'America/El_Salvador' => 'El Salvador',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenada',
|
||||
'America/Guadeloupe' => 'Guadeloupe',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Havana' => 'Havana',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamaica',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceio',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaus',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinique',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlan',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Merida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Mexico_City' => 'Mexico City',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, North Dakota',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panama',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port_of_Spain' => 'Port of Spain',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Puerto_Rico' => 'Puerto Rico',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Rio Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Rio Gallegos',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Santarem' => 'Santarem',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sao_Paulo' => 'Sao Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Johns' => 'St Johns',
|
||||
'America/St_Kitts' => 'St Kitts',
|
||||
'America/St_Lucia' => 'St Lucia',
|
||||
'America/St_Thomas' => 'St Thomas',
|
||||
'America/St_Vincent' => 'St Vincent',
|
||||
'America/St_Barthelemy' => 'St. Barthélemy',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucuman',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Aden',
|
||||
'Asia/Almaty' => 'Almaty',
|
||||
'Asia/Amman' => 'Amman',
|
||||
'Asia/Anadyr' => 'Anadyr',
|
||||
'Asia/Aqtau' => 'Aqtau',
|
||||
'Asia/Aqtobe' => 'Aqtobe',
|
||||
'Asia/Ashgabat' => 'Ashgabat',
|
||||
'Asia/Atyrau' => 'Atyrau',
|
||||
'Asia/Baghdad' => 'Baghdad',
|
||||
'Asia/Bahrain' => 'Bahrain',
|
||||
'Asia/Baku' => 'Baku',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Beirut',
|
||||
'Asia/Bishkek' => 'Bishkek',
|
||||
'Asia/Brunei' => 'Brunei',
|
||||
'Asia/Chita' => 'Chita',
|
||||
'Asia/Choibalsan' => 'Choibalsan',
|
||||
'Asia/Colombo' => 'Colombo',
|
||||
'Asia/Damascus' => 'Damascus',
|
||||
'Asia/Dhaka' => 'Dhaka',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubai',
|
||||
'Asia/Dushanbe' => 'Dushanbe',
|
||||
'Asia/Famagusta' => 'Famagusta',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Hebron' => 'Hebron',
|
||||
'Asia/Ho_Chi_Minh' => 'Ho Chi Minh City',
|
||||
'Asia/Hong_Kong' => 'Hong Kong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Irkutsk' => 'Irkutsk',
|
||||
'Asia/Jakarta' => 'Jakarta',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Jerusalem' => 'Jerusalem',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kamchatka' => 'Kamchatka',
|
||||
'Asia/Karachi' => 'Karachi',
|
||||
'Asia/Kathmandu' => 'Kathmandu',
|
||||
'Asia/Khandyga' => 'Khandyga',
|
||||
'Asia/Kolkata' => 'Kolkata',
|
||||
'Asia/Qostanay' => 'Kostanay',
|
||||
'Asia/Krasnoyarsk' => 'Krasnoyarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kuching',
|
||||
'Asia/Kuwait' => 'Kuwait',
|
||||
'Asia/Macau' => 'Macau',
|
||||
'Asia/Magadan' => 'Magadan',
|
||||
'Asia/Makassar' => 'Makassar',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Muscat',
|
||||
'Asia/Nicosia' => 'Nicosia',
|
||||
'Asia/Novokuznetsk' => 'Novokuznetsk',
|
||||
'Asia/Novosibirsk' => 'Novosibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Pyongyang' => 'Pyongyang',
|
||||
'Asia/Qatar' => 'Qatar',
|
||||
'Asia/Qyzylorda' => 'Qyzylorda',
|
||||
'Asia/Riyadh' => 'Riyadh',
|
||||
'Asia/Sakhalin' => 'Sakhalin',
|
||||
'Asia/Samarkand' => 'Samarkand',
|
||||
'Asia/Seoul' => 'Seoul',
|
||||
'Asia/Shanghai' => 'Shanghai',
|
||||
'Asia/Singapore' => 'Singapore',
|
||||
'Asia/Srednekolymsk' => 'Srednekolymsk',
|
||||
'Asia/Taipei' => 'Taipei',
|
||||
'Asia/Tashkent' => 'Tashkent',
|
||||
'Asia/Tbilisi' => 'Tbilisi',
|
||||
'Asia/Tehran' => 'Tehran',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tokyo' => 'Tokyo',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Ulaanbaatar' => 'Ulaanbaatar',
|
||||
'Asia/Urumqi' => 'Urumqi',
|
||||
'Asia/Ust-Nera' => 'Ust-Nera',
|
||||
'Asia/Vientiane' => 'Vientiane',
|
||||
'Asia/Vladivostok' => 'Vladivostok',
|
||||
'Asia/Yakutsk' => 'Yakutsk',
|
||||
'Asia/Yangon' => 'Yangon',
|
||||
'Asia/Yekaterinburg' => 'Yekaterinburg',
|
||||
'Asia/Yerevan' => 'Yerevan',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azores',
|
||||
'Atlantic/Bermuda' => 'Bermuda',
|
||||
'Atlantic/Canary' => 'Canary',
|
||||
'Atlantic/Cape_Verde' => 'Cape Verde',
|
||||
'Atlantic/Faroe' => 'Faroe',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Reykjavik',
|
||||
'Atlantic/South_Georgia' => 'South Georgia',
|
||||
'Atlantic/St_Helena' => 'St Helena',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaide',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sydney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amsterdam',
|
||||
'Europe/Andorra' => 'Andorra',
|
||||
'Europe/Astrakhan' => 'Astrakhan',
|
||||
'Europe/Athens' => 'Athens',
|
||||
'Europe/Belgrade' => 'Belgrade',
|
||||
'Europe/Berlin' => 'Berlin',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Brussels',
|
||||
'Europe/Bucharest' => 'Bucharest',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Busingen' => 'Busingen',
|
||||
'Europe/Chisinau' => 'Chisinau',
|
||||
'Europe/Copenhagen' => 'Copenhagen',
|
||||
'Europe/Dublin' => 'Dublin',
|
||||
'Europe/Gibraltar' => 'Gibraltar',
|
||||
'Europe/Guernsey' => 'Guernsey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Isle_of_Man' => 'Isle of Man',
|
||||
'Europe/Istanbul' => 'Istanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kaliningrad',
|
||||
'Europe/Kiev' => 'Kiev',
|
||||
'Europe/Kirov' => 'Kirov',
|
||||
'Europe/Lisbon' => 'Lisbon',
|
||||
'Europe/Ljubljana' => 'Ljubljana',
|
||||
'Europe/London' => 'London',
|
||||
'Europe/Luxembourg' => 'Luxembourg',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malta',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Monaco',
|
||||
'Europe/Moscow' => 'Moscow',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Paris' => 'Paris',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Prague',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Rome',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Saratov',
|
||||
'Europe/Simferopol' => 'Simferopol',
|
||||
'Europe/Skopje' => 'Skopje',
|
||||
'Europe/Sofia' => 'Sofia',
|
||||
'Europe/Stockholm' => 'Stockholm',
|
||||
'Europe/Tallinn' => 'Tallinn',
|
||||
'Europe/Tirane' => 'Tirane',
|
||||
'Europe/Ulyanovsk' => 'Ulyanovsk',
|
||||
'Europe/Uzhgorod' => 'Uzhhorod',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Vatican' => 'Vatican',
|
||||
'Europe/Vienna' => 'Vienna',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Volgograd' => 'Volgograd',
|
||||
'Europe/Warsaw' => 'Warsaw',
|
||||
'Europe/Zagreb' => 'Zagreb',
|
||||
'Europe/Zaporozhye' => 'Zaporozhye',
|
||||
'Europe/Zurich' => 'Zurich',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Christmas' => 'Christmas',
|
||||
'Indian/Cocos' => 'Cocos',
|
||||
'Indian/Comoro' => 'Comoro',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Mahe' => 'Mahe',
|
||||
'Indian/Maldives' => 'Maldives',
|
||||
'Indian/Mauritius' => 'Mauritius',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Reunion' => 'Réunion',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Honolulu' => '',
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Easter' => 'Easter',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fiji',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galapagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marquesas',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Noumea',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Pitcairn' => 'Pitcairn',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,257 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afghanistan',
|
||||
'AX' => 'Åland Islands',
|
||||
'AL' => 'Albania',
|
||||
'DZ' => 'Algeria',
|
||||
'AS' => 'American Samoa',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antarctica',
|
||||
'AG' => 'Antigua and Barbuda',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenia',
|
||||
'AW' => 'Aruba',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbaijan',
|
||||
'BS' => 'Bahamas',
|
||||
'BH' => 'Bahrain',
|
||||
'BD' => 'Bangladesh',
|
||||
'BB' => 'Barbados',
|
||||
'BY' => 'Belarus',
|
||||
'BE' => 'Belgium',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BT' => 'Bhutan',
|
||||
'BO' => 'Bolivia (Plurinational State of)',
|
||||
'BQ' => 'Bonaire, Sint Eustatius and Saba',
|
||||
'BA' => 'Bosnia and Herzegovina',
|
||||
'BW' => 'Botswana',
|
||||
'BV' => 'Bouvet Island',
|
||||
'BR' => 'Brazil',
|
||||
'IO' => 'British Indian Ocean Territory',
|
||||
'BN' => 'Brunei Darussalam',
|
||||
'BG' => 'Bulgaria',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'CV' => 'Cabo Verde',
|
||||
'KH' => 'Cambodia',
|
||||
'CM' => 'Cameroon',
|
||||
'CA' => 'Canada',
|
||||
'KY' => 'Cayman Islands',
|
||||
'CF' => 'Central African Republic',
|
||||
'TD' => 'Chad',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'China',
|
||||
'CX' => 'Christmas Island',
|
||||
'CC' => 'Cocos (Keeling) Islands',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comoros',
|
||||
'CD' => 'Congo (the Democratic Republic of the)',
|
||||
'CG' => 'Congo',
|
||||
'CK' => 'Cook Islands',
|
||||
'CR' => 'Costa Rica',
|
||||
'HR' => 'Croatia',
|
||||
'CU' => 'Cuba',
|
||||
'CW' => 'Curaçao',
|
||||
'CY' => 'Cyprus',
|
||||
'CZ' => 'Czechia',
|
||||
'CI' => 'Côte d\'Ivoire',
|
||||
'DK' => 'Denmark',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominica',
|
||||
'DO' => 'Dominican Republic',
|
||||
'EC' => 'Ecuador',
|
||||
'EG' => 'Egypt',
|
||||
'SV' => 'El Salvador',
|
||||
'GQ' => 'Equatorial Guinea',
|
||||
'ER' => 'Eritrea',
|
||||
'EE' => 'Estonia',
|
||||
'SZ' => 'Eswatini',
|
||||
'ET' => 'Ethiopia',
|
||||
'FK' => 'Falkland Islands [Malvinas]',
|
||||
'FO' => 'Faroe Islands',
|
||||
'FJ' => 'Fiji',
|
||||
'FI' => 'Finland',
|
||||
'FR' => 'France',
|
||||
'GF' => 'French Guiana',
|
||||
'PF' => 'French Polynesia',
|
||||
'TF' => 'French Southern Territories',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambia',
|
||||
'GE' => 'Georgia',
|
||||
'DE' => 'Germany',
|
||||
'GH' => 'Ghana',
|
||||
'GI' => 'Gibraltar',
|
||||
'GR' => 'Greece',
|
||||
'GL' => 'Greenland',
|
||||
'GD' => 'Grenada',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GY' => 'Guyana',
|
||||
'HT' => 'Haiti',
|
||||
'HM' => 'Heard Island and McDonald Islands',
|
||||
'VA' => 'Holy See',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'HU' => 'Hungary',
|
||||
'IS' => 'Iceland',
|
||||
'IN' => 'India',
|
||||
'ID' => 'Indonesia',
|
||||
'IR' => 'Iran (Islamic Republic of)',
|
||||
'IQ' => 'Iraq',
|
||||
'IE' => 'Ireland',
|
||||
'IM' => 'Isle of Man',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italy',
|
||||
'JM' => 'Jamaica',
|
||||
'JP' => 'Japan',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordan',
|
||||
'KZ' => 'Kazakhstan',
|
||||
'KE' => 'Kenya',
|
||||
'KI' => 'Kiribati',
|
||||
'KP' => 'Korea (the Democratic People\'s Republic of)',
|
||||
'KR' => 'Korea (the Republic of)',
|
||||
'KW' => 'Kuwait',
|
||||
'KG' => 'Kyrgyzstan',
|
||||
'LA' => 'Lao People\'s Democratic Republic',
|
||||
'LV' => 'Latvia',
|
||||
'LB' => 'Lebanon',
|
||||
'LS' => 'Lesotho',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libya',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Lithuania',
|
||||
'LU' => 'Luxembourg',
|
||||
'MO' => 'Macao',
|
||||
'MG' => 'Madagascar',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'MV' => 'Maldives',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MH' => 'Marshall Islands',
|
||||
'MQ' => 'Martinique',
|
||||
'MR' => 'Mauritania',
|
||||
'MU' => 'Mauritius',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Mexico',
|
||||
'FM' => 'Micronesia (Federated States of)',
|
||||
'MD' => 'Moldova (the Republic of)',
|
||||
'MC' => 'Monaco',
|
||||
'MN' => 'Mongolia',
|
||||
'ME' => 'Montenegro',
|
||||
'MS' => 'Montserrat',
|
||||
'MA' => 'Morocco',
|
||||
'MZ' => 'Mozambique',
|
||||
'MM' => 'Myanmar',
|
||||
'NA' => 'Namibia',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NL' => 'Netherlands',
|
||||
'NC' => 'New Caledonia',
|
||||
'NZ' => 'New Zealand',
|
||||
'NI' => 'Nicaragua',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NU' => 'Niue',
|
||||
'NF' => 'Norfolk Island',
|
||||
'MK' => 'North Macedonia',
|
||||
'MP' => 'Northern Mariana Islands',
|
||||
'NO' => 'Norway',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PW' => 'Palau',
|
||||
'PS' => 'Palestine, State of',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Papua New Guinea',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Philippines',
|
||||
'PN' => 'Pitcairn',
|
||||
'PL' => 'Poland',
|
||||
'PT' => 'Portugal',
|
||||
'PR' => 'Puerto Rico',
|
||||
'QA' => 'Qatar',
|
||||
'RO' => 'Romania',
|
||||
'RU' => 'Russian Federation',
|
||||
'RW' => 'Rwanda',
|
||||
'RE' => 'Réunion',
|
||||
'BL' => 'Saint Barthélemy',
|
||||
'SH' => 'Saint Helena, Ascension and Tristan da Cunha',
|
||||
'KN' => 'Saint Kitts and Nevis',
|
||||
'LC' => 'Saint Lucia',
|
||||
'MF' => 'Saint Martin (French part)',
|
||||
'PM' => 'Saint Pierre and Miquelon',
|
||||
'VC' => 'Saint Vincent and the Grenadines',
|
||||
'WS' => 'Samoa',
|
||||
'SM' => 'San Marino',
|
||||
'ST' => 'Sao Tome and Principe',
|
||||
'SA' => 'Saudi Arabia',
|
||||
'SN' => 'Senegal',
|
||||
'RS' => 'Serbia',
|
||||
'SC' => 'Seychelles',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SG' => 'Singapore',
|
||||
'SX' => 'Sint Maarten (Dutch part)',
|
||||
'SK' => 'Slovakia',
|
||||
'SI' => 'Slovenia',
|
||||
'SB' => 'Solomon Islands',
|
||||
'SO' => 'Somalia',
|
||||
'ZA' => 'South Africa',
|
||||
'GS' => 'South Georgia and the South Sandwich Islands',
|
||||
'SS' => 'South Sudan',
|
||||
'ES' => 'Spain',
|
||||
'LK' => 'Sri Lanka',
|
||||
'SD' => 'Sudan',
|
||||
'SR' => 'Suriname',
|
||||
'SJ' => 'Svalbard and Jan Mayen',
|
||||
'SE' => 'Sweden',
|
||||
'CH' => 'Switzerland',
|
||||
'SY' => 'Syrian Arab Republic',
|
||||
'TW' => 'Taiwan (Province of China)',
|
||||
'TJ' => 'Tajikistan',
|
||||
'TZ' => 'Tanzania, the United Republic of',
|
||||
'TH' => 'Thailand',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad and Tobago',
|
||||
'TN' => 'Tunisia',
|
||||
'TR' => 'Turkey',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TC' => 'Turks and Caicos Islands',
|
||||
'TV' => 'Tuvalu',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraine',
|
||||
'AE' => 'United Arab Emirates',
|
||||
'GB' => 'United Kingdom of Great Britain and Northern Ireland',
|
||||
'UM' => 'United States Minor Outlying Islands',
|
||||
'US' => 'United States of America',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VU' => 'Vanuatu',
|
||||
'VE' => 'Venezuela (Bolivarian Republic of)',
|
||||
'VN' => 'Viet Nam',
|
||||
'VG' => 'Virgin Islands (British)',
|
||||
'VI' => 'Virgin Islands (U.S.)',
|
||||
'WF' => 'Wallis and Futuna',
|
||||
'EH' => 'Western Sahara',
|
||||
'YE' => 'Yemen',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
);
|
||||
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afghanistan',
|
||||
'AX' => 'Åland Islands',
|
||||
'AL' => 'Albania',
|
||||
'DZ' => 'Algeria',
|
||||
'AS' => 'American Samoa',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antarctica',
|
||||
'AG' => 'Antigua and Barbuda',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenia',
|
||||
'AW' => 'Aruba',
|
||||
'AC' => 'Ascension Island',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbaijan',
|
||||
'BS' => 'Bahamas',
|
||||
'BH' => 'Bahrain',
|
||||
'BD' => 'Bangladesh',
|
||||
'BB' => 'Barbados',
|
||||
'BY' => 'Belarus',
|
||||
'BE' => 'Belgium',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BT' => 'Bhutan',
|
||||
'BO' => 'Bolivia',
|
||||
'BA' => 'Bosnia and Herzegovina',
|
||||
'BW' => 'Botswana',
|
||||
'BV' => 'Bouvet Island',
|
||||
'BR' => 'Brazil',
|
||||
'IO' => 'British Indian Ocean Territory',
|
||||
'VG' => 'British Virgin Islands',
|
||||
'BN' => 'Brunei',
|
||||
'BG' => 'Bulgaria',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'KH' => 'Cambodia',
|
||||
'CM' => 'Cameroon',
|
||||
'CA' => 'Canada',
|
||||
'IC' => 'Canary Islands',
|
||||
'CV' => 'Cape Verde',
|
||||
'BQ' => 'Caribbean Netherlands',
|
||||
'KY' => 'Cayman Islands',
|
||||
'CF' => 'Central African Republic',
|
||||
'EA' => 'Ceuta and Melilla',
|
||||
'TD' => 'Chad',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'China',
|
||||
'CX' => 'Christmas Island',
|
||||
'CP' => 'Clipperton Island',
|
||||
'CC' => 'Cocos (Keeling) Islands',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comoros',
|
||||
'CD' => 'Congo (DRC)',
|
||||
'CG' => 'Congo (Republic)',
|
||||
'CK' => 'Cook Islands',
|
||||
'CR' => 'Costa Rica',
|
||||
'HR' => 'Croatia',
|
||||
'CU' => 'Cuba',
|
||||
'CW' => 'Curaçao',
|
||||
'CY' => 'Cyprus',
|
||||
'CZ' => 'Czechia',
|
||||
'CI' => 'Côte d’Ivoire',
|
||||
'DK' => 'Denmark',
|
||||
'DG' => 'Diego Garcia',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominica',
|
||||
'DO' => 'Dominican Republic',
|
||||
'EC' => 'Ecuador',
|
||||
'EG' => 'Egypt',
|
||||
'SV' => 'El Salvador',
|
||||
'GQ' => 'Equatorial Guinea',
|
||||
'ER' => 'Eritrea',
|
||||
'EE' => 'Estonia',
|
||||
'SZ' => 'Eswatini',
|
||||
'ET' => 'Ethiopia',
|
||||
'FK' => 'Falkland Islands (Islas Malvinas)',
|
||||
'FO' => 'Faroe Islands',
|
||||
'FJ' => 'Fiji',
|
||||
'FI' => 'Finland',
|
||||
'FR' => 'France',
|
||||
'GF' => 'French Guiana',
|
||||
'PF' => 'French Polynesia',
|
||||
'TF' => 'French Southern Territories',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambia',
|
||||
'GE' => 'Georgia',
|
||||
'DE' => 'Germany',
|
||||
'GH' => 'Ghana',
|
||||
'GI' => 'Gibraltar',
|
||||
'GR' => 'Greece',
|
||||
'GL' => 'Greenland',
|
||||
'GD' => 'Grenada',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GY' => 'Guyana',
|
||||
'HT' => 'Haiti',
|
||||
'HM' => 'Heard and McDonald Islands',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'HU' => 'Hungary',
|
||||
'IS' => 'Iceland',
|
||||
'IN' => 'India',
|
||||
'ID' => 'Indonesia',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Iraq',
|
||||
'IE' => 'Ireland',
|
||||
'IM' => 'Isle of Man',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italy',
|
||||
'JM' => 'Jamaica',
|
||||
'JP' => 'Japan',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordan',
|
||||
'KZ' => 'Kazakhstan',
|
||||
'KE' => 'Kenya',
|
||||
'KI' => 'Kiribati',
|
||||
'XK' => 'Kosovo',
|
||||
'KW' => 'Kuwait',
|
||||
'KG' => 'Kyrgyzstan',
|
||||
'LA' => 'Laos',
|
||||
'LV' => 'Latvia',
|
||||
'LB' => 'Lebanon',
|
||||
'LS' => 'Lesotho',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libya',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Lithuania',
|
||||
'LU' => 'Luxembourg',
|
||||
'MO' => 'Macao',
|
||||
'MG' => 'Madagascar',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'MV' => 'Maldives',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MH' => 'Marshall Islands',
|
||||
'MQ' => 'Martinique',
|
||||
'MR' => 'Mauritania',
|
||||
'MU' => 'Mauritius',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Mexico',
|
||||
'FM' => 'Micronesia',
|
||||
'MD' => 'Moldova',
|
||||
'MC' => 'Monaco',
|
||||
'MN' => 'Mongolia',
|
||||
'ME' => 'Montenegro',
|
||||
'MS' => 'Montserrat',
|
||||
'MA' => 'Morocco',
|
||||
'MZ' => 'Mozambique',
|
||||
'MM' => 'Myanmar (Burma)',
|
||||
'NA' => 'Namibia',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NL' => 'Netherlands',
|
||||
'NC' => 'New Caledonia',
|
||||
'NZ' => 'New Zealand',
|
||||
'NI' => 'Nicaragua',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NU' => 'Niue',
|
||||
'NF' => 'Norfolk Island',
|
||||
'KP' => 'North Korea',
|
||||
'MK' => 'North Macedonia',
|
||||
'MP' => 'Northern Mariana Islands',
|
||||
'NO' => 'Norway',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PW' => 'Palau',
|
||||
'PS' => 'Palestine',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Papua New Guinea',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Philippines',
|
||||
'PN' => 'Pitcairn Islands',
|
||||
'PL' => 'Poland',
|
||||
'PT' => 'Portugal',
|
||||
'PR' => 'Puerto Rico',
|
||||
'QA' => 'Qatar',
|
||||
'RO' => 'Romania',
|
||||
'RU' => 'Russia',
|
||||
'RW' => 'Rwanda',
|
||||
'RE' => 'Réunion',
|
||||
'WS' => 'Samoa',
|
||||
'SM' => 'San Marino',
|
||||
'SA' => 'Saudi Arabia',
|
||||
'SN' => 'Senegal',
|
||||
'RS' => 'Serbia',
|
||||
'SC' => 'Seychelles',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SG' => 'Singapore',
|
||||
'SX' => 'Sint Maarten',
|
||||
'SK' => 'Slovakia',
|
||||
'SI' => 'Slovenia',
|
||||
'SB' => 'Solomon Islands',
|
||||
'SO' => 'Somalia',
|
||||
'ZA' => 'South Africa',
|
||||
'GS' => 'South Georgia and South Sandwich Islands',
|
||||
'KR' => 'South Korea',
|
||||
'SS' => 'South Sudan',
|
||||
'ES' => 'Spain',
|
||||
'LK' => 'Sri Lanka',
|
||||
'BL' => 'St. Barthélemy',
|
||||
'SH' => 'St. Helena',
|
||||
'KN' => 'St. Kitts and Nevis',
|
||||
'LC' => 'St. Lucia',
|
||||
'MF' => 'St. Martin',
|
||||
'PM' => 'St. Pierre and Miquelon',
|
||||
'VC' => 'St. Vincent and Grenadines',
|
||||
'SD' => 'Sudan',
|
||||
'SR' => 'Suriname',
|
||||
'SJ' => 'Svalbard and Jan Mayen',
|
||||
'SE' => 'Sweden',
|
||||
'CH' => 'Switzerland',
|
||||
'SY' => 'Syria',
|
||||
'ST' => 'São Tomé and Príncipe',
|
||||
'TW' => 'Taiwan',
|
||||
'TJ' => 'Tajikistan',
|
||||
'TZ' => 'Tanzania',
|
||||
'TH' => 'Thailand',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad and Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TN' => 'Tunisia',
|
||||
'TR' => 'Turkey',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TC' => 'Turks and Caicos Islands',
|
||||
'TV' => 'Tuvalu',
|
||||
'UM' => 'U.S. Outlying Islands',
|
||||
'VI' => 'U.S. Virgin Islands',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraine',
|
||||
'AE' => 'United Arab Emirates',
|
||||
'GB' => 'United Kingdom',
|
||||
'US' => 'United States',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VU' => 'Vanuatu',
|
||||
'VA' => 'Vatican City',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'WF' => 'Wallis and Futuna',
|
||||
'EH' => 'Western Sahara',
|
||||
'YE' => 'Yemen',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Africa',
|
||||
'America' => 'America',
|
||||
'Antarctica' => 'Antarctica',
|
||||
'Arctic' => 'Arctic',
|
||||
'Asia' => 'Asia',
|
||||
'Atlantic' => 'Atlantic',
|
||||
'Australia' => 'Australia',
|
||||
'Europe' => 'Europe',
|
||||
'Indian' => 'Indian',
|
||||
'Pacific' => 'Pacific',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addis Ababa',
|
||||
'Africa/Algiers' => 'Algiers',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Cairo' => 'Cairo',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es Salaam',
|
||||
'Africa/Djibouti' => 'Djibouti',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/El_Aaiun' => 'El Aaiun',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Khartoum',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lome',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadishu',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Ndjamena' => 'Ndjamena',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto-Novo',
|
||||
'Africa/Sao_Tome' => 'São Tomé',
|
||||
'Africa/Tripoli' => 'Tripoli',
|
||||
'Africa/Tunis' => 'Tunis',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguilla',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaina',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asunción',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahia Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belem',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, North Dakota',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogota',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancun',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayenne',
|
||||
'America/Cayman' => 'Cayman',
|
||||
'America/North_Dakota/Center' => 'Center, North Dakota',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Argentina/Cordoba' => 'Cordoba',
|
||||
'America/Costa_Rica' => 'Costa Rica',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiaba',
|
||||
'America/Curacao' => 'Curaçao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominica',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepe',
|
||||
'America/El_Salvador' => 'El Salvador',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenada',
|
||||
'America/Guadeloupe' => 'Guadeloupe',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Havana' => 'Havana',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamaica',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceio',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaus',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinique',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlan',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Merida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Mexico_City' => 'Mexico City',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, North Dakota',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panama',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port_of_Spain' => 'Port of Spain',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Puerto_Rico' => 'Puerto Rico',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Rio Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Rio Gallegos',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Santarem' => 'Santarem',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sao_Paulo' => 'Sao Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Johns' => 'St Johns',
|
||||
'America/St_Kitts' => 'St Kitts',
|
||||
'America/St_Lucia' => 'St Lucia',
|
||||
'America/St_Thomas' => 'St Thomas',
|
||||
'America/St_Vincent' => 'St Vincent',
|
||||
'America/St_Barthelemy' => 'St. Barthélemy',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucuman',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Aden',
|
||||
'Asia/Almaty' => 'Almaty',
|
||||
'Asia/Amman' => 'Amman',
|
||||
'Asia/Anadyr' => 'Anadyr',
|
||||
'Asia/Aqtau' => 'Aqtau',
|
||||
'Asia/Aqtobe' => 'Aqtobe',
|
||||
'Asia/Ashgabat' => 'Ashgabat',
|
||||
'Asia/Atyrau' => 'Atyrau',
|
||||
'Asia/Baghdad' => 'Baghdad',
|
||||
'Asia/Bahrain' => 'Bahrain',
|
||||
'Asia/Baku' => 'Baku',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Beirut',
|
||||
'Asia/Bishkek' => 'Bishkek',
|
||||
'Asia/Brunei' => 'Brunei',
|
||||
'Asia/Chita' => 'Chita',
|
||||
'Asia/Choibalsan' => 'Choibalsan',
|
||||
'Asia/Colombo' => 'Colombo',
|
||||
'Asia/Damascus' => 'Damascus',
|
||||
'Asia/Dhaka' => 'Dhaka',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubai',
|
||||
'Asia/Dushanbe' => 'Dushanbe',
|
||||
'Asia/Famagusta' => 'Famagusta',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Hebron' => 'Hebron',
|
||||
'Asia/Ho_Chi_Minh' => 'Ho Chi Minh City',
|
||||
'Asia/Hong_Kong' => 'Hong Kong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Irkutsk' => 'Irkutsk',
|
||||
'Asia/Jakarta' => 'Jakarta',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Jerusalem' => 'Jerusalem',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kamchatka' => 'Kamchatka',
|
||||
'Asia/Karachi' => 'Karachi',
|
||||
'Asia/Kathmandu' => 'Kathmandu',
|
||||
'Asia/Khandyga' => 'Khandyga',
|
||||
'Asia/Kolkata' => 'Kolkata',
|
||||
'Asia/Qostanay' => 'Kostanay',
|
||||
'Asia/Krasnoyarsk' => 'Krasnoyarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kuching',
|
||||
'Asia/Kuwait' => 'Kuwait',
|
||||
'Asia/Macau' => 'Macau',
|
||||
'Asia/Magadan' => 'Magadan',
|
||||
'Asia/Makassar' => 'Makassar',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Muscat',
|
||||
'Asia/Nicosia' => 'Nicosia',
|
||||
'Asia/Novokuznetsk' => 'Novokuznetsk',
|
||||
'Asia/Novosibirsk' => 'Novosibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Pyongyang' => 'Pyongyang',
|
||||
'Asia/Qatar' => 'Qatar',
|
||||
'Asia/Qyzylorda' => 'Qyzylorda',
|
||||
'Asia/Riyadh' => 'Riyadh',
|
||||
'Asia/Sakhalin' => 'Sakhalin',
|
||||
'Asia/Samarkand' => 'Samarkand',
|
||||
'Asia/Seoul' => 'Seoul',
|
||||
'Asia/Shanghai' => 'Shanghai',
|
||||
'Asia/Singapore' => 'Singapore',
|
||||
'Asia/Srednekolymsk' => 'Srednekolymsk',
|
||||
'Asia/Taipei' => 'Taipei',
|
||||
'Asia/Tashkent' => 'Tashkent',
|
||||
'Asia/Tbilisi' => 'Tbilisi',
|
||||
'Asia/Tehran' => 'Tehran',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tokyo' => 'Tokyo',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Ulaanbaatar' => 'Ulaanbaatar',
|
||||
'Asia/Urumqi' => 'Urumqi',
|
||||
'Asia/Ust-Nera' => 'Ust-Nera',
|
||||
'Asia/Vientiane' => 'Vientiane',
|
||||
'Asia/Vladivostok' => 'Vladivostok',
|
||||
'Asia/Yakutsk' => 'Yakutsk',
|
||||
'Asia/Yangon' => 'Yangon',
|
||||
'Asia/Yekaterinburg' => 'Yekaterinburg',
|
||||
'Asia/Yerevan' => 'Yerevan',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azores',
|
||||
'Atlantic/Bermuda' => 'Bermuda',
|
||||
'Atlantic/Canary' => 'Canary',
|
||||
'Atlantic/Cape_Verde' => 'Cape Verde',
|
||||
'Atlantic/Faroe' => 'Faroe',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Reykjavik',
|
||||
'Atlantic/South_Georgia' => 'South Georgia',
|
||||
'Atlantic/St_Helena' => 'St Helena',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaide',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sydney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amsterdam',
|
||||
'Europe/Andorra' => 'Andorra',
|
||||
'Europe/Astrakhan' => 'Astrakhan',
|
||||
'Europe/Athens' => 'Athens',
|
||||
'Europe/Belgrade' => 'Belgrade',
|
||||
'Europe/Berlin' => 'Berlin',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Brussels',
|
||||
'Europe/Bucharest' => 'Bucharest',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Busingen' => 'Busingen',
|
||||
'Europe/Chisinau' => 'Chisinau',
|
||||
'Europe/Copenhagen' => 'Copenhagen',
|
||||
'Europe/Dublin' => 'Dublin',
|
||||
'Europe/Gibraltar' => 'Gibraltar',
|
||||
'Europe/Guernsey' => 'Guernsey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Isle_of_Man' => 'Isle of Man',
|
||||
'Europe/Istanbul' => 'Istanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kaliningrad',
|
||||
'Europe/Kiev' => 'Kiev',
|
||||
'Europe/Kirov' => 'Kirov',
|
||||
'Europe/Lisbon' => 'Lisbon',
|
||||
'Europe/Ljubljana' => 'Ljubljana',
|
||||
'Europe/London' => 'London',
|
||||
'Europe/Luxembourg' => 'Luxembourg',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malta',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Monaco',
|
||||
'Europe/Moscow' => 'Moscow',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Paris' => 'Paris',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Prague',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Rome',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Saratov',
|
||||
'Europe/Simferopol' => 'Simferopol',
|
||||
'Europe/Skopje' => 'Skopje',
|
||||
'Europe/Sofia' => 'Sofia',
|
||||
'Europe/Stockholm' => 'Stockholm',
|
||||
'Europe/Tallinn' => 'Tallinn',
|
||||
'Europe/Tirane' => 'Tirane',
|
||||
'Europe/Ulyanovsk' => 'Ulyanovsk',
|
||||
'Europe/Uzhgorod' => 'Uzhhorod',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Vatican' => 'Vatican',
|
||||
'Europe/Vienna' => 'Vienna',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Volgograd' => 'Volgograd',
|
||||
'Europe/Warsaw' => 'Warsaw',
|
||||
'Europe/Zagreb' => 'Zagreb',
|
||||
'Europe/Zaporozhye' => 'Zaporozhye',
|
||||
'Europe/Zurich' => 'Zurich',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Christmas' => 'Christmas',
|
||||
'Indian/Cocos' => 'Cocos',
|
||||
'Indian/Comoro' => 'Comoro',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Mahe' => 'Mahe',
|
||||
'Indian/Maldives' => 'Maldives',
|
||||
'Indian/Mauritius' => 'Mauritius',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Reunion' => 'Réunion',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Honolulu' => '',
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Easter' => 'Easter',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fiji',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galapagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marquesas',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Noumea',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Pitcairn' => 'Pitcairn',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afganistán',
|
||||
'AL' => 'Albania',
|
||||
'DE' => 'Alemania',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguila',
|
||||
'AQ' => 'Antártida',
|
||||
'AG' => 'Antigua y Barbuda',
|
||||
'SA' => 'Arabia Saudí',
|
||||
'DZ' => 'Argelia',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenia',
|
||||
'AW' => 'Aruba',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbaiyán',
|
||||
'BS' => 'Bahamas',
|
||||
'BD' => 'Bangladés',
|
||||
'BB' => 'Barbados',
|
||||
'BH' => 'Baréin',
|
||||
'BE' => 'Bélgica',
|
||||
'BZ' => 'Belice',
|
||||
'BJ' => 'Benín',
|
||||
'BM' => 'Bermudas',
|
||||
'BY' => 'Bielorrusia',
|
||||
'BO' => 'Bolivia',
|
||||
'BA' => 'Bosnia y Herzegovina',
|
||||
'BW' => 'Botsuana',
|
||||
'BR' => 'Brasil',
|
||||
'BN' => 'Brunéi',
|
||||
'BG' => 'Bulgaria',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'BT' => 'Bután',
|
||||
'CV' => 'Cabo Verde',
|
||||
'KH' => 'Camboya',
|
||||
'CM' => 'Camerún',
|
||||
'CA' => 'Canadá',
|
||||
'IC' => 'Canarias',
|
||||
'BQ' => 'Caribe neerlandés',
|
||||
'QA' => 'Catar',
|
||||
'EA' => 'Ceuta y Melilla',
|
||||
'TD' => 'Chad',
|
||||
'CZ' => 'Chequia',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'China',
|
||||
'CY' => 'Chipre',
|
||||
'VA' => 'Ciudad del Vaticano',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comoras',
|
||||
'CD' => 'Congo (RDC)',
|
||||
'CG' => 'Congo (República)',
|
||||
'KP' => 'Corea del Norte',
|
||||
'KR' => 'Corea del Sur',
|
||||
'CR' => 'Costa Rica',
|
||||
'CI' => 'Côte d’Ivoire',
|
||||
'HR' => 'Croacia',
|
||||
'CU' => 'Cuba',
|
||||
'CW' => 'Curazao',
|
||||
'DG' => 'Diego García',
|
||||
'DK' => 'Dinamarca',
|
||||
'DM' => 'Dominica',
|
||||
'EC' => 'Ecuador',
|
||||
'EG' => 'Egipto',
|
||||
'SV' => 'El Salvador',
|
||||
'AE' => 'Emiratos Árabes Unidos',
|
||||
'ER' => 'Eritrea',
|
||||
'SK' => 'Eslovaquia',
|
||||
'SI' => 'Eslovenia',
|
||||
'ES' => 'España',
|
||||
'US' => 'Estados Unidos',
|
||||
'EE' => 'Estonia',
|
||||
'SZ' => 'Esuatini',
|
||||
'ET' => 'Etiopía',
|
||||
'PH' => 'Filipinas',
|
||||
'FI' => 'Finlandia',
|
||||
'FJ' => 'Fiyi',
|
||||
'FR' => 'Francia',
|
||||
'GA' => 'Gabón',
|
||||
'GM' => 'Gambia',
|
||||
'GE' => 'Georgia',
|
||||
'GH' => 'Ghana',
|
||||
'GI' => 'Gibraltar',
|
||||
'GD' => 'Granada',
|
||||
'GR' => 'Grecia',
|
||||
'GL' => 'Groenlandia',
|
||||
'GP' => 'Guadalupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GF' => 'Guayana Francesa',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GQ' => 'Guinea Ecuatorial',
|
||||
'GW' => 'Guinea-Bisáu',
|
||||
'GY' => 'Guyana',
|
||||
'HT' => 'Haití',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'HU' => 'Hungría',
|
||||
'IN' => 'India',
|
||||
'ID' => 'Indonesia',
|
||||
'IQ' => 'Irak',
|
||||
'IR' => 'Irán',
|
||||
'IE' => 'Irlanda',
|
||||
'BV' => 'Isla Bouvet',
|
||||
'CP' => 'Isla Clipperton',
|
||||
'AC' => 'Isla de la Ascensión',
|
||||
'IM' => 'Isla de Man',
|
||||
'CX' => 'Isla de Navidad',
|
||||
'NF' => 'Isla Norfolk',
|
||||
'IS' => 'Islandia',
|
||||
'AX' => 'Islas Åland',
|
||||
'KY' => 'Islas Caimán',
|
||||
'CC' => 'Islas Cocos',
|
||||
'CK' => 'Islas Cook',
|
||||
'FO' => 'Islas Feroe',
|
||||
'GS' => 'Islas Georgia del Sur y Sandwich del Sur',
|
||||
'HM' => 'Islas Heard y McDonald',
|
||||
'FK' => 'Islas Malvinas (Islas Falkland)',
|
||||
'MP' => 'Islas Marianas del Norte',
|
||||
'MH' => 'Islas Marshall',
|
||||
'UM' => 'Islas menores alejadas de EE. UU.',
|
||||
'PN' => 'Islas Pitcairn',
|
||||
'SB' => 'Islas Salomón',
|
||||
'TC' => 'Islas Turcas y Caicos',
|
||||
'VG' => 'Islas Vírgenes Británicas',
|
||||
'VI' => 'Islas Vírgenes de EE. UU.',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italia',
|
||||
'JM' => 'Jamaica',
|
||||
'JP' => 'Japón',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordania',
|
||||
'KZ' => 'Kazajistán',
|
||||
'KE' => 'Kenia',
|
||||
'KG' => 'Kirguistán',
|
||||
'KI' => 'Kiribati',
|
||||
'XK' => 'Kosovo',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laos',
|
||||
'LS' => 'Lesoto',
|
||||
'LV' => 'Letonia',
|
||||
'LB' => 'Líbano',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Lituania',
|
||||
'LU' => 'Luxemburgo',
|
||||
'MO' => 'Macao',
|
||||
'MK' => 'Macedonia del Norte',
|
||||
'MG' => 'Madagascar',
|
||||
'MY' => 'Malasia',
|
||||
'MW' => 'Malaui',
|
||||
'MV' => 'Maldivas',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MA' => 'Marruecos',
|
||||
'MQ' => 'Martinica',
|
||||
'MU' => 'Mauricio',
|
||||
'MR' => 'Mauritania',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'México',
|
||||
'FM' => 'Micronesia',
|
||||
'MD' => 'Moldavia',
|
||||
'MC' => 'Mónaco',
|
||||
'MN' => 'Mongolia',
|
||||
'ME' => 'Montenegro',
|
||||
'MS' => 'Montserrat',
|
||||
'MZ' => 'Mozambique',
|
||||
'MM' => 'Myanmar (Birmania)',
|
||||
'NA' => 'Namibia',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NI' => 'Nicaragua',
|
||||
'NE' => 'Níger',
|
||||
'NG' => 'Nigeria',
|
||||
'NU' => 'Niue',
|
||||
'NO' => 'Noruega',
|
||||
'NC' => 'Nueva Caledonia',
|
||||
'NZ' => 'Nueva Zelanda',
|
||||
'OM' => 'Omán',
|
||||
'NL' => 'Países Bajos',
|
||||
'PK' => 'Pakistán',
|
||||
'PW' => 'Palaos',
|
||||
'PS' => 'Palestina',
|
||||
'PA' => 'Panamá',
|
||||
'PG' => 'Papúa Nueva Guinea',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Perú',
|
||||
'PF' => 'Polinesia Francesa',
|
||||
'PL' => 'Polonia',
|
||||
'PT' => 'Portugal',
|
||||
'PR' => 'Puerto Rico',
|
||||
'GB' => 'Reino Unido',
|
||||
'CF' => 'República Centroafricana',
|
||||
'DO' => 'República Dominicana',
|
||||
'RE' => 'Reunión',
|
||||
'RW' => 'Ruanda',
|
||||
'RO' => 'Rumanía',
|
||||
'RU' => 'Rusia',
|
||||
'EH' => 'Sáhara Occidental',
|
||||
'WS' => 'Samoa',
|
||||
'AS' => 'Samoa Americana',
|
||||
'BL' => 'San Bartolomé',
|
||||
'KN' => 'San Cristóbal y Nieves',
|
||||
'SM' => 'San Marino',
|
||||
'MF' => 'San Martín',
|
||||
'PM' => 'San Pedro y Miquelón',
|
||||
'VC' => 'San Vicente y las Granadinas',
|
||||
'SH' => 'Santa Elena',
|
||||
'LC' => 'Santa Lucía',
|
||||
'ST' => 'Santo Tomé y Príncipe',
|
||||
'SN' => 'Senegal',
|
||||
'RS' => 'Serbia',
|
||||
'SC' => 'Seychelles',
|
||||
'SL' => 'Sierra Leona',
|
||||
'SG' => 'Singapur',
|
||||
'SX' => 'Sint Maarten',
|
||||
'SY' => 'Siria',
|
||||
'SO' => 'Somalia',
|
||||
'LK' => 'Sri Lanka',
|
||||
'ZA' => 'Sudáfrica',
|
||||
'SD' => 'Sudán',
|
||||
'SS' => 'Sudán del Sur',
|
||||
'SE' => 'Suecia',
|
||||
'CH' => 'Suiza',
|
||||
'SR' => 'Surinam',
|
||||
'SJ' => 'Svalbard y Jan Mayen',
|
||||
'TH' => 'Tailandia',
|
||||
'TW' => 'Taiwán',
|
||||
'TZ' => 'Tanzania',
|
||||
'TJ' => 'Tayikistán',
|
||||
'IO' => 'Territorio Británico del Océano Índico',
|
||||
'TF' => 'Territorios Australes Franceses',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad y Tobago',
|
||||
'TA' => 'Tristán de Acuña',
|
||||
'TN' => 'Túnez',
|
||||
'TM' => 'Turkmenistán',
|
||||
'TR' => 'Turquía',
|
||||
'TV' => 'Tuvalu',
|
||||
'UA' => 'Ucrania',
|
||||
'UG' => 'Uganda',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Uzbekistán',
|
||||
'VU' => 'Vanuatu',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'WF' => 'Wallis y Futuna',
|
||||
'YE' => 'Yemen',
|
||||
'DJ' => 'Yibuti',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabue',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'África',
|
||||
'America' => 'América',
|
||||
'Antarctica' => 'Antártida',
|
||||
'Arctic' => 'Ártico',
|
||||
'Asia' => 'Asia',
|
||||
'Atlantic' => 'Atlántico',
|
||||
'Australia' => 'Australia',
|
||||
'Europe' => 'Europa',
|
||||
'Indian' => 'India',
|
||||
'Pacific' => 'Pacífico',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abiyán',
|
||||
'Africa/Accra' => 'Acra',
|
||||
'Africa/Addis_Ababa' => 'Addis Abeba',
|
||||
'Africa/Algiers' => 'Argel',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bisáu',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es Salaam',
|
||||
'Africa/Douala' => 'Duala',
|
||||
'Africa/El_Aaiun' => 'El Aaiún',
|
||||
'Africa/Cairo' => 'El Cairo',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Khartoum' => 'Jartún',
|
||||
'Africa/Johannesburg' => 'Johannesburgo',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lomé',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadiscio',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nuakchot',
|
||||
'Africa/Porto-Novo' => 'Portonovo',
|
||||
'Africa/Sao_Tome' => 'Santo Tomé',
|
||||
'Africa/Tripoli' => 'Trípoli',
|
||||
'Africa/Tunis' => 'Túnez',
|
||||
'Africa/Ouagadougou' => 'Uagadugú',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
'Africa/Ndjamena' => 'Yamena',
|
||||
'Africa/Djibouti' => 'Yibuti',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguila',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaína',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asunción',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahía',
|
||||
'America/Bahia_Banderas' => 'Bahía de Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belén',
|
||||
'America/Belize' => 'Belice',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, Dakota del Norte',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogotá',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cayman' => 'Caimán',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancún',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayena',
|
||||
'America/North_Dakota/Center' => 'Center, Dakota del Norte',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Mexico_City' => 'Ciudad de México',
|
||||
'America/Argentina/Cordoba' => 'Córdoba',
|
||||
'America/Costa_Rica' => 'Costa Rica',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiabá',
|
||||
'America/Curacao' => 'Curazao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominica',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepé',
|
||||
'America/El_Salvador' => 'El Salvador',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Gran Turca',
|
||||
'America/Grenada' => 'Granada',
|
||||
'America/Guadeloupe' => 'Guadalupe',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianápolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamaica',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/Havana' => 'La Habana',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Ángeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceió',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaos',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinica',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlán',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Mérida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Miquelon' => 'Miquelón',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, Dakota del Norte',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/New_York' => 'Nueva York',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panamá',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Port_of_Spain' => 'Puerto España',
|
||||
'America/Port-au-Prince' => 'Puerto Príncipe',
|
||||
'America/Puerto_Rico' => 'Puerto Rico',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Río Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Río Gallegos',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/St_Barthelemy' => 'San Bartolomé',
|
||||
'America/St_Kitts' => 'San Cristóbal',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/St_Johns' => 'San Juan de Terranova',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/St_Vincent' => 'San Vicente',
|
||||
'America/St_Lucia' => 'Santa Lucía',
|
||||
'America/Santarem' => 'Santarém',
|
||||
'America/Santiago' => 'Santiago de Chile',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sao_Paulo' => 'São Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Thomas' => 'St. Thomas',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tórtola',
|
||||
'America/Argentina/Tucuman' => 'Tucumán',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Adén',
|
||||
'Asia/Aqtau' => 'Aktau',
|
||||
'Asia/Aqtobe' => 'Aktobe',
|
||||
'Asia/Almaty' => 'Almaty',
|
||||
'Asia/Amman' => 'Ammán',
|
||||
'Asia/Anadyr' => 'Anádyr',
|
||||
'Asia/Ashgabat' => 'Asjabad',
|
||||
'Asia/Atyrau' => 'Atyrau',
|
||||
'Asia/Baghdad' => 'Bagdad',
|
||||
'Asia/Baku' => 'Bakú',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Bahrain' => 'Baréin',
|
||||
'Asia/Barnaul' => 'Barnaúl',
|
||||
'Asia/Beirut' => 'Beirut',
|
||||
'Asia/Bishkek' => 'Bishkek',
|
||||
'Asia/Brunei' => 'Brunéi',
|
||||
'Asia/Kolkata' => 'Calcuta',
|
||||
'Asia/Qatar' => 'Catar',
|
||||
'Asia/Chita' => 'Chitá',
|
||||
'Asia/Choibalsan' => 'Choibalsan',
|
||||
'Asia/Ho_Chi_Minh' => 'Ciudad Ho Chi Minh',
|
||||
'Asia/Colombo' => 'Colombo',
|
||||
'Asia/Dhaka' => 'Daca',
|
||||
'Asia/Damascus' => 'Damasco',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubái',
|
||||
'Asia/Dushanbe' => 'Dusambé',
|
||||
'Asia/Yekaterinburg' => 'Ekaterimburgo',
|
||||
'Asia/Yerevan' => 'Ereván',
|
||||
'Asia/Famagusta' => 'Famagusta',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Hebron' => 'Hebrón',
|
||||
'Asia/Hong_Kong' => 'Hong Kong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Irkutsk' => 'Irkutsk',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Jerusalem' => 'Jerusalén',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kamchatka' => 'Kamchatka',
|
||||
'Asia/Karachi' => 'Karachi',
|
||||
'Asia/Kathmandu' => 'Katmandú',
|
||||
'Asia/Khandyga' => 'Khandyga',
|
||||
'Asia/Qostanay' => 'Kostanái',
|
||||
'Asia/Krasnoyarsk' => 'Krasnoyarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kuching',
|
||||
'Asia/Kuwait' => 'Kuwait',
|
||||
'Asia/Qyzylorda' => 'Kyzylorda',
|
||||
'Asia/Macau' => 'Macao',
|
||||
'Asia/Magadan' => 'Magadán',
|
||||
'Asia/Makassar' => 'Makasar',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Mascate',
|
||||
'Asia/Nicosia' => 'Nicosia',
|
||||
'Asia/Novokuznetsk' => 'Novokuznetsk',
|
||||
'Asia/Novosibirsk' => 'Novosibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Pyongyang' => 'Pyongyang',
|
||||
'Asia/Riyadh' => 'Riad',
|
||||
'Asia/Sakhalin' => 'Sajalín',
|
||||
'Asia/Samarkand' => 'Samarcanda',
|
||||
'Asia/Seoul' => 'Seúl',
|
||||
'Asia/Shanghai' => 'Shanghái',
|
||||
'Asia/Singapore' => 'Singapur',
|
||||
'Asia/Srednekolymsk' => 'Srednekolimsk',
|
||||
'Asia/Taipei' => 'Taipéi',
|
||||
'Asia/Tashkent' => 'Taskent',
|
||||
'Asia/Tehran' => 'Teherán',
|
||||
'Asia/Tbilisi' => 'Tiflis',
|
||||
'Asia/Thimphu' => 'Timbu',
|
||||
'Asia/Tokyo' => 'Tokio',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Ulaanbaatar' => 'Ulán Bator',
|
||||
'Asia/Urumqi' => 'Ürümqi',
|
||||
'Asia/Ust-Nera' => 'Ust-Nera',
|
||||
'Asia/Vientiane' => 'Vientián',
|
||||
'Asia/Vladivostok' => 'Vladivostok',
|
||||
'Asia/Jakarta' => 'Yakarta',
|
||||
'Asia/Yakutsk' => 'Yakutsk',
|
||||
'Asia/Yangon' => 'Yangón (Rangún)',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azores',
|
||||
'Atlantic/Bermuda' => 'Bermudas',
|
||||
'Atlantic/Cape_Verde' => 'Cabo Verde',
|
||||
'Atlantic/Canary' => 'Canarias',
|
||||
'Atlantic/South_Georgia' => 'Georgia del Sur',
|
||||
'Atlantic/Faroe' => 'Islas Feroe',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Reikiavik',
|
||||
'Atlantic/St_Helena' => 'Santa Elena',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaida',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sídney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Ámsterdam',
|
||||
'Europe/Andorra' => 'Andorra',
|
||||
'Europe/Astrakhan' => 'Astracán',
|
||||
'Europe/Athens' => 'Atenas',
|
||||
'Europe/Belgrade' => 'Belgrado',
|
||||
'Europe/Berlin' => 'Berlín',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Bruselas',
|
||||
'Europe/Bucharest' => 'Bucarest',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Busingen' => 'Busingen',
|
||||
'Europe/Chisinau' => 'Chisináu',
|
||||
'Europe/Copenhagen' => 'Copenhague',
|
||||
'Europe/Dublin' => 'Dublín',
|
||||
'Europe/Vatican' => 'El Vaticano',
|
||||
'Europe/Istanbul' => 'Estambul',
|
||||
'Europe/Stockholm' => 'Estocolmo',
|
||||
'Europe/Gibraltar' => 'Gibraltar',
|
||||
'Europe/Guernsey' => 'Guernsey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Isle_of_Man' => 'Isla de Man',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kaliningrado',
|
||||
'Europe/Kiev' => 'Kiev',
|
||||
'Europe/Kirov' => 'Kírov',
|
||||
'Europe/Lisbon' => 'Lisboa',
|
||||
'Europe/Ljubljana' => 'Liubliana',
|
||||
'Europe/London' => 'Londres',
|
||||
'Europe/Luxembourg' => 'Luxemburgo',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malta',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Mónaco',
|
||||
'Europe/Moscow' => 'Moscú',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Paris' => 'París',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Praga',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Roma',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Sarátov',
|
||||
'Europe/Simferopol' => 'Simferópol',
|
||||
'Europe/Skopje' => 'Skopie',
|
||||
'Europe/Sofia' => 'Sofía',
|
||||
'Europe/Tallinn' => 'Tallin',
|
||||
'Europe/Tirane' => 'Tirana',
|
||||
'Europe/Ulyanovsk' => 'Uliánovsk',
|
||||
'Europe/Uzhgorod' => 'Úzhgorod',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Warsaw' => 'Varsovia',
|
||||
'Europe/Vienna' => 'Viena',
|
||||
'Europe/Vilnius' => 'Vilna',
|
||||
'Europe/Volgograd' => 'Volgogrado',
|
||||
'Europe/Zagreb' => 'Zagreb',
|
||||
'Europe/Zaporozhye' => 'Zaporiyia',
|
||||
'Europe/Zurich' => 'Zúrich',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Cocos' => 'Cocos',
|
||||
'Indian/Comoro' => 'Comoras',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Mahe' => 'Mahé',
|
||||
'Indian/Maldives' => 'Maldivas',
|
||||
'Indian/Mauritius' => 'Mauricio',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Christmas' => 'Navidad',
|
||||
'Indian/Reunion' => 'Reunión',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fiyi',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galápagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Easter' => 'Isla de Pascua',
|
||||
'Pacific/Honolulu' => 'Johnston',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marquesas',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Numea',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palaos',
|
||||
'Pacific/Pitcairn' => 'Pitcairn',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipán',
|
||||
'Pacific/Tahiti' => 'Tahití',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// This is a template file to be used for loading extra translation strings into OpenConf
|
||||
//
|
||||
// INSTRUCTIONS:
|
||||
//
|
||||
// Make a copy of the file and call it extras.inc
|
||||
// Replace *** in the first code line below with the language encoding found in the locale.inc file for the desired language (e.g., es, fr, pt-BR)
|
||||
// Add translation pairs using the format below, with one pair per line
|
||||
// Single-quotes within a string must be prefixed by a backslash ( \' ), and smart-quotes are best avoided
|
||||
// Move the extras.inc file you created into the openconf/lib/locale/*** directory
|
||||
|
||||
$OC_translationExtrasAR['***'] = array(
|
||||
'original string' => 'translated string',
|
||||
);
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AR' => 'آرژانتین',
|
||||
'AW' => 'آروبا',
|
||||
'AL' => 'آلبانی',
|
||||
'DE' => 'آلمان',
|
||||
'AG' => 'آنتیگوا و باربودا',
|
||||
'AD' => 'آندورا',
|
||||
'AO' => 'آنگولا',
|
||||
'AI' => 'آنگویلا',
|
||||
'AT' => 'اتریش',
|
||||
'ET' => 'اتیوپی',
|
||||
'JO' => 'اردن',
|
||||
'AM' => 'ارمنستان',
|
||||
'UY' => 'اروگوئه',
|
||||
'ER' => 'اریتره',
|
||||
'UZ' => 'ازبکستان',
|
||||
'ES' => 'اسپانیا',
|
||||
'AU' => 'استرالیا',
|
||||
'EE' => 'استونی',
|
||||
'IL' => 'اسرائیل',
|
||||
'SK' => 'اسلواکی',
|
||||
'SI' => 'اسلوونی',
|
||||
'SZ' => 'اسواتینی',
|
||||
'ZA' => 'افریقای جنوبی',
|
||||
'AF' => 'افغانستان',
|
||||
'EC' => 'اکوادور',
|
||||
'DZ' => 'الجزایر',
|
||||
'SV' => 'السالوادور',
|
||||
'AE' => 'امارات متحدهٔ عربی',
|
||||
'ID' => 'اندونزی',
|
||||
'UA' => 'اوکراین',
|
||||
'UG' => 'اوگاندا',
|
||||
'US' => 'ایالات متحده',
|
||||
'IT' => 'ایتالیا',
|
||||
'IR' => 'ایران',
|
||||
'IE' => 'ایرلند',
|
||||
'IS' => 'ایسلند',
|
||||
'BB' => 'باربادوس',
|
||||
'BS' => 'باهاما',
|
||||
'BH' => 'بحرین',
|
||||
'BR' => 'برزیل',
|
||||
'BM' => 'برمودا',
|
||||
'BN' => 'برونئی',
|
||||
'GB' => 'بریتانیا',
|
||||
'BY' => 'بلاروس',
|
||||
'BE' => 'بلژیک',
|
||||
'BG' => 'بلغارستان',
|
||||
'BZ' => 'بلیز',
|
||||
'BD' => 'بنگلادش',
|
||||
'BJ' => 'بنین',
|
||||
'BT' => 'بوتان',
|
||||
'BW' => 'بوتسوانا',
|
||||
'BF' => 'بورکینافاسو',
|
||||
'BI' => 'بوروندی',
|
||||
'BA' => 'بوسنی و هرزگوین',
|
||||
'BO' => 'بولیوی',
|
||||
'PG' => 'پاپوا گینهٔ نو',
|
||||
'PY' => 'پاراگوئه',
|
||||
'PK' => 'پاکستان',
|
||||
'PW' => 'پالائو',
|
||||
'PA' => 'پاناما',
|
||||
'PT' => 'پرتغال',
|
||||
'PE' => 'پرو',
|
||||
'PF' => 'پلینزی فرانسه',
|
||||
'PR' => 'پورتوریکو',
|
||||
'TJ' => 'تاجیکستان',
|
||||
'TZ' => 'تانزانیا',
|
||||
'TH' => 'تایلند',
|
||||
'TW' => 'تایوان',
|
||||
'TM' => 'ترکمنستان',
|
||||
'TR' => 'ترکیه',
|
||||
'TA' => 'تریستان دا کونا',
|
||||
'TT' => 'ترینیداد و توباگو',
|
||||
'TK' => 'توکلائو',
|
||||
'TG' => 'توگو',
|
||||
'TN' => 'تونس',
|
||||
'TO' => 'تونگا',
|
||||
'TV' => 'تووالو',
|
||||
'TL' => 'تیمور-لسته',
|
||||
'JM' => 'جامائیکا',
|
||||
'GI' => 'جبلالطارق',
|
||||
'JE' => 'جرزی',
|
||||
'AC' => 'جزایر آسنسیون',
|
||||
'AX' => 'جزایر آلاند',
|
||||
'PN' => 'جزایر پیتکرن',
|
||||
'TC' => 'جزایر تورکس و کایکوس',
|
||||
'UM' => 'جزایر دورافتادهٔ ایالات متحده',
|
||||
'SB' => 'جزایر سلیمان',
|
||||
'FO' => 'جزایر فارو',
|
||||
'FK' => 'جزایر فالکلند (ایسلاس مالویناس)',
|
||||
'IC' => 'جزایر قناری',
|
||||
'BQ' => 'جزایر کارائیب هلند',
|
||||
'CP' => 'جزایر کلیپرتون',
|
||||
'CK' => 'جزایر کوک',
|
||||
'CC' => 'جزایر کوکوس',
|
||||
'KY' => 'جزایر کِیمن',
|
||||
'MH' => 'جزایر مارشال',
|
||||
'MP' => 'جزایر ماریانای شمالی',
|
||||
'VI' => 'جزایر ویرجین ایالات متحده',
|
||||
'VG' => 'جزایر ویرجین بریتانیا',
|
||||
'BV' => 'جزیرهٔ بووه',
|
||||
'CX' => 'جزیرهٔ کریسمس',
|
||||
'IM' => 'جزیرهٔ من',
|
||||
'NF' => 'جزیرهٔ نورفولک',
|
||||
'AZ' => 'جمهوری آذربایجان',
|
||||
'CF' => 'جمهوری افریقای مرکزی',
|
||||
'DO' => 'جمهوری دومینیکن',
|
||||
'AQ' => 'جنوبگان',
|
||||
'GS' => 'جورجیای جنوبی و جزایر ساندویچ جنوبی',
|
||||
'DJ' => 'جیبوتی',
|
||||
'TD' => 'چاد',
|
||||
'CZ' => 'چک',
|
||||
'CN' => 'چین',
|
||||
'DK' => 'دانمارک',
|
||||
'DM' => 'دومینیکا',
|
||||
'DG' => 'دیهگو گارسیا',
|
||||
'RE' => 'رئونیون',
|
||||
'RW' => 'رواندا',
|
||||
'RU' => 'روسیه',
|
||||
'RO' => 'رومانی',
|
||||
'ZM' => 'زامبیا',
|
||||
'ZW' => 'زیمبابوه',
|
||||
'JP' => 'ژاپن',
|
||||
'ST' => 'سائوتومه و پرینسیپ',
|
||||
'CI' => 'ساحل عاج',
|
||||
'WS' => 'ساموآ',
|
||||
'AS' => 'ساموآی امریکا',
|
||||
'SM' => 'سانمارینو',
|
||||
'EA' => 'سبته و ملیله',
|
||||
'TF' => 'سرزمینهای جنوب فرانسه',
|
||||
'LK' => 'سریلانکا',
|
||||
'BL' => 'سن بارتلمی',
|
||||
'PM' => 'سن پیر و میکلن',
|
||||
'KN' => 'سنت کیتس و نویس',
|
||||
'LC' => 'سنت لوسیا',
|
||||
'SX' => 'سنت مارتن',
|
||||
'MF' => 'سنت مارتین',
|
||||
'VC' => 'سنت وینسنت و گرنادین',
|
||||
'SH' => 'سنت هلن',
|
||||
'SG' => 'سنگاپور',
|
||||
'SN' => 'سنگال',
|
||||
'SJ' => 'سوالبارد و یان ماین',
|
||||
'SE' => 'سوئد',
|
||||
'CH' => 'سوئیس',
|
||||
'SD' => 'سودان',
|
||||
'SS' => 'سودان جنوبی',
|
||||
'SR' => 'سورینام',
|
||||
'SY' => 'سوریه',
|
||||
'SO' => 'سومالی',
|
||||
'SL' => 'سیرالئون',
|
||||
'SC' => 'سیشل',
|
||||
'CL' => 'شیلی',
|
||||
'EH' => 'صحرای غربی',
|
||||
'RS' => 'صربستان',
|
||||
'IQ' => 'عراق',
|
||||
'SA' => 'عربستان سعودی',
|
||||
'OM' => 'عمان',
|
||||
'GH' => 'غنا',
|
||||
'FR' => 'فرانسه',
|
||||
'PS' => 'فلسطین',
|
||||
'FI' => 'فنلاند',
|
||||
'FJ' => 'فیجی',
|
||||
'PH' => 'فیلیپین',
|
||||
'CY' => 'قبرس',
|
||||
'KG' => 'قرقیزستان',
|
||||
'KZ' => 'قزاقستان',
|
||||
'QA' => 'قطر',
|
||||
'IO' => 'قلمرو بریتانیا در اقیانوس هند',
|
||||
'CR' => 'کاستاریکا',
|
||||
'NC' => 'کالدونیای جدید',
|
||||
'KH' => 'کامبوج',
|
||||
'CM' => 'کامرون',
|
||||
'CA' => 'کانادا',
|
||||
'HR' => 'کرواسی',
|
||||
'KR' => 'کرهٔ جنوبی',
|
||||
'KP' => 'کرهٔ شمالی',
|
||||
'CO' => 'کلمبیا',
|
||||
'CD' => 'کنگو (جمهوری دموکراتیک)',
|
||||
'CG' => 'کنگو (جمهوری)',
|
||||
'KE' => 'کنیا',
|
||||
'CU' => 'کوبا',
|
||||
'CW' => 'کوراسائو',
|
||||
'XK' => 'کوزوو',
|
||||
'KM' => 'کومور',
|
||||
'KW' => 'کویت',
|
||||
'CV' => 'کیپورد',
|
||||
'KI' => 'کیریباتی',
|
||||
'GA' => 'گابن',
|
||||
'GM' => 'گامبیا',
|
||||
'GE' => 'گرجستان',
|
||||
'GD' => 'گرنادا',
|
||||
'GG' => 'گرنزی',
|
||||
'GL' => 'گرینلند',
|
||||
'GT' => 'گواتمالا',
|
||||
'GP' => 'گوادلوپ',
|
||||
'GU' => 'گوام',
|
||||
'GY' => 'گویان',
|
||||
'GF' => 'گویان فرانسه',
|
||||
'GN' => 'گینه',
|
||||
'GQ' => 'گینهٔ استوایی',
|
||||
'GW' => 'گینهٔ بیسائو',
|
||||
'LA' => 'لائوس',
|
||||
'LB' => 'لبنان',
|
||||
'LV' => 'لتونی',
|
||||
'LS' => 'لسوتو',
|
||||
'LU' => 'لوکزامبورگ',
|
||||
'PL' => 'لهستان',
|
||||
'LR' => 'لیبریا',
|
||||
'LY' => 'لیبی',
|
||||
'LT' => 'لیتوانی',
|
||||
'LI' => 'لیختناشتاین',
|
||||
'MG' => 'ماداگاسکار',
|
||||
'MQ' => 'مارتینیک',
|
||||
'MO' => 'ماکائو',
|
||||
'MW' => 'مالاوی',
|
||||
'MT' => 'مالت',
|
||||
'MV' => 'مالدیو',
|
||||
'MY' => 'مالزی',
|
||||
'ML' => 'مالی',
|
||||
'YT' => 'مایوت',
|
||||
'HU' => 'مجارستان',
|
||||
'MA' => 'مراکش',
|
||||
'EG' => 'مصر',
|
||||
'MN' => 'مغولستان',
|
||||
'MK' => 'مقدونیهٔ شمالی',
|
||||
'MX' => 'مکزیک',
|
||||
'MR' => 'موریتانی',
|
||||
'MU' => 'موریس',
|
||||
'MZ' => 'موزامبیک',
|
||||
'MD' => 'مولداوی',
|
||||
'MC' => 'موناکو',
|
||||
'MS' => 'مونتسرات',
|
||||
'ME' => 'مونتهنگرو',
|
||||
'MM' => 'میانمار (برمه)',
|
||||
'FM' => 'میکرونزی',
|
||||
'NR' => 'نائورو',
|
||||
'NA' => 'نامیبیا',
|
||||
'NP' => 'نپال',
|
||||
'NO' => 'نروژ',
|
||||
'NE' => 'نیجر',
|
||||
'NG' => 'نیجریه',
|
||||
'NI' => 'نیکاراگوئه',
|
||||
'NU' => 'نیوئه',
|
||||
'NZ' => 'نیوزیلند',
|
||||
'VA' => 'واتیکان',
|
||||
'WF' => 'والیس و فوتونا',
|
||||
'VU' => 'وانواتو',
|
||||
'VE' => 'ونزوئلا',
|
||||
'VN' => 'ویتنام',
|
||||
'HT' => 'هائیتی',
|
||||
'HM' => 'هرد و جزایر مکدونالد',
|
||||
'NL' => 'هلند',
|
||||
'IN' => 'هند',
|
||||
'HN' => 'هندوراس',
|
||||
'HK' => 'هنگکنگ',
|
||||
'YE' => 'یمن',
|
||||
'GR' => 'یونان',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Atlantic' => 'آتلانتیک',
|
||||
'Asia' => 'آسیا',
|
||||
'Africa' => 'آفریقا',
|
||||
'Europe' => 'اروپا',
|
||||
'Australia' => 'استرالیا',
|
||||
'Pacific' => 'اقیانوس آرام',
|
||||
'America' => 'امریکا',
|
||||
'Indian' => 'ایندین',
|
||||
'Antarctica' => 'جنوبگان',
|
||||
'Arctic' => 'شمالگان',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'آبیجان',
|
||||
'Africa/Addis_Ababa' => 'آدیس آبابا',
|
||||
'Africa/Asmara' => 'اسمره',
|
||||
'Africa/Accra' => 'اکرا',
|
||||
'Africa/Algiers' => 'الجزیره',
|
||||
'Africa/El_Aaiun' => 'العیون',
|
||||
'Africa/Ndjamena' => 'انجامنا',
|
||||
'Africa/Ouagadougou' => 'اوآگادوگو',
|
||||
'Africa/Bamako' => 'باماکو',
|
||||
'Africa/Banjul' => 'بانجول',
|
||||
'Africa/Bangui' => 'بانگی',
|
||||
'Africa/Brazzaville' => 'برازویل',
|
||||
'Africa/Blantyre' => 'بلانتیره',
|
||||
'Africa/Bujumbura' => 'بوجومبورا',
|
||||
'Africa/Bissau' => 'بیسائو',
|
||||
'Africa/Porto-Novo' => 'پورتو نووو',
|
||||
'Africa/Tunis' => 'تونس',
|
||||
'Africa/Juba' => 'جوبا',
|
||||
'Africa/Djibouti' => 'جیبوتی',
|
||||
'Africa/Khartoum' => 'خارطوم',
|
||||
'Africa/Dar_es_Salaam' => 'دارالسلام',
|
||||
'Africa/Dakar' => 'داکار',
|
||||
'Africa/Douala' => 'دوآلا',
|
||||
'Africa/Johannesburg' => 'ژوهانسبورگ',
|
||||
'Africa/Sao_Tome' => 'سائوتومه',
|
||||
'Africa/Ceuta' => 'سبته',
|
||||
'Africa/Tripoli' => 'طرابلس',
|
||||
'Africa/Freetown' => 'فریتاون',
|
||||
'Africa/Cairo' => 'قاهره',
|
||||
'Africa/Casablanca' => 'کازابلانکا',
|
||||
'Africa/Kampala' => 'کامپالا',
|
||||
'Africa/Conakry' => 'کوناکری',
|
||||
'Africa/Kigali' => 'کیگالی',
|
||||
'Africa/Kinshasa' => 'کینشاسا',
|
||||
'Africa/Gaborone' => 'گابورون',
|
||||
'Africa/Lagos' => 'لاگوس',
|
||||
'Africa/Luanda' => 'لواندا',
|
||||
'Africa/Lubumbashi' => 'لوبومباشی',
|
||||
'Africa/Lusaka' => 'لوزاکا',
|
||||
'Africa/Lome' => 'لومه',
|
||||
'Africa/Libreville' => 'لیبرویل',
|
||||
'Africa/Maputo' => 'ماپوتو',
|
||||
'Africa/Maseru' => 'ماسرو',
|
||||
'Africa/Malabo' => 'مالابو',
|
||||
'Africa/Mbabane' => 'مبابانه',
|
||||
'Africa/Mogadishu' => 'موگادیشو',
|
||||
'Africa/Monrovia' => 'مونروویا',
|
||||
'Africa/Nairobi' => 'نایروبی',
|
||||
'Africa/Nouakchott' => 'نوآکشوت',
|
||||
'Africa/Niamey' => 'نیامی',
|
||||
'Africa/Windhoek' => 'ویندهوک',
|
||||
'Africa/Harare' => 'هراره',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Araguaina' => 'آراگواینا',
|
||||
'America/Asuncion' => 'آسونسیون',
|
||||
'America/Antigua' => 'آنتیگوا',
|
||||
'America/Anguilla' => 'آنگوئیلا',
|
||||
'America/Atikokan' => 'اتکوکان',
|
||||
'America/Ojinaga' => 'اخیناگا',
|
||||
'America/Edmonton' => 'ادمونتون',
|
||||
'America/Hermosillo' => 'ارموسیو',
|
||||
'America/Aruba' => 'اروبا',
|
||||
'America/Scoresbysund' => 'اسکورسبیسوند',
|
||||
'America/El_Salvador' => 'السالوادور',
|
||||
'America/Anchorage' => 'انکوریج',
|
||||
'America/Argentina/Ushuaia' => 'اوشوایا',
|
||||
'America/Adak' => 'ایدک',
|
||||
'America/Eirunepe' => 'ایرونپه',
|
||||
'America/Iqaluit' => 'ایکلوئت',
|
||||
'America/Indiana/Indianapolis' => 'ایندیاناپولیس',
|
||||
'America/Inuvik' => 'اینوویک',
|
||||
'America/Barbados' => 'باربادوس',
|
||||
'America/Bahia_Banderas' => 'باهیا باندراس',
|
||||
'America/Bahia' => 'بایا',
|
||||
'America/Lower_Princes' => 'بخش شاهزادهنشین پایین',
|
||||
'America/Blanc-Sablon' => 'بلان‐سابلون',
|
||||
'America/Belem' => 'بلم',
|
||||
'America/Belize' => 'بلیز',
|
||||
'America/Boa_Vista' => 'بوئاویستا',
|
||||
'America/Argentina/Buenos_Aires' => 'بوئنوسآیرس',
|
||||
'America/Bogota' => 'بوگوتا',
|
||||
'America/Boise' => 'بویسی',
|
||||
'America/North_Dakota/Beulah' => 'بیولا، داکوتای شمالی',
|
||||
'America/Paramaribo' => 'پاراماریبو',
|
||||
'America/Panama' => 'پاناما',
|
||||
'America/Pangnirtung' => 'پانگنیرتونگ',
|
||||
'America/Port_of_Spain' => 'پورتآواسپین',
|
||||
'America/Port-au-Prince' => 'پورتوپرنس',
|
||||
'America/Puerto_Rico' => 'پورتوریکو',
|
||||
'America/Porto_Velho' => 'پورتوولیو',
|
||||
'America/Punta_Arenas' => 'پونتا آرناس',
|
||||
'America/Indiana/Petersburg' => 'پیترزبرگ، ایندیانا',
|
||||
'America/Thunder_Bay' => 'تاندربی',
|
||||
'America/Tegucigalpa' => 'تگوسیگالپا',
|
||||
'America/Indiana/Tell_City' => 'تلسیتی، ایندیانا',
|
||||
'America/Tortola' => 'تورتولا',
|
||||
'America/Toronto' => 'تورنتو',
|
||||
'America/Argentina/Tucuman' => 'توکومن',
|
||||
'America/Thule' => 'تول',
|
||||
'America/Tijuana' => 'تیخوانا',
|
||||
'America/Jamaica' => 'جامائیکا',
|
||||
'America/Juneau' => 'جونو',
|
||||
'America/Chihuahua' => 'چیواوا',
|
||||
'America/Rankin_Inlet' => 'خلیجک رنکین',
|
||||
'America/Argentina/Jujuy' => 'خوخوی',
|
||||
'America/Danmarkshavn' => 'دانمارکسهاون',
|
||||
'America/Dawson' => 'داوسن',
|
||||
'America/Dawson_Creek' => 'داوسن کریک',
|
||||
'America/Denver' => 'دنور',
|
||||
'America/Dominica' => 'دومینیکا',
|
||||
'America/Detroit' => 'دیترویت',
|
||||
'America/Regina' => 'رجاینا',
|
||||
'America/Resolute' => 'رزولوت',
|
||||
'America/Recife' => 'ریسیفی',
|
||||
'America/Rainy_River' => 'رینیریور',
|
||||
'America/Rio_Branco' => 'ریوبرانکو',
|
||||
'America/Argentina/Rio_Gallegos' => 'ریوگالگوس',
|
||||
'America/Sao_Paulo' => 'سائوپائولو',
|
||||
'America/Argentina/Salta' => 'سالتا',
|
||||
'America/Santo_Domingo' => 'سانتو دومینگو',
|
||||
'America/Santiago' => 'سانتیاگو',
|
||||
'America/St_Barthelemy' => 'سنت بارتلمی',
|
||||
'America/St_Thomas' => 'سنت توماس',
|
||||
'America/St_Johns' => 'سنت جان',
|
||||
'America/St_Kitts' => 'سنت کیتس',
|
||||
'America/St_Lucia' => 'سنت لوسیا',
|
||||
'America/St_Vincent' => 'سنت وینسنت',
|
||||
'America/Santarem' => 'سنتارم',
|
||||
'America/North_Dakota/Center' => 'سنتر، داکوتای شمالی',
|
||||
'America/Argentina/San_Juan' => 'سنخوان',
|
||||
'America/Argentina/San_Luis' => 'سنلوئیس',
|
||||
'America/Swift_Current' => 'سویفتکارنت',
|
||||
'America/Sitka' => 'سیتکا',
|
||||
'America/Chicago' => 'شیکاگو',
|
||||
'America/Fort_Nelson' => 'فورت نلسون',
|
||||
'America/Fortaleza' => 'فورتالزا',
|
||||
'America/Phoenix' => 'فینکس',
|
||||
'America/Argentina/Catamarca' => 'کاتامارکا',
|
||||
'America/Caracas' => 'کاراکاس',
|
||||
'America/Costa_Rica' => 'کاستاریکا',
|
||||
'America/Cancun' => 'کانکون',
|
||||
'America/Cayenne' => 'کاین',
|
||||
'America/Kralendijk' => 'کرالندیک',
|
||||
'America/Creston' => 'کرستون',
|
||||
'America/Cambridge_Bay' => 'کمبریجبی',
|
||||
'America/Campo_Grande' => 'کمپو گرانده',
|
||||
'America/Curacao' => 'کوراسائو',
|
||||
'America/Argentina/Cordoba' => 'کوردووا',
|
||||
'America/Cuiaba' => 'کویاوا',
|
||||
'America/Cayman' => 'کیمن',
|
||||
'America/Grand_Turk' => 'گراند تورک',
|
||||
'America/Grenada' => 'گرنادا',
|
||||
'America/Glace_Bay' => 'گلیسبی',
|
||||
'America/Guatemala' => 'گواتمالا',
|
||||
'America/Guadeloupe' => 'گوادلوپ',
|
||||
'America/Guayaquil' => 'گوایاکیل',
|
||||
'America/Goose_Bay' => 'گوسبی',
|
||||
'America/Guyana' => 'گویان',
|
||||
'America/La_Paz' => 'لاپاز',
|
||||
'America/Argentina/La_Rioja' => 'لاریوخا',
|
||||
'America/Kentucky/Louisville' => 'لوئیزویل',
|
||||
'America/Los_Angeles' => 'لوسآنجلس',
|
||||
'America/Lima' => 'لیما',
|
||||
'America/Matamoros' => 'ماتاموروس',
|
||||
'America/Martinique' => 'مارتینیک',
|
||||
'America/Indiana/Marengo' => 'مارنگو، ایندیانا',
|
||||
'America/Marigot' => 'ماریگات',
|
||||
'America/Mazatlan' => 'ماساتلان',
|
||||
'America/Maceio' => 'ماسیو',
|
||||
'America/Managua' => 'ماناگوا',
|
||||
'America/Manaus' => 'ماناوس',
|
||||
'America/Kentucky/Monticello' => 'مانتیسلو، کنتاکی',
|
||||
'America/Moncton' => 'مانکتون',
|
||||
'America/Metlakatla' => 'متالاکاتلا',
|
||||
'America/Merida' => 'مریدا',
|
||||
'America/Mexico_City' => 'مکزیکوسیتی',
|
||||
'America/Menominee' => 'منامینی',
|
||||
'America/Argentina/Mendoza' => 'مندوسا',
|
||||
'America/Monterrey' => 'مونتری',
|
||||
'America/Montserrat' => 'مونتسرات',
|
||||
'America/Montevideo' => 'مونتهویدئو',
|
||||
'America/Miquelon' => 'میکلون',
|
||||
'America/Nassau' => 'ناسائو',
|
||||
'America/Indiana/Knox' => 'ناکس، ایندیانا',
|
||||
'America/Noronha' => 'نورونیا',
|
||||
'America/Nome' => 'نوم',
|
||||
'America/Nuuk' => 'نووک',
|
||||
'America/Nipigon' => 'نیپیگان',
|
||||
'America/North_Dakota/New_Salem' => 'نیوسالم، داکوتای شمالی',
|
||||
'America/New_York' => 'نیویورک',
|
||||
'America/Whitehorse' => 'وایتهورس',
|
||||
'America/Vancouver' => 'ونکوور',
|
||||
'America/Indiana/Winamac' => 'ویناماک، ایندیانا',
|
||||
'America/Indiana/Vincennes' => 'وینسنس، اندیانا',
|
||||
'America/Winnipeg' => 'وینیپگ',
|
||||
'America/Indiana/Vevay' => 'ویوی، ایندیانا',
|
||||
'America/Havana' => 'هاوانا',
|
||||
'America/Halifax' => 'هلیفکس',
|
||||
'America/Yakutat' => 'یاکوتات',
|
||||
'America/Yellowknife' => 'یلونایف',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Palmer' => 'پالمر',
|
||||
'Antarctica/Troll' => 'ترول',
|
||||
'Antarctica/DumontDUrville' => 'دومون دورویل',
|
||||
'Antarctica/Davis' => 'دیویس',
|
||||
'Antarctica/Rothera' => 'روترا',
|
||||
'Antarctica/Syowa' => 'شووا',
|
||||
'Antarctica/Casey' => 'کیسی',
|
||||
'Antarctica/Mawson' => 'ماوسون',
|
||||
'Antarctica/McMurdo' => 'مکموردو',
|
||||
'Antarctica/Macquarie' => 'مکواری',
|
||||
'Antarctica/Vostok' => 'وستوک',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'لانگیربین',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Atyrau' => 'آتیراو',
|
||||
'Asia/Aqtau' => 'آقتاو',
|
||||
'Asia/Aqtobe' => 'آقتوبه',
|
||||
'Asia/Almaty' => 'آلماتی',
|
||||
'Asia/Anadyr' => 'آنادیر',
|
||||
'Asia/Urumqi' => 'ارومچی',
|
||||
'Asia/Srednekolymsk' => 'اسردنکولیمسک',
|
||||
'Asia/Hebron' => 'الخلیل',
|
||||
'Asia/Oral' => 'اورال',
|
||||
'Asia/Jerusalem' => 'اورشلیم',
|
||||
'Asia/Ust-Nera' => 'اوست نرا',
|
||||
'Asia/Ulaanbaatar' => 'اولانباتور',
|
||||
'Asia/Omsk' => 'اومسک',
|
||||
'Asia/Irkutsk' => 'ایرکوتسک',
|
||||
'Asia/Yerevan' => 'ایروان',
|
||||
'Asia/Barnaul' => 'بارنائول',
|
||||
'Asia/Baku' => 'باکو',
|
||||
'Asia/Bangkok' => 'بانکوک',
|
||||
'Asia/Bahrain' => 'بحرین',
|
||||
'Asia/Brunei' => 'برونئی',
|
||||
'Asia/Baghdad' => 'بغداد',
|
||||
'Asia/Beirut' => 'بیروت',
|
||||
'Asia/Bishkek' => 'بیشکک',
|
||||
'Asia/Phnom_Penh' => 'پنومپن',
|
||||
'Asia/Pontianak' => 'پونتیاناک',
|
||||
'Asia/Pyongyang' => 'پیونگیانگ',
|
||||
'Asia/Tashkent' => 'تاشکند',
|
||||
'Asia/Taipei' => 'تایپه',
|
||||
'Asia/Tbilisi' => 'تفلیس',
|
||||
'Asia/Tokyo' => 'توکیو',
|
||||
'Asia/Tomsk' => 'تومسک',
|
||||
'Asia/Tehran' => 'تهران',
|
||||
'Asia/Thimphu' => 'تیمفو',
|
||||
'Asia/Jakarta' => 'جاکارتا',
|
||||
'Asia/Jayapura' => 'جایاپورا',
|
||||
'Asia/Choibalsan' => 'چویبالسان',
|
||||
'Asia/Chita' => 'چیتا',
|
||||
'Asia/Khandyga' => 'خاندیگا',
|
||||
'Asia/Hovd' => 'خوود',
|
||||
'Asia/Dhaka' => 'داکا',
|
||||
'Asia/Dubai' => 'دبی',
|
||||
'Asia/Damascus' => 'دمشق',
|
||||
'Asia/Dushanbe' => 'دوشنبه',
|
||||
'Asia/Dili' => 'دیلی',
|
||||
'Asia/Riyadh' => 'ریاض',
|
||||
'Asia/Sakhalin' => 'ساخالین',
|
||||
'Asia/Seoul' => 'سئول',
|
||||
'Asia/Samarkand' => 'سمرقند',
|
||||
'Asia/Singapore' => 'سنگاپور',
|
||||
'Asia/Shanghai' => 'شانگهای',
|
||||
'Asia/Aden' => 'عدن',
|
||||
'Asia/Ashgabat' => 'عشقآباد',
|
||||
'Asia/Amman' => 'عمّان',
|
||||
'Asia/Gaza' => 'غزه',
|
||||
'Asia/Famagusta' => 'فاماگوستا',
|
||||
'Asia/Qatar' => 'قطر',
|
||||
'Asia/Qostanay' => 'قوستانای',
|
||||
'Asia/Qyzylorda' => 'قیزیلاوردا',
|
||||
'Asia/Kabul' => 'کابل',
|
||||
'Asia/Kathmandu' => 'کاتماندو',
|
||||
'Asia/Kamchatka' => 'کامچاتکا',
|
||||
'Asia/Karachi' => 'کراچی',
|
||||
'Asia/Krasnoyarsk' => 'کراسنویارسک',
|
||||
'Asia/Kolkata' => 'کلکته',
|
||||
'Asia/Colombo' => 'کلمبو',
|
||||
'Asia/Kuala_Lumpur' => 'کوالالامپور',
|
||||
'Asia/Kuching' => 'کوچینگ',
|
||||
'Asia/Kuwait' => 'کویت',
|
||||
'Asia/Macau' => 'ماکائو',
|
||||
'Asia/Makassar' => 'ماکاسار',
|
||||
'Asia/Magadan' => 'ماگادان',
|
||||
'Asia/Manila' => 'مانیل',
|
||||
'Asia/Muscat' => 'مسقط',
|
||||
'Asia/Novosibirsk' => 'نووسیبیریسک',
|
||||
'Asia/Novokuznetsk' => 'نوووکوزنتسک',
|
||||
'Asia/Nicosia' => 'نیکوزیا',
|
||||
'Asia/Vladivostok' => 'ولادیوستوک',
|
||||
'Asia/Vientiane' => 'وینتیان',
|
||||
'Asia/Hong_Kong' => 'هنگکنگ',
|
||||
'Asia/Ho_Chi_Minh' => 'هوشیمینسیتی',
|
||||
'Asia/Yakutsk' => 'یاکوتسک',
|
||||
'Asia/Yangon' => 'یانگون',
|
||||
'Asia/Yekaterinburg' => 'یکاترینبرگ',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'آزور',
|
||||
'Atlantic/Stanley' => 'استانلی',
|
||||
'Atlantic/Bermuda' => 'برمودا',
|
||||
'Atlantic/South_Georgia' => 'جورجیای جنوبی',
|
||||
'Atlantic/Reykjavik' => 'ریکیاویک',
|
||||
'Atlantic/St_Helena' => 'سنت هلنا',
|
||||
'Atlantic/Faroe' => 'فارو',
|
||||
'Atlantic/Canary' => 'قناری',
|
||||
'Atlantic/Cape_Verde' => 'کیپورد',
|
||||
'Atlantic/Madeira' => 'مادیرا',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'آدلاید',
|
||||
'Australia/Eucla' => 'اوکلا',
|
||||
'Australia/Broken_Hill' => 'بروکنهیل',
|
||||
'Australia/Brisbane' => 'بریسبین',
|
||||
'Australia/Perth' => 'پرت',
|
||||
'Australia/Darwin' => 'داروین',
|
||||
'Australia/Sydney' => 'سیدنی',
|
||||
'Australia/Currie' => 'کوری',
|
||||
'Australia/Lord_Howe' => 'لردهاو',
|
||||
'Australia/Lindeman' => 'لیندمن',
|
||||
'Australia/Melbourne' => 'ملبورن',
|
||||
'Australia/Hobart' => 'هوبارت',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Athens' => 'آتن',
|
||||
'Europe/Astrakhan' => 'آستراخان',
|
||||
'Europe/Amsterdam' => 'آمستردام',
|
||||
'Europe/Andorra' => 'آندورا',
|
||||
'Europe/Istanbul' => 'استانبول',
|
||||
'Europe/Stockholm' => 'استکهلم',
|
||||
'Europe/Skopje' => 'اسکوپیه',
|
||||
'Europe/Oslo' => 'اسلو',
|
||||
'Europe/Uzhgorod' => 'اوژگورود',
|
||||
'Europe/Ulyanovsk' => 'اولیانوفسک',
|
||||
'Europe/Busingen' => 'بازنگن',
|
||||
'Europe/Bucharest' => 'بخارست',
|
||||
'Europe/Bratislava' => 'براتیسلاوا',
|
||||
'Europe/Berlin' => 'برلین',
|
||||
'Europe/Brussels' => 'بروکسل',
|
||||
'Europe/Belgrade' => 'بلگراد',
|
||||
'Europe/Budapest' => 'بوداپست',
|
||||
'Europe/Podgorica' => 'پادگاریتسا',
|
||||
'Europe/Paris' => 'پاریس',
|
||||
'Europe/Prague' => 'پراگ',
|
||||
'Europe/Tallinn' => 'تالین',
|
||||
'Europe/Tirane' => 'تیرانا',
|
||||
'Europe/Gibraltar' => 'جبلالطارق',
|
||||
'Europe/Jersey' => 'جرزی',
|
||||
'Europe/Isle_of_Man' => 'جزیرهٔ من',
|
||||
'Europe/Dublin' => 'دوبلین',
|
||||
'Europe/Rome' => 'رم',
|
||||
'Europe/Riga' => 'ریگا',
|
||||
'Europe/Zaporozhye' => 'زاپوروژیا',
|
||||
'Europe/Zagreb' => 'زاگرب',
|
||||
'Europe/Zurich' => 'زوریخ',
|
||||
'Europe/Saratov' => 'ساراتوف',
|
||||
'Europe/Sarajevo' => 'سارایوو',
|
||||
'Europe/Samara' => 'سامارا',
|
||||
'Europe/San_Marino' => 'سانمارینو',
|
||||
'Europe/Simferopol' => 'سیمفروپل',
|
||||
'Europe/Sofia' => 'صوفیه',
|
||||
'Europe/Vaduz' => 'فادوتس',
|
||||
'Europe/Kaliningrad' => 'کالینینگراد',
|
||||
'Europe/Copenhagen' => 'کپنهاگ',
|
||||
'Europe/Kirov' => 'کیروف',
|
||||
'Europe/Chisinau' => 'کیشیناو',
|
||||
'Europe/Kiev' => 'کیف',
|
||||
'Europe/Guernsey' => 'گرنزی',
|
||||
'Europe/London' => 'لندن',
|
||||
'Europe/Luxembourg' => 'لوکزامبورگ',
|
||||
'Europe/Lisbon' => 'لیسبون',
|
||||
'Europe/Ljubljana' => 'لیوبلیانا',
|
||||
'Europe/Madrid' => 'مادرید',
|
||||
'Europe/Mariehamn' => 'ماریههامن',
|
||||
'Europe/Malta' => 'مالت',
|
||||
'Europe/Moscow' => 'مسکو',
|
||||
'Europe/Monaco' => 'موناکو',
|
||||
'Europe/Minsk' => 'مینسک',
|
||||
'Europe/Vatican' => 'واتیکان',
|
||||
'Europe/Warsaw' => 'ورشو',
|
||||
'Europe/Volgograd' => 'ولگاگراد',
|
||||
'Europe/Vilnius' => 'ویلنیوس',
|
||||
'Europe/Vienna' => 'وین',
|
||||
'Europe/Helsinki' => 'هلسینکی',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'آنتاناناریوو',
|
||||
'Indian/Reunion' => 'رئونیون',
|
||||
'Indian/Chagos' => 'شاگوس',
|
||||
'Indian/Kerguelen' => 'کرگولن',
|
||||
'Indian/Christmas' => 'کریسمس',
|
||||
'Indian/Cocos' => 'کوکوس',
|
||||
'Indian/Comoro' => 'کومورو',
|
||||
'Indian/Maldives' => 'مالدیو',
|
||||
'Indian/Mahe' => 'ماهه',
|
||||
'Indian/Mayotte' => 'مایوت',
|
||||
'Indian/Mauritius' => 'موریس',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'آپیا',
|
||||
'Pacific/Efate' => 'افاته',
|
||||
'Pacific/Enderbury' => 'اندربری',
|
||||
'Pacific/Auckland' => 'اوکلند',
|
||||
'Pacific/Easter' => 'ایستر',
|
||||
'Pacific/Bougainville' => 'بوگنویل',
|
||||
'Pacific/Pago_Pago' => 'پاگوپاگو',
|
||||
'Pacific/Palau' => 'پالائو',
|
||||
'Pacific/Pohnpei' => 'پانپی',
|
||||
'Pacific/Port_Moresby' => 'پورتمورزبی',
|
||||
'Pacific/Pitcairn' => 'پیتکرن',
|
||||
'Pacific/Tarawa' => 'تاراوا',
|
||||
'Pacific/Tahiti' => 'تاهیتی',
|
||||
'Pacific/Tongatapu' => 'تونگاتاپو',
|
||||
'Pacific/Honolulu' => 'جانستون',
|
||||
'Pacific/Chatham' => 'چتم',
|
||||
'Pacific/Chuuk' => 'چوک',
|
||||
'Pacific/Rarotonga' => 'راروتونگا',
|
||||
'Pacific/Saipan' => 'سایپان',
|
||||
'Pacific/Fakaofo' => 'فاکائوفو',
|
||||
'Pacific/Funafuti' => 'فونافوتی',
|
||||
'Pacific/Fiji' => 'فیجی',
|
||||
'Pacific/Kiritimati' => 'کریتیماتی',
|
||||
'Pacific/Kwajalein' => 'کواجیلین',
|
||||
'Pacific/Kosrae' => 'کوسرای',
|
||||
'Pacific/Galapagos' => 'گالاپاگوس',
|
||||
'Pacific/Gambier' => 'گامبیر',
|
||||
'Pacific/Guadalcanal' => 'گوادالکانال',
|
||||
'Pacific/Guam' => 'گوام',
|
||||
'Pacific/Majuro' => 'ماجورو',
|
||||
'Pacific/Marquesas' => 'مارکوزه',
|
||||
'Pacific/Midway' => 'میدوی',
|
||||
'Pacific/Nauru' => 'نائورو',
|
||||
'Pacific/Norfolk' => 'نورفولک',
|
||||
'Pacific/Noumea' => 'نومئا',
|
||||
'Pacific/Niue' => 'نیوئه',
|
||||
'Pacific/Wallis' => 'والیس',
|
||||
'Pacific/Wake' => 'ویک',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afghanistan',
|
||||
'ZA' => 'Afrique du Sud',
|
||||
'AL' => 'Albanie',
|
||||
'DZ' => 'Algérie',
|
||||
'DE' => 'Allemagne',
|
||||
'AD' => 'Andorre',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antarctique',
|
||||
'AG' => 'Antigua-et-Barbuda',
|
||||
'SA' => 'Arabie saoudite',
|
||||
'AR' => 'Argentine',
|
||||
'AM' => 'Arménie',
|
||||
'AW' => 'Aruba',
|
||||
'AU' => 'Australie',
|
||||
'AT' => 'Autriche',
|
||||
'AZ' => 'Azerbaïdjan',
|
||||
'BS' => 'Bahamas',
|
||||
'BH' => 'Bahreïn',
|
||||
'BD' => 'Bangladesh',
|
||||
'BB' => 'Barbade',
|
||||
'BE' => 'Belgique',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Bénin',
|
||||
'BM' => 'Bermudes',
|
||||
'BT' => 'Bhoutan',
|
||||
'BY' => 'Biélorussie',
|
||||
'BO' => 'Bolivie',
|
||||
'BA' => 'Bosnie-Herzégovine',
|
||||
'BW' => 'Botswana',
|
||||
'BR' => 'Brésil',
|
||||
'BN' => 'Brunéi Darussalam',
|
||||
'BG' => 'Bulgarie',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'KH' => 'Cambodge',
|
||||
'CM' => 'Cameroun',
|
||||
'CA' => 'Canada',
|
||||
'CV' => 'Cap-Vert',
|
||||
'EA' => 'Ceuta et Melilla',
|
||||
'CL' => 'Chili',
|
||||
'CN' => 'Chine',
|
||||
'CY' => 'Chypre',
|
||||
'CO' => 'Colombie',
|
||||
'KM' => 'Comores',
|
||||
'CD' => 'Congo (RDC)',
|
||||
'KP' => 'Corée du Nord',
|
||||
'KR' => 'Corée du Sud',
|
||||
'CR' => 'Costa Rica',
|
||||
'CI' => 'Côte d’Ivoire',
|
||||
'HR' => 'Croatie',
|
||||
'CU' => 'Cuba',
|
||||
'CW' => 'Curaçao',
|
||||
'DK' => 'Danemark',
|
||||
'DG' => 'Diego Garcia',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominique',
|
||||
'EG' => 'Égypte',
|
||||
'AE' => 'Émirats arabes unis',
|
||||
'EC' => 'Équateur',
|
||||
'ER' => 'Érythrée',
|
||||
'ES' => 'Espagne',
|
||||
'EE' => 'Estonie',
|
||||
'SZ' => 'Eswatini',
|
||||
'VA' => 'État de la Cité du Vatican',
|
||||
'FM' => 'États fédérés de Micronésie',
|
||||
'US' => 'États-Unis',
|
||||
'ET' => 'Éthiopie',
|
||||
'FJ' => 'Fidji',
|
||||
'FI' => 'Finlande',
|
||||
'FR' => 'France',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambie',
|
||||
'GE' => 'Géorgie',
|
||||
'GS' => 'Géorgie du Sud et îles Sandwich du Sud',
|
||||
'GH' => 'Ghana',
|
||||
'GI' => 'Gibraltar',
|
||||
'GR' => 'Grèce',
|
||||
'GD' => 'Grenade',
|
||||
'GL' => 'Groenland',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernesey',
|
||||
'GN' => 'Guinée',
|
||||
'GQ' => 'Guinée équatoriale',
|
||||
'GW' => 'Guinée-Bissau',
|
||||
'GY' => 'Guyana',
|
||||
'GF' => 'Guyane française',
|
||||
'HT' => 'Haïti',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'HU' => 'Hongrie',
|
||||
'BV' => 'Île Bouvet',
|
||||
'CX' => 'Île Christmas',
|
||||
'CP' => 'Île Clipperton',
|
||||
'AC' => 'Île de l’Ascension',
|
||||
'IM' => 'Île de Man',
|
||||
'NF' => 'Île Norfolk',
|
||||
'AX' => 'Îles Åland',
|
||||
'KY' => 'Îles Caïmans',
|
||||
'IC' => 'Îles Canaries',
|
||||
'CC' => 'Îles Cocos',
|
||||
'CK' => 'Îles Cook',
|
||||
'FK' => 'Îles Falkland',
|
||||
'FO' => 'Îles Féroé',
|
||||
'HM' => 'Îles Heard et McDonald',
|
||||
'MP' => 'Îles Mariannes du Nord',
|
||||
'MH' => 'Îles Marshall',
|
||||
'UM' => 'Îles mineures éloignées des États-Unis',
|
||||
'PN' => 'Îles Pitcairn',
|
||||
'SB' => 'Îles Salomon',
|
||||
'TC' => 'Îles Turques-et-Caïques',
|
||||
'VG' => 'Îles Vierges britanniques',
|
||||
'VI' => 'Îles Vierges des États-Unis',
|
||||
'IN' => 'Inde',
|
||||
'ID' => 'Indonésie',
|
||||
'IQ' => 'Irak',
|
||||
'IR' => 'Iran',
|
||||
'IE' => 'Irlande',
|
||||
'IS' => 'Islande',
|
||||
'IL' => 'Israël',
|
||||
'IT' => 'Italie',
|
||||
'JM' => 'Jamaïque',
|
||||
'JP' => 'Japon',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordanie',
|
||||
'KZ' => 'Kazakhstan',
|
||||
'KE' => 'Kenya',
|
||||
'KG' => 'Kirghizistan',
|
||||
'KI' => 'Kiribati',
|
||||
'XK' => 'Kosovo',
|
||||
'KW' => 'Koweït',
|
||||
'RE' => 'La Réunion',
|
||||
'LA' => 'Laos',
|
||||
'LS' => 'Lesotho',
|
||||
'LV' => 'Lettonie',
|
||||
'LB' => 'Liban',
|
||||
'LR' => 'Libéria',
|
||||
'LY' => 'Libye',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Lituanie',
|
||||
'LU' => 'Luxembourg',
|
||||
'MO' => 'Macao',
|
||||
'MK' => 'Macédoine du Nord',
|
||||
'MG' => 'Madagascar',
|
||||
'MY' => 'Malaisie',
|
||||
'MW' => 'Malawi',
|
||||
'MV' => 'Maldives',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malte',
|
||||
'MA' => 'Maroc',
|
||||
'MQ' => 'Martinique',
|
||||
'MU' => 'Maurice',
|
||||
'MR' => 'Mauritanie',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Mexique',
|
||||
'MD' => 'Moldavie',
|
||||
'MC' => 'Monaco',
|
||||
'MN' => 'Mongolie',
|
||||
'ME' => 'Monténégro',
|
||||
'MS' => 'Montserrat',
|
||||
'MZ' => 'Mozambique',
|
||||
'MM' => 'Myanmar (Birmanie)',
|
||||
'NA' => 'Namibie',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Népal',
|
||||
'NI' => 'Nicaragua',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigéria',
|
||||
'NU' => 'Niue',
|
||||
'NO' => 'Norvège',
|
||||
'NC' => 'Nouvelle-Calédonie',
|
||||
'NZ' => 'Nouvelle-Zélande',
|
||||
'OM' => 'Oman',
|
||||
'UG' => 'Ouganda',
|
||||
'UZ' => 'Ouzbékistan',
|
||||
'PK' => 'Pakistan',
|
||||
'PW' => 'Palaos',
|
||||
'PS' => 'Palestine',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Papouasie-Nouvelle-Guinée',
|
||||
'PY' => 'Paraguay',
|
||||
'NL' => 'Pays-Bas',
|
||||
'BQ' => 'Pays-Bas caribéens',
|
||||
'PE' => 'Pérou',
|
||||
'PH' => 'Philippines',
|
||||
'PL' => 'Pologne',
|
||||
'PF' => 'Polynésie française',
|
||||
'PR' => 'Porto Rico',
|
||||
'PT' => 'Portugal',
|
||||
'QA' => 'Qatar',
|
||||
'CF' => 'République centrafricaine',
|
||||
'DO' => 'République dominicaine',
|
||||
'CG' => 'République du Congo',
|
||||
'RO' => 'Roumanie',
|
||||
'GB' => 'Royaume-Uni',
|
||||
'RU' => 'Russie',
|
||||
'RW' => 'Rwanda',
|
||||
'EH' => 'Sahara occidental',
|
||||
'BL' => 'Saint-Barthélemy',
|
||||
'KN' => 'Saint-Christophe-et-Niévès',
|
||||
'SM' => 'Saint-Marin',
|
||||
'MF' => 'Saint-Martin',
|
||||
'SX' => 'Saint-Martin (partie néerlandaise)',
|
||||
'PM' => 'Saint-Pierre-et-Miquelon',
|
||||
'VC' => 'Saint-Vincent-et-les-Grenadines',
|
||||
'SH' => 'Sainte-Hélène',
|
||||
'LC' => 'Sainte-Lucie',
|
||||
'SV' => 'Salvador',
|
||||
'WS' => 'Samoa',
|
||||
'AS' => 'Samoa américaines',
|
||||
'ST' => 'Sao Tomé-et-Principe',
|
||||
'SN' => 'Sénégal',
|
||||
'RS' => 'Serbie',
|
||||
'SC' => 'Seychelles',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SG' => 'Singapour',
|
||||
'SK' => 'Slovaquie',
|
||||
'SI' => 'Slovénie',
|
||||
'SO' => 'Somalie',
|
||||
'SD' => 'Soudan',
|
||||
'SS' => 'Soudan du Sud',
|
||||
'LK' => 'Sri Lanka',
|
||||
'SE' => 'Suède',
|
||||
'CH' => 'Suisse',
|
||||
'SR' => 'Suriname',
|
||||
'SJ' => 'Svalbard et Jan Mayen',
|
||||
'SY' => 'Syrie',
|
||||
'TJ' => 'Tadjikistan',
|
||||
'TW' => 'Taïwan',
|
||||
'TZ' => 'Tanzanie',
|
||||
'TD' => 'Tchad',
|
||||
'CZ' => 'Tchéquie',
|
||||
'TF' => 'Terres australes françaises',
|
||||
'IO' => 'Territoire britannique de l’océan Indien',
|
||||
'TH' => 'Thaïlande',
|
||||
'TL' => 'Timor oriental',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinité-et-Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TN' => 'Tunisie',
|
||||
'TM' => 'Turkménistan',
|
||||
'TR' => 'Turquie',
|
||||
'TV' => 'Tuvalu',
|
||||
'UA' => 'Ukraine',
|
||||
'UY' => 'Uruguay',
|
||||
'VU' => 'Vanuatu',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'WF' => 'Wallis-et-Futuna',
|
||||
'YE' => 'Yémen',
|
||||
'ZM' => 'Zambie',
|
||||
'ZW' => 'Zimbabwe',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Afrique',
|
||||
'America' => 'Amériques',
|
||||
'Antarctica' => 'Antartique',
|
||||
'Arctic' => 'Arctique',
|
||||
'Asia' => 'Asie',
|
||||
'Atlantic' => 'Atlantique',
|
||||
'Australia' => 'Australie',
|
||||
'Europe' => 'Europe',
|
||||
'Indian' => 'Océan Indien',
|
||||
'Pacific' => 'Océan Pacifique',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addis-Abeba',
|
||||
'Africa/Algiers' => 'Alger',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es Salaam',
|
||||
'Africa/Djibouti' => 'Djibouti',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Khartoum',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/El_Aaiun' => 'Laâyoune',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Cairo' => 'Le Caire',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lomé',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadiscio',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Ndjamena' => 'N’Djamena',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto-Novo',
|
||||
'Africa/Sao_Tome' => 'São Tomé',
|
||||
'Africa/Tripoli' => 'Tripoli (Libye)',
|
||||
'Africa/Tunis' => 'Tunis',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguilla',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaína',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asunción',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahia de Banderas',
|
||||
'America/Belem' => 'Belém',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah (Dakota du Nord)',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogota',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cayman' => 'Caïmans',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancún',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayenne',
|
||||
'America/North_Dakota/Center' => 'Center (Dakota du Nord)',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Argentina/Cordoba' => 'Córdoba',
|
||||
'America/Costa_Rica' => 'Costa Rica',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiabá',
|
||||
'America/Curacao' => 'Curaçao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Détroit',
|
||||
'America/Dominica' => 'Dominique',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepé',
|
||||
'America/El_Salvador' => 'El Salvador',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenade',
|
||||
'America/Guadeloupe' => 'Guadeloupe',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamaïque',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Indiana/Knox' => 'Knox [Indiana]',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/Barbados' => 'La Barbade',
|
||||
'America/Havana' => 'La Havane',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceió',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaos',
|
||||
'America/Indiana/Marengo' => 'Marengo [Indiana]',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinique',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlán',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Mérida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Mexico_City' => 'Mexico',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello [Kentucky]',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem (Dakota du Nord)',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panama',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg [Indiana]',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Port_of_Spain' => 'Port-d’Espagne',
|
||||
'America/Puerto_Rico' => 'Porto Rico',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Rio Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Río Gallegos',
|
||||
'America/St_Barthelemy' => 'Saint-Barthélemy',
|
||||
'America/St_Kitts' => 'Saint-Christophe',
|
||||
'America/Santo_Domingo' => 'Saint-Domingue',
|
||||
'America/St_Johns' => 'Saint-Jean de Terre-Neuve',
|
||||
'America/St_Thomas' => 'Saint-Thomas',
|
||||
'America/St_Vincent' => 'Saint-Vincent',
|
||||
'America/St_Lucia' => 'Sainte-Lucie',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Santarem' => 'Santarém',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Sao_Paulo' => 'São Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tégucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City [Indiana]',
|
||||
'America/Thule' => 'Thulé',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucumán',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaïa',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay [Indiana]',
|
||||
'America/Indiana/Vincennes' => 'Vincennes [Indiana]',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac [Indiana]',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Showa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Ashgabat' => 'Achgabat',
|
||||
'Asia/Aden' => 'Aden',
|
||||
'Asia/Aqtau' => 'Aktaou',
|
||||
'Asia/Aqtobe' => 'Aktioubinsk',
|
||||
'Asia/Almaty' => 'Alma Ata',
|
||||
'Asia/Amman' => 'Amman',
|
||||
'Asia/Anadyr' => 'Anadyr',
|
||||
'Asia/Atyrau' => 'Atyraou',
|
||||
'Asia/Baghdad' => 'Bagdad',
|
||||
'Asia/Bahrain' => 'Bahreïn',
|
||||
'Asia/Baku' => 'Bakou',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Beyrouth',
|
||||
'Asia/Bishkek' => 'Bichkek',
|
||||
'Asia/Brunei' => 'Brunei',
|
||||
'Asia/Kolkata' => 'Calcutta',
|
||||
'Asia/Colombo' => 'Colombo',
|
||||
'Asia/Damascus' => 'Damas',
|
||||
'Asia/Dhaka' => 'Dhaka',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dushanbe' => 'Douchanbé',
|
||||
'Asia/Dubai' => 'Dubaï',
|
||||
'Asia/Yekaterinburg' => 'Ekaterinbourg',
|
||||
'Asia/Yerevan' => 'Erevan',
|
||||
'Asia/Famagusta' => 'Famagouste',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Hebron' => 'Hébron',
|
||||
'Asia/Ho_Chi_Minh' => 'Hô-Chi-Minh-Ville',
|
||||
'Asia/Hong_Kong' => 'Hong Kong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Yakutsk' => 'Iakoutsk',
|
||||
'Asia/Irkutsk' => 'Irkoutsk',
|
||||
'Asia/Jakarta' => 'Jakarta',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Jerusalem' => 'Jérusalem',
|
||||
'Asia/Kabul' => 'Kaboul',
|
||||
'Asia/Kamchatka' => 'Kamtchatka',
|
||||
'Asia/Karachi' => 'Karachi',
|
||||
'Asia/Kathmandu' => 'Katmandou',
|
||||
'Asia/Khandyga' => 'Khandyga',
|
||||
'Asia/Qostanay' => 'Kostanaï',
|
||||
'Asia/Kuwait' => 'Koweït',
|
||||
'Asia/Krasnoyarsk' => 'Krasnoïarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kuching',
|
||||
'Asia/Qyzylorda' => 'Kzyl Orda',
|
||||
'Asia/Macau' => 'Macao',
|
||||
'Asia/Makassar' => 'Macassar',
|
||||
'Asia/Magadan' => 'Magadan',
|
||||
'Asia/Manila' => 'Manille',
|
||||
'Asia/Muscat' => 'Mascate',
|
||||
'Asia/Nicosia' => 'Nicosie',
|
||||
'Asia/Novokuznetsk' => 'Novokuznetsk',
|
||||
'Asia/Novosibirsk' => 'Novossibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Ulaanbaatar' => 'Oulan-Bator',
|
||||
'Asia/Oral' => 'Ouralsk',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Pyongyang' => 'Pyongyang',
|
||||
'Asia/Qatar' => 'Qatar',
|
||||
'Asia/Yangon' => 'Rangoun',
|
||||
'Asia/Riyadh' => 'Riyad',
|
||||
'Asia/Sakhalin' => 'Sakhaline',
|
||||
'Asia/Samarkand' => 'Samarcande',
|
||||
'Asia/Seoul' => 'Séoul',
|
||||
'Asia/Shanghai' => 'Shanghai',
|
||||
'Asia/Singapore' => 'Singapour',
|
||||
'Asia/Srednekolymsk' => 'Srednekolymsk',
|
||||
'Asia/Tashkent' => 'Tachkent',
|
||||
'Asia/Taipei' => 'Taipei',
|
||||
'Asia/Tbilisi' => 'Tbilissi',
|
||||
'Asia/Chita' => 'Tchita',
|
||||
'Asia/Choibalsan' => 'Tchoïbalsan',
|
||||
'Asia/Tehran' => 'Téhéran',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tokyo' => 'Tokyo',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Urumqi' => 'Ürümqi',
|
||||
'Asia/Ust-Nera' => 'Ust-Nera',
|
||||
'Asia/Vientiane' => 'Vientiane',
|
||||
'Asia/Vladivostok' => 'Vladivostok',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Açores',
|
||||
'Atlantic/Bermuda' => 'Bermudes',
|
||||
'Atlantic/Cape_Verde' => 'Cap-Vert',
|
||||
'Atlantic/Faroe' => 'Féroé',
|
||||
'Atlantic/South_Georgia' => 'Géorgie du Sud',
|
||||
'Atlantic/Canary' => 'Îles Canaries',
|
||||
'Atlantic/Madeira' => 'Madère',
|
||||
'Atlantic/Reykjavik' => 'Reykjavik',
|
||||
'Atlantic/St_Helena' => 'Sainte-Hélène',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adélaïde',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sydney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amsterdam',
|
||||
'Europe/Andorra' => 'Andorre',
|
||||
'Europe/Astrakhan' => 'Astrakhan',
|
||||
'Europe/Athens' => 'Athènes',
|
||||
'Europe/Belgrade' => 'Belgrade',
|
||||
'Europe/Berlin' => 'Berlin',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Bruxelles',
|
||||
'Europe/Bucharest' => 'Bucarest',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Busingen' => 'Büsingen',
|
||||
'Europe/Chisinau' => 'Chisinau',
|
||||
'Europe/Copenhagen' => 'Copenhague',
|
||||
'Europe/Dublin' => 'Dublin',
|
||||
'Europe/Gibraltar' => 'Gibraltar',
|
||||
'Europe/Guernsey' => 'Guernesey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Isle_of_Man' => 'Île de Man',
|
||||
'Europe/Istanbul' => 'Istanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kaliningrad',
|
||||
'Europe/Kiev' => 'Kiev',
|
||||
'Europe/Kirov' => 'Kirov',
|
||||
'Europe/Vatican' => 'Le Vatican',
|
||||
'Europe/Lisbon' => 'Lisbonne',
|
||||
'Europe/Ljubljana' => 'Ljubljana',
|
||||
'Europe/London' => 'Londres',
|
||||
'Europe/Luxembourg' => 'Luxembourg',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malte',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Monaco',
|
||||
'Europe/Moscow' => 'Moscou',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Uzhgorod' => 'Oujgorod',
|
||||
'Europe/Ulyanovsk' => 'Oulianovsk',
|
||||
'Europe/Paris' => 'Paris',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Prague',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Rome',
|
||||
'Europe/San_Marino' => 'Saint-Marin',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Saratov',
|
||||
'Europe/Simferopol' => 'Simferopol',
|
||||
'Europe/Skopje' => 'Skopje',
|
||||
'Europe/Sofia' => 'Sofia',
|
||||
'Europe/Stockholm' => 'Stockholm',
|
||||
'Europe/Tallinn' => 'Tallinn',
|
||||
'Europe/Tirane' => 'Tirana',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Warsaw' => 'Varsovie',
|
||||
'Europe/Vienna' => 'Vienne',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Volgograd' => 'Volgograd',
|
||||
'Europe/Zagreb' => 'Zagreb',
|
||||
'Europe/Zaporozhye' => 'Zaporojie',
|
||||
'Europe/Zurich' => 'Zurich',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Christmas' => 'Christmas',
|
||||
'Indian/Cocos' => 'Cocos',
|
||||
'Indian/Comoro' => 'Comores',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Reunion' => 'La Réunion',
|
||||
'Indian/Mahe' => 'Mahé',
|
||||
'Indian/Maldives' => 'Maldives',
|
||||
'Indian/Mauritius' => 'Maurice',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Efate' => 'Éfaté',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fidji',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galápagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Easter' => 'Île de Pâques',
|
||||
'Pacific/Honolulu' => 'Johnston',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marquises',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Nouméa',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Pitcairn' => 'Pitcairn',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afganisztán',
|
||||
'AX' => 'Åland-szigetek',
|
||||
'AL' => 'Albánia',
|
||||
'DZ' => 'Algéria',
|
||||
'AS' => 'Amerikai Szamoa',
|
||||
'VI' => 'Amerikai Virgin-szigetek',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antarktisz',
|
||||
'AG' => 'Antigua és Barbuda',
|
||||
'AR' => 'Argentína',
|
||||
'AW' => 'Aruba',
|
||||
'AC' => 'Ascension-sziget',
|
||||
'AU' => 'Ausztrália',
|
||||
'AT' => 'Ausztria',
|
||||
'UM' => 'Az USA lakatlan külbirtokai',
|
||||
'AZ' => 'Azerbajdzsán',
|
||||
'BS' => 'Bahama-szigetek',
|
||||
'BH' => 'Bahrein',
|
||||
'BD' => 'Banglades',
|
||||
'BB' => 'Barbados',
|
||||
'BY' => 'Belarusz',
|
||||
'BE' => 'Belgium',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BT' => 'Bhután',
|
||||
'GW' => 'Bissau-Guinea',
|
||||
'BO' => 'Bolívia',
|
||||
'BA' => 'Bosznia-Hercegovina',
|
||||
'BW' => 'Botswana',
|
||||
'BV' => 'Bouvet-sziget',
|
||||
'BR' => 'Brazília',
|
||||
'IO' => 'Brit Indiai-óceáni Terület',
|
||||
'VG' => 'Brit Virgin-szigetek',
|
||||
'BN' => 'Brunei',
|
||||
'BG' => 'Bulgária',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'EA' => 'Ceuta és Melilla',
|
||||
'CL' => 'Chile',
|
||||
'CY' => 'Ciprus',
|
||||
'CP' => 'Clipperton-sziget',
|
||||
'KM' => 'Comore-szigetek',
|
||||
'CK' => 'Cook-szigetek',
|
||||
'CR' => 'Costa Rica',
|
||||
'CW' => 'Curaçao',
|
||||
'TD' => 'Csád',
|
||||
'CZ' => 'Csehország',
|
||||
'DK' => 'Dánia',
|
||||
'ZA' => 'Dél-afrikai Köztársaság',
|
||||
'KR' => 'Dél-Korea',
|
||||
'SS' => 'Dél-Szudán',
|
||||
'GS' => 'Déli-Georgia és Déli-Sandwich-szigetek',
|
||||
'DG' => 'Diego Garcia',
|
||||
'DM' => 'Dominika',
|
||||
'DO' => 'Dominikai Köztársaság',
|
||||
'DJ' => 'Dzsibuti',
|
||||
'EC' => 'Ecuador',
|
||||
'GQ' => 'Egyenlítői-Guinea',
|
||||
'US' => 'Egyesült Államok',
|
||||
'AE' => 'Egyesült Arab Emírségek',
|
||||
'GB' => 'Egyesült Királyság',
|
||||
'EG' => 'Egyiptom',
|
||||
'CI' => 'Elefántcsontpart',
|
||||
'ER' => 'Eritrea',
|
||||
'KP' => 'Észak-Korea',
|
||||
'MK' => 'Észak-Macedónia',
|
||||
'MP' => 'Északi Mariana-szigetek',
|
||||
'EE' => 'Észtország',
|
||||
'ET' => 'Etiópia',
|
||||
'FK' => 'Falkland-szigetek (Malvin-szigetek)',
|
||||
'FO' => 'Feröer szigetek',
|
||||
'FJ' => 'Fidzsi',
|
||||
'FI' => 'Finnország',
|
||||
'TF' => 'Francia Déli Területek',
|
||||
'GF' => 'Francia Guyana',
|
||||
'PF' => 'Francia Polinézia',
|
||||
'FR' => 'Franciaország',
|
||||
'PH' => 'Fülöp-szigetek',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambia',
|
||||
'GH' => 'Ghána',
|
||||
'GI' => 'Gibraltár',
|
||||
'GR' => 'Görögország',
|
||||
'GD' => 'Grenada',
|
||||
'GL' => 'Grönland',
|
||||
'GE' => 'Grúzia',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GY' => 'Guyana',
|
||||
'HT' => 'Haiti',
|
||||
'HM' => 'Heard-sziget és McDonald-szigetek',
|
||||
'BQ' => 'Holland Karib-térség',
|
||||
'NL' => 'Hollandia',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hongkong',
|
||||
'HR' => 'Horvátország',
|
||||
'IN' => 'India',
|
||||
'ID' => 'Indonézia',
|
||||
'IQ' => 'Irak',
|
||||
'IR' => 'Irán',
|
||||
'IE' => 'Írország',
|
||||
'IS' => 'Izland',
|
||||
'IL' => 'Izrael',
|
||||
'JM' => 'Jamaica',
|
||||
'JP' => 'Japán',
|
||||
'YE' => 'Jemen',
|
||||
'JE' => 'Jersey',
|
||||
'JO' => 'Jordánia',
|
||||
'KY' => 'Kajmán-szigetek',
|
||||
'KH' => 'Kambodzsa',
|
||||
'CM' => 'Kamerun',
|
||||
'CA' => 'Kanada',
|
||||
'IC' => 'Kanári-szigetek',
|
||||
'CX' => 'Karácsony-sziget',
|
||||
'QA' => 'Katar',
|
||||
'KZ' => 'Kazahsztán',
|
||||
'TL' => 'Kelet-Timor',
|
||||
'KE' => 'Kenya',
|
||||
'CN' => 'Kína',
|
||||
'KG' => 'Kirgizisztán',
|
||||
'KI' => 'Kiribati',
|
||||
'CC' => 'Kókusz (Keeling)-szigetek',
|
||||
'CO' => 'Kolumbia',
|
||||
'CD' => 'Kongó (KDK)',
|
||||
'CG' => 'Kongó (Köztársaság)',
|
||||
'XK' => 'Koszovó',
|
||||
'CF' => 'Közép-afrikai Köztársaság',
|
||||
'CU' => 'Kuba',
|
||||
'KW' => 'Kuvait',
|
||||
'LA' => 'Laosz',
|
||||
'PL' => 'Lengyelország',
|
||||
'LS' => 'Lesotho',
|
||||
'LV' => 'Lettország',
|
||||
'LB' => 'Libanon',
|
||||
'LR' => 'Libéria',
|
||||
'LY' => 'Líbia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Litvánia',
|
||||
'LU' => 'Luxemburg',
|
||||
'MG' => 'Madagaszkár',
|
||||
'HU' => 'Magyarország',
|
||||
'MO' => 'Makaó',
|
||||
'MY' => 'Malajzia',
|
||||
'MW' => 'Malawi',
|
||||
'MV' => 'Maldív-szigetek',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Málta',
|
||||
'IM' => 'Man-sziget',
|
||||
'MA' => 'Marokkó',
|
||||
'MH' => 'Marshall-szigetek',
|
||||
'MQ' => 'Martinique',
|
||||
'MR' => 'Mauritánia',
|
||||
'MU' => 'Mauritius',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Mexikó',
|
||||
'MM' => 'Mianmar',
|
||||
'FM' => 'Mikronézia',
|
||||
'MD' => 'Moldova',
|
||||
'MC' => 'Monaco',
|
||||
'MN' => 'Mongólia',
|
||||
'ME' => 'Montenegró',
|
||||
'MS' => 'Montserrat',
|
||||
'MZ' => 'Mozambik',
|
||||
'NA' => 'Namíbia',
|
||||
'NR' => 'Nauru',
|
||||
'DE' => 'Németország',
|
||||
'NP' => 'Nepál',
|
||||
'NI' => 'Nicaragua',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigéria',
|
||||
'NU' => 'Niue',
|
||||
'NF' => 'Norfolk-sziget',
|
||||
'NO' => 'Norvégia',
|
||||
'EH' => 'Nyugat-Szahara',
|
||||
'IT' => 'Olaszország',
|
||||
'OM' => 'Omán',
|
||||
'RU' => 'Oroszország',
|
||||
'AM' => 'Örményország',
|
||||
'PK' => 'Pakisztán',
|
||||
'PW' => 'Palau',
|
||||
'PS' => 'Palesztina',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Pápua Új-Guinea',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Peru',
|
||||
'PN' => 'Pitcairn-szigetek',
|
||||
'PT' => 'Portugália',
|
||||
'PR' => 'Puerto Rico',
|
||||
'RE' => 'Réunion',
|
||||
'RO' => 'Románia',
|
||||
'RW' => 'Ruanda',
|
||||
'KN' => 'Saint Kitts és Nevis',
|
||||
'LC' => 'Saint Lucia',
|
||||
'MF' => 'Saint Martin',
|
||||
'VC' => 'Saint Vincent és a Grenadine-szigetek',
|
||||
'BL' => 'Saint-Barthélemy',
|
||||
'PM' => 'Saint-Pierre és Miquelon',
|
||||
'SB' => 'Salamon-szigetek',
|
||||
'SV' => 'Salvador',
|
||||
'SM' => 'San Marino',
|
||||
'ST' => 'São Tomé és Príncipe',
|
||||
'SC' => 'Seychelle-szigetek',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SX' => 'Sint Maarten',
|
||||
'ES' => 'Spanyolország',
|
||||
'LK' => 'Srí Lanka',
|
||||
'SR' => 'Suriname',
|
||||
'CH' => 'Svájc',
|
||||
'SJ' => 'Svalbard és Jan Mayen',
|
||||
'SE' => 'Svédország',
|
||||
'WS' => 'Szamoa',
|
||||
'SA' => 'Szaúd-Arábia',
|
||||
'SN' => 'Szenegál',
|
||||
'SH' => 'Szent Ilona',
|
||||
'RS' => 'Szerbia',
|
||||
'SG' => 'Szingapúr',
|
||||
'SY' => 'Szíria',
|
||||
'SK' => 'Szlovákia',
|
||||
'SI' => 'Szlovénia',
|
||||
'SO' => 'Szomália',
|
||||
'SD' => 'Szudán',
|
||||
'SZ' => 'Szváziföld',
|
||||
'TJ' => 'Tádzsikisztán',
|
||||
'TW' => 'Tajvan',
|
||||
'TZ' => 'Tanzánia',
|
||||
'TH' => 'Thaiföld',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TR' => 'Törökország',
|
||||
'TT' => 'Trinidad és Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TN' => 'Tunézia',
|
||||
'TC' => 'Turks- és Caicos-szigetek',
|
||||
'TV' => 'Tuvalu',
|
||||
'TM' => 'Türkmenisztán',
|
||||
'UG' => 'Uganda',
|
||||
'NC' => 'Új-Kaledónia',
|
||||
'NZ' => 'Új-Zéland',
|
||||
'UA' => 'Ukrajna',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Üzbegisztán',
|
||||
'VU' => 'Vanuatu',
|
||||
'VA' => 'Vatikán',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnám',
|
||||
'WF' => 'Wallis és Futuna',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
'CV' => 'Zöld-foki Köztársaság',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Afriks',
|
||||
'America' => 'Amerika',
|
||||
'Antarctica' => 'Antarktisz',
|
||||
'Arctic' => 'Arktisz',
|
||||
'Atlantic' => 'Atlantic',
|
||||
'Australia' => 'Ausztrália',
|
||||
'Asia' => 'Ázsia',
|
||||
'Europe' => 'Európa',
|
||||
'Indian' => 'Indian',
|
||||
'Pacific' => 'Pacific',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addisz-Abeba',
|
||||
'Africa/Algiers' => 'Algír',
|
||||
'Africa/Asmara' => 'Asmera',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es-Salaam',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/Djibouti' => 'Dzsibuti',
|
||||
'Africa/El_Aaiun' => 'El-Ajún',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Cairo' => 'Kairó',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Kartúm',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lome',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabó',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadishu',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Ndjamena' => 'Ndjamena',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto-Novo',
|
||||
'Africa/Sao_Tome' => 'São Tomé',
|
||||
'Africa/Tripoli' => 'Tripoli',
|
||||
'Africa/Tunis' => 'Tunisz',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguilla',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaína',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asunción',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahia Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belém',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, Észak-Dakota',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogotá',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancún',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayenne',
|
||||
'America/North_Dakota/Center' => 'Center, Észak-Dakota',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Argentina/Cordoba' => 'Córdoba',
|
||||
'America/Costa_Rica' => 'Costa Rica',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiabá',
|
||||
'America/Curacao' => 'Curaçao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominika',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepé',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenada',
|
||||
'America/Guadeloupe' => 'Guadeloupe',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Havana' => 'Havanna',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamaica',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Cayman' => 'Kajmán-szigetek',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceió',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaus',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinique',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlán',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Mérida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Mexico_City' => 'Mexikóváros',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, Észak-Dakota',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panama',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port_of_Spain' => 'Port of Spain',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Puerto_Rico' => 'Puerto Rico',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Río Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Río Gallegos',
|
||||
'America/St_Barthelemy' => 'Saint-Barthélemy',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/El_Salvador' => 'Salvador',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Santarem' => 'Santarem',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sao_Paulo' => 'São Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Johns' => 'St. John’s',
|
||||
'America/St_Kitts' => 'St. Kitts',
|
||||
'America/St_Lucia' => 'St. Lucia',
|
||||
'America/St_Thomas' => 'St. Thomas',
|
||||
'America/St_Vincent' => 'St. Vincent',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucumán',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vosztok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Áden',
|
||||
'Asia/Aqtau' => 'Aktau',
|
||||
'Asia/Aqtobe' => 'Aktöbe',
|
||||
'Asia/Almaty' => 'Alma-Ata',
|
||||
'Asia/Amman' => 'Ammán',
|
||||
'Asia/Anadyr' => 'Anadir',
|
||||
'Asia/Ashgabat' => 'Asgabat',
|
||||
'Asia/Atyrau' => 'Atirau',
|
||||
'Asia/Baghdad' => 'Bagdad',
|
||||
'Asia/Bahrain' => 'Bahrein',
|
||||
'Asia/Baku' => 'Baku',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Bejrút',
|
||||
'Asia/Bishkek' => 'Biskek',
|
||||
'Asia/Brunei' => 'Brunei',
|
||||
'Asia/Colombo' => 'Colombo',
|
||||
'Asia/Chita' => 'Csita',
|
||||
'Asia/Choibalsan' => 'Csojbalszan',
|
||||
'Asia/Dhaka' => 'Dakka',
|
||||
'Asia/Damascus' => 'Damaszkusz',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubai',
|
||||
'Asia/Dushanbe' => 'Dushanbe',
|
||||
'Asia/Famagusta' => 'Famagusta',
|
||||
'Asia/Gaza' => 'Gáza',
|
||||
'Asia/Khandyga' => 'Handiga',
|
||||
'Asia/Hebron' => 'Hebron',
|
||||
'Asia/Ho_Chi_Minh' => 'Ho Si Minh-város',
|
||||
'Asia/Hong_Kong' => 'Hongkong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Irkutsk' => 'Irkutszk',
|
||||
'Asia/Jakarta' => 'Jakarta',
|
||||
'Asia/Yakutsk' => 'Jakutszk',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Yekaterinburg' => 'Jekatyerinburg',
|
||||
'Asia/Yerevan' => 'Jereván',
|
||||
'Asia/Jerusalem' => 'Jeruzsálem',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kolkata' => 'Kalkutta',
|
||||
'Asia/Kamchatka' => 'Kamcsatka',
|
||||
'Asia/Karachi' => 'Karacsi',
|
||||
'Asia/Qatar' => 'Katar',
|
||||
'Asia/Kathmandu' => 'Katmandu',
|
||||
'Asia/Qyzylorda' => 'Kizilorda',
|
||||
'Asia/Qostanay' => 'Kosztanaj',
|
||||
'Asia/Krasnoyarsk' => 'Krasznojarszk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kucseng',
|
||||
'Asia/Kuwait' => 'Kuvait',
|
||||
'Asia/Magadan' => 'Magadán',
|
||||
'Asia/Macau' => 'Makaó',
|
||||
'Asia/Makassar' => 'Makasar',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Muscat',
|
||||
'Asia/Nicosia' => 'Nicosia',
|
||||
'Asia/Novokuznetsk' => 'Novokuznyeck',
|
||||
'Asia/Novosibirsk' => 'Novoszibirszk',
|
||||
'Asia/Omsk' => 'Omszk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Pyongyang' => 'Phenjan',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Riyadh' => 'Rijád',
|
||||
'Asia/Shanghai' => 'Sanghaj',
|
||||
'Asia/Sakhalin' => 'Szahalin',
|
||||
'Asia/Samarkand' => 'Szamarkand',
|
||||
'Asia/Singapore' => 'Szingapúr',
|
||||
'Asia/Seoul' => 'Szöul',
|
||||
'Asia/Srednekolymsk' => 'Szrednekolimszk',
|
||||
'Asia/Taipei' => 'Tajpej',
|
||||
'Asia/Tashkent' => 'Taskent',
|
||||
'Asia/Tbilisi' => 'Tbiliszi',
|
||||
'Asia/Tehran' => 'Teherán',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tokyo' => 'Tokió',
|
||||
'Asia/Tomsk' => 'Tomszk',
|
||||
'Asia/Ulaanbaatar' => 'Ulánbátor',
|
||||
'Asia/Ust-Nera' => 'Uszty-Nyera',
|
||||
'Asia/Urumqi' => 'Ürümqi',
|
||||
'Asia/Vientiane' => 'Vientián',
|
||||
'Asia/Vladivostok' => 'Vlagyivosztok',
|
||||
'Asia/Yangon' => 'Yangon',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azori-szigetek',
|
||||
'Atlantic/Bermuda' => 'Bermuda',
|
||||
'Atlantic/South_Georgia' => 'Déli-Georgia',
|
||||
'Atlantic/Faroe' => 'Feröer',
|
||||
'Atlantic/Canary' => 'Kanári-szigetek',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Reykjavík',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
'Atlantic/St_Helena' => 'Szent Ilona',
|
||||
'Atlantic/Cape_Verde' => 'Zöld-foki szigetek',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaide',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sydney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amszterdam',
|
||||
'Europe/Andorra' => 'Andorra',
|
||||
'Europe/Astrakhan' => 'Asztrahán',
|
||||
'Europe/Athens' => 'Athén',
|
||||
'Europe/Vienna' => 'Bécs',
|
||||
'Europe/Belgrade' => 'Belgrád',
|
||||
'Europe/Berlin' => 'Berlin',
|
||||
'Europe/Brussels' => 'Brüsszel',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Bucharest' => 'Bukarest',
|
||||
'Europe/Busingen' => 'Büsingen',
|
||||
'Europe/Chisinau' => 'Chisinau',
|
||||
'Europe/Dublin' => 'Dublin',
|
||||
'Europe/Gibraltar' => 'Gibraltár',
|
||||
'Europe/Guernsey' => 'Guernsey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Istanbul' => 'Isztanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kalinyingrád',
|
||||
'Europe/Kiev' => 'Kijev',
|
||||
'Europe/Kirov' => 'Kirov',
|
||||
'Europe/Copenhagen' => 'Koppenhága',
|
||||
'Europe/Lisbon' => 'Lisszabon',
|
||||
'Europe/Ljubljana' => 'Ljubljana',
|
||||
'Europe/London' => 'London',
|
||||
'Europe/Luxembourg' => 'Luxemburg',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Málta',
|
||||
'Europe/Isle_of_Man' => 'Man-sziget',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minszk',
|
||||
'Europe/Monaco' => 'Monaco',
|
||||
'Europe/Moscow' => 'Moszkva',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Paris' => 'Párizs',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Bratislava' => 'Pozsony',
|
||||
'Europe/Prague' => 'Prága',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Róma',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Skopje' => 'Skopje',
|
||||
'Europe/Stockholm' => 'Stockholm',
|
||||
'Europe/Samara' => 'Szamara',
|
||||
'Europe/Sarajevo' => 'Szarajevó',
|
||||
'Europe/Saratov' => 'Szaratov',
|
||||
'Europe/Simferopol' => 'Szimferopol',
|
||||
'Europe/Sofia' => 'Szófia',
|
||||
'Europe/Tallinn' => 'Tallin',
|
||||
'Europe/Tirane' => 'Tirana',
|
||||
'Europe/Ulyanovsk' => 'Uljanovszk',
|
||||
'Europe/Uzhgorod' => 'Ungvár',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Warsaw' => 'Varsó',
|
||||
'Europe/Vatican' => 'Vatikán',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Volgograd' => 'Volgográd',
|
||||
'Europe/Zagreb' => 'Zágráb',
|
||||
'Europe/Zaporozhye' => 'Zaporozsje',
|
||||
'Europe/Zurich' => 'Zürich',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Christmas' => 'Karácsony-sziget',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Cocos' => 'Kókusz-sziget',
|
||||
'Indian/Comoro' => 'Komoró',
|
||||
'Indian/Mahe' => 'Mahe',
|
||||
'Indian/Maldives' => 'Maldív-szigetek',
|
||||
'Indian/Mauritius' => 'Mauritius',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Reunion' => 'Réunion',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham-szigetek',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fidzsi',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galapagos-szigetek',
|
||||
'Pacific/Gambier' => 'Gambier-szigetek',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Easter' => 'Húsvét-szigetek',
|
||||
'Pacific/Honolulu' => 'Johnston',
|
||||
'Pacific/Kiritimati' => 'Kiritimati-sziget',
|
||||
'Pacific/Kosrae' => 'Kosrae-szigetek',
|
||||
'Pacific/Kwajalein' => 'Kwajalein-zátony',
|
||||
'Pacific/Majuro' => 'Majuro-zátony',
|
||||
'Pacific/Marquesas' => 'Marquesas-szigetek',
|
||||
'Pacific/Midway' => 'Midway-szigetek',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Noumea',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Pitcairn' => 'Pitcairn-szigetek',
|
||||
'Pacific/Pohnpei' => 'Ponape-szigetek',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Chuuk' => 'Truk',
|
||||
'Pacific/Wake' => 'Wake-sziget',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afganistan',
|
||||
'ZA' => 'Afrika Selatan',
|
||||
'AL' => 'Albania',
|
||||
'DZ' => 'Aljazair',
|
||||
'US' => 'Amerika Serikat',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antarktika',
|
||||
'AG' => 'Antigua dan Barbuda',
|
||||
'SA' => 'Arab Saudi',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenia',
|
||||
'AW' => 'Aruba',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbaijan',
|
||||
'BS' => 'Bahama',
|
||||
'BH' => 'Bahrain',
|
||||
'BD' => 'Bangladesh',
|
||||
'BB' => 'Barbados',
|
||||
'NL' => 'Belanda',
|
||||
'BQ' => 'Belanda Karibia',
|
||||
'BY' => 'Belarus',
|
||||
'BE' => 'Belgia',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BT' => 'Bhutan',
|
||||
'BO' => 'Bolivia',
|
||||
'BA' => 'Bosnia dan Herzegovina',
|
||||
'BW' => 'Botswana',
|
||||
'BR' => 'Brasil',
|
||||
'BN' => 'Brunei',
|
||||
'BG' => 'Bulgaria',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'TD' => 'Cad',
|
||||
'CZ' => 'Ceko',
|
||||
'EA' => 'Ceuta dan Melilla',
|
||||
'CL' => 'Cile',
|
||||
'CI' => 'Côte d’Ivoire',
|
||||
'CW' => 'Curaçao',
|
||||
'DK' => 'Denmark',
|
||||
'DG' => 'Diego Garcia',
|
||||
'DM' => 'Dominika',
|
||||
'EC' => 'Ekuador',
|
||||
'SV' => 'El Salvador',
|
||||
'ER' => 'Eritrea',
|
||||
'EE' => 'Estonia',
|
||||
'SZ' => 'eSwatini',
|
||||
'ET' => 'Etiopia',
|
||||
'FJ' => 'Fiji',
|
||||
'PH' => 'Filipina',
|
||||
'FI' => 'Finlandia',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambia',
|
||||
'GE' => 'Georgia',
|
||||
'GS' => 'Georgia Selatan & Kep. Sandwich Selatan',
|
||||
'GH' => 'Ghana',
|
||||
'GI' => 'Gibraltar',
|
||||
'GD' => 'Grenada',
|
||||
'GL' => 'Grinlandia',
|
||||
'GP' => 'Guadeloupe',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GQ' => 'Guinea Ekuatorial',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GY' => 'Guyana',
|
||||
'GF' => 'Guyana Prancis',
|
||||
'HT' => 'Haiti',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'HU' => 'Hungaria',
|
||||
'IN' => 'India',
|
||||
'ID' => 'Indonesia',
|
||||
'GB' => 'Inggris Raya',
|
||||
'IQ' => 'Irak',
|
||||
'IR' => 'Iran',
|
||||
'IE' => 'Irlandia',
|
||||
'IS' => 'Islandia',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italia',
|
||||
'JM' => 'Jamaika',
|
||||
'JP' => 'Jepang',
|
||||
'DE' => 'Jerman',
|
||||
'JE' => 'Jersey',
|
||||
'DJ' => 'Jibuti',
|
||||
'NC' => 'Kaledonia Baru',
|
||||
'KH' => 'Kamboja',
|
||||
'CM' => 'Kamerun',
|
||||
'CA' => 'Kanada',
|
||||
'KZ' => 'Kazakstan',
|
||||
'KE' => 'Kenya',
|
||||
'AX' => 'Kepulauan Aland',
|
||||
'IC' => 'Kepulauan Canaria',
|
||||
'KY' => 'Kepulauan Cayman',
|
||||
'CC' => 'Kepulauan Cocos (Keeling)',
|
||||
'CK' => 'Kepulauan Cook',
|
||||
'FK' => 'Kepulauan Falkland (Malvinas)',
|
||||
'FO' => 'Kepulauan Faroe',
|
||||
'MP' => 'Kepulauan Mariana Utara',
|
||||
'MH' => 'Kepulauan Marshall',
|
||||
'NF' => 'Kepulauan Norfolk',
|
||||
'PN' => 'Kepulauan Pitcairn',
|
||||
'SB' => 'Kepulauan Solomon',
|
||||
'SJ' => 'Kepulauan Svalbard dan Jan Mayen',
|
||||
'UM' => 'Kepulauan Terluar A.S.',
|
||||
'TC' => 'Kepulauan Turks dan Caicos',
|
||||
'VI' => 'Kepulauan Virgin Amerika Serikat',
|
||||
'VG' => 'Kepulauan Virgin Britania Raya',
|
||||
'WF' => 'Kepulauan Wallis dan Futuna',
|
||||
'KG' => 'Kirgistan',
|
||||
'KI' => 'Kiribati',
|
||||
'CO' => 'Kolombia',
|
||||
'KM' => 'Komoro',
|
||||
'CD' => 'Kongo (RDK)',
|
||||
'CG' => 'Kongo (Republik)',
|
||||
'KR' => 'Korea Selatan',
|
||||
'KP' => 'Korea Utara',
|
||||
'XK' => 'Kosovo',
|
||||
'CR' => 'Kosta Rika',
|
||||
'HR' => 'Kroasia',
|
||||
'CU' => 'Kuba',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laos',
|
||||
'LV' => 'Latvia',
|
||||
'LB' => 'Lebanon',
|
||||
'LS' => 'Lesotho',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Lituania',
|
||||
'LU' => 'Luksemburg',
|
||||
'MG' => 'Madagaskar',
|
||||
'MO' => 'Makau',
|
||||
'MK' => 'Makedonia Utara',
|
||||
'MV' => 'Maladewa',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MA' => 'Maroko',
|
||||
'MQ' => 'Martinik',
|
||||
'MR' => 'Mauritania',
|
||||
'MU' => 'Mauritius',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Meksiko',
|
||||
'EG' => 'Mesir',
|
||||
'FM' => 'Mikronesia',
|
||||
'MD' => 'Moldova',
|
||||
'MC' => 'Monako',
|
||||
'MN' => 'Mongolia',
|
||||
'ME' => 'Montenegro',
|
||||
'MS' => 'Montserrat',
|
||||
'MZ' => 'Mozambik',
|
||||
'MM' => 'Myanmar (Burma)',
|
||||
'NA' => 'Namibia',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NI' => 'Nikaragua',
|
||||
'NU' => 'Niue',
|
||||
'NO' => 'Norwegia',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PW' => 'Palau',
|
||||
'PS' => 'Palestina',
|
||||
'PA' => 'Panama',
|
||||
'PG' => 'Papua Nugini',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Peru',
|
||||
'PL' => 'Polandia',
|
||||
'PF' => 'Polinesia Prancis',
|
||||
'PT' => 'Portugal',
|
||||
'FR' => 'Prancis',
|
||||
'PR' => 'Puerto Riko',
|
||||
'AC' => 'Pulau Ascension',
|
||||
'BV' => 'Pulau Bouvet',
|
||||
'CP' => 'Pulau Clipperton',
|
||||
'HM' => 'Pulau Heard dan Kepulauan McDonald',
|
||||
'IM' => 'Pulau Man',
|
||||
'CX' => 'Pulau Natal',
|
||||
'QA' => 'Qatar',
|
||||
'CF' => 'Republik Afrika Tengah',
|
||||
'DO' => 'Republik Dominika',
|
||||
'RE' => 'Réunion',
|
||||
'RO' => 'Rumania',
|
||||
'RU' => 'Rusia',
|
||||
'RW' => 'Rwanda',
|
||||
'EH' => 'Sahara Barat',
|
||||
'BL' => 'Saint Barthélemy',
|
||||
'SH' => 'Saint Helena',
|
||||
'KN' => 'Saint Kitts dan Nevis',
|
||||
'LC' => 'Saint Lucia',
|
||||
'MF' => 'Saint Martin',
|
||||
'PM' => 'Saint Pierre dan Miquelon',
|
||||
'VC' => 'Saint Vincent dan Grenadine',
|
||||
'WS' => 'Samoa',
|
||||
'AS' => 'Samoa Amerika',
|
||||
'SM' => 'San Marino',
|
||||
'ST' => 'Sao Tome dan Principe',
|
||||
'NZ' => 'Selandia Baru',
|
||||
'SN' => 'Senegal',
|
||||
'RS' => 'Serbia',
|
||||
'SC' => 'Seychelles',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SG' => 'Singapura',
|
||||
'SX' => 'Sint Maarten',
|
||||
'CY' => 'Siprus',
|
||||
'SK' => 'Slovakia',
|
||||
'SI' => 'Slovenia',
|
||||
'SO' => 'Somalia',
|
||||
'ES' => 'Spanyol',
|
||||
'LK' => 'Sri Lanka',
|
||||
'SD' => 'Sudan',
|
||||
'SS' => 'Sudan Selatan',
|
||||
'SY' => 'Suriah',
|
||||
'SR' => 'Suriname',
|
||||
'SE' => 'Swedia',
|
||||
'CH' => 'Swiss',
|
||||
'TW' => 'Taiwan',
|
||||
'TJ' => 'Tajikistan',
|
||||
'CV' => 'Tanjung Verde',
|
||||
'TZ' => 'Tanzania',
|
||||
'TH' => 'Thailand',
|
||||
'TL' => 'Timor Leste',
|
||||
'CN' => 'Tiongkok',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad dan Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TN' => 'Tunisia',
|
||||
'TR' => 'Turki',
|
||||
'TM' => 'Turkimenistan',
|
||||
'TV' => 'Tuvalu',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraina',
|
||||
'AE' => 'Uni Emirat Arab',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VU' => 'Vanuatu',
|
||||
'VA' => 'Vatikan',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'IO' => 'Wilayah Inggris di Samudra Hindia',
|
||||
'TF' => 'Wilayah Selatan Perancis',
|
||||
'YE' => 'Yaman',
|
||||
'JO' => 'Yordania',
|
||||
'GR' => 'Yunani',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Afrika',
|
||||
'America' => 'Amerika',
|
||||
'Antarctica' => 'Antartika',
|
||||
'Arctic' => 'Arktik',
|
||||
'Asia' => 'Asia',
|
||||
'Atlantic' => 'Atlantik',
|
||||
'Australia' => 'Australia',
|
||||
'Europe' => 'Eropa',
|
||||
'Indian' => 'Hindia',
|
||||
'Pacific' => 'Pasifik',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addis Ababa',
|
||||
'Africa/Algiers' => 'Aljir',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es Salaam',
|
||||
'Africa/Djibouti' => 'Djibouti',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/El_Aaiun' => 'El Aaiun',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Juba' => 'Juba',
|
||||
'Africa/Cairo' => 'Kairo',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Khartoum',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lome',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadishu',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Ndjamena' => 'Ndjamena',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto-Novo',
|
||||
'Africa/Sao_Tome' => 'Sao Tome',
|
||||
'Africa/Tripoli' => 'Tripoli',
|
||||
'Africa/Tunis' => 'Tunis',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguila',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaina',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asuncion',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahia Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belem',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, Dakota Utara',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogota',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancun',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayenne' => 'Cayenne',
|
||||
'America/Cayman' => 'Cayman',
|
||||
'America/North_Dakota/Center' => 'Center, Dakota Utara',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Argentina/Cordoba' => 'Cordoba',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiaba',
|
||||
'America/Curacao' => 'Curacao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominika',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepe',
|
||||
'America/El_Salvador' => 'El Salvador',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenada',
|
||||
'America/Guadeloupe' => 'Guadeloupe',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Havana' => 'Havana',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Jamaica' => 'Jamaica',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Costa_Rica' => 'Kosta Rika',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceio',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaus',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinik',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlan',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Merida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Mexico_City' => 'Mexico City',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, Dakota Utara',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panama',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port_of_Spain' => 'Port of Spain',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Puerto_Rico' => 'Puerto Rico',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Rio Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Rio Gallegos',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Santarem' => 'Santarem',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sao_Paulo' => 'Sao Paulo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Barthelemy' => 'St. Barthelemy',
|
||||
'America/St_Johns' => 'St. John’s',
|
||||
'America/St_Kitts' => 'St. Kitts',
|
||||
'America/St_Lucia' => 'St. Lucia',
|
||||
'America/St_Thomas' => 'St. Thomas',
|
||||
'America/St_Vincent' => 'St. Vincent',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucuman',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Aden',
|
||||
'Asia/Aqtau' => 'Aktau',
|
||||
'Asia/Aqtobe' => 'Aktobe',
|
||||
'Asia/Almaty' => 'Almaty',
|
||||
'Asia/Amman' => 'Amman',
|
||||
'Asia/Anadyr' => 'Anadyr',
|
||||
'Asia/Ashgabat' => 'Ashgabat',
|
||||
'Asia/Atyrau' => 'Atyrau',
|
||||
'Asia/Baghdad' => 'Baghdad',
|
||||
'Asia/Bahrain' => 'Bahrain',
|
||||
'Asia/Baku' => 'Baku',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Beirut',
|
||||
'Asia/Bishkek' => 'Bishkek',
|
||||
'Asia/Brunei' => 'Brunei',
|
||||
'Asia/Chita' => 'Chita',
|
||||
'Asia/Choibalsan' => 'Choibalsan',
|
||||
'Asia/Damascus' => 'Damaskus',
|
||||
'Asia/Dhaka' => 'Dhaka',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubai',
|
||||
'Asia/Dushanbe' => 'Dushanbe',
|
||||
'Asia/Famagusta' => 'Famagusta',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Hebron' => 'Hebron',
|
||||
'Asia/Ho_Chi_Minh' => 'Ho Chi Minh',
|
||||
'Asia/Hong_Kong' => 'Hong Kong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Irkutsk' => 'Irkutsk',
|
||||
'Asia/Jakarta' => 'Jakarta',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kamchatka' => 'Kamchatka',
|
||||
'Asia/Karachi' => 'Karachi',
|
||||
'Asia/Kathmandu' => 'Kathmandu',
|
||||
'Asia/Khandyga' => 'Khandyga',
|
||||
'Asia/Kolkata' => 'Kolkata',
|
||||
'Asia/Colombo' => 'Kolombo',
|
||||
'Asia/Qostanay' => 'Kostanay',
|
||||
'Asia/Krasnoyarsk' => 'Krasnoyarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kuching',
|
||||
'Asia/Kuwait' => 'Kuwait',
|
||||
'Asia/Magadan' => 'Magadan',
|
||||
'Asia/Makassar' => 'Makassar',
|
||||
'Asia/Macau' => 'Makau',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Muskat',
|
||||
'Asia/Nicosia' => 'Nikosia',
|
||||
'Asia/Novokuznetsk' => 'Novokuznetsk',
|
||||
'Asia/Novosibirsk' => 'Novosibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Pyongyang' => 'Pyongyang',
|
||||
'Asia/Qatar' => 'Qatar',
|
||||
'Asia/Qyzylorda' => 'Qyzylorda',
|
||||
'Asia/Yangon' => 'Rangoon',
|
||||
'Asia/Riyadh' => 'Riyadh',
|
||||
'Asia/Sakhalin' => 'Sakhalin',
|
||||
'Asia/Samarkand' => 'Samarkand',
|
||||
'Asia/Seoul' => 'Seoul',
|
||||
'Asia/Shanghai' => 'Shanghai',
|
||||
'Asia/Singapore' => 'Singapura',
|
||||
'Asia/Srednekolymsk' => 'Srednekolymsk',
|
||||
'Asia/Taipei' => 'Taipei',
|
||||
'Asia/Tashkent' => 'Tashkent',
|
||||
'Asia/Tbilisi' => 'Tbilisi',
|
||||
'Asia/Tehran' => 'Teheran',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tokyo' => 'Tokyo',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Ulaanbaatar' => 'Ulaanbaatar',
|
||||
'Asia/Urumqi' => 'Urumqi',
|
||||
'Asia/Ust-Nera' => 'Ust-Nera',
|
||||
'Asia/Vientiane' => 'Vientiane',
|
||||
'Asia/Vladivostok' => 'Vladivostok',
|
||||
'Asia/Yakutsk' => 'Yakutsk',
|
||||
'Asia/Yekaterinburg' => 'Yekaterinburg',
|
||||
'Asia/Yerevan' => 'Yerevan',
|
||||
'Asia/Jerusalem' => 'Yerusalem',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azores',
|
||||
'Atlantic/Bermuda' => 'Bermuda',
|
||||
'Atlantic/Canary' => 'Canary',
|
||||
'Atlantic/Faroe' => 'Faroe',
|
||||
'Atlantic/South_Georgia' => 'Georgia Selatan',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Reykjavik',
|
||||
'Atlantic/St_Helena' => 'St. Helena',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
'Atlantic/Cape_Verde' => 'Tanjung Verde',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaide',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sydney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amsterdam',
|
||||
'Europe/Andorra' => 'Andorra',
|
||||
'Europe/Astrakhan' => 'Astrakhan',
|
||||
'Europe/Athens' => 'Athena',
|
||||
'Europe/Belgrade' => 'Beograd',
|
||||
'Europe/Berlin' => 'Berlin',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Brussels',
|
||||
'Europe/Bucharest' => 'Bucharest',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Busingen' => 'Busingen',
|
||||
'Europe/Dublin' => 'Dublin',
|
||||
'Europe/Gibraltar' => 'Gibraltar',
|
||||
'Europe/Guernsey' => 'Guernsey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Istanbul' => 'Istanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kaliningrad',
|
||||
'Europe/Kiev' => 'Kiev',
|
||||
'Europe/Kirov' => 'Kirov',
|
||||
'Europe/Chisinau' => 'Kishinev',
|
||||
'Europe/Copenhagen' => 'Kopenhagen',
|
||||
'Europe/Lisbon' => 'Lisbon',
|
||||
'Europe/Ljubljana' => 'Ljubljana',
|
||||
'Europe/London' => 'London',
|
||||
'Europe/Luxembourg' => 'Luksemburg',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malta',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Monako',
|
||||
'Europe/Moscow' => 'Moskwa',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Paris' => 'Paris',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Praha',
|
||||
'Europe/Isle_of_Man' => 'Pulau Man',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Roma',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Saratov',
|
||||
'Europe/Simferopol' => 'Simferopol',
|
||||
'Europe/Skopje' => 'Skopje',
|
||||
'Europe/Sofia' => 'Sofia',
|
||||
'Europe/Stockholm' => 'Stockholm',
|
||||
'Europe/Tallinn' => 'Tallinn',
|
||||
'Europe/Tirane' => 'Tirane',
|
||||
'Europe/Ulyanovsk' => 'Ulyanovsk',
|
||||
'Europe/Uzhgorod' => 'Uzhhorod',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Vatican' => 'Vatikan',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Volgograd' => 'Volgograd',
|
||||
'Europe/Warsaw' => 'Warsawa',
|
||||
'Europe/Vienna' => 'Wina',
|
||||
'Europe/Zagreb' => 'Zagreb',
|
||||
'Europe/Zaporozhye' => 'Zaporizhia',
|
||||
'Europe/Zurich' => 'Zurich',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Christmas' => 'Christmas',
|
||||
'Indian/Cocos' => 'Cocos',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Comoro' => 'Komoro',
|
||||
'Indian/Mahe' => 'Mahe',
|
||||
'Indian/Maldives' => 'Maladewa',
|
||||
'Indian/Mauritius' => 'Mauritius',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Reunion' => 'Reunion',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Easter' => 'Easter',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Fiji',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galapagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalkanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Honolulu' => 'Johnston',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marquesas',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Noumea',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Pitcairn' => 'Pitcairn',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'AF' => 'Afghanistan',
|
||||
'AL' => 'Albania',
|
||||
'DZ' => 'Algeria',
|
||||
'UM' => 'Altre isole americane del Pacifico',
|
||||
'AD' => 'Andorra',
|
||||
'AO' => 'Angola',
|
||||
'AI' => 'Anguilla',
|
||||
'AQ' => 'Antartide',
|
||||
'AG' => 'Antigua e Barbuda',
|
||||
'SA' => 'Arabia Saudita',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenia',
|
||||
'AW' => 'Aruba',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbaigian',
|
||||
'BS' => 'Bahamas',
|
||||
'BH' => 'Bahrein',
|
||||
'BD' => 'Bangladesh',
|
||||
'BB' => 'Barbados',
|
||||
'BE' => 'Belgio',
|
||||
'BZ' => 'Belize',
|
||||
'BJ' => 'Benin',
|
||||
'BM' => 'Bermuda',
|
||||
'BT' => 'Bhutan',
|
||||
'BY' => 'Bielorussia',
|
||||
'BO' => 'Bolivia',
|
||||
'BA' => 'Bosnia ed Erzegovina',
|
||||
'BW' => 'Botswana',
|
||||
'BR' => 'Brasile',
|
||||
'BN' => 'Brunei',
|
||||
'BG' => 'Bulgaria',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BI' => 'Burundi',
|
||||
'KH' => 'Cambogia',
|
||||
'CM' => 'Camerun',
|
||||
'CA' => 'Canada',
|
||||
'CV' => 'Capo Verde',
|
||||
'BQ' => 'Caraibi olandesi',
|
||||
'CZ' => 'Cechia',
|
||||
'EA' => 'Ceuta e Melilla',
|
||||
'TD' => 'Ciad',
|
||||
'CL' => 'Cile',
|
||||
'CN' => 'Cina',
|
||||
'CY' => 'Cipro',
|
||||
'VA' => 'Città del Vaticano',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comore',
|
||||
'CD' => 'Congo (RDC)',
|
||||
'CG' => 'Congo (Repubblica)',
|
||||
'KP' => 'Corea del Nord',
|
||||
'KR' => 'Corea del Sud',
|
||||
'CI' => 'Costa d’Avorio',
|
||||
'CR' => 'Costa Rica',
|
||||
'HR' => 'Croazia',
|
||||
'CU' => 'Cuba',
|
||||
'CW' => 'Curaçao',
|
||||
'DK' => 'Danimarca',
|
||||
'DG' => 'Diego Garcia',
|
||||
'DM' => 'Dominica',
|
||||
'EC' => 'Ecuador',
|
||||
'EG' => 'Egitto',
|
||||
'SV' => 'El Salvador',
|
||||
'AE' => 'Emirati Arabi Uniti',
|
||||
'ER' => 'Eritrea',
|
||||
'EE' => 'Estonia',
|
||||
'ET' => 'Etiopia',
|
||||
'FJ' => 'Figi',
|
||||
'PH' => 'Filippine',
|
||||
'FI' => 'Finlandia',
|
||||
'FR' => 'Francia',
|
||||
'GA' => 'Gabon',
|
||||
'GM' => 'Gambia',
|
||||
'GE' => 'Georgia',
|
||||
'GS' => 'Georgia del Sud e Sandwich australi',
|
||||
'DE' => 'Germania',
|
||||
'GH' => 'Ghana',
|
||||
'JM' => 'Giamaica',
|
||||
'JP' => 'Giappone',
|
||||
'GI' => 'Gibilterra',
|
||||
'DJ' => 'Gibuti',
|
||||
'JO' => 'Giordania',
|
||||
'GR' => 'Grecia',
|
||||
'GD' => 'Grenada',
|
||||
'GL' => 'Groenlandia',
|
||||
'GP' => 'Guadalupa',
|
||||
'GU' => 'Guam',
|
||||
'GT' => 'Guatemala',
|
||||
'GG' => 'Guernsey',
|
||||
'GN' => 'Guinea',
|
||||
'GQ' => 'Guinea Equatoriale',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GY' => 'Guyana',
|
||||
'GF' => 'Guyana francese',
|
||||
'HT' => 'Haiti',
|
||||
'HN' => 'Honduras',
|
||||
'HK' => 'Hong Kong',
|
||||
'IN' => 'India',
|
||||
'ID' => 'Indonesia',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Iraq',
|
||||
'IE' => 'Irlanda',
|
||||
'IS' => 'Islanda',
|
||||
'AC' => 'Isola Ascensione',
|
||||
'BV' => 'Isola Bouvet',
|
||||
'CX' => 'Isola Christmas',
|
||||
'CP' => 'Isola di Clipperton',
|
||||
'IM' => 'Isola di Man',
|
||||
'NF' => 'Isola Norfolk',
|
||||
'AX' => 'Isole Åland',
|
||||
'IC' => 'Isole Canarie',
|
||||
'KY' => 'Isole Cayman',
|
||||
'CC' => 'Isole Cocos (Keeling)',
|
||||
'CK' => 'Isole Cook',
|
||||
'FO' => 'Isole Fær Øer',
|
||||
'FK' => 'Isole Falkland (Isole Malvine)',
|
||||
'HM' => 'Isole Heard e McDonald',
|
||||
'MP' => 'Isole Marianne settentrionali',
|
||||
'MH' => 'Isole Marshall',
|
||||
'PN' => 'Isole Pitcairn',
|
||||
'SB' => 'Isole Salomone',
|
||||
'TC' => 'Isole Turks e Caicos',
|
||||
'VI' => 'Isole Vergini Americane',
|
||||
'VG' => 'Isole Vergini Britanniche',
|
||||
'IL' => 'Israele',
|
||||
'IT' => 'Italia',
|
||||
'JE' => 'Jersey',
|
||||
'KZ' => 'Kazakistan',
|
||||
'KE' => 'Kenya',
|
||||
'KG' => 'Kirghizistan',
|
||||
'KI' => 'Kiribati',
|
||||
'XK' => 'Kosovo',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laos',
|
||||
'LS' => 'Lesotho',
|
||||
'LV' => 'Lettonia',
|
||||
'LB' => 'Libano',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LT' => 'Lituania',
|
||||
'LU' => 'Lussemburgo',
|
||||
'MO' => 'Macao',
|
||||
'MK' => 'Macedonia del Nord',
|
||||
'MG' => 'Madagascar',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'MV' => 'Maldive',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MA' => 'Marocco',
|
||||
'MQ' => 'Martinica',
|
||||
'MR' => 'Mauritania',
|
||||
'MU' => 'Mauritius',
|
||||
'YT' => 'Mayotte',
|
||||
'MX' => 'Messico',
|
||||
'FM' => 'Micronesia',
|
||||
'MD' => 'Moldavia',
|
||||
'MC' => 'Monaco',
|
||||
'MN' => 'Mongolia',
|
||||
'ME' => 'Montenegro',
|
||||
'MS' => 'Montserrat',
|
||||
'MZ' => 'Mozambico',
|
||||
'MM' => 'Myanmar (Birmania)',
|
||||
'NA' => 'Namibia',
|
||||
'NR' => 'Nauru',
|
||||
'NP' => 'Nepal',
|
||||
'NI' => 'Nicaragua',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NU' => 'Niue',
|
||||
'NO' => 'Norvegia',
|
||||
'NC' => 'Nuova Caledonia',
|
||||
'NZ' => 'Nuova Zelanda',
|
||||
'OM' => 'Oman',
|
||||
'NL' => 'Paesi Bassi',
|
||||
'PK' => 'Pakistan',
|
||||
'PW' => 'Palau',
|
||||
'PS' => 'Palestina',
|
||||
'PA' => 'Panamá',
|
||||
'PG' => 'Papua Nuova Guinea',
|
||||
'PY' => 'Paraguay',
|
||||
'PE' => 'Perù',
|
||||
'PF' => 'Polinesia francese',
|
||||
'PL' => 'Polonia',
|
||||
'PT' => 'Portogallo',
|
||||
'PR' => 'Portorico',
|
||||
'QA' => 'Qatar',
|
||||
'GB' => 'Regno Unito',
|
||||
'CF' => 'Repubblica Centrafricana',
|
||||
'DO' => 'Repubblica Dominicana',
|
||||
'RE' => 'Riunione',
|
||||
'RO' => 'Romania',
|
||||
'RW' => 'Ruanda',
|
||||
'RU' => 'Russia',
|
||||
'EH' => 'Sahara occidentale',
|
||||
'KN' => 'Saint Kitts e Nevis',
|
||||
'LC' => 'Saint Lucia',
|
||||
'MF' => 'Saint Martin',
|
||||
'VC' => 'Saint Vincent e Grenadine',
|
||||
'BL' => 'Saint-Barthélemy',
|
||||
'PM' => 'Saint-Pierre e Miquelon',
|
||||
'WS' => 'Samoa',
|
||||
'AS' => 'Samoa americane',
|
||||
'SM' => 'San Marino',
|
||||
'SH' => 'Sant’Elena',
|
||||
'ST' => 'São Tomé e Príncipe',
|
||||
'SN' => 'Senegal',
|
||||
'RS' => 'Serbia',
|
||||
'SC' => 'Seychelles',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SG' => 'Singapore',
|
||||
'SX' => 'Sint Maarten',
|
||||
'SY' => 'Siria',
|
||||
'SK' => 'Slovacchia',
|
||||
'SI' => 'Slovenia',
|
||||
'SO' => 'Somalia',
|
||||
'ES' => 'Spagna',
|
||||
'LK' => 'Sri Lanka',
|
||||
'US' => 'Stati Uniti',
|
||||
'SS' => 'Sud Sudan',
|
||||
'ZA' => 'Sudafrica',
|
||||
'SD' => 'Sudan',
|
||||
'SR' => 'Suriname',
|
||||
'SJ' => 'Svalbard e Jan Mayen',
|
||||
'SE' => 'Svezia',
|
||||
'CH' => 'Svizzera',
|
||||
'SZ' => 'Swaziland',
|
||||
'TJ' => 'Tagikistan',
|
||||
'TW' => 'Taiwan',
|
||||
'TZ' => 'Tanzania',
|
||||
'TF' => 'Terre australi francesi',
|
||||
'IO' => 'Territorio britannico dell’Oceano Indiano',
|
||||
'TH' => 'Thailandia',
|
||||
'TL' => 'Timor Est',
|
||||
'TG' => 'Togo',
|
||||
'TK' => 'Tokelau',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad e Tobago',
|
||||
'TA' => 'Tristan da Cunha',
|
||||
'TN' => 'Tunisia',
|
||||
'TR' => 'Turchia',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TV' => 'Tuvalu',
|
||||
'UA' => 'Ucraina',
|
||||
'UG' => 'Uganda',
|
||||
'HU' => 'Ungheria',
|
||||
'UY' => 'Uruguay',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VU' => 'Vanuatu',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'WF' => 'Wallis e Futuna',
|
||||
'YE' => 'Yemen',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Africa' => 'Africa',
|
||||
'America' => 'America',
|
||||
'Antarctica' => 'Antartide',
|
||||
'Arctic' => 'Artico',
|
||||
'Asia' => 'Asia',
|
||||
'Atlantic' => 'Atlantico',
|
||||
'Australia' => 'Australia',
|
||||
'Europe' => 'Europa',
|
||||
'Indian' => 'Indiano',
|
||||
'Pacific' => 'Pacifico',
|
||||
'UTC' => 'UTC',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/Abidjan' => 'Abidjan',
|
||||
'Africa/Accra' => 'Accra',
|
||||
'Africa/Addis_Ababa' => 'Addis Abeba',
|
||||
'Africa/Algiers' => 'Algeri',
|
||||
'Africa/Asmara' => 'Asmara',
|
||||
'Africa/Bamako' => 'Bamako',
|
||||
'Africa/Bangui' => 'Bangui',
|
||||
'Africa/Banjul' => 'Banjul',
|
||||
'Africa/Bissau' => 'Bissau',
|
||||
'Africa/Blantyre' => 'Blantyre',
|
||||
'Africa/Brazzaville' => 'Brazzaville',
|
||||
'Africa/Bujumbura' => 'Bujumbura',
|
||||
'Africa/Casablanca' => 'Casablanca',
|
||||
'Africa/Ceuta' => 'Ceuta',
|
||||
'Africa/Conakry' => 'Conakry',
|
||||
'Africa/Dakar' => 'Dakar',
|
||||
'Africa/Dar_es_Salaam' => 'Dar es Salaam',
|
||||
'Africa/Douala' => 'Douala',
|
||||
'Africa/El_Aaiun' => 'El Ayun',
|
||||
'Africa/Freetown' => 'Freetown',
|
||||
'Africa/Gaborone' => 'Gaborone',
|
||||
'Africa/Djibouti' => 'Gibuti',
|
||||
'Africa/Juba' => 'Giuba',
|
||||
'Africa/Harare' => 'Harare',
|
||||
'Africa/Cairo' => 'Il Cairo',
|
||||
'Africa/Johannesburg' => 'Johannesburg',
|
||||
'Africa/Kampala' => 'Kampala',
|
||||
'Africa/Khartoum' => 'Khartum',
|
||||
'Africa/Kigali' => 'Kigali',
|
||||
'Africa/Kinshasa' => 'Kinshasa',
|
||||
'Africa/Lagos' => 'Lagos',
|
||||
'Africa/Libreville' => 'Libreville',
|
||||
'Africa/Lome' => 'Lomé',
|
||||
'Africa/Luanda' => 'Luanda',
|
||||
'Africa/Lubumbashi' => 'Lubumbashi',
|
||||
'Africa/Lusaka' => 'Lusaka',
|
||||
'Africa/Malabo' => 'Malabo',
|
||||
'Africa/Maputo' => 'Maputo',
|
||||
'Africa/Maseru' => 'Maseru',
|
||||
'Africa/Mbabane' => 'Mbabane',
|
||||
'Africa/Mogadishu' => 'Mogadiscio',
|
||||
'Africa/Monrovia' => 'Monrovia',
|
||||
'Africa/Ndjamena' => 'N’Djamena',
|
||||
'Africa/Nairobi' => 'Nairobi',
|
||||
'Africa/Niamey' => 'Niamey',
|
||||
'Africa/Nouakchott' => 'Nouakchott',
|
||||
'Africa/Ouagadougou' => 'Ouagadougou',
|
||||
'Africa/Porto-Novo' => 'Porto-Novo',
|
||||
'Africa/Sao_Tome' => 'São Tomé',
|
||||
'Africa/Tripoli' => 'Tripoli',
|
||||
'Africa/Tunis' => 'Tunisi',
|
||||
'Africa/Windhoek' => 'Windhoek',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Adak' => 'Adak',
|
||||
'America/Anchorage' => 'Anchorage',
|
||||
'America/Anguilla' => 'Anguilla',
|
||||
'America/Antigua' => 'Antigua',
|
||||
'America/Araguaina' => 'Araguaina',
|
||||
'America/Aruba' => 'Aruba',
|
||||
'America/Asuncion' => 'Asunción',
|
||||
'America/Atikokan' => 'Atikokan',
|
||||
'America/Bahia' => 'Bahia',
|
||||
'America/Bahia_Banderas' => 'Bahía de Banderas',
|
||||
'America/Barbados' => 'Barbados',
|
||||
'America/Belem' => 'Belem',
|
||||
'America/Belize' => 'Belize',
|
||||
'America/North_Dakota/Beulah' => 'Beulah, Dakota del nord',
|
||||
'America/Blanc-Sablon' => 'Blanc-Sablon',
|
||||
'America/Boa_Vista' => 'Boa Vista',
|
||||
'America/Bogota' => 'Bogotá',
|
||||
'America/Boise' => 'Boise',
|
||||
'America/Argentina/Buenos_Aires' => 'Buenos Aires',
|
||||
'America/Cayenne' => 'Caienna',
|
||||
'America/Cambridge_Bay' => 'Cambridge Bay',
|
||||
'America/Campo_Grande' => 'Campo Grande',
|
||||
'America/Cancun' => 'Cancún',
|
||||
'America/Caracas' => 'Caracas',
|
||||
'America/Argentina/Catamarca' => 'Catamarca',
|
||||
'America/Cayman' => 'Cayman',
|
||||
'America/North_Dakota/Center' => 'Center, Dakota del nord',
|
||||
'America/Chicago' => 'Chicago',
|
||||
'America/Chihuahua' => 'Chihuahua',
|
||||
'America/Mexico_City' => 'Città del Messico',
|
||||
'America/Argentina/Cordoba' => 'Cordoba',
|
||||
'America/Costa_Rica' => 'Costa Rica',
|
||||
'America/Creston' => 'Creston',
|
||||
'America/Cuiaba' => 'Cuiaba',
|
||||
'America/Curacao' => 'Curaçao',
|
||||
'America/Danmarkshavn' => 'Danmarkshavn',
|
||||
'America/Dawson' => 'Dawson',
|
||||
'America/Dawson_Creek' => 'Dawson Creek',
|
||||
'America/Denver' => 'Denver',
|
||||
'America/Detroit' => 'Detroit',
|
||||
'America/Dominica' => 'Dominica',
|
||||
'America/Edmonton' => 'Edmonton',
|
||||
'America/Eirunepe' => 'Eirunepe',
|
||||
'America/El_Salvador' => 'El Salvador',
|
||||
'America/Fort_Nelson' => 'Fort Nelson',
|
||||
'America/Fortaleza' => 'Fortaleza',
|
||||
'America/Jamaica' => 'Giamaica',
|
||||
'America/Glace_Bay' => 'Glace Bay',
|
||||
'America/Goose_Bay' => 'Goose Bay',
|
||||
'America/Grand_Turk' => 'Grand Turk',
|
||||
'America/Grenada' => 'Grenada',
|
||||
'America/Guadeloupe' => 'Guadalupa',
|
||||
'America/Guatemala' => 'Guatemala',
|
||||
'America/Guayaquil' => 'Guayaquil',
|
||||
'America/Guyana' => 'Guyana',
|
||||
'America/Halifax' => 'Halifax',
|
||||
'America/Hermosillo' => 'Hermosillo',
|
||||
'America/Indiana/Indianapolis' => 'Indianapolis',
|
||||
'America/Inuvik' => 'Inuvik',
|
||||
'America/Iqaluit' => 'Iqaluit',
|
||||
'America/Scoresbysund' => 'Ittoqqortoormiit',
|
||||
'America/Argentina/Jujuy' => 'Jujuy',
|
||||
'America/Juneau' => 'Juneau',
|
||||
'America/Indiana/Knox' => 'Knox, Indiana',
|
||||
'America/Kralendijk' => 'Kralendijk',
|
||||
'America/Havana' => 'L’Avana',
|
||||
'America/La_Paz' => 'La Paz',
|
||||
'America/Argentina/La_Rioja' => 'La Rioja',
|
||||
'America/Lima' => 'Lima',
|
||||
'America/Los_Angeles' => 'Los Angeles',
|
||||
'America/Kentucky/Louisville' => 'Louisville',
|
||||
'America/Lower_Princes' => 'Lower Prince’s Quarter',
|
||||
'America/Maceio' => 'Maceio',
|
||||
'America/Managua' => 'Managua',
|
||||
'America/Manaus' => 'Manaus',
|
||||
'America/Indiana/Marengo' => 'Marengo, Indiana',
|
||||
'America/Marigot' => 'Marigot',
|
||||
'America/Martinique' => 'Martinica',
|
||||
'America/Matamoros' => 'Matamoros',
|
||||
'America/Mazatlan' => 'Mazatlan',
|
||||
'America/Argentina/Mendoza' => 'Mendoza',
|
||||
'America/Menominee' => 'Menominee',
|
||||
'America/Merida' => 'Mérida',
|
||||
'America/Metlakatla' => 'Metlakatla',
|
||||
'America/Miquelon' => 'Miquelon',
|
||||
'America/Moncton' => 'Moncton',
|
||||
'America/Monterrey' => 'Monterrey',
|
||||
'America/Montevideo' => 'Montevideo',
|
||||
'America/Kentucky/Monticello' => 'Monticello, Kentucky',
|
||||
'America/Montserrat' => 'Montserrat',
|
||||
'America/Nassau' => 'Nassau',
|
||||
'America/North_Dakota/New_Salem' => 'New Salem, Dakota del nord',
|
||||
'America/New_York' => 'New York',
|
||||
'America/Nipigon' => 'Nipigon',
|
||||
'America/Nome' => 'Nome',
|
||||
'America/Noronha' => 'Noronha',
|
||||
'America/Nuuk' => 'Nuuk',
|
||||
'America/Ojinaga' => 'Ojinaga',
|
||||
'America/Panama' => 'Panamá',
|
||||
'America/Pangnirtung' => 'Pangnirtung',
|
||||
'America/Paramaribo' => 'Paramaribo',
|
||||
'America/Indiana/Petersburg' => 'Petersburg, Indiana',
|
||||
'America/Phoenix' => 'Phoenix',
|
||||
'America/Port_of_Spain' => 'Port of Spain',
|
||||
'America/Port-au-Prince' => 'Port-au-Prince',
|
||||
'America/Porto_Velho' => 'Porto Velho',
|
||||
'America/Puerto_Rico' => 'Portorico',
|
||||
'America/Punta_Arenas' => 'Punta Arenas',
|
||||
'America/Rainy_River' => 'Rainy River',
|
||||
'America/Rankin_Inlet' => 'Rankin Inlet',
|
||||
'America/Recife' => 'Recife',
|
||||
'America/Regina' => 'Regina',
|
||||
'America/Resolute' => 'Resolute',
|
||||
'America/Rio_Branco' => 'Rio Branco',
|
||||
'America/Argentina/Rio_Gallegos' => 'Rio Gallegos',
|
||||
'America/St_Thomas' => 'Saint Thomas',
|
||||
'America/St_Vincent' => 'Saint Vincent',
|
||||
'America/St_Barthelemy' => 'Saint-Barthélemy',
|
||||
'America/Argentina/Salta' => 'Salta',
|
||||
'America/Argentina/San_Juan' => 'San Juan',
|
||||
'America/Argentina/San_Luis' => 'San Luis',
|
||||
'America/Sao_Paulo' => 'San Paolo',
|
||||
'America/St_Lucia' => 'Santa Lucia',
|
||||
'America/Santarem' => 'Santarém',
|
||||
'America/Santiago' => 'Santiago',
|
||||
'America/Santo_Domingo' => 'Santo Domingo',
|
||||
'America/Sitka' => 'Sitka',
|
||||
'America/St_Johns' => 'St. John’s',
|
||||
'America/St_Kitts' => 'St. Kitts',
|
||||
'America/Swift_Current' => 'Swift Current',
|
||||
'America/Tegucigalpa' => 'Tegucigalpa',
|
||||
'America/Indiana/Tell_City' => 'Tell City, Indiana',
|
||||
'America/Thule' => 'Thule',
|
||||
'America/Thunder_Bay' => 'Thunder Bay',
|
||||
'America/Tijuana' => 'Tijuana',
|
||||
'America/Toronto' => 'Toronto',
|
||||
'America/Tortola' => 'Tortola',
|
||||
'America/Argentina/Tucuman' => 'Tucumán',
|
||||
'America/Argentina/Ushuaia' => 'Ushuaia',
|
||||
'America/Vancouver' => 'Vancouver',
|
||||
'America/Indiana/Vevay' => 'Vevay, Indiana',
|
||||
'America/Indiana/Vincennes' => 'Vincennes, Indiana',
|
||||
'America/Whitehorse' => 'Whitehorse',
|
||||
'America/Indiana/Winamac' => 'Winamac, Indiana',
|
||||
'America/Winnipeg' => 'Winnipeg',
|
||||
'America/Yakutat' => 'Yakutat',
|
||||
'America/Yellowknife' => 'Yellowknife',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'Casey',
|
||||
'Antarctica/Davis' => 'Davis',
|
||||
'Antarctica/DumontDUrville' => 'Dumont d’Urville',
|
||||
'Antarctica/Macquarie' => 'Macquarie',
|
||||
'Antarctica/Mawson' => 'Mawson',
|
||||
'Antarctica/McMurdo' => 'McMurdo',
|
||||
'Antarctica/Palmer' => 'Palmer',
|
||||
'Antarctica/Rothera' => 'Rothera',
|
||||
'Antarctica/Syowa' => 'Syowa',
|
||||
'Antarctica/Troll' => 'Troll',
|
||||
'Antarctica/Vostok' => 'Vostok',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'Longyearbyen',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aden' => 'Aden',
|
||||
'Asia/Almaty' => 'Almaty',
|
||||
'Asia/Amman' => 'Amman',
|
||||
'Asia/Anadyr' => 'Anadyr’',
|
||||
'Asia/Aqtau' => 'Aqtau',
|
||||
'Asia/Aqtobe' => 'Aqtöbe',
|
||||
'Asia/Ashgabat' => 'Ashgabat',
|
||||
'Asia/Atyrau' => 'Atyrau',
|
||||
'Asia/Baghdad' => 'Baghdad',
|
||||
'Asia/Bahrain' => 'Bahrein',
|
||||
'Asia/Baku' => 'Baku',
|
||||
'Asia/Bangkok' => 'Bangkok',
|
||||
'Asia/Barnaul' => 'Barnaul',
|
||||
'Asia/Beirut' => 'Beirut',
|
||||
'Asia/Bishkek' => 'Bishkek',
|
||||
'Asia/Brunei' => 'Brunei',
|
||||
'Asia/Kolkata' => 'Calcutta',
|
||||
'Asia/Khandyga' => 'Chandyga',
|
||||
'Asia/Choibalsan' => 'Choibalsan',
|
||||
'Asia/Chita' => 'Čita',
|
||||
'Asia/Colombo' => 'Colombo',
|
||||
'Asia/Dhaka' => 'Dacca',
|
||||
'Asia/Damascus' => 'Damasco',
|
||||
'Asia/Dili' => 'Dili',
|
||||
'Asia/Dubai' => 'Dubai',
|
||||
'Asia/Dushanbe' => 'Dushanbe',
|
||||
'Asia/Yekaterinburg' => 'Ekaterinburg',
|
||||
'Asia/Famagusta' => 'Famagosta',
|
||||
'Asia/Gaza' => 'Gaza',
|
||||
'Asia/Jerusalem' => 'Gerusalemme',
|
||||
'Asia/Jakarta' => 'Giacarta',
|
||||
'Asia/Hebron' => 'Hebron',
|
||||
'Asia/Ho_Chi_Minh' => 'Ho Chi Minh',
|
||||
'Asia/Hong_Kong' => 'Hong Kong',
|
||||
'Asia/Hovd' => 'Hovd',
|
||||
'Asia/Irkutsk' => 'Irkutsk',
|
||||
'Asia/Yakutsk' => 'Jakutsk',
|
||||
'Asia/Jayapura' => 'Jayapura',
|
||||
'Asia/Kabul' => 'Kabul',
|
||||
'Asia/Kamchatka' => 'Kamchatka',
|
||||
'Asia/Karachi' => 'Karachi',
|
||||
'Asia/Kathmandu' => 'Kathmandu',
|
||||
'Asia/Krasnoyarsk' => 'Krasnojarsk',
|
||||
'Asia/Kuala_Lumpur' => 'Kuala Lumpur',
|
||||
'Asia/Kuching' => 'Kuching',
|
||||
'Asia/Kuwait' => 'Kuwait',
|
||||
'Asia/Macau' => 'Macao',
|
||||
'Asia/Magadan' => 'Magadan',
|
||||
'Asia/Makassar' => 'Makassar',
|
||||
'Asia/Manila' => 'Manila',
|
||||
'Asia/Muscat' => 'Mascate',
|
||||
'Asia/Nicosia' => 'Nicosia',
|
||||
'Asia/Novokuznetsk' => 'Novokuzneck',
|
||||
'Asia/Novosibirsk' => 'Novosibirsk',
|
||||
'Asia/Omsk' => 'Omsk',
|
||||
'Asia/Oral' => 'Oral',
|
||||
'Asia/Phnom_Penh' => 'Phnom Penh',
|
||||
'Asia/Pontianak' => 'Pontianak',
|
||||
'Asia/Pyongyang' => 'Pyongyang',
|
||||
'Asia/Qatar' => 'Qatar',
|
||||
'Asia/Qostanay' => 'Qostanay',
|
||||
'Asia/Qyzylorda' => 'Qyzylorda',
|
||||
'Asia/Yangon' => 'Rangoon',
|
||||
'Asia/Riyadh' => 'Riyad',
|
||||
'Asia/Sakhalin' => 'Sachalin',
|
||||
'Asia/Samarkand' => 'Samarcanda',
|
||||
'Asia/Seoul' => 'Seul',
|
||||
'Asia/Shanghai' => 'Shanghai',
|
||||
'Asia/Singapore' => 'Singapore',
|
||||
'Asia/Srednekolymsk' => 'Srednekolymsk',
|
||||
'Asia/Taipei' => 'Taipei',
|
||||
'Asia/Tashkent' => 'Tashkent',
|
||||
'Asia/Tbilisi' => 'Tbilisi',
|
||||
'Asia/Tehran' => 'Teheran',
|
||||
'Asia/Thimphu' => 'Thimphu',
|
||||
'Asia/Tokyo' => 'Tokyo',
|
||||
'Asia/Tomsk' => 'Tomsk',
|
||||
'Asia/Ulaanbaatar' => 'Ulaanbaatar',
|
||||
'Asia/Urumqi' => 'Urumqi',
|
||||
'Asia/Ust-Nera' => 'Ust’-Nera',
|
||||
'Asia/Vientiane' => 'Vientiane',
|
||||
'Asia/Vladivostok' => 'Vladivostok',
|
||||
'Asia/Yerevan' => 'Yerevan',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'Azzorre',
|
||||
'Atlantic/Bermuda' => 'Bermuda',
|
||||
'Atlantic/Canary' => 'Canarie',
|
||||
'Atlantic/Cape_Verde' => 'Capo Verde',
|
||||
'Atlantic/South_Georgia' => 'Georgia del Sud',
|
||||
'Atlantic/Faroe' => 'Isole Fær Øer',
|
||||
'Atlantic/Madeira' => 'Madeira',
|
||||
'Atlantic/Reykjavik' => 'Reykjavík',
|
||||
'Atlantic/St_Helena' => 'Sant’Elena',
|
||||
'Atlantic/Stanley' => 'Stanley',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'Adelaide',
|
||||
'Australia/Brisbane' => 'Brisbane',
|
||||
'Australia/Broken_Hill' => 'Broken Hill',
|
||||
'Australia/Currie' => 'Currie',
|
||||
'Australia/Darwin' => 'Darwin',
|
||||
'Australia/Eucla' => 'Eucla',
|
||||
'Australia/Hobart' => 'Hobart',
|
||||
'Australia/Lindeman' => 'Lindeman',
|
||||
'Australia/Lord_Howe' => 'Lord Howe',
|
||||
'Australia/Melbourne' => 'Melbourne',
|
||||
'Australia/Perth' => 'Perth',
|
||||
'Australia/Sydney' => 'Sydney',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Amsterdam' => 'Amsterdam',
|
||||
'Europe/Andorra' => 'Andorra',
|
||||
'Europe/Astrakhan' => 'Astrakhan',
|
||||
'Europe/Athens' => 'Atene',
|
||||
'Europe/Belgrade' => 'Belgrado',
|
||||
'Europe/Berlin' => 'Berlino',
|
||||
'Europe/Bratislava' => 'Bratislava',
|
||||
'Europe/Brussels' => 'Bruxelles',
|
||||
'Europe/Bucharest' => 'Bucarest',
|
||||
'Europe/Budapest' => 'Budapest',
|
||||
'Europe/Busingen' => 'Büsingen',
|
||||
'Europe/Chisinau' => 'Chisinau',
|
||||
'Europe/Vatican' => 'Città del Vaticano',
|
||||
'Europe/Copenhagen' => 'Copenaghen',
|
||||
'Europe/Dublin' => 'Dublino',
|
||||
'Europe/Gibraltar' => 'Gibilterra',
|
||||
'Europe/Guernsey' => 'Guernsey',
|
||||
'Europe/Helsinki' => 'Helsinki',
|
||||
'Europe/Isle_of_Man' => 'Isola di Man',
|
||||
'Europe/Istanbul' => 'Istanbul',
|
||||
'Europe/Jersey' => 'Jersey',
|
||||
'Europe/Kaliningrad' => 'Kaliningrad',
|
||||
'Europe/Kiev' => 'Kiev',
|
||||
'Europe/Kirov' => 'Kirov',
|
||||
'Europe/Lisbon' => 'Lisbona',
|
||||
'Europe/London' => 'Londra',
|
||||
'Europe/Ljubljana' => 'Lubiana',
|
||||
'Europe/Luxembourg' => 'Lussemburgo',
|
||||
'Europe/Madrid' => 'Madrid',
|
||||
'Europe/Malta' => 'Malta',
|
||||
'Europe/Mariehamn' => 'Mariehamn',
|
||||
'Europe/Minsk' => 'Minsk',
|
||||
'Europe/Monaco' => 'Monaco',
|
||||
'Europe/Moscow' => 'Mosca',
|
||||
'Europe/Oslo' => 'Oslo',
|
||||
'Europe/Paris' => 'Parigi',
|
||||
'Europe/Podgorica' => 'Podgorica',
|
||||
'Europe/Prague' => 'Praga',
|
||||
'Europe/Riga' => 'Riga',
|
||||
'Europe/Rome' => 'Roma',
|
||||
'Europe/Samara' => 'Samara',
|
||||
'Europe/San_Marino' => 'San Marino',
|
||||
'Europe/Sarajevo' => 'Sarajevo',
|
||||
'Europe/Saratov' => 'Saratov',
|
||||
'Europe/Simferopol' => 'Sinferopoli',
|
||||
'Europe/Skopje' => 'Skopje',
|
||||
'Europe/Sofia' => 'Sofia',
|
||||
'Europe/Stockholm' => 'Stoccolma',
|
||||
'Europe/Tallinn' => 'Tallinn',
|
||||
'Europe/Tirane' => 'Tirana',
|
||||
'Europe/Ulyanovsk' => 'Ulyanovsk',
|
||||
'Europe/Uzhgorod' => 'Užhorod',
|
||||
'Europe/Vaduz' => 'Vaduz',
|
||||
'Europe/Warsaw' => 'Varsavia',
|
||||
'Europe/Vienna' => 'Vienna',
|
||||
'Europe/Vilnius' => 'Vilnius',
|
||||
'Europe/Volgograd' => 'Volgograd',
|
||||
'Europe/Zagreb' => 'Zagabria',
|
||||
'Europe/Zaporozhye' => 'Zaporozhye',
|
||||
'Europe/Zurich' => 'Zurigo',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'Antananarivo',
|
||||
'Indian/Chagos' => 'Chagos',
|
||||
'Indian/Cocos' => 'Cocos',
|
||||
'Indian/Comoro' => 'Comore',
|
||||
'Indian/Kerguelen' => 'Kerguelen',
|
||||
'Indian/Reunion' => 'La Riunione',
|
||||
'Indian/Mahe' => 'Mahe',
|
||||
'Indian/Maldives' => 'Maldive',
|
||||
'Indian/Mauritius' => 'Mauritius',
|
||||
'Indian/Mayotte' => 'Mayotte',
|
||||
'Indian/Christmas' => 'Natale',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'Apia',
|
||||
'Pacific/Auckland' => 'Auckland',
|
||||
'Pacific/Bougainville' => 'Bougainville',
|
||||
'Pacific/Chatham' => 'Chatham',
|
||||
'Pacific/Chuuk' => 'Chuuk',
|
||||
'Pacific/Efate' => 'Efate',
|
||||
'Pacific/Enderbury' => 'Enderbury',
|
||||
'Pacific/Fakaofo' => 'Fakaofo',
|
||||
'Pacific/Fiji' => 'Figi',
|
||||
'Pacific/Funafuti' => 'Funafuti',
|
||||
'Pacific/Galapagos' => 'Galapagos',
|
||||
'Pacific/Gambier' => 'Gambier',
|
||||
'Pacific/Guadalcanal' => 'Guadalcanal',
|
||||
'Pacific/Guam' => 'Guam',
|
||||
'Pacific/Honolulu' => 'Johnston',
|
||||
'Pacific/Kiritimati' => 'Kiritimati',
|
||||
'Pacific/Kosrae' => 'Kosrae',
|
||||
'Pacific/Kwajalein' => 'Kwajalein',
|
||||
'Pacific/Majuro' => 'Majuro',
|
||||
'Pacific/Marquesas' => 'Marchesi',
|
||||
'Pacific/Midway' => 'Midway',
|
||||
'Pacific/Nauru' => 'Nauru',
|
||||
'Pacific/Niue' => 'Niue',
|
||||
'Pacific/Norfolk' => 'Norfolk',
|
||||
'Pacific/Noumea' => 'Noumea',
|
||||
'Pacific/Pago_Pago' => 'Pago Pago',
|
||||
'Pacific/Palau' => 'Palau',
|
||||
'Pacific/Easter' => 'Pasqua',
|
||||
'Pacific/Pitcairn' => 'Pitcairn',
|
||||
'Pacific/Pohnpei' => 'Pohnpei',
|
||||
'Pacific/Port_Moresby' => 'Port Moresby',
|
||||
'Pacific/Rarotonga' => 'Rarotonga',
|
||||
'Pacific/Saipan' => 'Saipan',
|
||||
'Pacific/Tahiti' => 'Tahiti',
|
||||
'Pacific/Tarawa' => 'Tarawa',
|
||||
'Pacific/Tongatapu' => 'Tongatapu',
|
||||
'Pacific/Wake' => 'Wake',
|
||||
'Pacific/Wallis' => 'Wallis',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => 'UTC',
|
||||
),
|
||||
);
|
||||
Binary file not shown.
@@ -0,0 +1,264 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Country List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_countryAR = array(
|
||||
'IS' => 'アイスランド',
|
||||
'IE' => 'アイルランド',
|
||||
'AZ' => 'アゼルバイジャン',
|
||||
'AC' => 'アセンション島',
|
||||
'AF' => 'アフガニスタン',
|
||||
'US' => 'アメリカ合衆国',
|
||||
'AE' => 'アラブ首長国連邦',
|
||||
'DZ' => 'アルジェリア',
|
||||
'AR' => 'アルゼンチン',
|
||||
'AW' => 'アルバ',
|
||||
'AL' => 'アルバニア',
|
||||
'AM' => 'アルメニア',
|
||||
'AI' => 'アンギラ',
|
||||
'AO' => 'アンゴラ',
|
||||
'AG' => 'アンティグア・バーブーダ',
|
||||
'AD' => 'アンドラ',
|
||||
'YE' => 'イエメン',
|
||||
'GB' => 'イギリス',
|
||||
'IL' => 'イスラエル',
|
||||
'IT' => 'イタリア',
|
||||
'IQ' => 'イラク',
|
||||
'IR' => 'イラン',
|
||||
'IN' => 'インド',
|
||||
'ID' => 'インドネシア',
|
||||
'WF' => 'ウォリス・フツナ',
|
||||
'UG' => 'ウガンダ',
|
||||
'UA' => 'ウクライナ',
|
||||
'UZ' => 'ウズベキスタン',
|
||||
'UY' => 'ウルグアイ',
|
||||
'EC' => 'エクアドル',
|
||||
'EG' => 'エジプト',
|
||||
'EE' => 'エストニア',
|
||||
'SZ' => 'エスワティニ',
|
||||
'ET' => 'エチオピア',
|
||||
'ER' => 'エリトリア',
|
||||
'SV' => 'エルサルバドル',
|
||||
'AU' => 'オーストラリア',
|
||||
'AT' => 'オーストリア',
|
||||
'AX' => 'オーランド諸島',
|
||||
'OM' => 'オマーン',
|
||||
'NL' => 'オランダ',
|
||||
'BQ' => 'オランダ領カリブ',
|
||||
'GH' => 'ガーナ',
|
||||
'CV' => 'カーボベルデ',
|
||||
'GG' => 'ガーンジー',
|
||||
'GY' => 'ガイアナ',
|
||||
'KZ' => 'カザフスタン',
|
||||
'QA' => 'カタール',
|
||||
'CA' => 'カナダ',
|
||||
'IC' => 'カナリア諸島',
|
||||
'GA' => 'ガボン',
|
||||
'CM' => 'カメルーン',
|
||||
'GM' => 'ガンビア',
|
||||
'KH' => 'カンボジア',
|
||||
'GN' => 'ギニア',
|
||||
'GW' => 'ギニアビサウ',
|
||||
'CY' => 'キプロス',
|
||||
'CU' => 'キューバ',
|
||||
'CW' => 'キュラソー',
|
||||
'GR' => 'ギリシャ',
|
||||
'KI' => 'キリバス',
|
||||
'KG' => 'キルギス',
|
||||
'GT' => 'グアテマラ',
|
||||
'GP' => 'グアドループ',
|
||||
'GU' => 'グアム',
|
||||
'KW' => 'クウェート',
|
||||
'CK' => 'クック諸島',
|
||||
'GL' => 'グリーンランド',
|
||||
'CX' => 'クリスマス島',
|
||||
'CP' => 'クリッパートン島',
|
||||
'GD' => 'グレナダ',
|
||||
'HR' => 'クロアチア',
|
||||
'KY' => 'ケイマン諸島',
|
||||
'KE' => 'ケニア',
|
||||
'CI' => 'コートジボワール',
|
||||
'CC' => 'ココス(キーリング)諸島',
|
||||
'CR' => 'コスタリカ',
|
||||
'XK' => 'コソボ',
|
||||
'KM' => 'コモロ',
|
||||
'CO' => 'コロンビア',
|
||||
'CG' => 'コンゴ共和国',
|
||||
'CD' => 'コンゴ民主共和国',
|
||||
'SA' => 'サウジアラビア',
|
||||
'GS' => 'サウスジョージア・サウスサンドウィッチ諸島',
|
||||
'WS' => 'サモア',
|
||||
'BL' => 'サン・バルテルミー',
|
||||
'MF' => 'サン・マルタン',
|
||||
'ST' => 'サントメ・プリンシペ',
|
||||
'ZM' => 'ザンビア',
|
||||
'PM' => 'サンピエール島・ミクロン島',
|
||||
'SM' => 'サンマリノ',
|
||||
'SL' => 'シエラレオネ',
|
||||
'DJ' => 'ジブチ',
|
||||
'GI' => 'ジブラルタル',
|
||||
'JE' => 'ジャージー',
|
||||
'JM' => 'ジャマイカ',
|
||||
'GE' => 'ジョージア',
|
||||
'SY' => 'シリア',
|
||||
'SG' => 'シンガポール',
|
||||
'SX' => 'シント・マールテン',
|
||||
'ZW' => 'ジンバブエ',
|
||||
'CH' => 'スイス',
|
||||
'SE' => 'スウェーデン',
|
||||
'SD' => 'スーダン',
|
||||
'SJ' => 'スバールバル諸島・ヤンマイエン島',
|
||||
'ES' => 'スペイン',
|
||||
'SR' => 'スリナム',
|
||||
'LK' => 'スリランカ',
|
||||
'SK' => 'スロバキア',
|
||||
'SI' => 'スロベニア',
|
||||
'EA' => 'セウタ・メリリャ',
|
||||
'SC' => 'セーシェル',
|
||||
'SN' => 'セネガル',
|
||||
'RS' => 'セルビア',
|
||||
'KN' => 'セントクリストファー・ネーヴィス',
|
||||
'VC' => 'セントビンセント及びグレナディーン諸島',
|
||||
'SH' => 'セントヘレナ',
|
||||
'LC' => 'セントルシア',
|
||||
'SO' => 'ソマリア',
|
||||
'SB' => 'ソロモン諸島',
|
||||
'TC' => 'タークス・カイコス諸島',
|
||||
'TH' => 'タイ',
|
||||
'TJ' => 'タジキスタン',
|
||||
'TZ' => 'タンザニア',
|
||||
'CZ' => 'チェコ',
|
||||
'TD' => 'チャド',
|
||||
'TN' => 'チュニジア',
|
||||
'CL' => 'チリ',
|
||||
'TV' => 'ツバル',
|
||||
'DG' => 'ディエゴガルシア島',
|
||||
'DK' => 'デンマーク',
|
||||
'DE' => 'ドイツ',
|
||||
'TG' => 'トーゴ',
|
||||
'TK' => 'トケラウ',
|
||||
'DO' => 'ドミニカ共和国',
|
||||
'DM' => 'ドミニカ国',
|
||||
'TA' => 'トリスタン・ダ・クーニャ',
|
||||
'TT' => 'トリニダード・トバゴ',
|
||||
'TM' => 'トルクメニスタン',
|
||||
'TR' => 'トルコ',
|
||||
'TO' => 'トンガ',
|
||||
'NG' => 'ナイジェリア',
|
||||
'NR' => 'ナウル',
|
||||
'NA' => 'ナミビア',
|
||||
'NU' => 'ニウエ',
|
||||
'NI' => 'ニカラグア',
|
||||
'NE' => 'ニジェール',
|
||||
'NC' => 'ニューカレドニア',
|
||||
'NZ' => 'ニュージーランド',
|
||||
'NP' => 'ネパール',
|
||||
'NF' => 'ノーフォーク島',
|
||||
'NO' => 'ノルウェー',
|
||||
'HM' => 'ハード島・マクドナルド諸島',
|
||||
'BH' => 'バーレーン',
|
||||
'HT' => 'ハイチ',
|
||||
'PK' => 'パキスタン',
|
||||
'VA' => 'バチカン市国',
|
||||
'PA' => 'パナマ',
|
||||
'VU' => 'バヌアツ',
|
||||
'BS' => 'バハマ',
|
||||
'PG' => 'パプアニューギニア',
|
||||
'BM' => 'バミューダ',
|
||||
'PW' => 'パラオ',
|
||||
'PY' => 'パラグアイ',
|
||||
'BB' => 'バルバドス',
|
||||
'PS' => 'パレスチナ',
|
||||
'HU' => 'ハンガリー',
|
||||
'BD' => 'バングラデシュ',
|
||||
'PN' => 'ピトケアン諸島',
|
||||
'FJ' => 'フィジー',
|
||||
'PH' => 'フィリピン',
|
||||
'FI' => 'フィンランド',
|
||||
'BT' => 'ブータン',
|
||||
'BV' => 'ブーベ島',
|
||||
'PR' => 'プエルトリコ',
|
||||
'FO' => 'フェロー諸島',
|
||||
'FK' => 'フォークランド諸島 (マルビーナス諸島)',
|
||||
'BR' => 'ブラジル',
|
||||
'FR' => 'フランス',
|
||||
'BG' => 'ブルガリア',
|
||||
'BF' => 'ブルキナファソ',
|
||||
'BN' => 'ブルネイ',
|
||||
'BI' => 'ブルンジ',
|
||||
'VN' => 'ベトナム',
|
||||
'BJ' => 'ベナン',
|
||||
'VE' => 'ベネズエラ',
|
||||
'BY' => 'ベラルーシ',
|
||||
'BZ' => 'ベリーズ',
|
||||
'PE' => 'ペルー',
|
||||
'BE' => 'ベルギー',
|
||||
'PL' => 'ポーランド',
|
||||
'BA' => 'ボスニア・ヘルツェゴビナ',
|
||||
'BW' => 'ボツワナ',
|
||||
'BO' => 'ボリビア',
|
||||
'PT' => 'ポルトガル',
|
||||
'HN' => 'ホンジュラス',
|
||||
'MH' => 'マーシャル諸島',
|
||||
'MO' => 'マカオ',
|
||||
'MG' => 'マダガスカル',
|
||||
'YT' => 'マヨット',
|
||||
'MW' => 'マラウイ',
|
||||
'ML' => 'マリ',
|
||||
'MT' => 'マルタ',
|
||||
'MQ' => 'マルティニーク',
|
||||
'MY' => 'マレーシア',
|
||||
'IM' => 'マン島',
|
||||
'FM' => 'ミクロネシア連邦',
|
||||
'MM' => 'ミャンマー (ビルマ)',
|
||||
'MX' => 'メキシコ',
|
||||
'MU' => 'モーリシャス',
|
||||
'MR' => 'モーリタニア',
|
||||
'MZ' => 'モザンビーク',
|
||||
'MC' => 'モナコ',
|
||||
'MV' => 'モルディブ',
|
||||
'MD' => 'モルドバ',
|
||||
'MA' => 'モロッコ',
|
||||
'MN' => 'モンゴル',
|
||||
'ME' => 'モンテネグロ',
|
||||
'MS' => 'モントセラト',
|
||||
'JO' => 'ヨルダン',
|
||||
'LA' => 'ラオス',
|
||||
'LV' => 'ラトビア',
|
||||
'LT' => 'リトアニア',
|
||||
'LY' => 'リビア',
|
||||
'LI' => 'リヒテンシュタイン',
|
||||
'LR' => 'リベリア',
|
||||
'RO' => 'ルーマニア',
|
||||
'LU' => 'ルクセンブルク',
|
||||
'RW' => 'ルワンダ',
|
||||
'LS' => 'レソト',
|
||||
'LB' => 'レバノン',
|
||||
'RE' => 'レユニオン',
|
||||
'RU' => 'ロシア',
|
||||
'IO' => '英領インド洋地域',
|
||||
'VG' => '英領ヴァージン諸島',
|
||||
'KR' => '韓国',
|
||||
'HK' => '香港',
|
||||
'UM' => '合衆国領有小離島',
|
||||
'EH' => '西サハラ',
|
||||
'GQ' => '赤道ギニア',
|
||||
'TW' => '台湾',
|
||||
'CF' => '中央アフリカ共和国',
|
||||
'CN' => '中国',
|
||||
'TL' => '東ティモール',
|
||||
'ZA' => '南アフリカ',
|
||||
'SS' => '南スーダン',
|
||||
'AQ' => '南極',
|
||||
'JP' => '日本',
|
||||
'GF' => '仏領ギアナ',
|
||||
'PF' => '仏領ポリネシア',
|
||||
'TF' => '仏領極南諸島',
|
||||
'VI' => '米領ヴァージン諸島',
|
||||
'AS' => '米領サモア',
|
||||
'MK' => '北マケドニア',
|
||||
'MP' => '北マリアナ諸島',
|
||||
'KP' => '北朝鮮',
|
||||
);
|
||||
@@ -0,0 +1,470 @@
|
||||
<?php
|
||||
|
||||
// OpenConf Zones List
|
||||
//
|
||||
// NOTE: This file needs to be in UTF-8 encoding; use caution if editing manually
|
||||
|
||||
$OC_zoneTerritoryAR = array(
|
||||
'Asia' => 'アジア',
|
||||
'Africa' => 'アフリカ',
|
||||
'America' => 'アメリカ大陸',
|
||||
'Indian' => 'インド',
|
||||
'Australia' => 'オーストラリア',
|
||||
'Europe' => 'ヨーロッパ',
|
||||
'UTC' => '協定世界時 (UTC)',
|
||||
'Pacific' => '太平洋',
|
||||
'Atlantic' => '大西洋',
|
||||
'Antarctica' => '南極',
|
||||
'Arctic' => '北極',
|
||||
);
|
||||
|
||||
$OC_zoneAR = array(
|
||||
'Africa' => array(
|
||||
'Africa/El_Aaiun' => 'アイウン',
|
||||
'Africa/Accra' => 'アクラ',
|
||||
'Africa/Addis_Ababa' => 'アジスアベバ',
|
||||
'Africa/Asmara' => 'アスマラ',
|
||||
'Africa/Abidjan' => 'アビジャン',
|
||||
'Africa/Algiers' => 'アルジェ',
|
||||
'Africa/Windhoek' => 'ウィントフック',
|
||||
'Africa/Cairo' => 'カイロ',
|
||||
'Africa/Casablanca' => 'カサブランカ',
|
||||
'Africa/Kampala' => 'カンパラ',
|
||||
'Africa/Kigali' => 'キガリ',
|
||||
'Africa/Kinshasa' => 'キンシャサ',
|
||||
'Africa/Conakry' => 'コナクリ',
|
||||
'Africa/Sao_Tome' => 'サントメ',
|
||||
'Africa/Djibouti' => 'ジブチ',
|
||||
'Africa/Juba' => 'ジュバ',
|
||||
'Africa/Ceuta' => 'セウタ',
|
||||
'Africa/Dakar' => 'ダカール',
|
||||
'Africa/Dar_es_Salaam' => 'ダルエスサラーム',
|
||||
'Africa/Tunis' => 'チュニス',
|
||||
'Africa/Douala' => 'ドゥアラ',
|
||||
'Africa/Tripoli' => 'トリポリ',
|
||||
'Africa/Nairobi' => 'ナイロビ',
|
||||
'Africa/Niamey' => 'ニアメ',
|
||||
'Africa/Nouakchott' => 'ヌアクショット',
|
||||
'Africa/Gaborone' => 'ハボローネ',
|
||||
'Africa/Bamako' => 'バマコ',
|
||||
'Africa/Harare' => 'ハラレ',
|
||||
'Africa/Khartoum' => 'ハルツーム',
|
||||
'Africa/Bangui' => 'バンギ',
|
||||
'Africa/Banjul' => 'バンジュール',
|
||||
'Africa/Bissau' => 'ビサウ',
|
||||
'Africa/Bujumbura' => 'ブジュンブラ',
|
||||
'Africa/Brazzaville' => 'ブラザビル',
|
||||
'Africa/Blantyre' => 'ブランタイヤ',
|
||||
'Africa/Freetown' => 'フリータウン',
|
||||
'Africa/Porto-Novo' => 'ポルトノボ',
|
||||
'Africa/Maseru' => 'マセル',
|
||||
'Africa/Maputo' => 'マプト',
|
||||
'Africa/Malabo' => 'マラボ',
|
||||
'Africa/Mbabane' => 'ムババーネ',
|
||||
'Africa/Mogadishu' => 'モガディシオ',
|
||||
'Africa/Monrovia' => 'モンロビア',
|
||||
'Africa/Johannesburg' => 'ヨハネスブルグ',
|
||||
'Africa/Lagos' => 'ラゴス',
|
||||
'Africa/Libreville' => 'リーブルヴィル',
|
||||
'Africa/Luanda' => 'ルアンダ',
|
||||
'Africa/Lusaka' => 'ルサカ',
|
||||
'Africa/Lubumbashi' => 'ルブンバシ',
|
||||
'Africa/Lome' => 'ロメ',
|
||||
'Africa/Ouagadougou' => 'ワガドゥグー',
|
||||
'Africa/Ndjamena' => 'ンジャメナ',
|
||||
),
|
||||
'America' => array(
|
||||
'America/Asuncion' => 'アスンシオン',
|
||||
'America/Adak' => 'アダック',
|
||||
'America/Atikokan' => 'アティコカン',
|
||||
'America/Araguaina' => 'アラグァイナ',
|
||||
'America/Aruba' => 'アルバ',
|
||||
'America/Anchorage' => 'アンカレッジ',
|
||||
'America/Anguilla' => 'アンギラ',
|
||||
'America/Antigua' => 'アンティグア',
|
||||
'America/Yellowknife' => 'イエローナイフ',
|
||||
'America/Iqaluit' => 'イカルイット',
|
||||
'America/Scoresbysund' => 'イトコルトルミット',
|
||||
'America/Inuvik' => 'イヌヴィク',
|
||||
'America/Indiana/Indianapolis' => 'インディアナポリス',
|
||||
'America/Indiana/Winamac' => 'インディアナ州ウィナマック',
|
||||
'America/Indiana/Tell_City' => 'インディアナ州テルシティ',
|
||||
'America/Indiana/Knox' => 'インディアナ州ノックス',
|
||||
'America/Indiana/Petersburg' => 'インディアナ州ピーターズバーグ',
|
||||
'America/Indiana/Vevay' => 'インディアナ州ビベー',
|
||||
'America/Indiana/Vincennes' => 'インディアナ州ビンセンス',
|
||||
'America/Indiana/Marengo' => 'インディアナ州マレンゴ',
|
||||
'America/Winnipeg' => 'ウィニペグ',
|
||||
'America/Argentina/Ushuaia' => 'ウシュアイア',
|
||||
'America/Eirunepe' => 'エイルネペ',
|
||||
'America/Edmonton' => 'エドモントン',
|
||||
'America/El_Salvador' => 'エルサルバドル',
|
||||
'America/Hermosillo' => 'エルモシヨ',
|
||||
'America/Ojinaga' => 'オヒナガ',
|
||||
'America/Guyana' => 'ガイアナ',
|
||||
'America/Cayenne' => 'カイエンヌ',
|
||||
'America/Argentina/Catamarca' => 'カタマルカ',
|
||||
'America/Caracas' => 'カラカス',
|
||||
'America/Cancun' => 'カンクン',
|
||||
'America/Campo_Grande' => 'カンポグランデ',
|
||||
'America/Curacao' => 'キュラソー',
|
||||
'America/Guatemala' => 'グアテマラ',
|
||||
'America/Guadeloupe' => 'グアドループ',
|
||||
'America/Guayaquil' => 'グアヤキル',
|
||||
'America/Cuiaba' => 'クイアバ',
|
||||
'America/Goose_Bay' => 'グースベイ',
|
||||
'America/Kralendijk' => 'クラレンダイク',
|
||||
'America/Grand_Turk' => 'グランドターク',
|
||||
'America/Glace_Bay' => 'グレースベイ',
|
||||
'America/Creston' => 'クレストン',
|
||||
'America/Grenada' => 'グレナダ',
|
||||
'America/Cayman' => 'ケイマン',
|
||||
'America/Kentucky/Monticello' => 'ケンタッキー州モンティチェロ',
|
||||
'America/Cambridge_Bay' => 'ケンブリッジベイ',
|
||||
'America/Costa_Rica' => 'コスタリカ',
|
||||
'America/Argentina/Cordoba' => 'コルドバ',
|
||||
'America/Argentina/Salta' => 'サルタ',
|
||||
'America/St_Barthelemy' => 'サン・バルテルミー',
|
||||
'America/Thunder_Bay' => 'サンダーベイ',
|
||||
'America/Santarem' => 'サンタレム',
|
||||
'America/Santiago' => 'サンチアゴ',
|
||||
'America/Santo_Domingo' => 'サントドミンゴ',
|
||||
'America/Sao_Paulo' => 'サンパウロ',
|
||||
'America/Argentina/San_Juan' => 'サンファン',
|
||||
'America/Argentina/San_Luis' => 'サンルイス',
|
||||
'America/Chicago' => 'シカゴ',
|
||||
'America/Sitka' => 'シトカ',
|
||||
'America/Jamaica' => 'ジャマイカ',
|
||||
'America/Juneau' => 'ジュノー',
|
||||
'America/Swift_Current' => 'スウィフトカレント',
|
||||
'America/St_Kitts' => 'セントクリストファー',
|
||||
'America/St_Johns' => 'セントジョンズ',
|
||||
'America/St_Thomas' => 'セントトーマス',
|
||||
'America/St_Vincent' => 'セントビンセント',
|
||||
'America/St_Lucia' => 'セントルシア',
|
||||
'America/Thule' => 'チューレ',
|
||||
'America/Chihuahua' => 'チワワ',
|
||||
'America/Tijuana' => 'ティフアナ',
|
||||
'America/Tegucigalpa' => 'テグシガルパ',
|
||||
'America/Detroit' => 'デトロイト',
|
||||
'America/Denver' => 'デンバー',
|
||||
'America/Danmarkshavn' => 'デンマークシャウン',
|
||||
'America/Argentina/Tucuman' => 'トゥクマン',
|
||||
'America/Dawson' => 'ドーソン',
|
||||
'America/Dawson_Creek' => 'ドーソンクリーク',
|
||||
'America/Dominica' => 'ドミニカ',
|
||||
'America/Tortola' => 'トルトーラ',
|
||||
'America/Toronto' => 'トロント',
|
||||
'America/Nassau' => 'ナッソー',
|
||||
'America/Nipigon' => 'ニピゴン',
|
||||
'America/New_York' => 'ニューヨーク',
|
||||
'America/Nuuk' => 'ヌーク',
|
||||
'America/North_Dakota/Center' => 'ノースダコタ州センター',
|
||||
'America/North_Dakota/New_Salem' => 'ノースダコタ州ニューセーラム',
|
||||
'America/North_Dakota/Beulah' => 'ノースダコタ州ビューラー',
|
||||
'America/Nome' => 'ノーム',
|
||||
'America/Noronha' => 'ノローニャ',
|
||||
'America/Bahia_Banderas' => 'バイアバンデラ',
|
||||
'America/Bahia' => 'バイーア',
|
||||
'America/Panama' => 'パナマ',
|
||||
'America/Havana' => 'ハバナ',
|
||||
'America/Paramaribo' => 'パラマリボ',
|
||||
'America/Halifax' => 'ハリファクス',
|
||||
'America/Barbados' => 'バルバドス',
|
||||
'America/Vancouver' => 'バンクーバー',
|
||||
'America/Pangnirtung' => 'パンナータング',
|
||||
'America/Phoenix' => 'フェニックス',
|
||||
'America/Argentina/Buenos_Aires' => 'ブエノスアイレス',
|
||||
'America/Puerto_Rico' => 'プエルトリコ',
|
||||
'America/Fort_Nelson' => 'フォートネルソン',
|
||||
'America/Fortaleza' => 'フォルタレザ',
|
||||
'America/Argentina/Jujuy' => 'フフイ',
|
||||
'America/Blanc-Sablon' => 'ブラン・サブロン',
|
||||
'America/Punta_Arenas' => 'プンタアレナス',
|
||||
'America/Belize' => 'ベリーズ',
|
||||
'America/Belem' => 'ベレン',
|
||||
'America/Boa_Vista' => 'ボアビスタ',
|
||||
'America/Boise' => 'ボイシ',
|
||||
'America/Port_of_Spain' => 'ポートオブスペイン',
|
||||
'America/Bogota' => 'ボゴタ',
|
||||
'America/Port-au-Prince' => 'ポルトープランス',
|
||||
'America/Porto_Velho' => 'ポルトベーリョ',
|
||||
'America/Whitehorse' => 'ホワイトホース',
|
||||
'America/Mazatlan' => 'マサトラン',
|
||||
'America/Maceio' => 'マセイオ',
|
||||
'America/Matamoros' => 'マタモロス',
|
||||
'America/Manaus' => 'マナウス',
|
||||
'America/Managua' => 'マナグア',
|
||||
'America/Marigot' => 'マリゴ',
|
||||
'America/Martinique' => 'マルティニーク',
|
||||
'America/Miquelon' => 'ミクロン島',
|
||||
'America/Mexico_City' => 'メキシコシティー',
|
||||
'America/Metlakatla' => 'メトラカトラ',
|
||||
'America/Menominee' => 'メノミニー',
|
||||
'America/Merida' => 'メリダ',
|
||||
'America/Argentina/Mendoza' => 'メンドーサ',
|
||||
'America/Moncton' => 'モンクトン',
|
||||
'America/Montevideo' => 'モンテビデオ',
|
||||
'America/Monterrey' => 'モンテレイ',
|
||||
'America/Montserrat' => 'モントセラト',
|
||||
'America/Yakutat' => 'ヤクタット',
|
||||
'America/La_Paz' => 'ラパス',
|
||||
'America/Argentina/La_Rioja' => 'ラリオハ',
|
||||
'America/Rankin_Inlet' => 'ランキンインレット',
|
||||
'America/Argentina/Rio_Gallegos' => 'リオガジェゴス',
|
||||
'America/Rio_Branco' => 'リオブランコ',
|
||||
'America/Lima' => 'リマ',
|
||||
'America/Kentucky/Louisville' => 'ルイビル',
|
||||
'America/Rainy_River' => 'レイニーリバー',
|
||||
'America/Recife' => 'レシフェ',
|
||||
'America/Regina' => 'レジャイナ',
|
||||
'America/Resolute' => 'レゾリュート',
|
||||
'America/Lower_Princes' => 'ローワー・プリンセズ・クウォーター',
|
||||
'America/Los_Angeles' => 'ロサンゼルス',
|
||||
),
|
||||
'Antarctica' => array(
|
||||
'Antarctica/Casey' => 'ケーシー基地',
|
||||
'Antarctica/Davis' => 'デービス基地',
|
||||
'Antarctica/DumontDUrville' => 'デュモン・デュルヴィル基地',
|
||||
'Antarctica/Troll' => 'トロル基地',
|
||||
'Antarctica/Palmer' => 'パーマー基地',
|
||||
'Antarctica/Vostok' => 'ボストーク基地',
|
||||
'Antarctica/McMurdo' => 'マクマード基地',
|
||||
'Antarctica/Macquarie' => 'マッコリー',
|
||||
'Antarctica/Mawson' => 'モーソン基地',
|
||||
'Antarctica/Rothera' => 'ロゼラ基地',
|
||||
'Antarctica/Syowa' => '昭和基地',
|
||||
),
|
||||
'Arctic' => array(
|
||||
'Arctic/Longyearbyen' => 'ロングイェールビーン',
|
||||
),
|
||||
'Asia' => array(
|
||||
'Asia/Aqtau' => 'アクタウ',
|
||||
'Asia/Aqtobe' => 'アクトベ',
|
||||
'Asia/Ashgabat' => 'アシガバード',
|
||||
'Asia/Atyrau' => 'アティラウ',
|
||||
'Asia/Aden' => 'アデン',
|
||||
'Asia/Anadyr' => 'アナディリ',
|
||||
'Asia/Almaty' => 'アルマトイ',
|
||||
'Asia/Amman' => 'アンマン',
|
||||
'Asia/Irkutsk' => 'イルクーツク',
|
||||
'Asia/Ust-Nera' => 'ウスチネラ',
|
||||
'Asia/Vladivostok' => 'ウラジオストク',
|
||||
'Asia/Ulaanbaatar' => 'ウランバートル',
|
||||
'Asia/Urumqi' => 'ウルムチ',
|
||||
'Asia/Yekaterinburg' => 'エカテリンブルグ',
|
||||
'Asia/Jerusalem' => 'エルサレム',
|
||||
'Asia/Yerevan' => 'エレバン',
|
||||
'Asia/Omsk' => 'オムスク',
|
||||
'Asia/Oral' => 'オラル',
|
||||
'Asia/Gaza' => 'ガザ',
|
||||
'Asia/Qatar' => 'カタール',
|
||||
'Asia/Kathmandu' => 'カトマンズ',
|
||||
'Asia/Kabul' => 'カブール',
|
||||
'Asia/Kamchatka' => 'カムチャッカ',
|
||||
'Asia/Karachi' => 'カラチ',
|
||||
'Asia/Kuala_Lumpur' => 'クアラルンプール',
|
||||
'Asia/Kuwait' => 'クウェート',
|
||||
'Asia/Qyzylorda' => 'クズロルダ',
|
||||
'Asia/Kuching' => 'クチン',
|
||||
'Asia/Krasnoyarsk' => 'クラスノヤルスク',
|
||||
'Asia/Qostanay' => 'コスタナイ',
|
||||
'Asia/Kolkata' => 'コルカタ',
|
||||
'Asia/Colombo' => 'コロンボ',
|
||||
'Asia/Sakhalin' => 'サハリン',
|
||||
'Asia/Samarkand' => 'サマルカンド',
|
||||
'Asia/Jakarta' => 'ジャカルタ',
|
||||
'Asia/Jayapura' => 'ジャヤプラ',
|
||||
'Asia/Singapore' => 'シンガポール',
|
||||
'Asia/Srednekolymsk' => 'スレドネコリムスク',
|
||||
'Asia/Seoul' => 'ソウル',
|
||||
'Asia/Tashkent' => 'タシケント',
|
||||
'Asia/Dhaka' => 'ダッカ',
|
||||
'Asia/Damascus' => 'ダマスカス',
|
||||
'Asia/Chita' => 'チタ',
|
||||
'Asia/Choibalsan' => 'チョイバルサン',
|
||||
'Asia/Dili' => 'ディリ',
|
||||
'Asia/Thimphu' => 'ティンプー',
|
||||
'Asia/Tehran' => 'テヘラン',
|
||||
'Asia/Dushanbe' => 'ドゥシャンベ',
|
||||
'Asia/Dubai' => 'ドバイ',
|
||||
'Asia/Tbilisi' => 'トビリシ',
|
||||
'Asia/Tomsk' => 'トムスク',
|
||||
'Asia/Nicosia' => 'ニコシア',
|
||||
'Asia/Novokuznetsk' => 'ノヴォクズネツク',
|
||||
'Asia/Novosibirsk' => 'ノヴォシビルスク',
|
||||
'Asia/Bahrain' => 'バーレーン',
|
||||
'Asia/Baku' => 'バクー',
|
||||
'Asia/Baghdad' => 'バグダッド',
|
||||
'Asia/Barnaul' => 'バルナウル',
|
||||
'Asia/Bangkok' => 'バンコク',
|
||||
'Asia/Khandyga' => 'ハンドゥイガ',
|
||||
'Asia/Vientiane' => 'ビエンチャン',
|
||||
'Asia/Bishkek' => 'ビシュケク',
|
||||
'Asia/Famagusta' => 'ファマグスタ',
|
||||
'Asia/Phnom_Penh' => 'プノンペン',
|
||||
'Asia/Brunei' => 'ブルネイ',
|
||||
'Asia/Beirut' => 'ベイルート',
|
||||
'Asia/Hebron' => 'ヘブロン',
|
||||
'Asia/Ho_Chi_Minh' => 'ホーチミン',
|
||||
'Asia/Hovd' => 'ホブド',
|
||||
'Asia/Pontianak' => 'ポンティアナック',
|
||||
'Asia/Macau' => 'マカオ',
|
||||
'Asia/Magadan' => 'マガダン',
|
||||
'Asia/Makassar' => 'マカッサル',
|
||||
'Asia/Muscat' => 'マスカット',
|
||||
'Asia/Manila' => 'マニラ',
|
||||
'Asia/Yakutsk' => 'ヤクーツク',
|
||||
'Asia/Yangon' => 'ヤンゴン',
|
||||
'Asia/Riyadh' => 'リヤド',
|
||||
'Asia/Hong_Kong' => '香港',
|
||||
'Asia/Shanghai' => '上海',
|
||||
'Asia/Taipei' => '台北',
|
||||
'Asia/Tokyo' => '東京',
|
||||
'Asia/Pyongyang' => '平壌',
|
||||
),
|
||||
'Atlantic' => array(
|
||||
'Atlantic/Azores' => 'アゾレス',
|
||||
'Atlantic/Cape_Verde' => 'カーボベルデ',
|
||||
'Atlantic/Canary' => 'カナリア',
|
||||
'Atlantic/South_Georgia' => 'サウスジョージア',
|
||||
'Atlantic/Stanley' => 'スタンレー',
|
||||
'Atlantic/St_Helena' => 'セントヘレナ',
|
||||
'Atlantic/Bermuda' => 'バミューダ',
|
||||
'Atlantic/Faroe' => 'フェロー',
|
||||
'Atlantic/Madeira' => 'マデイラ',
|
||||
'Atlantic/Reykjavik' => 'レイキャビク',
|
||||
),
|
||||
'Australia' => array(
|
||||
'Australia/Adelaide' => 'アデレード',
|
||||
'Australia/Currie' => 'カリー',
|
||||
'Australia/Sydney' => 'シドニー',
|
||||
'Australia/Darwin' => 'ダーウィン',
|
||||
'Australia/Perth' => 'パース',
|
||||
'Australia/Brisbane' => 'ブリスベン',
|
||||
'Australia/Broken_Hill' => 'ブロークンヒル',
|
||||
'Australia/Hobart' => 'ホバート',
|
||||
'Australia/Melbourne' => 'メルボルン',
|
||||
'Australia/Eucla' => 'ユークラ',
|
||||
'Australia/Lindeman' => 'リンデマン',
|
||||
'Australia/Lord_Howe' => 'ロードハウ',
|
||||
),
|
||||
'Europe' => array(
|
||||
'Europe/Astrakhan' => 'アストラハン',
|
||||
'Europe/Athens' => 'アテネ',
|
||||
'Europe/Amsterdam' => 'アムステルダム',
|
||||
'Europe/Andorra' => 'アンドラ',
|
||||
'Europe/Istanbul' => 'イスタンブール',
|
||||
'Europe/Vienna' => 'ウィーン',
|
||||
'Europe/Vilnius' => 'ヴィリニュス',
|
||||
'Europe/Uzhgorod' => 'ウージュホロド',
|
||||
'Europe/Ulyanovsk' => 'ウリヤノフスク',
|
||||
'Europe/Oslo' => 'オスロ',
|
||||
'Europe/Guernsey' => 'ガーンジー',
|
||||
'Europe/Kaliningrad' => 'カリーニングラード',
|
||||
'Europe/Kirov' => 'キーロフ',
|
||||
'Europe/Kiev' => 'キエフ',
|
||||
'Europe/Chisinau' => 'キシナウ',
|
||||
'Europe/Copenhagen' => 'コペンハーゲン',
|
||||
'Europe/Zagreb' => 'ザグレブ',
|
||||
'Europe/Zaporozhye' => 'ザポリージャ',
|
||||
'Europe/Samara' => 'サマラ',
|
||||
'Europe/Sarajevo' => 'サラエボ',
|
||||
'Europe/Saratov' => 'サラトフ',
|
||||
'Europe/San_Marino' => 'サンマリノ',
|
||||
'Europe/Gibraltar' => 'ジブラルタル',
|
||||
'Europe/Jersey' => 'ジャージー',
|
||||
'Europe/Simferopol' => 'シンフェロポリ',
|
||||
'Europe/Skopje' => 'スコピエ',
|
||||
'Europe/Stockholm' => 'ストックホルム',
|
||||
'Europe/Sofia' => 'ソフィア',
|
||||
'Europe/Dublin' => 'ダブリン',
|
||||
'Europe/Tallinn' => 'タリン',
|
||||
'Europe/Zurich' => 'チューリッヒ',
|
||||
'Europe/Tirane' => 'ティラナ',
|
||||
'Europe/Vatican' => 'バチカン',
|
||||
'Europe/Paris' => 'パリ',
|
||||
'Europe/Busingen' => 'ビュージンゲン',
|
||||
'Europe/Vaduz' => 'ファドゥーツ',
|
||||
'Europe/Bucharest' => 'ブカレスト',
|
||||
'Europe/Budapest' => 'ブダペスト',
|
||||
'Europe/Bratislava' => 'ブラチスラバ',
|
||||
'Europe/Prague' => 'プラハ',
|
||||
'Europe/Brussels' => 'ブリュッセル',
|
||||
'Europe/Belgrade' => 'ベオグラード',
|
||||
'Europe/Helsinki' => 'ヘルシンキ',
|
||||
'Europe/Berlin' => 'ベルリン',
|
||||
'Europe/Podgorica' => 'ポドゴリツァ',
|
||||
'Europe/Volgograd' => 'ボルゴグラード',
|
||||
'Europe/Madrid' => 'マドリード',
|
||||
'Europe/Mariehamn' => 'マリエハムン',
|
||||
'Europe/Malta' => 'マルタ',
|
||||
'Europe/Isle_of_Man' => 'マン島',
|
||||
'Europe/Minsk' => 'ミンスク',
|
||||
'Europe/Moscow' => 'モスクワ',
|
||||
'Europe/Monaco' => 'モナコ',
|
||||
'Europe/Riga' => 'リガ',
|
||||
'Europe/Lisbon' => 'リスボン',
|
||||
'Europe/Ljubljana' => 'リュブリャナ',
|
||||
'Europe/Luxembourg' => 'ルクセンブルク',
|
||||
'Europe/Rome' => 'ローマ',
|
||||
'Europe/London' => 'ロンドン',
|
||||
'Europe/Warsaw' => 'ワルシャワ',
|
||||
),
|
||||
'Indian' => array(
|
||||
'Indian/Antananarivo' => 'アンタナナリボ',
|
||||
'Indian/Christmas' => 'クリスマス島',
|
||||
'Indian/Kerguelen' => 'ケルゲレン諸島',
|
||||
'Indian/Cocos' => 'ココス諸島',
|
||||
'Indian/Comoro' => 'コモロ',
|
||||
'Indian/Chagos' => 'チャゴス',
|
||||
'Indian/Mahe' => 'マヘ',
|
||||
'Indian/Mayotte' => 'マヨット',
|
||||
'Indian/Mauritius' => 'モーリシャス',
|
||||
'Indian/Maldives' => 'モルディブ',
|
||||
'Indian/Reunion' => 'レユニオン',
|
||||
),
|
||||
'Pacific' => array(
|
||||
'Pacific/Apia' => 'アピア',
|
||||
'Pacific/Easter' => 'イースター島',
|
||||
'Pacific/Wake' => 'ウェーク島',
|
||||
'Pacific/Wallis' => 'ウォリス諸島',
|
||||
'Pacific/Efate' => 'エフェテ島',
|
||||
'Pacific/Enderbury' => 'エンダーベリー島',
|
||||
'Pacific/Auckland' => 'オークランド',
|
||||
'Pacific/Guadalcanal' => 'ガダルカナル',
|
||||
'Pacific/Galapagos' => 'ガラパゴス',
|
||||
'Pacific/Gambier' => 'ガンビエ諸島',
|
||||
'Pacific/Kiritimati' => 'キリスィマスィ島',
|
||||
'Pacific/Guam' => 'グアム',
|
||||
'Pacific/Kwajalein' => 'クェゼリン',
|
||||
'Pacific/Kosrae' => 'コスラエ',
|
||||
'Pacific/Saipan' => 'サイパン',
|
||||
'Pacific/Honolulu' => 'ジョンストン島',
|
||||
'Pacific/Tahiti' => 'タヒチ',
|
||||
'Pacific/Tarawa' => 'タラワ',
|
||||
'Pacific/Chatham' => 'チャタム',
|
||||
'Pacific/Chuuk' => 'チューク',
|
||||
'Pacific/Tongatapu' => 'トンガタプ',
|
||||
'Pacific/Nauru' => 'ナウル',
|
||||
'Pacific/Niue' => 'ニウエ',
|
||||
'Pacific/Noumea' => 'ヌメア',
|
||||
'Pacific/Norfolk' => 'ノーフォーク島',
|
||||
'Pacific/Pago_Pago' => 'パゴパゴ',
|
||||
'Pacific/Palau' => 'パラオ',
|
||||
'Pacific/Pitcairn' => 'ピトケアン諸島',
|
||||
'Pacific/Fakaofo' => 'ファカオフォ',
|
||||
'Pacific/Fiji' => 'フィジー',
|
||||
'Pacific/Bougainville' => 'ブーゲンビル',
|
||||
'Pacific/Funafuti' => 'フナフティ',
|
||||
'Pacific/Port_Moresby' => 'ポートモレスビー',
|
||||
'Pacific/Pohnpei' => 'ポンペイ島',
|
||||
'Pacific/Majuro' => 'マジュロ',
|
||||
'Pacific/Marquesas' => 'マルキーズ',
|
||||
'Pacific/Midway' => 'ミッドウェー島',
|
||||
'Pacific/Rarotonga' => 'ラロトンガ',
|
||||
),
|
||||
'UTC' => array(
|
||||
'UTC' => '協定世界時 (UTC)',
|
||||
),
|
||||
);
|
||||
@@ -0,0 +1,129 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------+
|
||||
// | OpenConf |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Copyright (c) 2002-2020 Zakon Group LLC. All Rights Reserved. |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | This source file is subject to the OpenConf License, available on |
|
||||
// | the OpenConf web site: www.OpenConf.com |
|
||||
// +----------------------------------------------------------------------+
|
||||
|
||||
// Maintain in language name sort order
|
||||
|
||||
$OC_languageAR = array(
|
||||
'de' => array(
|
||||
'language' => 'Deutsch — German',
|
||||
'encoding' => array('de-DE.UTF-8', 'de_DE.UTF-8', 'de.UTF-8', 'de_DE.utf8', 'de_DE', 'de', 'German', 'German_Germany.1252'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'de_DE'
|
||||
),
|
||||
'en' => array(
|
||||
'language' => 'English',
|
||||
'encoding' => array('en-US.UTF-8', 'en_US.UTF-8', 'en.UTF-8', 'en-US', 'en_US', 'en', 'English'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'en_US'
|
||||
),
|
||||
'en-GB' => array(
|
||||
'language' => 'English (UK)',
|
||||
'encoding' => array('en-GB.UTF-8', 'en_GB.UTF-8', 'en_GB.utf8', 'en.UTF-8', 'en-GB', 'en_GB', 'en', 'English'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'en_GB'
|
||||
),
|
||||
'es' => array(
|
||||
'language' => 'Español — Spanish',
|
||||
'encoding' => array('es.UTF-8', 'es_ES.UTF-8', 'es_ES.utf8', 'es.utf8', 'es', 'Spanish', 'Spanish_Spain.1252'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'es_ES'
|
||||
),
|
||||
'fr' => array(
|
||||
'language' => 'Français — French',
|
||||
'encoding' => array('fr-FR.UTF-8', 'fr_FR.UTF-8', 'fr_FR.utf8', 'fr.UTF-8', 'fr_FR', 'fr', 'French', 'French_France.1252'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'fr_FR'
|
||||
),
|
||||
'id' => array(
|
||||
'language' => 'Indonesian — bahasa Indonesia',
|
||||
'encoding' => array('id-ID.UTF-8', 'id_ID.UTF-8', 'id_ID.utf8', 'id.UTF-8', 'id_ID', 'id', 'Indonesian', 'Indonesian_indonesia.1252'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'id_ID'
|
||||
),
|
||||
'it' => array(
|
||||
'language' => 'Italiano — Italian',
|
||||
'encoding' => array('it-IT.UTF-8', 'it_IT.UTF-8', 'it_IT.utf8', 'it.UTF-8', 'it_IT', 'it', 'Italian', 'Italian_Italy.1252'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'it_IT'
|
||||
),
|
||||
'hu' => array(
|
||||
'language' => 'Magyar - Hungarian',
|
||||
'encoding' => array('hu.UTF-8', 'hu_HU.UTF-8', 'hu_HU.utf8', 'hu.utf8', 'hu_HU', 'hu', 'Hungarian', 'Hungarian_Hungary.1250'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'hu_HU'
|
||||
),
|
||||
'nl' => array(
|
||||
'language' => 'Nederlands — Dutch',
|
||||
'encoding' => array('nl-NL.UTF-8', 'nl_NL.UTF-8', 'nl_NL.utf8', 'nl.UTF-8', 'nl_NL', 'nl', 'Dutch', 'Dutch_Netherlands.1252'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'nl_NL'
|
||||
),
|
||||
'pt-BR' => array(
|
||||
'language' => 'Português (Brasil) — Portuguese (Brazil)',
|
||||
'encoding' => array('pt-BR.UTF-8', 'pt_BR.UTF-8', 'pt_BR.utf8', 'pt.UTF-8', 'pt_BR', 'pt', 'portuguese-brazil', 'Portuguese', 'Portuguese_Brazil.1252'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'pt_BR'
|
||||
),
|
||||
'tr' => array(
|
||||
'language' => 'Türkçe — Turkish',
|
||||
'encoding' => array('tr_TR.UTF-8', 'tr_TR.utf8', 'tr.UTF-8', 'tr.utf8', 'tr', 'Turkish', 'Turkish_Turkey.1254'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'tr_TR'
|
||||
),
|
||||
'bs' => array(
|
||||
'language' => 'босански - Bosnian',
|
||||
'encoding' => array('bs-BA.UTF-8', 'bs_BA.UTF-8', 'bs_BA.utf8', 'bs.UTF-8', 'bs_BA', 'bs', 'Bosnian', 'Bosnian_Bosnia and Herzegovina.1250'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'sr_RS' // MySQL does not define a bs locale
|
||||
),
|
||||
'ru' => array(
|
||||
'language' => 'ру́сский язы́к — Russian',
|
||||
'encoding' => array('ru.UTF-8', 'ru_RU.UTF-8', 'ru_RU.utf8', 'ru.utf8', 'ru', 'Russian', 'Russian_Russia.1251'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'ru_RU'
|
||||
),
|
||||
'sr-RS' => array(
|
||||
'language' => 'српски srpski — Serbian (Cyrillic)',
|
||||
'encoding' => array('sr-RS.UTF-8', 'sr_RS.UTF-8', 'sr_RS.utf8', 'sr.UTF-8', 'sr_RS', 'sr', 'sr_Cyrl', 'sr_Cyrl_RS', 'sr_CS', 'serbian-cyrillic', 'Serbian', 'Serbian_Cyrillic', 'Serbian (Cyrillic)_Serbia and Montenegro.1251'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'sr_RS'
|
||||
),
|
||||
'ar' => array(
|
||||
'language' => 'العربية — Arabic',
|
||||
'encoding' => array('ar.UTF-8', 'ar_SA.UTF-8', 'ar-SA.UTF-8', 'ar_SA.utf8', 'ar.utf8', 'ar', 'ar_SA', 'ar-SA', 'Arabic', 'Arabic_Saudi Arabia.1256'),
|
||||
'direction' => 'rtl',
|
||||
'mysql' => 'ar_SA'
|
||||
),
|
||||
'fa' => array(
|
||||
'language' => 'فارسی — Persian',
|
||||
'encoding' => array('fa-IR.UTF-8', 'fa_IR.UTF-8', 'fa_IR.utf8', 'fa.UTF-8', 'fa_IR', 'fa', 'persian-iran', 'Persian', 'Farsi_Iran.1256'),
|
||||
'direction' => 'rtl',
|
||||
'mysql' => 'fa_IR'
|
||||
),
|
||||
'zh-Hant' => array(
|
||||
'language' => '中文 (台灣)— Chinese (Traditional)',
|
||||
'encoding' => array('zh-Hant.UTF-8', 'zh_TW.UTF-8', 'zh-TW.UTF-8', 'zh_TW.utf8', 'zh-Hant', 'zh-TW', 'zh_TW', 'Chinese_Taiwan', 'Chinese_Taiwan.950', 'Chinese-Traditional'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'zh_TW'
|
||||
),
|
||||
'zh-Hans' => array(
|
||||
'language' => '中文(简体)— Chinese (Simplified)',
|
||||
'encoding' => array('zh-Hans.UTF-8', 'zh_CN.UTF-8', 'zh-CN.UTF-8', 'zh_CN.utf8', 'zh-Hans', 'zh-CN', 'zh_CN', 'Chinese_China', 'Chinese_China.936', 'Chinese-Simplified'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'zh_CN'
|
||||
),
|
||||
'ja' => array(
|
||||
'language' => '日本語 — Japanese',
|
||||
'encoding' => array('ja.UTF-8', 'ja_JP.UTF-8', 'ja-JP.UTF-8', 'ja_JP.utf8', 'ja.utf8', 'ja', 'ja_JP', 'Japanese', 'Japanese_Japan.932'),
|
||||
'direction' => 'ltr',
|
||||
'mysql' => 'ja_JP'
|
||||
),
|
||||
);
|
||||
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user