Merge lp:~openobject-italia-core-devs/openobject-italia/adding_l10n_it_hr into lp:~openobject-italia-core-devs/openobject-italia/italian-addons

Proposed by Lorenzo Battistini
Status: Merged
Merged at revision: 113
Proposed branch: lp:~openobject-italia-core-devs/openobject-italia/adding_l10n_it_hr
Merge into: lp:~openobject-italia-core-devs/openobject-italia/italian-addons
Diff against target: 654 lines (+286/-150)
14 files modified
l10n_it_hr/AUTHORS.txt (+2/-0)
l10n_it_hr/__init__.py (+23/-0)
l10n_it_hr/__openerp__.py (+47/-0)
l10n_it_hr/employee.py (+31/-0)
l10n_it_hr/employee_view.xml (+17/-0)
l10n_it_hr/i18n/it.po (+64/-0)
l10n_it_hr/i18n/l10n_it_hr.pot (+58/-0)
l10n_it_sale/__init__.py (+0/-1)
l10n_it_sale/__openerp__.py (+2/-4)
l10n_it_sale/hr/__init__.py (+0/-23)
l10n_it_sale/hr/employee.py (+0/-10)
l10n_it_sale/hr/employee_view.xml (+0/-17)
l10n_it_sale/i18n/it.po (+25/-52)
l10n_it_sale/i18n/l10n_it_sale.pot (+17/-43)
To merge this branch: bzr merge lp:~openobject-italia-core-devs/openobject-italia/adding_l10n_it_hr
Reviewer Review Type Date Requested Status
OpenERP Italia core devs Pending
Review via email: mp+60830@code.launchpad.net
To post a comment you must log in.
108. By Lorenzo Battistini

[FIX] copyright

109. By Lorenzo Battistini

[MERGE]

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory 'l10n_it_hr'
=== added file 'l10n_it_hr/AUTHORS.txt'
--- l10n_it_hr/AUTHORS.txt 1970-01-01 00:00:00 +0000
+++ l10n_it_hr/AUTHORS.txt 2011-07-02 09:56:31 +0000
@@ -0,0 +1,2 @@
1Lorenzo Battistini <lorenzo.battistini@domsense.com>
2
03
=== added file 'l10n_it_hr/__init__.py'
--- l10n_it_hr/__init__.py 1970-01-01 00:00:00 +0000
+++ l10n_it_hr/__init__.py 2011-07-02 09:56:31 +0000
@@ -0,0 +1,23 @@
1# -*- encoding: utf-8 -*-
2##############################################################################
3#
4# Copyright (C) 2010-2011 Associazione OpenERP Italia
5# (<http://www.openerp-italia.org>).
6# All Rights Reserved
7#
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as published
10# by 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 Affero General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#
21##############################################################################
22
23import employee
024
=== added file 'l10n_it_hr/__openerp__.py'
--- l10n_it_hr/__openerp__.py 1970-01-01 00:00:00 +0000
+++ l10n_it_hr/__openerp__.py 2011-07-02 09:56:31 +0000
@@ -0,0 +1,47 @@
1# -*- encoding: utf-8 -*-
2##############################################################################
3#
4# Copyright (C) 2010-2011 Associazione OpenERP Italia
5# (<http://www.openerp-italia.org>).
6# All Rights Reserved
7#
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as published
10# by 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 Affero General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#
21##############################################################################
22{
23 'name': 'Italian Localisation - HR',
24 'version': '0.2',
25 'category': 'Localisation/Italy',
26 'description': """OpenERP Italian Localization - HR version
27
28Functionalities:
29
30- Fiscal Code for employee
31
32""",
33 'author': 'OpenERP Italian Community',
34 'website': 'http://www.openerp-italia.org',
35 'license': 'AGPL-3',
36 "depends" : ['hr'],
37 "init_xml" : [
38 ],
39 "update_xml" : [
40 'employee_view.xml',
41 ],
42 "demo_xml" : [],
43 "active": False,
44 "installable": True
45}
46# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
47
048
=== added file 'l10n_it_hr/employee.py'
--- l10n_it_hr/employee.py 1970-01-01 00:00:00 +0000
+++ l10n_it_hr/employee.py 2011-07-02 09:56:31 +0000
@@ -0,0 +1,31 @@
1# -*- encoding: utf-8 -*-
2##############################################################################
3#
4# Copyright (C) 2010-2011 Associazione OpenERP Italia
5# (<http://www.openerp-italia.org>).
6# All Rights Reserved
7#
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as published
10# by 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 Affero General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#
21##############################################################################
22
23from osv import osv
24from osv import fields
25
26class hr_employee(osv.osv):
27 _inherit = 'hr.employee'
28 _columns = {
29 'fiscalcode': fields.char('Fiscal Code', size=16, help="Italian Fiscal Code"),
30 }
31hr_employee()
032
=== added file 'l10n_it_hr/employee_view.xml'
--- l10n_it_hr/employee_view.xml 1970-01-01 00:00:00 +0000
+++ l10n_it_hr/employee_view.xml 2011-07-02 09:56:31 +0000
@@ -0,0 +1,17 @@
1<?xml version="1.0" ?>
2<openerp>
3 <data>
4
5 <record id="view_employee_form_fiscalcode" model="ir.ui.view">
6 <field name="name">hr.employee.form.fiscalcode</field>
7 <field name="model">hr.employee</field>
8 <field name="inherit_id" ref="hr.view_employee_form"/>
9 <field name="arch" type="xml">
10 <field name="passport_id" position="after">
11 <field name="fiscalcode"/>
12 </field>
13 </field>
14 </record>
15
16 </data>
17</openerp>
018
=== added directory 'l10n_it_hr/i18n'
=== added file 'l10n_it_hr/i18n/it.po'
--- l10n_it_hr/i18n/it.po 1970-01-01 00:00:00 +0000
+++ l10n_it_hr/i18n/it.po 2011-07-02 09:56:31 +0000
@@ -0,0 +1,64 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * l10n_it_hr
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 6.0.2\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"
9"POT-Creation-Date: 2011-05-12 20:06+0000\n"
10"PO-Revision-Date: 2011-05-12 22:07+0100\n"
11"Last-Translator: Lorenzo Battistini <lorenzo.battistini@agilebg.com>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: 8bit\n"
16"Plural-Forms: \n"
17
18#. module: l10n_it_hr
19#: model:ir.module.module,description:l10n_it_hr.module_meta_information
20msgid ""
21"OpenERP Italian Localization - HR version\n"
22"\n"
23"Functionalities:\n"
24"\n"
25"- Fiscal Code for employee\n"
26"\n"
27msgstr ""
28"Localizzazione Italiana - Versione Risorse Umane\n"
29"\n"
30"Funzionalità:\n"
31"\n"
32"- Codice fiscale per i dipendenti\n"
33"\n"
34
35#. module: l10n_it_hr
36#: model:ir.module.module,shortdesc:l10n_it_hr.module_meta_information
37msgid "Italian Localisation - Sale"
38msgstr "Localizzazione Italiana - Vendite"
39
40#. module: l10n_it_hr
41#: constraint:hr.employee:0
42msgid "Error ! You cannot select a department for which the employee is the manager."
43msgstr "Errore ! Non è possibile selezionare un dipartimento di cui il dipendente è manager."
44
45#. module: l10n_it_hr
46#: help:hr.employee,fiscalcode:0
47msgid "Italian Fiscal Code"
48msgstr "Codice fiscale italiano"
49
50#. module: l10n_it_hr
51#: field:hr.employee,fiscalcode:0
52msgid "Fiscal Code"
53msgstr "Codice fiscale"
54
55#. module: l10n_it_hr
56#: model:ir.model,name:l10n_it_hr.model_hr_employee
57msgid "Employee"
58msgstr "Dipendente"
59
60#. module: l10n_it_hr
61#: constraint:hr.employee:0
62msgid "Error ! You cannot create recursive Hierarchy of Employees."
63msgstr "Errore ! Non è possibile creare una gerarchia ricorsiva di dipendenti"
64
065
=== added file 'l10n_it_hr/i18n/l10n_it_hr.pot'
--- l10n_it_hr/i18n/l10n_it_hr.pot 1970-01-01 00:00:00 +0000
+++ l10n_it_hr/i18n/l10n_it_hr.pot 2011-07-02 09:56:31 +0000
@@ -0,0 +1,58 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * l10n_it_hr
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 6.0.2\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"
9"POT-Creation-Date: 2011-05-12 20:05+0000\n"
10"PO-Revision-Date: 2011-05-12 20:05+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: l10n_it_hr
19#: model:ir.module.module,description:l10n_it_hr.module_meta_information
20msgid "OpenERP Italian Localization - HR version\n"
21"\n"
22"Functionalities:\n"
23"\n"
24"- Fiscal Code for employee\n"
25"\n"
26""
27msgstr ""
28
29#. module: l10n_it_hr
30#: model:ir.module.module,shortdesc:l10n_it_hr.module_meta_information
31msgid "Italian Localisation - Sale"
32msgstr ""
33
34#. module: l10n_it_hr
35#: constraint:hr.employee:0
36msgid "Error ! You cannot select a department for which the employee is the manager."
37msgstr ""
38
39#. module: l10n_it_hr
40#: help:hr.employee,fiscalcode:0
41msgid "Italian Fiscal Code"
42msgstr ""
43
44#. module: l10n_it_hr
45#: field:hr.employee,fiscalcode:0
46msgid "Fiscal Code"
47msgstr ""
48
49#. module: l10n_it_hr
50#: model:ir.model,name:l10n_it_hr.model_hr_employee
51msgid "Employee"
52msgstr ""
53
54#. module: l10n_it_hr
55#: constraint:hr.employee:0
56msgid "Error ! You cannot create recursive Hierarchy of Employees."
57msgstr ""
58
059
=== modified file 'l10n_it_sale/__init__.py'
--- l10n_it_sale/__init__.py 2011-05-06 13:07:22 +0000
+++ l10n_it_sale/__init__.py 2011-07-02 09:56:31 +0000
@@ -22,7 +22,6 @@
2222
23import sale23import sale
24import stock24import stock
25import hr
26import account 25import account
27import partner26import partner
28import wizard27import wizard
2928
=== modified file 'l10n_it_sale/__openerp__.py'
--- l10n_it_sale/__openerp__.py 2011-05-06 13:07:22 +0000
+++ l10n_it_sale/__openerp__.py 2011-07-02 09:56:31 +0000
@@ -23,18 +23,17 @@
23 'name': 'Italian Localisation - Sale',23 'name': 'Italian Localisation - Sale',
24 'version': '0.2',24 'version': '0.2',
25 'category': 'Localisation/Italy',25 'category': 'Localisation/Italy',
26 'description': """This module customizes OpenERP in order to fit italian laws and mores - Sale version26 'description': """OpenERP Italian Localization - Sale version
2727
28Functionalities:28Functionalities:
2929
30- Documento di trasporto30- Documento di trasporto
31- Fiscal Code for employee
3231
33""",32""",
34 'author': 'OpenERP Italian Community',33 'author': 'OpenERP Italian Community',
35 'website': 'http://www.openerp-italia.org',34 'website': 'http://www.openerp-italia.org',
36 'license': 'AGPL-3',35 'license': 'AGPL-3',
37 "depends" : ['stock','sale','hr','account', 'delivery'],36 "depends" : ['stock', 'sale', 'account', 'delivery'],
38 "init_xml" : [37 "init_xml" : [
39 ],38 ],
40 "update_xml" : [39 "update_xml" : [
@@ -49,7 +48,6 @@
49 'stock/sequence.xml',48 'stock/sequence.xml',
50 'sale/sale_view.xml',49 'sale/sale_view.xml',
51 "security/ir.model.access.csv",50 "security/ir.model.access.csv",
52 'hr/employee_view.xml',
53 'partner/partner_view.xml',51 'partner/partner_view.xml',
54 'account/invoice_view.xml',52 'account/invoice_view.xml',
55 ],53 ],
5654
=== removed directory 'l10n_it_sale/hr'
=== removed file 'l10n_it_sale/hr/__init__.py'
--- l10n_it_sale/hr/__init__.py 2010-11-17 08:04:13 +0000
+++ l10n_it_sale/hr/__init__.py 1970-01-01 00:00:00 +0000
@@ -1,23 +0,0 @@
1# -*- encoding: utf-8 -*-
2##############################################################################
3#
4# Copyright (C) 2010 OpenERP Italian Community (<http://www.openerp-italia.org>).
5# All Rights Reserved
6# $Id$
7#
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero 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
23import employee
240
=== removed file 'l10n_it_sale/hr/employee.py'
--- l10n_it_sale/hr/employee.py 2010-09-22 13:43:42 +0000
+++ l10n_it_sale/hr/employee.py 1970-01-01 00:00:00 +0000
@@ -1,10 +0,0 @@
1
2from osv import osv
3from osv import fields
4
5class hr_employee(osv.osv):
6 _inherit = 'hr.employee'
7 _columns = {
8 'fiscalcode': fields.char('Fiscal Code', size=16, help="Italian Fiscal Code"),
9 }
10hr_employee()
110
=== removed file 'l10n_it_sale/hr/employee_view.xml'
--- l10n_it_sale/hr/employee_view.xml 2010-11-01 18:56:36 +0000
+++ l10n_it_sale/hr/employee_view.xml 1970-01-01 00:00:00 +0000
@@ -1,17 +0,0 @@
1<?xml version="1.0" ?>
2<openerp>
3 <data>
4
5 <record id="view_employee_form_fiscalcode" model="ir.ui.view">
6 <field name="name">hr.employee.form.fiscalcode</field>
7 <field name="model">hr.employee</field>
8 <field name="inherit_id" ref="hr.view_employee_form"/>
9 <field name="arch" type="xml">
10 <field name="passport_id" position="after">
11 <field name="fiscalcode"/>
12 </field>
13 </field>
14 </record>
15
16 </data>
17</openerp>
180
=== modified file 'l10n_it_sale/i18n/it.po'
--- l10n_it_sale/i18n/it.po 2011-05-06 13:54:43 +0000
+++ l10n_it_sale/i18n/it.po 2011-07-02 09:56:31 +0000
@@ -6,9 +6,9 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: OpenERP Server 6.0.2\n"7"Project-Id-Version: OpenERP Server 6.0.2\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"8"Report-Msgid-Bugs-To: support@openerp.com\n"
9"POT-Creation-Date: 2011-05-06 13:50+0000\n"9"POT-Creation-Date: 2011-05-12 20:12+0000\n"
10"PO-Revision-Date: 2011-05-06 15:54+0100\n"10"PO-Revision-Date: 2011-05-12 22:18+0100\n"
11"Last-Translator: eLBati <lorenzo.battistini@domsense.com>\n"11"Last-Translator: Lorenzo Battistini <lorenzo.battistini@agilebg.com>\n"
12"Language-Team: \n"12"Language-Team: \n"
13"MIME-Version: 1.0\n"13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"14"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,25 +23,6 @@
23msgstr "Aspetto dei Beni"23msgstr "Aspetto dei Beni"
2424
25#. module: l10n_it_sale25#. module: l10n_it_sale
26#: model:ir.module.module,description:l10n_it_sale.module_meta_information
27msgid ""
28"This module customizes OpenERP in order to fit italian laws and mores - Sale version\n"
29"\n"
30"Functionalities:\n"
31"\n"
32"- Documento di trasporto\n"
33"- Fiscal Code for employee\n"
34"\n"
35msgstr ""
36"Localizzazione Italiana - Versione Sale\n"
37"\n"
38"Funzionalità:\n"
39"\n"
40"- Documento di trasporto\n"
41"- Codice fiscale per l'impiegato\n"
42"\n"
43
44#. module: l10n_it_sale
45#: field:stock.picking.carriage_condition,note:026#: field:stock.picking.carriage_condition,note:0
46#: field:stock.picking.goods_description,note:027#: field:stock.picking.goods_description,note:0
47#: field:stock.picking.transportation_reason,note:028#: field:stock.picking.transportation_reason,note:0
@@ -49,9 +30,11 @@
49msgstr "Note"30msgstr "Note"
5031
51#. module: l10n_it_sale32#. module: l10n_it_sale
52#: field:hr.employee,fiscalcode:033#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
53msgid "Fiscal Code"34#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
54msgstr "Codice fiscale"35#: view:stock.picking.transportation_reason:0
36msgid "Reasons for transportation"
37msgstr "Causale del trasporto"
5538
56#. module: l10n_it_sale39#. module: l10n_it_sale
57#: model:ir.model,name:l10n_it_sale.model_stock_picking40#: model:ir.model,name:l10n_it_sale.model_stock_picking
@@ -59,11 +42,6 @@
59msgstr "Picking List"42msgstr "Picking List"
6043
61#. module: l10n_it_sale44#. module: l10n_it_sale
62#: model:ir.model,name:l10n_it_sale.model_hr_employee
63msgid "Employee"
64msgstr "Dipendente"
65
66#. module: l10n_it_sale
67#: model:ir.actions.act_window,name:l10n_it_sale.action_wizard_assign_ddt45#: model:ir.actions.act_window,name:l10n_it_sale.action_wizard_assign_ddt
68#: view:stock.picking:046#: view:stock.picking:0
69#: view:wizard.assign.ddt:047#: view:wizard.assign.ddt:0
@@ -86,11 +64,6 @@
86msgstr "Validità"64msgstr "Validità"
8765
88#. module: l10n_it_sale66#. module: l10n_it_sale
89#: constraint:hr.employee:0
90msgid "Error ! You cannot create recursive Hierarchy of Employees."
91msgstr "Errore ! Non è possibile creare una gerarchia ricorsiva di dipendenti"
92
93#. module: l10n_it_sale
94#: model:ir.model,name:l10n_it_sale.model_wizard_assign_ddt67#: model:ir.model,name:l10n_it_sale.model_wizard_assign_ddt
95msgid "wizard.assign.ddt"68msgid "wizard.assign.ddt"
96msgstr "wizard.assign.ddt"69msgstr "wizard.assign.ddt"
@@ -101,11 +74,6 @@
101msgstr "Note"74msgstr "Note"
10275
103#. module: l10n_it_sale76#. module: l10n_it_sale
104#: constraint:hr.employee:0
105msgid "Error ! You cannot select a department for which the employee is the manager."
106msgstr "Errore ! Non è possibile selezionare un dipartimento di cui il dipendente è manager."
107
108#. module: l10n_it_sale
109#: view:account.invoice:077#: view:account.invoice:0
110msgid "Shipping"78msgid "Shipping"
111msgstr "Trasporto"79msgstr "Trasporto"
@@ -177,13 +145,6 @@
177msgstr "Aspetto dei Beni"145msgstr "Aspetto dei Beni"
178146
179#. module: l10n_it_sale147#. module: l10n_it_sale
180#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
181#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
182#: view:stock.picking.transportation_reason:0
183msgid "Reasons for transportation"
184msgstr "Causale del trasporto"
185
186#. module: l10n_it_sale
187#: model:ir.actions.act_window,name:l10n_it_sale.action_carriage_condition_tree148#: model:ir.actions.act_window,name:l10n_it_sale.action_carriage_condition_tree
188#: model:ir.ui.menu,name:l10n_it_sale.menu_action_carriage_condition_tree149#: model:ir.ui.menu,name:l10n_it_sale.menu_action_carriage_condition_tree
189#: view:stock.picking.carriage_condition:0150#: view:stock.picking.carriage_condition:0
@@ -191,11 +152,6 @@
191msgstr "Resa merce"152msgstr "Resa merce"
192153
193#. module: l10n_it_sale154#. module: l10n_it_sale
194#: help:hr.employee,fiscalcode:0
195msgid "Italian Fiscal Code"
196msgstr "Codice fiscale italiano"
197
198#. module: l10n_it_sale
199#: model:ir.model,name:l10n_it_sale.model_account_invoice155#: model:ir.model,name:l10n_it_sale.model_account_invoice
200msgid "Invoice"156msgid "Invoice"
201msgstr "Fattura"157msgstr "Fattura"
@@ -227,3 +183,20 @@
227msgid "Default shipping conditions"183msgid "Default shipping conditions"
228msgstr "Dati DDT"184msgstr "Dati DDT"
229185
186#. module: l10n_it_sale
187#: model:ir.module.module,description:l10n_it_sale.module_meta_information
188msgid ""
189"OpenERP Italian Localization - Sale version\n"
190"\n"
191"Functionalities:\n"
192"\n"
193"- Documento di trasporto\n"
194"\n"
195msgstr ""
196"Localizzazione Italiana - Versione Sale\n"
197"\n"
198"Funzionalità:\n"
199"\n"
200"- Documento di trasporto\n"
201"\n"
202
230203
=== modified file 'l10n_it_sale/i18n/l10n_it_sale.pot'
--- l10n_it_sale/i18n/l10n_it_sale.pot 2011-05-06 13:54:43 +0000
+++ l10n_it_sale/i18n/l10n_it_sale.pot 2011-07-02 09:56:31 +0000
@@ -6,8 +6,8 @@
6msgstr ""6msgstr ""
7"Project-Id-Version: OpenERP Server 6.0.2\n"7"Project-Id-Version: OpenERP Server 6.0.2\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"8"Report-Msgid-Bugs-To: support@openerp.com\n"
9"POT-Creation-Date: 2011-05-06 13:37+0000\n"9"POT-Creation-Date: 2011-05-12 20:12+0000\n"
10"PO-Revision-Date: 2011-05-06 13:37+0000\n"10"PO-Revision-Date: 2011-05-12 20:12+0000\n"
11"Last-Translator: <>\n"11"Last-Translator: <>\n"
12"Language-Team: \n"12"Language-Team: \n"
13"MIME-Version: 1.0\n"13"MIME-Version: 1.0\n"
@@ -23,18 +23,6 @@
23msgstr ""23msgstr ""
2424
25#. module: l10n_it_sale25#. module: l10n_it_sale
26#: model:ir.module.module,description:l10n_it_sale.module_meta_information
27msgid "This module customizes OpenERP in order to fit italian laws and mores - Sale version\n"
28"\n"
29"Functionalities:\n"
30"\n"
31"- Documento di trasporto\n"
32"- Fiscal Code for employee\n"
33"\n"
34""
35msgstr ""
36
37#. module: l10n_it_sale
38#: field:stock.picking.carriage_condition,note:026#: field:stock.picking.carriage_condition,note:0
39#: field:stock.picking.goods_description,note:027#: field:stock.picking.goods_description,note:0
40#: field:stock.picking.transportation_reason,note:028#: field:stock.picking.transportation_reason,note:0
@@ -42,8 +30,10 @@
42msgstr ""30msgstr ""
4331
44#. module: l10n_it_sale32#. module: l10n_it_sale
45#: field:hr.employee,fiscalcode:033#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
46msgid "Fiscal Code"34#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
35#: view:stock.picking.transportation_reason:0
36msgid "Reasons for transportation"
47msgstr ""37msgstr ""
4838
49#. module: l10n_it_sale39#. module: l10n_it_sale
@@ -52,11 +42,6 @@
52msgstr ""42msgstr ""
5343
54#. module: l10n_it_sale44#. module: l10n_it_sale
55#: model:ir.model,name:l10n_it_sale.model_hr_employee
56msgid "Employee"
57msgstr ""
58
59#. module: l10n_it_sale
60#: model:ir.actions.act_window,name:l10n_it_sale.action_wizard_assign_ddt45#: model:ir.actions.act_window,name:l10n_it_sale.action_wizard_assign_ddt
61#: view:stock.picking:046#: view:stock.picking:0
62#: view:wizard.assign.ddt:047#: view:wizard.assign.ddt:0
@@ -79,11 +64,6 @@
79msgstr ""64msgstr ""
8065
81#. module: l10n_it_sale66#. module: l10n_it_sale
82#: constraint:hr.employee:0
83msgid "Error ! You cannot create recursive Hierarchy of Employees."
84msgstr ""
85
86#. module: l10n_it_sale
87#: model:ir.model,name:l10n_it_sale.model_wizard_assign_ddt67#: model:ir.model,name:l10n_it_sale.model_wizard_assign_ddt
88msgid "wizard.assign.ddt"68msgid "wizard.assign.ddt"
89msgstr ""69msgstr ""
@@ -94,11 +74,6 @@
94msgstr ""74msgstr ""
9575
96#. module: l10n_it_sale76#. module: l10n_it_sale
97#: constraint:hr.employee:0
98msgid "Error ! You cannot select a department for which the employee is the manager."
99msgstr ""
100
101#. module: l10n_it_sale
102#: view:account.invoice:077#: view:account.invoice:0
103msgid "Shipping"78msgid "Shipping"
104msgstr ""79msgstr ""
@@ -170,13 +145,6 @@
170msgstr ""145msgstr ""
171146
172#. module: l10n_it_sale147#. module: l10n_it_sale
173#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
174#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
175#: view:stock.picking.transportation_reason:0
176msgid "Reasons for transportation"
177msgstr ""
178
179#. module: l10n_it_sale
180#: model:ir.actions.act_window,name:l10n_it_sale.action_carriage_condition_tree148#: model:ir.actions.act_window,name:l10n_it_sale.action_carriage_condition_tree
181#: model:ir.ui.menu,name:l10n_it_sale.menu_action_carriage_condition_tree149#: model:ir.ui.menu,name:l10n_it_sale.menu_action_carriage_condition_tree
182#: view:stock.picking.carriage_condition:0150#: view:stock.picking.carriage_condition:0
@@ -184,11 +152,6 @@
184msgstr ""152msgstr ""
185153
186#. module: l10n_it_sale154#. module: l10n_it_sale
187#: help:hr.employee,fiscalcode:0
188msgid "Italian Fiscal Code"
189msgstr ""
190
191#. module: l10n_it_sale
192#: model:ir.model,name:l10n_it_sale.model_account_invoice155#: model:ir.model,name:l10n_it_sale.model_account_invoice
193msgid "Invoice"156msgid "Invoice"
194msgstr ""157msgstr ""
@@ -220,3 +183,14 @@
220msgid "Default shipping conditions"183msgid "Default shipping conditions"
221msgstr ""184msgstr ""
222185
186#. module: l10n_it_sale
187#: model:ir.module.module,description:l10n_it_sale.module_meta_information
188msgid "OpenERP Italian Localization - Sale version\n"
189"\n"
190"Functionalities:\n"
191"\n"
192"- Documento di trasporto\n"
193"\n"
194""
195msgstr ""
196