From 4f267012fddbe246b0df3c7cae12f8fd91389aa8 Mon Sep 17 00:00:00 2001 From: rboren Date: Sat, 17 Apr 2004 05:01:10 +0000 Subject: [PATCH] Add date and time strings to locale.php. git-svn-id: http://svn.automattic.com/wordpress/trunk@1086 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/locale.php | 26 ++++++++++++++++++++++++++ wp-includes/wp-l10n.php | 4 +++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 wp-includes/locale.php diff --git a/wp-includes/locale.php b/wp-includes/locale.php new file mode 100644 index 0000000000..379d8797e2 --- /dev/null +++ b/wp-includes/locale.php @@ -0,0 +1,26 @@ + \ No newline at end of file diff --git a/wp-includes/wp-l10n.php b/wp-includes/wp-l10n.php index 09f84425a1..e3d689680e 100644 --- a/wp-includes/wp-l10n.php +++ b/wp-includes/wp-l10n.php @@ -2,7 +2,7 @@ $curpath = dirname(__FILE__).'/'; // The locale is hard-coded here for now. -$locale = 'en_GB'; +$locale = 'en_US'; $mofile = $curpath . "/languages/$locale.mo"; @@ -36,4 +36,6 @@ function __ngettext($single, $plural, $number) { global $l10n; return $l10n->ngettext($single, $plural, $number); } + +require($curpath . 'locale.php'); ?>