Fixed a couple of problems in installation procedures.
[fa-stable.git] / includes / sysnames.inc
index 10f05518ff41f6c3e37b9aef04e8ae057b92c0bf..c5667300796c470f76ea0a1d8aeaedde971a2b0a 100644 (file)
@@ -16,7 +16,7 @@
 //
 global $systypes_array, $bank_account_types, $bank_transfer_types, 
        $payment_person_types, $wo_types_array, $wo_cost_types, $class_types,
-       $quick_actions, $quick_entry_types, $stock_types, $tag_types;
+       $quick_actions, $quick_entry_types, $stock_types, $tag_types, $bank_owner;
 
 $systypes_array = array (
        ST_JOURNAL => _("Journal Entry"),
@@ -182,11 +182,20 @@ $pterm_types = array(
        PTT_DAYS => _("After No. of Days"),
        PTT_FOLLOWING => _("Day In Following Month")
 );
-//----------------------------------------------------------------------------------
 
 $tax_algorithms = array( 
        TCA_LINES => _("Sum per line taxes"), 
        TCA_TOTALS => _("Taxes from totals")
 );
+//----------------------------------------------------------------------------------
+
+$bank_owner_types = array(
+       BO_UNKNOWN => _("Unknown"),
+       BO_COMPANY => _("Company"),
+       BO_CUSTBRANCH => _("Customer"),
+       BO_SUPPLIER => _("Supplier")
+);
+
+// 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