FB 1706: Massen-Editing TZ-Austria funktioniert nicht

develop
Ahmed Aly 2018-06-11 15:08:41 +02:00
parent f7443bae46
commit 5ef73ab0fc
48 changed files with 498 additions and 310 deletions

View File

@ -1,6 +1,6 @@
.. image:: https://img.shields.io/badge/license-LGPLv3-blue.svg
:target: https://www.gnu.org/licenses/lgpl.html
:alt: License: LGPL-3
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
============
Mass Editing
@ -12,12 +12,6 @@ This module provides the following features:
* You can configure mass editing for any Odoo model.
* The video explaining the features and how-to for OpenERP Version 6 is here http://t.co/wukYMx1A
* The video explaining the features and how-to for OpenERP Version 7 is here : http://www.youtube.com/watch?v=9BH0o74A748&feature=youtu.be
* For more details/customization/feedback contact us on contact@serpentcs.com
Installation
============
@ -37,7 +31,7 @@ This module allows to add, update or remove the values of more than one records
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/149/9.0
:target: https://runbot.odoo-community.org/runbot/250/11.0
As shown in figure you have to configure the object and fields for mass editing.
@ -70,13 +64,9 @@ Bug Tracker
===========
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
<https://github.com/OCA/server-ux/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smashing it by providing a detailed and welcomed `feedback
<https://github.com/OCA/
server-tools/issues/new?body=module:%20
server-tools%0Aversion:%20
9.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
help us smashing it by providing a detailed and welcomed feedback.
Credits
=======
@ -91,14 +81,17 @@ Contributors
* Oihane Crucelaegui <oihanecrucelaegi@gmail.com>
* Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
* Jay Vora <jay.vora@serpentcs.com>
* Jairo Llopis <jairo.llopis@tecnativa.com>
* Juan Negrete <jnegrete@casasalce.com>
* Raul Martin <raul.martin@braintec-group.com>
Maintainer
----------
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: http://odoo-community.org
:target: https://odoo-community.org
This module is maintained by the OCA.
@ -106,5 +99,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
To contribute to this module, please visit http://odoo-community.org.
To contribute to this module, please visit https://odoo-community.org.

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

View File

@ -1,27 +1,20 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Mass Editing v11',
'version': '11.0.1.1.0',
'name': 'Mass Editing',
'version': '11.0.1.0.0',
'author': 'Serpent Consulting Services Pvt. Ltd., '
'Tecnativa, '
'Odoo Community Association (OCA)',
'contributors': [
'Oihane Crucelaegui <oihanecrucelaegi@gmail.com>',
'Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>',
'Jay Vora <jay.vora@serpentcs.com>'
],
'category': 'Tools',
'website': 'http://www.serpentcs.com',
'license': 'GPL-3 or any later version',
'summary': 'Mass Editing (adaptation v 10.0 to 11.0)',# boris.gra
# 'uninstall_hook': 'uninstall_hook',# boris.gra
'license': 'AGPL-3',
'summary': 'Mass Editing',
'uninstall_hook': 'uninstall_hook',
'depends': ['base'],
'data': [
'security/ir.model.access.csv',
'views/mass_editing_view.xml',
'views/basic_js.xml',# boris.gra
],
'installable': True,
'application': False,

View File

@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
def uninstall_hook(cr, registry):
cr.execute("""SELECT id FROM ir_act_window
WHERE res_model = 'mass.editing.wizard'""")
for res in cr.dictfetchall():
value = 'ir.actions.act_window,%s' % res.get('id')
cr.execute("DELETE FROM ir_values WHERE value = %s", (value, ))
"""Delete the actions that were created with mass_editing when
the module is uninstalled"""
cr.execute("""DELETE FROM ir_act_window
WHERE res_model = 'mass.editing.wizard'""")
return True

View File

@ -3,14 +3,14 @@
# * mass_editing
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"POT-Creation-Date: 2016-09-10 02:53+0000\n"
"PO-Revision-Date: 2016-09-10 02:53+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -50,7 +50,12 @@ msgstr "Създадено на"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
msgid "Display Name"
msgstr "Име за Показване"
msgstr "Име за показване"
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.ui.view,arch_db:mass_editing.view_mass_object_form

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Kreirao"
msgid "Created on"
msgstr "Kreirano"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -128,7 +134,7 @@ msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_name
msgid "Name"
msgstr "Ime"
msgstr "Naziv"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Creat per"
msgid "Created on"
msgstr "Creat el"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -64,7 +70,7 @@ msgstr ""
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_field_ids
#: model:ir.ui.view,arch_db:mass_editing.view_mass_object_form
msgid "Fields"
msgstr "Camps "
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_id

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (kopi)"
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr ""
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr ""
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Navn"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -4,15 +4,13 @@
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Niki Waibel <niki.waibel@gmail.com>, 2017
# Rudolf Schnapka <rs@techno-flex.de>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>, 2017\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (Kopie)"
@ -100,7 +98,7 @@ msgid "Mass Editing"
msgstr "Massenverarbeitung"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Massenverarbeitung (%s)"
@ -133,7 +131,7 @@ msgid "Name"
msgstr "Name"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -4,15 +4,13 @@
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2017
# Fernando Lara <gennesis45@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: Fernando Lara <gennesis45@gmail.com>, 2017\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (copia)"
@ -46,13 +44,13 @@ msgstr "Creado por"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Creado el"
msgstr "Creado en"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
msgid "Display Name"
msgstr "Nombre a mostrar"
msgstr "Nombre mostrado"
#. module: mass_editing
#: model:ir.ui.view,arch_db:mass_editing.view_mass_object_form
@ -80,19 +78,19 @@ msgstr "ID"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update
#: model:ir.model.fields,field_description:mass_editing.field_mass_object___last_update
msgid "Last Modified on"
msgstr "Última actualización por"
msgstr "Última modificación en"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
msgstr "Última actualización de"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Última actualización el"
msgstr "Última actualización en"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form
@ -102,7 +100,7 @@ msgid "Mass Editing"
msgstr "Edición masiva"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Edición Masiva (%s)"
@ -137,7 +135,7 @@ msgid "Name"
msgstr "Nombre"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -70,7 +70,7 @@ msgstr ""
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_id
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_id
msgid "ID"
msgstr "ID"
msgstr "ID (identificación)"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -70,7 +70,7 @@ msgstr ""
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_id
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_id
msgid "ID"
msgstr "ID (identificación)"
msgstr "ID"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Creado por"
msgid "Created on"
msgstr "Creado en"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -82,13 +88,13 @@ msgstr "Ultima modificacion realizada"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Ultima actualizacion por"
msgstr "Ultima actualización por"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Ultima actualización realizada"
msgstr "Ultima actualización en"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Creado por"
msgid "Created on"
msgstr "Creado en"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -82,13 +88,13 @@ msgstr "Modificada por última vez"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
msgstr "Ultima actualización por"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Ultima actualizacion en"
msgstr "Ultima actualización en"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr ""
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr ""
@ -111,7 +111,7 @@ msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_model_id
msgid "Model"
msgstr "Model"
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_model_list
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Izena"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -100,7 +100,7 @@ msgid "Mass Editing"
msgstr "Massaeditointi"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Massaeditointi (%s)"
@ -133,7 +133,7 @@ msgid "Name"
msgstr "Nimi"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (copie)"
@ -44,13 +44,13 @@ msgstr "Créé par"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Créé le"
msgstr "Date"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
msgid "Display Name"
msgstr "Nom affiché"
msgstr "Nom à afficher"
#. module: mass_editing
#: model:ir.ui.view,arch_db:mass_editing.view_mass_object_form
@ -82,13 +82,13 @@ msgstr "Dernière modification le"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Mis à jour par"
msgstr "Dernière mise à jour par"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Mis à jour le"
msgstr "Dernière mise à jour le"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr "Édition en lot"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Édition en lot (%s)"
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Nom"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -100,7 +100,7 @@ msgid "Mass Editing"
msgstr "Édition en lot"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Édition en lot (%s)"
@ -133,7 +133,7 @@ msgid "Name"
msgstr "Nom"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -3,14 +3,16 @@
# * mass_editing
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# OCA Transbot <transbot@odoo-community.org>, 2016
# Alejandro Santana <alejandrosantana@anubia.es>, 2016
# César Castro Cruz <ulmroan@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"POT-Creation-Date: 2016-09-10 02:53+0000\n"
"PO-Revision-Date: 2016-09-10 02:53+0000\n"
"Last-Translator: César Castro Cruz <ulmroan@gmail.com>, 2016\n"
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,7 +21,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +48,12 @@ msgstr "Creado por"
msgid "Created on"
msgstr "Creado en"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -76,7 +84,7 @@ msgstr "ID"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update
#: model:ir.model.fields,field_description:mass_editing.field_mass_object___last_update
msgid "Last Modified on"
msgstr "Última modificación"
msgstr "Modificado por última vez o"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid

View File

@ -5,14 +5,13 @@
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Bole <bole@dajmi5.com>, 2017
# Goran Kliska <gkliska@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: Goran Kliska <gkliska@gmail.com>, 2017\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,7 +20,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (kopija)"
@ -46,13 +45,13 @@ msgstr "Kreirao"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Kreirano"
msgstr "Kreirano "
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
msgid "Display Name"
msgstr "Naziv "
msgstr "Prikaži naziv"
#. module: mass_editing
#: model:ir.ui.view,arch_db:mass_editing.view_mass_object_form
@ -80,19 +79,19 @@ msgstr "ID"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update
#: model:ir.model.fields,field_description:mass_editing.field_mass_object___last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
msgstr "Zadnja izmjena na"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
msgstr "Zadnje ažuriranje izvršio"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Zadnje ažuriranje"
msgstr "Zadnje ažuriranje na"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form
@ -102,7 +101,7 @@ msgid "Mass Editing"
msgstr "Grupno uređivanje"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Grupno uredi (%s)"
@ -137,7 +136,7 @@ msgid "Name"
msgstr "Naziv"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -3,14 +3,14 @@
# * mass_editing
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Bole <bole@dajmi5.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"POT-Creation-Date: 2016-09-10 02:53+0000\n"
"PO-Revision-Date: 2016-09-10 02:53+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2016\n"
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Kreirao"
msgid "Created on"
msgstr "Kreirano"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -82,7 +88,7 @@ msgstr "Zadnje modificirano"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
msgstr "Zadnje ažurirao"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Készítette"
msgid "Created on"
msgstr "Létrehozás dátuma"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -70,7 +76,7 @@ msgstr ""
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_id
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_id
msgid "ID"
msgstr "ID"
msgstr "Azonosító ID"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update
@ -88,7 +94,7 @@ msgstr "Utoljára frissítve, által"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Utoljára frissítve "
msgstr "Utoljára frissítve ekkor"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -38,13 +38,13 @@ msgstr ""
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_uid
msgid "Created by"
msgstr "Created by"
msgstr "Creato da"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Created on"
msgstr "Creato il"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
@ -82,13 +82,13 @@ msgstr "Ultima modifica il"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
msgstr "Ultimo aggiornamento da"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Last Updated on"
msgstr "Ultimo aggiornamento il"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "作成者"
msgid "Created on"
msgstr "作成日"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -128,7 +134,7 @@ msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_name
msgid "Name"
msgstr "名"
msgstr "名"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Sukūrė"
msgid "Created on"
msgstr "Sukurta"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -82,7 +88,7 @@ msgstr "Paskutinį kartą keista"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
msgstr "Paskutini kartą atnaujino"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -44,7 +44,13 @@ msgstr "Үүсгэгч"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Үүсгэсэн"
msgstr "Үүсгэсэн огноо"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -44,7 +44,13 @@ msgstr "Opprettet av"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Opprettet den"
msgstr "Opprettet"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (kopie)"
@ -50,7 +50,7 @@ msgstr "Aangemaakt op"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
msgid "Display Name"
msgstr "Te tonen naam"
msgstr "Weergave naam"
#. module: mass_editing
#: model:ir.ui.view,arch_db:mass_editing.view_mass_object_form
@ -82,7 +82,7 @@ msgstr "Laatst bijgewerkt op"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
msgstr "Laatste bijgewerkt door"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr ""
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr ""
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Naam"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Gemaakt door"
msgid "Created on"
msgstr "Gemaakt op"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -128,7 +134,7 @@ msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_name
msgid "Name"
msgstr "Naam:"
msgstr "Naam"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-06-30 12:21+0000\n"
"PO-Revision-Date: 2017-06-30 12:21+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s(kopie)"
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr ""
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr ""
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Naam"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,18 +8,18 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -44,7 +44,13 @@ msgstr "Utworzone przez"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Utworzono"
msgstr "Data utworzenia"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
@ -88,7 +94,7 @@ msgstr "Ostatnio modyfikowane przez"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Ostatnia zmiana"
msgstr "Data ostatniej modyfikacji"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form

View File

@ -4,14 +4,14 @@
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Pedro Castro Silva <inactive+pcs.sossia@transifex.com>, 2017
# Pedro Castro Silva <pedrocs@sossia.pt>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: Pedro Castro Silva <inactive+pcs.sossia@transifex.com>, 2017\n"
"POT-Creation-Date: 2017-06-22 01:12+0000\n"
"PO-Revision-Date: 2017-06-22 01:12+0000\n"
"Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2017\n"
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,7 +20,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (cópia)"
@ -51,7 +51,7 @@ msgstr "Criado em"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
msgid "Display Name"
msgstr "Nome"
msgstr "Nome a Apresentar"
#. module: mass_editing
#: model:ir.ui.view,arch_db:mass_editing.view_mass_object_form
@ -85,13 +85,13 @@ msgstr "Última Modificação Em"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Última Modificação Por"
msgstr "Atualizado pela última vez por"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Última Atualização Em"
msgstr "Atualizado pela última vez em"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form
@ -101,7 +101,7 @@ msgid "Mass Editing"
msgstr "Edição Múltipla"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Edição Múltipla (%s)"
@ -136,7 +136,7 @@ msgid "Name"
msgstr "Nome"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr "Edição em massa"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Edição em Massa (%s)"
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Nome"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -78,19 +78,19 @@ msgstr "ID"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update
#: model:ir.model.fields,field_description:mass_editing.field_mass_object___last_update
msgid "Last Modified on"
msgstr "Última Modificação Em"
msgstr "Última Modificação em"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Última Atualização Por"
msgstr "Atualizado pela última vez por"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Última Atualização Em"
msgstr "Atualizado pela última vez em"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form
@ -100,7 +100,7 @@ msgid "Mass Editing"
msgstr "Edição Múltipla"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Edição Múltipla (%s)"
@ -133,7 +133,7 @@ msgid "Name"
msgstr "Nome"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "Vytvoril"
msgid "Created on"
msgstr "Vytvorené"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -82,13 +88,13 @@ msgstr "Posledná modifikácia"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Naposledy upravoval"
msgstr "Naposledy upravil"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Naposledy upravované"
msgstr "Naposledy upravené"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -84,7 +84,7 @@ msgstr "Zadnjič spremenjeno"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Zadnji posodobil"
msgstr "Zadnjič posodobil"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
@ -100,7 +100,7 @@ msgid "Mass Editing"
msgstr "Masovno urejanje"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Masovno urejanje (%s)"
@ -133,7 +133,7 @@ msgid "Name"
msgstr "Naziv"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -90,7 +90,7 @@ msgstr "Son güncelleyen"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Son güncellenme"
msgstr "Son güncelleme"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form
@ -100,7 +100,7 @@ msgid "Mass Editing"
msgstr "Toplu düzenleme"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr "Toplu Düzenleme (%s)"
@ -133,7 +133,7 @@ msgid "Name"
msgstr "Adı"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr "%s (copy)"
@ -44,7 +44,7 @@ msgstr "Створив"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Дата створення"
msgstr "Створено"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
@ -82,13 +82,13 @@ msgstr "Остання модифікація"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "Востаннє оновив"
msgstr "Востаннє відредаговано"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "Останнє оновлення"
msgstr "Дата останньої зміни"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr ""
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr ""
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Name"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-05-17 21:08+0000\n"
"PO-Revision-Date: 2017-05-17 21:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:97
#, python-format
msgid "%s (copy)"
msgstr ""
@ -44,7 +44,7 @@ msgstr "Được tạo bởi"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_date
msgid "Created on"
msgstr "Được tạo vào"
msgstr "Tạo trên"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
@ -98,7 +98,7 @@ msgid "Mass Editing"
msgstr ""
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:58
#: code:addons/mass_editing/models/mass_object.py:57
#, python-format
msgid "Mass Editing (%s)"
msgstr ""
@ -131,7 +131,7 @@ msgid "Name"
msgstr "Tên"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:34
#: code:addons/mass_editing/models/mass_object.py:33
#: sql_constraint:mass.object:0
#, python-format
msgid "Name must be unique!"

View File

@ -3,14 +3,15 @@
# * mass_editing
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Jeffery Chenn <jeffery9@gmail.com>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"POT-Creation-Date: 2016-09-10 02:53+0000\n"
"PO-Revision-Date: 2016-09-10 02:53+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,7 +20,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -38,7 +39,7 @@ msgstr ""
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_create_uid
msgid "Created by"
msgstr "创建"
msgstr "创建"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_create_date
@ -46,6 +47,12 @@ msgstr "创建者"
msgid "Created on"
msgstr "创建时间"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -82,13 +89,13 @@ msgstr "最后修改时间"
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_uid
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_uid
msgid "Last Updated by"
msgstr "最后更新"
msgstr "最后更新"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_write_date
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_write_date
msgid "Last Updated on"
msgstr "上次更新日期"
msgstr "最后更新时间"
#. module: mass_editing
#: model:ir.actions.act_window,name:mass_editing.action_mass_object_form

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"POT-Creation-Date: 2017-02-22 00:55+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
"MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:98
#: code:addons/mass_editing/models/mass_object.py:101
#, python-format
msgid "%s (copy)"
msgstr ""
@ -46,6 +46,12 @@ msgstr "建立者"
msgid "Created on"
msgstr "建立於"
#. module: mass_editing
#: code:addons/mass_editing/models/mass_object.py:89
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_display_name
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_display_name
@ -70,7 +76,7 @@ msgstr ""
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard_id
#: model:ir.model.fields,field_description:mass_editing.field_mass_object_id
msgid "ID"
msgstr "編號"
msgstr "ID"
#. module: mass_editing
#: model:ir.model.fields,field_description:mass_editing.field_mass_editing_wizard___last_update

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
@ -12,11 +11,11 @@ class IrModelFields(models.Model):
def search(self, args, offset=0, limit=0, order=None, count=False):
model_domain = []
for domain in args:
if (len(domain) > 2 and domain[0] == 'model_id' and
isinstance(domain[2], basestring) and
if (len(domain) > 2 and domain[0] == 'mass_editing_domain' and
isinstance(domain[2], str) and
list(domain[2][1:-1])):
model_domain += [('model_id', 'in',
map(int, domain[2][1:-1].split(',')))]
list(map(int, domain[2][1:-1].split(','))))]
else:
model_domain.append(domain)
return super(IrModelFields, self).search(model_domain, offset=offset,

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
@ -24,14 +23,10 @@ class MassObject(models.Model):
"template available on "
"records of the related "
"document model.")
# ref_ir_value_id = fields.Many2one('ir.values', 'Sidebar button',# boris.gra
# readonly=True,# boris.gra
# help="Sidebar button to open "# boris.gra
# "the sidebar action.")# boris.gra
model_list = fields.Char('Model List')
_sql_constraints = [
('name_uniq', 'unique (name)', _('Name must be unique!')),
('name_uniq', 'unique (name)', 'Name must be unique!'),
]
@api.onchange('model_id')
@ -43,7 +38,7 @@ class MassObject(models.Model):
model_list = [self.model_id.id]
active_model_obj = self.env[self.model_id.model]
if active_model_obj._inherits:
keys = active_model_obj._inherits.keys()
keys = list(active_model_obj._inherits.keys())
inherits_model_list = model_obj.search([('model', 'in', keys)])
model_list.extend((inherits_model_list and
inherits_model_list.ids or []))
@ -65,18 +60,16 @@ class MassObject(models.Model):
'context': "{'mass_editing_object' : %d}" % (self.id),
'view_mode': 'form, tree',
'target': 'new',
'binding_type': 'action',# boris.gra
'binding_model_id': self.model_id.id,# boris.gra
'binding_model_id': self.model_id.id,
'binding_type': 'action',
'multi': True,
}).id
self.write(vals)
return True
@api.multi
def unlink_action(self):
# We make sudo as any user with rights in this model should be able
# to delete the action, not only admin
self.mapped('ref_ir_act_window_id').sudo().unlink()
self.mapped('ref_ir_value_id').sudo().unlink()
self.mapped('ref_ir_act_window_id').unlink()
return True
@api.multi

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
@ -6,17 +5,21 @@ import ast
from odoo.tests import common
from odoo.modules import registry
from odoo.addons.mass_editing.hooks import uninstall_hook
from ..hooks import uninstall_hook
class TestMassEditing(common.TransactionCase):
def setUp(self):
super(TestMassEditing, self).setUp()
# Model connections
model_obj = self.env['ir.model']
self.mass_wiz_obj = self.env['mass.editing.wizard']
self.mass_object_model = self.env['mass.object']
self.res_partner_model = self.env['res.partner']
self.ir_translation_model = self.env['ir.translation']
self.lang_model = self.env['res.lang']
# Shared data for test methods
self.partner = self._create_partner()
self.partner_model = model_obj.\
search([('model', '=', 'res.partner')])
@ -27,9 +30,21 @@ class TestMassEditing(common.TransactionCase):
'country_id', 'customer', 'child_ids',
'title'])])
self.mass = self._create_mass_editing(self.partner_model,
self.fields_model)
self.fields_model,
'Partner')
self.copy_mass = self.mass.copy()
self.user = self._create_user()
self.res_partner_title_model = self.env['res.partner.title']
self.partner_title = self._create_partner_title()
self.partner_title_model = model_obj.search(
[('model', '=', 'res.partner.title')])
self.fields_partner_title_model = self.env['ir.model.fields'].search(
[('model_id', '=', self.partner_title_model.id),
('name', 'in', ['abbreviation'])])
self.mass_partner_title = self._create_mass_editing(
self.partner_title_model,
self.fields_partner_title_model,
'Partner Title')
def _create_partner(self):
"""Create a Partner."""
@ -39,8 +54,25 @@ class TestMassEditing(common.TransactionCase):
'email': 'example@yourcompany.com',
'phone': 123456,
'category_id': [(6, 0, categ_ids)],
'notify_email': 'always'
})
def _create_partner_title(self):
"""Create a Partner Title."""
# Loads German to work with translations
self.lang_model.load_lang('de_DE')
# Creating the title in English
partner_title = self.res_partner_title_model.create({
'name': 'Ambassador',
'shortcut': 'Amb.',
})
# Adding translated terms
ctx = {'lang': 'de_DE'}
partner_title.with_context(ctx).write({
'name': 'Botschafter',
'shortcut': 'Bots.'})
return partner_title
def _create_user(self):
return self.env['res.users'].create({
'name': 'Test User',
@ -48,24 +80,24 @@ class TestMassEditing(common.TransactionCase):
'email': 'test@test.com',
})
def _create_mass_editing(self, model, fields):
def _create_mass_editing(self, model, fields, model_name):
"""Create a Mass Editing with Partner as model and
email field of partner."""
mass = self.mass_object_model.create({
'name': 'Mass Editing for Partner',
'name': 'Mass Editing for {0}'.format(model_name),
'model_id': model.id,
'field_ids': [(6, 0, fields.ids)]
})
mass.create_action()
return mass
def _apply_action(self, partner, vals):
def _apply_action(self, obj, vals):
"""Create Wizard object to perform mass editing to
REMOVE field's value."""
ctx = {
'active_id': partner.id,
'active_ids': partner.ids,
'active_model': 'res.partner',
'active_id': obj.id,
'active_ids': obj.ids,
'active_model': obj._name,
}
return self.mass_wiz_obj.with_context(ctx).create(vals)
@ -89,6 +121,52 @@ class TestMassEditing(common.TransactionCase):
self.assertTrue(self.user_model.id in model_list,
'Onchange model list must contains model_id.')
def test_wiz_read_fields(self):
"""Test whether read method returns all fields or not."""
ctx = {
'mass_editing_object': self.mass.id,
'active_id': self.partner.id,
'active_ids': self.partner.ids,
'active_model': 'res.partner',
}
fields_view = self.mass_wiz_obj.with_context(ctx).fields_view_get()
fields = list(fields_view['fields'].keys())
# add a real field
fields.append('display_name')
vals = {
'selection__email': 'remove',
'selection__phone': 'remove',
}
mass_wiz_obj = self._apply_action(self.partner, vals)
result = mass_wiz_obj.read(fields)[0]
self.assertTrue(all([field in result for field in fields]),
'Read must return all fields.')
def test_mass_edit_partner_title(self):
"""Test Case for MASS EDITING which will check if translation
was loaded for new partner title, and if they are removed
as well as the value for the abbreviation for the partner title."""
search_domain = [('res_id', '=', self.partner_title.id),
('type', '=', 'model'),
('name', '=', 'res.partner.title,shortcut'),
('lang', '=', 'de_DE')]
translation_ids = self.ir_translation_model.search(search_domain)
self.assertEqual(len(translation_ids), 1,
'Translation for Partner Title\'s Abbreviation '
'was not loaded properly.')
# Removing partner title with mass edit action
vals = {
'selection__shortcut': 'remove',
}
self._apply_action(self.partner_title, vals)
self.assertEqual(self.partner_title.shortcut, False,
'Partner Title\'s Abbreviation should be removed.')
# Checking if translations were also removed
translation_ids = self.ir_translation_model.search(search_domain)
self.assertEqual(len(translation_ids), 0,
'Translation for Partner Title\'s Abbreviation '
'was not removed properly.')
def test_mass_edit_email(self):
"""Test Case for MASS EDITING which will remove and after add
Partner's email and will assert the same."""
@ -121,13 +199,23 @@ class TestMassEditing(common.TransactionCase):
'Partner\'s category should be removed.')
# Add m2m categories
dist_categ_id = self.env.ref('base.res_partner_category_13').id
vend_categ_id = self.env.ref('base.res_partner_category_1').id
vals = {
'selection__category_id': 'add',
'category_id': [[6, 0, [dist_categ_id]]],
'category_id': [[6, 0, [dist_categ_id, vend_categ_id]]],
}
wiz_action = self._apply_action(self.partner, vals)
self.assertTrue(dist_categ_id in self.partner.category_id.ids,
self.assertTrue(all(item in self.partner.category_id.ids
for item in [dist_categ_id, vend_categ_id]),
'Partner\'s category should be added.')
# Remove one m2m category
vals = {
'selection__category_id': 'remove_m2m',
'category_id': [[6, 0, [vend_categ_id]]],
}
wiz_action = self._apply_action(self.partner, vals)
self.assertTrue([dist_categ_id] == self.partner.category_id.ids,
'Partner\'s category should be removed.')
# Check window close action
res = wiz_action.action_apply()
self.assertTrue(res['type'] == 'ir.actions.act_window_close',
@ -142,21 +230,23 @@ class TestMassEditing(common.TransactionCase):
def test_sidebar_action(self):
"""Test if Sidebar Action is added / removed to / from give object."""
action = self.mass.ref_ir_act_window_id #and self.mass.ref_ir_value_id
action = self.mass.ref_ir_act_window_id\
and self.mass.ref_ir_act_window_id.binding_model_id
self.assertTrue(action, 'Sidebar action must be exists.')
# Remove the sidebar actions
self.mass.unlink_action()
action = self.mass.ref_ir_act_window_id #and self.mass.ref_ir_value_id
action = self.mass.ref_ir_act_window_id
self.assertFalse(action, 'Sidebar action must be removed.')
def test_unlink_mass(self):
"""Test if related actions are removed when mass editing
record is unlinked."""
mass_action_id = "ir.actions.act_window," + str(self.mass.id)
self.mass.unlink()
value_cnt = self.env['ir.values'].search([('value', '=',
mass_action_id)],
count=True)
mass_action_id = self.mass.ref_ir_act_window_id.id
mass_object_id = self.mass.id
mass_id = self.env['mass.object'].browse(mass_object_id)
mass_id.unlink()
value_cnt = self.env['ir.actions.act_window'].search([
('id', '=', mass_action_id)], count=True)
self.assertTrue(value_cnt == 0,
"Sidebar action must be removed when mass"
" editing is unlinked.")
@ -165,10 +255,9 @@ class TestMassEditing(common.TransactionCase):
"""Test if related actions are removed when mass editing
record is uninstalled."""
uninstall_hook(self.cr, registry)
mass_action_id = "ir.actions.act_window," + str(self.mass.id)
value_cnt = self.env['ir.values'].search([('value', '=',
mass_action_id)],
count=True)
mass_action_id = self.mass.ref_ir_act_window_id.id
value_cnt = len(self.env['ir.actions.act_window'].browse(
mass_action_id))
self.assertTrue(value_cnt == 0,
"Sidebar action must be removed when mass"
" editing module is uninstalled.")

View File

@ -41,12 +41,11 @@
<notebook colspan="4">
<page string="Fields">
<field name="field_ids" colspan="4" nolabel="1"
domain="[('ttype', 'not in', ['reference', 'function']), ('model_id', 'in', model_list)]"/>
domain="[('ttype', 'not in', ['reference', 'function']), ('mass_editing_domain', 'in', model_list)]"/>
</page>
<page string="Advanced" attrs="{'invisible':[('ref_ir_act_window_id','=',False)]}">
<group colspan="2" col="2">
<field name="ref_ir_act_window_id"/>
<!--<field name="ref_ir_value_id"/>-->
</group>
</page>
</notebook>

View File

@ -237,6 +237,9 @@ class MassEditingWizard(models.TransientModel):
if (self._context.get('active_model') and
self._context.get('active_ids')):
model_obj = self.env[self._context.get('active_model')]
model_field_obj = self.env['ir.model.fields']
translation_obj = self.env['ir.translation']
values = {}
for key, val in vals.items():
if key.startswith('selection_'):
@ -245,8 +248,31 @@ class MassEditingWizard(models.TransientModel):
values.update({split_key: vals.get(split_key, False)})
elif val == 'remove':
values.update({split_key: False})
# If field to remove is translatable,
# its translations have to be removed
model_field = model_field_obj.search([
('model', '=', self._context.get('active_model')),
('name', '=', split_key)])
if model_field and model_field.translate:
translation_ids = translation_obj.search([
('res_id', 'in', self._context.get(
'active_ids')),
('type', '=', 'model'),
('name', '=', u"{0},{1}".format(
self._context.get('active_model'),
split_key))])
translation_ids.unlink()
elif val == 'remove_m2m':
values.update({split_key: [(5, 0, [])]})
m2m_list = []
if vals.get(split_key):
for m2m_id in vals.get(split_key)[0][2]:
m2m_list.append((3, m2m_id))
if m2m_list:
values.update({split_key: m2m_list})
else:
values.update({split_key: [(5, 0, [])]})
elif val == 'add':
m2m_list = []
for m2m_id in vals.get(split_key, False)[0][2]:
@ -271,4 +297,7 @@ class MassEditingWizard(models.TransientModel):
if fields:
# We remove fields which are not in _fields
real_fields = [x for x in fields if x in self._fields]
return super(MassEditingWizard, self).read(real_fields, load=load)
result = super(MassEditingWizard, self).read(real_fields, load=load)
# adding fields to result
[result[0].update({x: False}) for x in fields if x not in real_fields]
return result