Launchpad automatic translations update.
[odoo/odoo.git] / addons / profile_tools / installer.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21 from osv import fields, osv
22
23 class misc_tools_installer(osv.osv_memory):
24     _inherit = 'base.setup.installer'
25
26     _columns = {
27         'lunch':fields.boolean('Lunch',help='A simple module to help you to manage Lunch orders.'),
28         'subscription':fields.boolean('Recurring Documents',help='Helps to generate automatically recurring documents.'),
29         'survey':fields.boolean('Survey',help='Allows you to organize surveys.'),
30         'idea':fields.boolean('Ideas Box',help='Promote ideas of the employees, votes and discussion on best ideas.'),
31         'share':fields.boolean('Web Share',help='Allows you to give restricted access to your OpenERP documents to external users, ' \
32             'such as customers, suppliers, or accountants. You can share any OpenERP Menu such as your project tasks, support requests, invoices, etc.'),
33         'pad': fields.boolean('Collaborative Note Pads',
34             help="This module creates a tighter integration between a Pad "
35                  "instance of your choosing and your OpenERP Web Client by "
36                  "letting you easily link pads to OpenERP objects via "
37                  "OpenERP attachments."),
38     }
39 misc_tools_installer()
40