X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fsysnames.inc;h=507bd698dedecc98451c72b65190a208d8d129e9;hb=268a54dcfd08aff7113bc3afe8b784f36db2d0d4;hp=52f96c64b95a288a23498259281bbd4ebff44a56;hpb=0b63d898491b6577a5a5bf90e771dca0dcbbcf1f;p=fa-stable.git diff --git a/includes/sysnames.inc b/includes/sysnames.inc index 52f96c64..507bd698 100644 --- a/includes/sysnames.inc +++ b/includes/sysnames.inc @@ -40,7 +40,12 @@ $systypes_array = array ( ST_SALESORDER => _("Sales Order"), ST_SALESQUOTE => _("Sales Quotation"), ST_COSTUPDATE => _("Cost Update"), - ST_DIMENSION => _("Dimension") + ST_DIMENSION => _("Dimension"), + ); + +$fa_systypes_array = array ( + ST_INVADJUST => _("Fixed Assets Disposal"), + ST_COSTUPDATE => _("Fixed Assets Revaluation"), ); $type_shortcuts = array( @@ -151,6 +156,15 @@ $quick_entry_types = array( QE_SUPPINV => _("Supplier Invoice/Credit") ); +//---------------------------------------------------------------------------------- +// depreciation methods +$depreciation_methods = array( + 'D' => _("Declining balance"), + 'S' => _("Straight line"), + 'N' => _("Sum of the Year Digits"), + 'O' => _("One-time"), +); + //---------------------------------------------------------------------------------- // Types of stock items $stock_types = array( @@ -199,4 +213,28 @@ $bank_owner_types = array( // 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 +// +// FA supported db backend language settings. +// +$supported_collations = array( + 'utf8_xx' => _('Unicode (multilanguage)'), + 'utf8_is' => _('Icelandic'), + 'utf8_lv' => _('Latvian'), + 'utf8_ro' => _('Romanian'), + 'utf8_sl' => _('Slovenian'), + 'utf8_pl' => _('Polish'), + 'utf8_et' => _('Estonian'), + 'utf8_es' => _('Spanish'), // or 'spanish2', + 'utf8_sw' => _('Swedish'), + 'utf8_tr' => _('Turkish'), + 'utf8_cs' => _('Czech'), + 'utf8_da' => _('Danish'), + 'utf8_lt' => _('Lithuanian'), + 'utf8_sk' => _('Slovak'), + 'utf8_sp' => _('Spanish (alternative)'), + 'utf8_fa' => _('Persian'), + 'utf8_hu' => _('Hungarian'), + 'utf8_fr' => _('French'), + 'utf8_it' => _('Italian'), +); +