[0004216] Print Work Orders: database error fixed when voided WO is in selected range.
[fa-stable.git] / includes / sysnames.inc
index c5667300796c470f76ea0a1d8aeaedde971a2b0a..507bd698dedecc98451c72b65190a208d8d129e9 100644 (file)
@@ -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,3 +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"));
 
+//
+//     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'),
+);
+