File: __tryton__.py

package info (click to toggle)
tryton-modules-party 2.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 388 kB
  • sloc: python: 820; xml: 467; makefile: 7
file content (47 lines) | stat: -rw-r--r-- 1,616 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
#This file is part of Tryton.  The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
{
    'name' : 'Party',
    'name_bg_BG': 'Партньор',
    'name_de_DE': 'Parteien',
    'name_es_CO': 'Terceros',
    'name_es_ES': 'Terceros',
    'name_fr_FR': 'Tiers',
    'name_nl_NL': 'Relaties',
    'name_ru_RU': 'Контрагенты',
    'version' : '2.2.1',
    'author' : 'B2CK',
    'email': 'info@b2ck.com',
    'website': 'http://www.tryton.org/',
    'description': 'Define parties, addresses and co.',
    'description_bg_BG': 'Задаване на партньори, адреси и тн.',
    'description_de_DE': 'Ermöglicht die Erstellung von Parteien, Adressen, etc.',
    'description_es_CO': 'Definición de terceros, direcciones, etc.',
    'description_es_ES': 'Define terceros, direcciones, etc...',
    'description_fr_FR': 'Définit des tiers, des adresses, etc.',
    'description_nl_NL': 'Definieert relaties, adressen en bedrijven.',
    'description_ru_RU': 'Определение контрагентов, адресов и тп.',
    'depends' : [
        'ir',
        'res',
        'country',
    ],
    'xml' : [
        'party.xml',
        'category.xml',
        'address.xml',
        'contact_mechanism.xml',
        'configuration.xml',
    ],
    'translation': [
        'locale/bg_BG.po',
        'locale/cs_CZ.po',
        'locale/de_DE.po',
        'locale/es_CO.po',
        'locale/es_ES.po',
        'locale/fr_FR.po',
        'locale/nl_NL.po',
        'locale/ru_RU.po',
    ],
}