[I18N] all: Updated translations templates to latest terms, after cleanup
[odoo/odoo.git] / addons / l10n_gt / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2009-2010 Soluciones Tecnologócias Prisma S.A. All Rights Reserved.
5 # José Rodrigo Fernández Menegazzo, Soluciones Tecnologócias Prisma S.A.
6 # (http://www.solucionesprisma.com)
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 #
24 # This module provides a minimal Guatemalan chart of accounts that can be use
25 # to build upon a more complex one.  It also includes a chart of taxes and
26 # the Quetzal currency.
27 #
28 # This module is based on the UK minimal chart of accounts:
29 # Copyright (c) 2004-2009 Seath Solutions Ltd. All Rights Reserved.
30 # Geoff Gardiner, Seath Solutions Ltd (http://www.seathsolutions.com/)
31 #
32 # This module works with OpenERP 6.0
33 #
34
35 {
36     'name': 'Guatemala - Plan contable general',
37     'version': '3.0',
38     'category': 'Localisation/Account Charts',
39     'description': """Agrega una nomenclatura contable para Guatemala. También icluye impuestos y la moneda del Quetzal. -- Adds accounting chart for Guatemala.  It also includes taxes and the Quetzal currency""",
40     'author': 'José Rodrigo Fernández Menegazzo',
41     'website': 'http://solucionesprisma.com/',
42     'depends': ['base', 'account', 'account_chart'],
43     'init_xml': [],
44     'update_xml': [
45         'account_types.xml',
46         'account_chart.xml',
47         'account_tax.xml',
48         'l10n_gt_base.xml',
49     ],
50     'demo_xml': [],
51     'installable': True,
52     'certificate': '',
53 }
54 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: