From: Joe Hunt Date: Thu, 4 Oct 2012 08:18:41 +0000 (+0200) Subject: Moved declaration of short monthnames from config.default.php. Too early for translat... X-Git-Tag: 2.3-final~404 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=5947e9d7f796e050c31d83ca4fefe1c77e315f55;p=fa-stable.git Moved declaration of short monthnames from config.default.php. Too early for translations. --- diff --git a/config.default.php b/config.default.php index 43c2547c..49486957 100644 --- a/config.default.php +++ b/config.default.php @@ -144,9 +144,6 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $dflt_date_fmt = 0; $dflt_date_sep = 0; - /* This month array is for use with the last 3 dateformats. */ - $tmonths = array("", _("Jan"),_("Feb"),_("Mar"),_("Apr"),_("May"),_("Jun"),_("Jul"),_("Aug"),_("Sep"),_("Oct"),_("Nov"),_("Dec")); - $pagesizes = array("Letter", "A4"); // default PDF pagesize /* Accounts Payable */ diff --git a/includes/sysnames.inc b/includes/sysnames.inc index 1b9f6754..440ff528 100644 --- a/includes/sysnames.inc +++ b/includes/sysnames.inc @@ -182,5 +182,8 @@ $pterm_types = array( PTT_FOLLOWING => _("Day In Following Month") ); +//---------------------------------------------------------------------------------- +// This month array is for use with the last 3 dateformats. +$tmonths = array("", _("Jan"),_("Feb"),_("Mar"),_("Apr"),_("May"),_("Jun"),_("Jul"),_("Aug"),_("Sep"),_("Oct"),_("Nov"),_("Dec")); ?> \ No newline at end of file