X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=lang%2Fnew_language_template%2Flocale.inc;h=3e3a7c4e8d0e33cf5fe3174b777cb3aa7df6f756;hb=0345fa9bbe09a7b64b6afb094cdc9b2c95bd3763;hp=0ff96ccc978fae408bc4baae5f7db39167dac2ec;hpb=cf67cec296e611c30be010686a5ea96d730418b0;p=fa-stable.git diff --git a/lang/new_language_template/locale.inc b/lang/new_language_template/locale.inc index 0ff96ccc..3e3a7c4e 100644 --- a/lang/new_language_template/locale.inc +++ b/lang/new_language_template/locale.inc @@ -14,5 +14,45 @@ If your locale needs special functionality provided by hook functions copy this file to respective lang/xx_XX directory and edit templates below. You can safely remove not used function templates. + + Name it after language code e.g. hooks_en_US */ +class hooks_xx_XX extends hooks { +/* + // + // Price in words. $doc_type is set to document type and can be used to suppress + // price in words printing for selected document types. + // Used instead of built in simple english price_in_words() function. + // + // Returns: amount in words as string. + + function price_in_words($amount, $doc_type) + { + } +*/ +/* + // + // Exchange rate currency $curr as on date $date. + // Keep in mind FA has internally implemented 3 exrate providers + // If any of them supports your currency, you can simply use function below + // with apprioprate provider set, otherwise implement your own. + // Returns: $curr value in home currency units as a real number. + + function retrieve_ex_rate($curr, $date) + { + $provider = 'ECB'; // 'ECB', 'YAHOO' or 'GOOGLE' + return get_extern_rate($curr, $provider, $date); + } +*/ +/* + // Generic function called at the end of Tax Report (report 709) + // Can be used e.g. for special database updates on every report printing + // or to print special tax report footer + // + // Returns: nothing + function tax_report_done() + { + } +*/ +} ?> \ No newline at end of file