~anybox/aeroo/openerp6

« back to all changes in this revision

Viewing changes to report_aeroo/ctt_languages/ru_RU/currencies/eur.py

  • Committer: root
  • Date: 2013-05-16 15:46:46 UTC
  • Revision ID: root@erp.kndati.lv-20130516154646-5lesr8tyzl1vdc0k
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 eur(ctt_currency):
 
7
    def _init_currency(self):
 
8
        self.language = u'ru_RU'
 
9
        self.code = u'EUR'
 
10
        self.fractions = 100
 
11
        self.cur_singular = u' евро'
 
12
        self.cur_plural = u' евро'
 
13
        self.frc_singular = u' цент'
 
14
        # default plural form for fractions
 
15
        self.frc_plural = u' центов'
 
16
        self.frc_plural_2_to4 = u' цента'
 
17
        
 
18
        # grammatical genders: f - feminine, m - masculine, n -neuter
 
19
        self.cur_gram_gender = 'm'
 
20
        self.frc_gram_gender = 'm'
 
21
    
 
22
eur()