~anton-chepurov/aeroo/7.0

« back to all changes in this revision

Viewing changes to report_aeroo/ctt_languages/tr_TR/currencies/trl.py

  • Committer: root
  • Date: 2013-05-16 15:53:25 UTC
  • Revision ID: root@erp.kndati.lv-20130516155325-x7v319i9a6avw58g
1.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# -*- coding: utf8 -*-
 
3
 
 
4
from report_aeroo.ctt_objects import ctt_currency
 
5
 
 
6
class trl(ctt_currency):
 
7
    def _init_currency(self):
 
8
        self.language = u'tr_TR'
 
9
        self.code = u'TRL'
 
10
        self.fractions = 100
 
11
        self.cur_singular = u' Lira'
 
12
        # default plural form for currency
 
13
        self.cur_plural = u' Lira'
 
14
        self.frc_singular = u' kuruş'
 
15
        # default plural form for fractions
 
16
        self.frc_plural = u' kuruş'
 
17
        # grammatical genders: f - feminine, m - masculine, n -neuter
 
18
        self.cur_gram_gender = 'm'
 
19
        self.frc_gram_gender = 'm'
 
20
    
 
21
trl()