From d44d833c5890f83d3c0db991e60d2219c9c00e6b Mon Sep 17 00:00:00 2001 From: "david.beal@akretion.com" Date: Fri, 11 Jul 2014 15:08:33 +0200 Subject: [PATCH 01/19] [ADD] config helper module --- configuration_helper/__init__.py | 22 ++++++ configuration_helper/__openerp__.py | 82 ++++++++++++++++++++ configuration_helper/config.py | 114 ++++++++++++++++++++++++++++ 3 files changed, 218 insertions(+) create mode 100644 configuration_helper/__init__.py create mode 100644 configuration_helper/__openerp__.py create mode 100644 configuration_helper/config.py diff --git a/configuration_helper/__init__.py b/configuration_helper/__init__.py new file mode 100644 index 000000000..bfca433c9 --- /dev/null +++ b/configuration_helper/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: David BEAL +# Copyright 2014 Akretion +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from . import config # noqa diff --git a/configuration_helper/__openerp__.py b/configuration_helper/__openerp__.py new file mode 100644 index 000000000..7ca0618fb --- /dev/null +++ b/configuration_helper/__openerp__.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: David BEAL +# Copyright 2014 Akretion +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Configuration Helper', + 'version': '0.8', + 'author': 'Akretion', + 'maintainer': 'Akretion', + 'category': 'server', + 'complexity': 'normal', + 'depends': ['base'], + 'description': """ +Configuration Helper +==================== + +*This module is intended for developer only. It does nothing used alone.* + +This module : + + * create automatically related fields in 'whatiwant.config.settings' + using those defined in 'res.company' : it avoid duplicated field definitions. + * company_id field with default value is created + * onchange_company_id is defined to update all related fields + * supported fields: char, text, integer, float, datetime, date, boolean, m2o + + +How to use +---------- + +.. code-block:: python + + from . company import ResCompany + + class WhatiwantClassSettings(orm.TransientModel): + _inherit = ['res.config.settings', 'abstract.config.settings'] + _name = 'whatiwant.config.settings' + # fields must be defined in ResCompany class + # related fields are automatically generated from previous definitions + _companyObject = ResCompany + + +Roadmap +------- + * support (or check support) for these field types : o2m, m2m, reference, property, selection + * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) + + +Contributors +------------ + +* David BEAL +* Sébastien BEAU +* Yannick Vaucher, Camptocamp, (code refactoring from his module 'delivery_carrier_label_postlogistics') + + """, + 'website': 'http://www.akretion.com/', + 'data': [ + ], + 'tests': [], + 'installable': True, + 'auto_install': False, + 'license': 'AGPL-3', + 'application': True, +} diff --git a/configuration_helper/config.py b/configuration_helper/config.py new file mode 100644 index 000000000..187d683ab --- /dev/null +++ b/configuration_helper/config.py @@ -0,0 +1,114 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: David BEAL, Copyright 2014 Akretion +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import re + +from openerp.osv import orm, fields + + +class AbstractConfigSettings(orm.AbstractModel): + _name = 'abstract.config.settings' + _description = 'Abstract configuration settings' + # prefix field name to differentiate fields in company with those in config + _prefix = 'setting_' + # this is the class name to import in your module + # (it should be ResCompany or res_company, depends of your code) + _companyObject = None + + def _filter_field(self, field_key): + """Inherit in your module to define for which company field + you don't want have a matching related field""" + return True + + def __init__(self, pool, cr): + super(AbstractConfigSettings, self).__init__(pool, cr) + if self._companyObject: + for field_key in self._companyObject._columns: + #allows to exclude some field + if self._filter_field(field_key): + args = ('company_id', field_key) + kwargs = { + 'string': self._companyObject._columns[field_key].string, + 'help': self._companyObject._columns[field_key].help, + 'type': self._companyObject._columns[field_key]._type, + } + if '_obj' in self._companyObject._columns[field_key].__dict__.keys(): + kwargs['relation'] = \ + self._companyObject._columns[field_key]._obj + if '_domain' in \ + self._companyObject._columns[field_key].__dict__.keys(): + kwargs['domain'] = \ + self._companyObject._columns[field_key]._domain + field_key = re.sub('^' + self._prefix, '', field_key) + self._columns[field_key] = \ + fields.related(*args, **kwargs) + + _columns = { + 'company_id': fields.many2one( + 'res.company', + 'Company', + required=True), + } + + def _default_company(self, cr, uid, context=None): + user = self.pool['res.users'].browse(cr, uid, uid, context=context) + return user.company_id.id + + _defaults = { + 'company_id': _default_company, + } + + def field_to_populate_as_related(self, cr, uid, field, company_cols, context=None): + """Only fields which comes from company with the right prefix + must be defined as related""" + if self._prefix + field in company_cols: + return True + return False + + def onchange_company_id(self, cr, uid, ids, company_id, context=None): + " update related fields " + values = {} + values['currency_id'] = False + if not company_id: + return {'value': values} + company_m = self.pool['res.company'] + company = company_m.browse( + cr, uid, company_id, context=context) + company_cols = company_m._columns.keys() + for field in self._columns: + if self.field_to_populate_as_related( + cr, uid, field, company_cols, context=context): + cpny_field = self._columns[field].arg[-1] + if self._columns[field]._type == 'many2one': + values[field] = company[cpny_field]['id'] or False + else: + values[field] = company[cpny_field] + return {'value': values} + + def create(self, cr, uid, values, context=None): + id = super(AbstractConfigSettings, self).create( + cr, uid, values, context=context) + # Hack: to avoid some nasty bug, related fields are not written + # upon record creation. Hence we write on those fields here. + vals = {} + for fname, field in self._columns.iteritems(): + if isinstance(field, fields.related) and fname in values: + vals[fname] = values[fname] + self.write(cr, uid, [id], vals, context) + return id From 7167a575763563be13da1b1d6d544ac4a25ce928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sat, 12 Jul 2014 12:02:52 +0200 Subject: [PATCH 02/19] move all modules to __unported__ on master branch and set installable=False --- configuration_helper/__init__.py | 22 ------ configuration_helper/__openerp__.py | 82 -------------------- configuration_helper/config.py | 114 ---------------------------- 3 files changed, 218 deletions(-) delete mode 100644 configuration_helper/__init__.py delete mode 100644 configuration_helper/__openerp__.py delete mode 100644 configuration_helper/config.py diff --git a/configuration_helper/__init__.py b/configuration_helper/__init__.py deleted file mode 100644 index bfca433c9..000000000 --- a/configuration_helper/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: David BEAL -# Copyright 2014 Akretion -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from . import config # noqa diff --git a/configuration_helper/__openerp__.py b/configuration_helper/__openerp__.py deleted file mode 100644 index 7ca0618fb..000000000 --- a/configuration_helper/__openerp__.py +++ /dev/null @@ -1,82 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: David BEAL -# Copyright 2014 Akretion -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -{ - 'name': 'Configuration Helper', - 'version': '0.8', - 'author': 'Akretion', - 'maintainer': 'Akretion', - 'category': 'server', - 'complexity': 'normal', - 'depends': ['base'], - 'description': """ -Configuration Helper -==================== - -*This module is intended for developer only. It does nothing used alone.* - -This module : - - * create automatically related fields in 'whatiwant.config.settings' - using those defined in 'res.company' : it avoid duplicated field definitions. - * company_id field with default value is created - * onchange_company_id is defined to update all related fields - * supported fields: char, text, integer, float, datetime, date, boolean, m2o - - -How to use ----------- - -.. code-block:: python - - from . company import ResCompany - - class WhatiwantClassSettings(orm.TransientModel): - _inherit = ['res.config.settings', 'abstract.config.settings'] - _name = 'whatiwant.config.settings' - # fields must be defined in ResCompany class - # related fields are automatically generated from previous definitions - _companyObject = ResCompany - - -Roadmap -------- - * support (or check support) for these field types : o2m, m2m, reference, property, selection - * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) - - -Contributors ------------- - -* David BEAL -* Sébastien BEAU -* Yannick Vaucher, Camptocamp, (code refactoring from his module 'delivery_carrier_label_postlogistics') - - """, - 'website': 'http://www.akretion.com/', - 'data': [ - ], - 'tests': [], - 'installable': True, - 'auto_install': False, - 'license': 'AGPL-3', - 'application': True, -} diff --git a/configuration_helper/config.py b/configuration_helper/config.py deleted file mode 100644 index 187d683ab..000000000 --- a/configuration_helper/config.py +++ /dev/null @@ -1,114 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: David BEAL, Copyright 2014 Akretion -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -import re - -from openerp.osv import orm, fields - - -class AbstractConfigSettings(orm.AbstractModel): - _name = 'abstract.config.settings' - _description = 'Abstract configuration settings' - # prefix field name to differentiate fields in company with those in config - _prefix = 'setting_' - # this is the class name to import in your module - # (it should be ResCompany or res_company, depends of your code) - _companyObject = None - - def _filter_field(self, field_key): - """Inherit in your module to define for which company field - you don't want have a matching related field""" - return True - - def __init__(self, pool, cr): - super(AbstractConfigSettings, self).__init__(pool, cr) - if self._companyObject: - for field_key in self._companyObject._columns: - #allows to exclude some field - if self._filter_field(field_key): - args = ('company_id', field_key) - kwargs = { - 'string': self._companyObject._columns[field_key].string, - 'help': self._companyObject._columns[field_key].help, - 'type': self._companyObject._columns[field_key]._type, - } - if '_obj' in self._companyObject._columns[field_key].__dict__.keys(): - kwargs['relation'] = \ - self._companyObject._columns[field_key]._obj - if '_domain' in \ - self._companyObject._columns[field_key].__dict__.keys(): - kwargs['domain'] = \ - self._companyObject._columns[field_key]._domain - field_key = re.sub('^' + self._prefix, '', field_key) - self._columns[field_key] = \ - fields.related(*args, **kwargs) - - _columns = { - 'company_id': fields.many2one( - 'res.company', - 'Company', - required=True), - } - - def _default_company(self, cr, uid, context=None): - user = self.pool['res.users'].browse(cr, uid, uid, context=context) - return user.company_id.id - - _defaults = { - 'company_id': _default_company, - } - - def field_to_populate_as_related(self, cr, uid, field, company_cols, context=None): - """Only fields which comes from company with the right prefix - must be defined as related""" - if self._prefix + field in company_cols: - return True - return False - - def onchange_company_id(self, cr, uid, ids, company_id, context=None): - " update related fields " - values = {} - values['currency_id'] = False - if not company_id: - return {'value': values} - company_m = self.pool['res.company'] - company = company_m.browse( - cr, uid, company_id, context=context) - company_cols = company_m._columns.keys() - for field in self._columns: - if self.field_to_populate_as_related( - cr, uid, field, company_cols, context=context): - cpny_field = self._columns[field].arg[-1] - if self._columns[field]._type == 'many2one': - values[field] = company[cpny_field]['id'] or False - else: - values[field] = company[cpny_field] - return {'value': values} - - def create(self, cr, uid, values, context=None): - id = super(AbstractConfigSettings, self).create( - cr, uid, values, context=context) - # Hack: to avoid some nasty bug, related fields are not written - # upon record creation. Hence we write on those fields here. - vals = {} - for fname, field in self._columns.iteritems(): - if isinstance(field, fields.related) and fname in values: - vals[fname] = values[fname] - self.write(cr, uid, [id], vals, context) - return id From 2a2f8c42dd7ba8eb33aa0ad118f71c8bc1f0dc2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Tue, 13 Oct 2015 16:58:56 +0200 Subject: [PATCH 03/19] [MOV] move addons out of __unported__ (they remain not installable) --- configuration_helper/__init__.py | 22 ++++++ configuration_helper/__openerp__.py | 82 ++++++++++++++++++++ configuration_helper/config.py | 114 ++++++++++++++++++++++++++++ 3 files changed, 218 insertions(+) create mode 100644 configuration_helper/__init__.py create mode 100644 configuration_helper/__openerp__.py create mode 100644 configuration_helper/config.py diff --git a/configuration_helper/__init__.py b/configuration_helper/__init__.py new file mode 100644 index 000000000..bfca433c9 --- /dev/null +++ b/configuration_helper/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: David BEAL +# Copyright 2014 Akretion +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from . import config # noqa diff --git a/configuration_helper/__openerp__.py b/configuration_helper/__openerp__.py new file mode 100644 index 000000000..3d7c6401a --- /dev/null +++ b/configuration_helper/__openerp__.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: David BEAL +# Copyright 2014 Akretion +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Configuration Helper', + 'version': '0.8', + 'author': "Akretion,Odoo Community Association (OCA)", + 'maintainer': 'Akretion', + 'category': 'server', + 'complexity': 'normal', + 'depends': ['base'], + 'description': """ +Configuration Helper +==================== + +*This module is intended for developer only. It does nothing used alone.* + +This module : + + * create automatically related fields in 'whatiwant.config.settings' + using those defined in 'res.company' : it avoid duplicated field definitions. + * company_id field with default value is created + * onchange_company_id is defined to update all related fields + * supported fields: char, text, integer, float, datetime, date, boolean, m2o + + +How to use +---------- + +.. code-block:: python + + from . company import ResCompany + + class WhatiwantClassSettings(orm.TransientModel): + _inherit = ['res.config.settings', 'abstract.config.settings'] + _name = 'whatiwant.config.settings' + # fields must be defined in ResCompany class + # related fields are automatically generated from previous definitions + _companyObject = ResCompany + + +Roadmap +------- + * support (or check support) for these field types : o2m, m2m, reference, property, selection + * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) + + +Contributors +------------ + +* David BEAL +* Sébastien BEAU +* Yannick Vaucher, Camptocamp, (code refactoring from his module 'delivery_carrier_label_postlogistics') + + """, + 'website': 'http://www.akretion.com/', + 'data': [ + ], + 'tests': [], + 'installable': False, + 'auto_install': False, + 'license': 'AGPL-3', + 'application': True, +} diff --git a/configuration_helper/config.py b/configuration_helper/config.py new file mode 100644 index 000000000..73fd58e2f --- /dev/null +++ b/configuration_helper/config.py @@ -0,0 +1,114 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: David BEAL, Copyright 2014 Akretion +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import re + +from openerp.osv import orm, fields + + +class AbstractConfigSettings(orm.AbstractModel): + _name = 'abstract.config.settings' + _description = 'Abstract configuration settings' + # prefix field name to differentiate fields in company with those in config + _prefix = 'setting_' + # this is the class name to import in your module + # (it should be ResCompany or res_company, depends of your code) + _companyObject = None + + def _filter_field(self, field_key): + """Inherit in your module to define for which company field + you don't want have a matching related field""" + return True + + def __init__(self, pool, cr): + super(AbstractConfigSettings, self).__init__(pool, cr) + if self._companyObject: + for field_key in self._companyObject._columns: + # allows to exclude some field + if self._filter_field(field_key): + args = ('company_id', field_key) + kwargs = { + 'string': self._companyObject._columns[field_key].string, + 'help': self._companyObject._columns[field_key].help, + 'type': self._companyObject._columns[field_key]._type, + } + if '_obj' in self._companyObject._columns[field_key].__dict__.keys(): + kwargs['relation'] = \ + self._companyObject._columns[field_key]._obj + if '_domain' in \ + self._companyObject._columns[field_key].__dict__.keys(): + kwargs['domain'] = \ + self._companyObject._columns[field_key]._domain + field_key = re.sub('^' + self._prefix, '', field_key) + self._columns[field_key] = \ + fields.related(*args, **kwargs) + + _columns = { + 'company_id': fields.many2one( + 'res.company', + 'Company', + required=True), + } + + def _default_company(self, cr, uid, context=None): + user = self.pool['res.users'].browse(cr, uid, uid, context=context) + return user.company_id.id + + _defaults = { + 'company_id': _default_company, + } + + def field_to_populate_as_related(self, cr, uid, field, company_cols, context=None): + """Only fields which comes from company with the right prefix + must be defined as related""" + if self._prefix + field in company_cols: + return True + return False + + def onchange_company_id(self, cr, uid, ids, company_id, context=None): + " update related fields " + values = {} + values['currency_id'] = False + if not company_id: + return {'value': values} + company_m = self.pool['res.company'] + company = company_m.browse( + cr, uid, company_id, context=context) + company_cols = company_m._columns.keys() + for field in self._columns: + if self.field_to_populate_as_related( + cr, uid, field, company_cols, context=context): + cpny_field = self._columns[field].arg[-1] + if self._columns[field]._type == 'many2one': + values[field] = company[cpny_field]['id'] or False + else: + values[field] = company[cpny_field] + return {'value': values} + + def create(self, cr, uid, values, context=None): + id = super(AbstractConfigSettings, self).create( + cr, uid, values, context=context) + # Hack: to avoid some nasty bug, related fields are not written + # upon record creation. Hence we write on those fields here. + vals = {} + for fname, field in self._columns.iteritems(): + if isinstance(field, fields.related) and fname in values: + vals[fname] = values[fname] + self.write(cr, uid, [id], vals, context) + return id From 85525852b9470d36f093f19f4dfdcdf35627834b Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Thu, 26 May 2016 08:29:58 +0200 Subject: [PATCH 04/19] [MGR] configuration_helper * [PORT] [9.0] configuration_helper Port to API 8.0 and make it compatible with a config definition in API 8.0. Remove some hacks with onchange and write to get and set the related values. * Add a module to define classes in order to test configuration_helper --- configuration_helper/README.rst | 57 ++++++++++++ configuration_helper/__init__.py | 23 +---- configuration_helper/__openerp__.py | 98 ++++---------------- configuration_helper/config.py | 114 ------------------------ configuration_helper/models/__init__.py | 1 + configuration_helper/models/config.py | 54 +++++++++++ 6 files changed, 130 insertions(+), 217 deletions(-) create mode 100644 configuration_helper/README.rst delete mode 100644 configuration_helper/config.py create mode 100644 configuration_helper/models/__init__.py create mode 100644 configuration_helper/models/config.py diff --git a/configuration_helper/README.rst b/configuration_helper/README.rst new file mode 100644 index 000000000..710ec7501 --- /dev/null +++ b/configuration_helper/README.rst @@ -0,0 +1,57 @@ +.. 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 + +==================== +Configuration Helper +==================== + +*This module is intended for developer only. It does nothing used alone.* + +It helps to create `config.settings` by providing an abstract Class. + +This class: + + * creates automatically related fields in 'whatiwant.config.settings' + using those defined in 'res.company': it avoids duplicated field definitions. + * company_id field with default value is created + * onchange_company_id is defined to update all related fields + * supported fields: char, text, integer, float, datetime, date, boolean, m2o + + +How to use +---------- + +.. code-block:: python + + from . company import ResCompany + + class WhatiwantClassSettings(orm.TransientModel): + _inherit = ['res.config.settings', 'abstract.config.settings'] + _name = 'whatiwant.config.settings' + # fields must be defined in ResCompany class + # related fields are automatically generated from previous definitions + _companyObject = ResCompany + # all prefixed field with _prefix in res.company, will be available in 'whatiwant.config.settings' model + _prefix = 'prefixyouchoose_' + + +Roadmap +------- + * support (or check support) for these field types : o2m, m2m, reference, property, selection + * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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. + +Contributors +------------ + +* Yannick Vaucher +* David BEAL +* Sébastien BEAU diff --git a/configuration_helper/__init__.py b/configuration_helper/__init__.py index bfca433c9..0650744f6 100644 --- a/configuration_helper/__init__.py +++ b/configuration_helper/__init__.py @@ -1,22 +1 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: David BEAL -# Copyright 2014 Akretion -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from . import config # noqa +from . import models diff --git a/configuration_helper/__openerp__.py b/configuration_helper/__openerp__.py index 3d7c6401a..38709aced 100644 --- a/configuration_helper/__openerp__.py +++ b/configuration_helper/__openerp__.py @@ -1,82 +1,18 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: David BEAL -# Copyright 2014 Akretion -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -{ - 'name': 'Configuration Helper', - 'version': '0.8', - 'author': "Akretion,Odoo Community Association (OCA)", - 'maintainer': 'Akretion', - 'category': 'server', - 'complexity': 'normal', - 'depends': ['base'], - 'description': """ -Configuration Helper -==================== - -*This module is intended for developer only. It does nothing used alone.* - -This module : - - * create automatically related fields in 'whatiwant.config.settings' - using those defined in 'res.company' : it avoid duplicated field definitions. - * company_id field with default value is created - * onchange_company_id is defined to update all related fields - * supported fields: char, text, integer, float, datetime, date, boolean, m2o - - -How to use ----------- - -.. code-block:: python - - from . company import ResCompany - - class WhatiwantClassSettings(orm.TransientModel): - _inherit = ['res.config.settings', 'abstract.config.settings'] - _name = 'whatiwant.config.settings' - # fields must be defined in ResCompany class - # related fields are automatically generated from previous definitions - _companyObject = ResCompany - - -Roadmap -------- - * support (or check support) for these field types : o2m, m2m, reference, property, selection - * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) - - -Contributors ------------- - -* David BEAL -* Sébastien BEAU -* Yannick Vaucher, Camptocamp, (code refactoring from his module 'delivery_carrier_label_postlogistics') - - """, - 'website': 'http://www.akretion.com/', - 'data': [ - ], - 'tests': [], - 'installable': False, - 'auto_install': False, - 'license': 'AGPL-3', - 'application': True, -} +# © 2014 David BEAL Akretion +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{'name': 'Configuration Helper', + 'version': '9.0.1.0.0', + 'author': "Akretion,Odoo Community Association (OCA)", + 'maintainer': 'Akretion', + 'category': 'server', + 'complexity': 'normal', + 'depends': ['base'], + 'website': 'http://www.akretion.com/', + 'data': [], + 'tests': [], + 'installable': True, + 'auto_install': False, + 'license': 'AGPL-3', + 'application': False, + } diff --git a/configuration_helper/config.py b/configuration_helper/config.py deleted file mode 100644 index 73fd58e2f..000000000 --- a/configuration_helper/config.py +++ /dev/null @@ -1,114 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: David BEAL, Copyright 2014 Akretion -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -import re - -from openerp.osv import orm, fields - - -class AbstractConfigSettings(orm.AbstractModel): - _name = 'abstract.config.settings' - _description = 'Abstract configuration settings' - # prefix field name to differentiate fields in company with those in config - _prefix = 'setting_' - # this is the class name to import in your module - # (it should be ResCompany or res_company, depends of your code) - _companyObject = None - - def _filter_field(self, field_key): - """Inherit in your module to define for which company field - you don't want have a matching related field""" - return True - - def __init__(self, pool, cr): - super(AbstractConfigSettings, self).__init__(pool, cr) - if self._companyObject: - for field_key in self._companyObject._columns: - # allows to exclude some field - if self._filter_field(field_key): - args = ('company_id', field_key) - kwargs = { - 'string': self._companyObject._columns[field_key].string, - 'help': self._companyObject._columns[field_key].help, - 'type': self._companyObject._columns[field_key]._type, - } - if '_obj' in self._companyObject._columns[field_key].__dict__.keys(): - kwargs['relation'] = \ - self._companyObject._columns[field_key]._obj - if '_domain' in \ - self._companyObject._columns[field_key].__dict__.keys(): - kwargs['domain'] = \ - self._companyObject._columns[field_key]._domain - field_key = re.sub('^' + self._prefix, '', field_key) - self._columns[field_key] = \ - fields.related(*args, **kwargs) - - _columns = { - 'company_id': fields.many2one( - 'res.company', - 'Company', - required=True), - } - - def _default_company(self, cr, uid, context=None): - user = self.pool['res.users'].browse(cr, uid, uid, context=context) - return user.company_id.id - - _defaults = { - 'company_id': _default_company, - } - - def field_to_populate_as_related(self, cr, uid, field, company_cols, context=None): - """Only fields which comes from company with the right prefix - must be defined as related""" - if self._prefix + field in company_cols: - return True - return False - - def onchange_company_id(self, cr, uid, ids, company_id, context=None): - " update related fields " - values = {} - values['currency_id'] = False - if not company_id: - return {'value': values} - company_m = self.pool['res.company'] - company = company_m.browse( - cr, uid, company_id, context=context) - company_cols = company_m._columns.keys() - for field in self._columns: - if self.field_to_populate_as_related( - cr, uid, field, company_cols, context=context): - cpny_field = self._columns[field].arg[-1] - if self._columns[field]._type == 'many2one': - values[field] = company[cpny_field]['id'] or False - else: - values[field] = company[cpny_field] - return {'value': values} - - def create(self, cr, uid, values, context=None): - id = super(AbstractConfigSettings, self).create( - cr, uid, values, context=context) - # Hack: to avoid some nasty bug, related fields are not written - # upon record creation. Hence we write on those fields here. - vals = {} - for fname, field in self._columns.iteritems(): - if isinstance(field, fields.related) and fname in values: - vals[fname] = values[fname] - self.write(cr, uid, [id], vals, context) - return id diff --git a/configuration_helper/models/__init__.py b/configuration_helper/models/__init__.py new file mode 100644 index 000000000..d63bc18b6 --- /dev/null +++ b/configuration_helper/models/__init__.py @@ -0,0 +1 @@ +from . import config diff --git a/configuration_helper/models/config.py b/configuration_helper/models/config.py new file mode 100644 index 000000000..1eb51af88 --- /dev/null +++ b/configuration_helper/models/config.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +# © 2014 David BEAL Akretion +# © 2016 Yannick Vaucher (Camptocamp SA) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +import re + +from openerp import api, fields, models + + +class AbstractConfigSettings(models.AbstractModel): + _name = 'abstract.config.settings' + _description = 'Abstract configuration settings' + # prefix field name to differentiate fields in company with those in config + _prefix = 'setting_' + # this is the class name to import in your module + # (it should be ResCompany or res_company, depends of your code) + _companyObject = None + _setup_extra_done = False + + company_id = fields.Many2one( + 'res.company', + 'Company', + required=True, + default=lambda self: self.env.user.company_id + ) + + def _filter_field(self, field_key): + """Inherit in your module to define for which company field + you don't want have a matching related field""" + return True + + @api.model + def _setup_base(self, partial): + cls = type(self) + super(AbstractConfigSettings, self)._setup_base(partial) + if not self._companyObject: + return + if cls._setup_extra_done: + return + for field_key in cls._companyObject.__dict__.keys(): + field = cls._companyObject.__dict__[field_key] + if isinstance(field, fields.Field): + # allows to exclude some field + if self._filter_field(field_key): + # fields.agrs contains fields attributes + kwargs = field.args.copy() + kwargs['related'] = 'company_id.' + field_key + field_key = re.sub('^' + self._prefix, '', field_key) + self._add_field(field_key, field.new(**kwargs)) + cls._proper_fields = set(cls._fields) + + self._add_inherited_fields() + cls.pool.model_cache[cls.__bases__] = cls + cls._setup_extra_done = True From 7b207eb12a0d3954c7338825eddadf77745937e2 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 16:08:19 +0200 Subject: [PATCH 05/19] [MIG] Make modules uninstallable --- configuration_helper/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration_helper/__openerp__.py b/configuration_helper/__openerp__.py index 38709aced..28ad673ec 100644 --- a/configuration_helper/__openerp__.py +++ b/configuration_helper/__openerp__.py @@ -11,7 +11,7 @@ 'website': 'http://www.akretion.com/', 'data': [], 'tests': [], - 'installable': True, + 'installable': False, 'auto_install': False, 'license': 'AGPL-3', 'application': False, From 29f4f6d30800c2da83585d18a1ab03f90089cbbc Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 16:08:27 +0200 Subject: [PATCH 06/19] [MIG] Rename manifest files --- configuration_helper/{__openerp__.py => __manifest__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename configuration_helper/{__openerp__.py => __manifest__.py} (100%) diff --git a/configuration_helper/__openerp__.py b/configuration_helper/__manifest__.py similarity index 100% rename from configuration_helper/__openerp__.py rename to configuration_helper/__manifest__.py From 2b1868a7047f940db4390707dc2be7e8bd83338a Mon Sep 17 00:00:00 2001 From: Angel Moya Pardo Date: Thu, 30 Mar 2017 12:26:27 +0200 Subject: [PATCH 07/19] MIG configuration helper --- configuration_helper/README.rst | 1 + configuration_helper/__manifest__.py | 4 ++-- configuration_helper/models/config.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configuration_helper/README.rst b/configuration_helper/README.rst index 710ec7501..7592001f1 100644 --- a/configuration_helper/README.rst +++ b/configuration_helper/README.rst @@ -55,3 +55,4 @@ Contributors * Yannick Vaucher * David BEAL * Sébastien BEAU +* Angel Moya diff --git a/configuration_helper/__manifest__.py b/configuration_helper/__manifest__.py index 28ad673ec..37552c3d2 100644 --- a/configuration_helper/__manifest__.py +++ b/configuration_helper/__manifest__.py @@ -2,7 +2,7 @@ # © 2014 David BEAL Akretion # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). {'name': 'Configuration Helper', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'author': "Akretion,Odoo Community Association (OCA)", 'maintainer': 'Akretion', 'category': 'server', @@ -11,7 +11,7 @@ 'website': 'http://www.akretion.com/', 'data': [], 'tests': [], - 'installable': False, + 'installable': True, 'auto_install': False, 'license': 'AGPL-3', 'application': False, diff --git a/configuration_helper/models/config.py b/configuration_helper/models/config.py index 1eb51af88..27debf9a7 100644 --- a/configuration_helper/models/config.py +++ b/configuration_helper/models/config.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). import re -from openerp import api, fields, models +from odoo import api, fields, models class AbstractConfigSettings(models.AbstractModel): From 4915e013525c2659bd30bd29afc33e8351a07839 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 29 May 2016 10:44:37 -0400 Subject: [PATCH 08/19] OCA Transbot updated translations from Transifex --- configuration_helper/i18n/am.po | 43 +++++++++++++++++++++++++ configuration_helper/i18n/ar.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/bg.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/bs.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/ca.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/cs.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/da.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/de.po | 45 +++++++++++++++++++++++++++ configuration_helper/i18n/el_GR.po | 43 +++++++++++++++++++++++++ configuration_helper/i18n/en_GB.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_AR.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_CL.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_CO.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_CR.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_DO.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_EC.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_ES.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_MX.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_PE.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_PY.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/es_VE.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/et.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/eu.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/fa.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/fi.po | 43 +++++++++++++++++++++++++ configuration_helper/i18n/fr.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/fr_CA.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/fr_CH.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/gl.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/gl_ES.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/he.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/hr.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/hr_HR.po | 43 +++++++++++++++++++++++++ configuration_helper/i18n/hu.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/id.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/it.po | 45 +++++++++++++++++++++++++++ configuration_helper/i18n/ja.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/ko.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/lt.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/lt_LT.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/lv.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/mk.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/mn.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/nb.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/nb_NO.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/nl.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/nl_BE.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/nl_NL.po | 45 +++++++++++++++++++++++++++ configuration_helper/i18n/pl.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/pt.po | 45 +++++++++++++++++++++++++++ configuration_helper/i18n/pt_BR.po | 43 +++++++++++++++++++++++++ configuration_helper/i18n/pt_PT.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/ro.po | 45 +++++++++++++++++++++++++++ configuration_helper/i18n/ru.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/sk.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/sl.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/sr.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/sr@latin.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/sv.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/th.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/tr.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/tr_TR.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/uk.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/vi.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/vi_VN.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/zh_CN.po | 44 ++++++++++++++++++++++++++ configuration_helper/i18n/zh_TW.po | 44 ++++++++++++++++++++++++++ 68 files changed, 2992 insertions(+) create mode 100644 configuration_helper/i18n/am.po create mode 100644 configuration_helper/i18n/ar.po create mode 100644 configuration_helper/i18n/bg.po create mode 100644 configuration_helper/i18n/bs.po create mode 100644 configuration_helper/i18n/ca.po create mode 100644 configuration_helper/i18n/cs.po create mode 100644 configuration_helper/i18n/da.po create mode 100644 configuration_helper/i18n/de.po create mode 100644 configuration_helper/i18n/el_GR.po create mode 100644 configuration_helper/i18n/en_GB.po create mode 100644 configuration_helper/i18n/es.po create mode 100644 configuration_helper/i18n/es_AR.po create mode 100644 configuration_helper/i18n/es_CL.po create mode 100644 configuration_helper/i18n/es_CO.po create mode 100644 configuration_helper/i18n/es_CR.po create mode 100644 configuration_helper/i18n/es_DO.po create mode 100644 configuration_helper/i18n/es_EC.po create mode 100644 configuration_helper/i18n/es_ES.po create mode 100644 configuration_helper/i18n/es_MX.po create mode 100644 configuration_helper/i18n/es_PE.po create mode 100644 configuration_helper/i18n/es_PY.po create mode 100644 configuration_helper/i18n/es_VE.po create mode 100644 configuration_helper/i18n/et.po create mode 100644 configuration_helper/i18n/eu.po create mode 100644 configuration_helper/i18n/fa.po create mode 100644 configuration_helper/i18n/fi.po create mode 100644 configuration_helper/i18n/fr.po create mode 100644 configuration_helper/i18n/fr_CA.po create mode 100644 configuration_helper/i18n/fr_CH.po create mode 100644 configuration_helper/i18n/gl.po create mode 100644 configuration_helper/i18n/gl_ES.po create mode 100644 configuration_helper/i18n/he.po create mode 100644 configuration_helper/i18n/hr.po create mode 100644 configuration_helper/i18n/hr_HR.po create mode 100644 configuration_helper/i18n/hu.po create mode 100644 configuration_helper/i18n/id.po create mode 100644 configuration_helper/i18n/it.po create mode 100644 configuration_helper/i18n/ja.po create mode 100644 configuration_helper/i18n/ko.po create mode 100644 configuration_helper/i18n/lt.po create mode 100644 configuration_helper/i18n/lt_LT.po create mode 100644 configuration_helper/i18n/lv.po create mode 100644 configuration_helper/i18n/mk.po create mode 100644 configuration_helper/i18n/mn.po create mode 100644 configuration_helper/i18n/nb.po create mode 100644 configuration_helper/i18n/nb_NO.po create mode 100644 configuration_helper/i18n/nl.po create mode 100644 configuration_helper/i18n/nl_BE.po create mode 100644 configuration_helper/i18n/nl_NL.po create mode 100644 configuration_helper/i18n/pl.po create mode 100644 configuration_helper/i18n/pt.po create mode 100644 configuration_helper/i18n/pt_BR.po create mode 100644 configuration_helper/i18n/pt_PT.po create mode 100644 configuration_helper/i18n/ro.po create mode 100644 configuration_helper/i18n/ru.po create mode 100644 configuration_helper/i18n/sk.po create mode 100644 configuration_helper/i18n/sl.po create mode 100644 configuration_helper/i18n/sr.po create mode 100644 configuration_helper/i18n/sr@latin.po create mode 100644 configuration_helper/i18n/sv.po create mode 100644 configuration_helper/i18n/th.po create mode 100644 configuration_helper/i18n/tr.po create mode 100644 configuration_helper/i18n/tr_TR.po create mode 100644 configuration_helper/i18n/uk.po create mode 100644 configuration_helper/i18n/vi.po create mode 100644 configuration_helper/i18n/vi_VN.po create mode 100644 configuration_helper/i18n/zh_CN.po create mode 100644 configuration_helper/i18n/zh_TW.po diff --git a/configuration_helper/i18n/am.po b/configuration_helper/i18n/am.po new file mode 100644 index 000000000..d67d56985 --- /dev/null +++ b/configuration_helper/i18n/am.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 02:52+0000\n" +"PO-Revision-Date: 2016-05-26 06:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/ar.po b/configuration_helper/i18n/ar.po new file mode 100644 index 000000000..357ee47b1 --- /dev/null +++ b/configuration_helper/i18n/ar.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "المعرف" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" diff --git a/configuration_helper/i18n/bg.po b/configuration_helper/i18n/bg.po new file mode 100644 index 000000000..cd58e96cb --- /dev/null +++ b/configuration_helper/i18n/bg.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" diff --git a/configuration_helper/i18n/bs.po b/configuration_helper/i18n/bs.po new file mode 100644 index 000000000..90343f1bc --- /dev/null +++ b/configuration_helper/i18n/bs.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" diff --git a/configuration_helper/i18n/ca.po b/configuration_helper/i18n/ca.po new file mode 100644 index 000000000..f7e2a39e5 --- /dev/null +++ b/configuration_helper/i18n/ca.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" diff --git a/configuration_helper/i18n/cs.po b/configuration_helper/i18n/cs.po new file mode 100644 index 000000000..31e628c33 --- /dev/null +++ b/configuration_helper/i18n/cs.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" diff --git a/configuration_helper/i18n/da.po b/configuration_helper/i18n/da.po new file mode 100644 index 000000000..5343a2a5d --- /dev/null +++ b/configuration_helper/i18n/da.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "Id" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" diff --git a/configuration_helper/i18n/de.po b/configuration_helper/i18n/de.po new file mode 100644 index 000000000..2b2604ada --- /dev/null +++ b/configuration_helper/i18n/de.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +# Niki Waibel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: Niki Waibel , 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" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" diff --git a/configuration_helper/i18n/el_GR.po b/configuration_helper/i18n/el_GR.po new file mode 100644 index 000000000..b366d5fcf --- /dev/null +++ b/configuration_helper/i18n/el_GR.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 02:52+0000\n" +"PO-Revision-Date: 2016-05-26 06:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "Κωδικός" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/en_GB.po b/configuration_helper/i18n/en_GB.po new file mode 100644 index 000000000..49ab82156 --- /dev/null +++ b/configuration_helper/i18n/en_GB.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Last Modified on" diff --git a/configuration_helper/i18n/es.po b/configuration_helper/i18n/es.po new file mode 100644 index 000000000..933db490f --- /dev/null +++ b/configuration_helper/i18n/es.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 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: OCA Transbot , 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" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Compañía" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última actualización por" diff --git a/configuration_helper/i18n/es_AR.po b/configuration_helper/i18n/es_AR.po new file mode 100644 index 000000000..a5fbb9d78 --- /dev/null +++ b/configuration_helper/i18n/es_AR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última modificación en" diff --git a/configuration_helper/i18n/es_CL.po b/configuration_helper/i18n/es_CL.po new file mode 100644 index 000000000..b08ab3085 --- /dev/null +++ b/configuration_helper/i18n/es_CL.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última modificación en" diff --git a/configuration_helper/i18n/es_CO.po b/configuration_helper/i18n/es_CO.po new file mode 100644 index 000000000..a395bfaff --- /dev/null +++ b/configuration_helper/i18n/es_CO.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" diff --git a/configuration_helper/i18n/es_CR.po b/configuration_helper/i18n/es_CR.po new file mode 100644 index 000000000..926324ea7 --- /dev/null +++ b/configuration_helper/i18n/es_CR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/es_DO.po b/configuration_helper/i18n/es_DO.po new file mode 100644 index 000000000..4ec8ebcdc --- /dev/null +++ b/configuration_helper/i18n/es_DO.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última modificación en" diff --git a/configuration_helper/i18n/es_EC.po b/configuration_helper/i18n/es_EC.po new file mode 100644 index 000000000..1013f5903 --- /dev/null +++ b/configuration_helper/i18n/es_EC.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última modificación en" diff --git a/configuration_helper/i18n/es_ES.po b/configuration_helper/i18n/es_ES.po new file mode 100644 index 000000000..e8299055f --- /dev/null +++ b/configuration_helper/i18n/es_ES.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última modificación en" diff --git a/configuration_helper/i18n/es_MX.po b/configuration_helper/i18n/es_MX.po new file mode 100644 index 000000000..ca3276ea7 --- /dev/null +++ b/configuration_helper/i18n/es_MX.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" diff --git a/configuration_helper/i18n/es_PE.po b/configuration_helper/i18n/es_PE.po new file mode 100644 index 000000000..cb14859ce --- /dev/null +++ b/configuration_helper/i18n/es_PE.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" diff --git a/configuration_helper/i18n/es_PY.po b/configuration_helper/i18n/es_PY.po new file mode 100644 index 000000000..ac97724c4 --- /dev/null +++ b/configuration_helper/i18n/es_PY.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/es_VE.po b/configuration_helper/i18n/es_VE.po new file mode 100644 index 000000000..329ae1fd5 --- /dev/null +++ b/configuration_helper/i18n/es_VE.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" diff --git a/configuration_helper/i18n/et.po b/configuration_helper/i18n/et.po new file mode 100644 index 000000000..b97dda219 --- /dev/null +++ b/configuration_helper/i18n/et.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" diff --git a/configuration_helper/i18n/eu.po b/configuration_helper/i18n/eu.po new file mode 100644 index 000000000..cd743a712 --- /dev/null +++ b/configuration_helper/i18n/eu.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/fa.po b/configuration_helper/i18n/fa.po new file mode 100644 index 000000000..8d8b70b0f --- /dev/null +++ b/configuration_helper/i18n/fa.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "شناسه" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" diff --git a/configuration_helper/i18n/fi.po b/configuration_helper/i18n/fi.po new file mode 100644 index 000000000..ccf326ddf --- /dev/null +++ b/configuration_helper/i18n/fi.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-05-26 06:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" diff --git a/configuration_helper/i18n/fr.po b/configuration_helper/i18n/fr.po new file mode 100644 index 000000000..7d31cd63c --- /dev/null +++ b/configuration_helper/i18n/fr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 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: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Société" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" diff --git a/configuration_helper/i18n/fr_CA.po b/configuration_helper/i18n/fr_CA.po new file mode 100644 index 000000000..0c7b31b01 --- /dev/null +++ b/configuration_helper/i18n/fr_CA.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "Identifiant" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/fr_CH.po b/configuration_helper/i18n/fr_CH.po new file mode 100644 index 000000000..95de7a8e2 --- /dev/null +++ b/configuration_helper/i18n/fr_CH.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" diff --git a/configuration_helper/i18n/gl.po b/configuration_helper/i18n/gl.po new file mode 100644 index 000000000..5536b0f13 --- /dev/null +++ b/configuration_helper/i18n/gl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última modificación" diff --git a/configuration_helper/i18n/gl_ES.po b/configuration_helper/i18n/gl_ES.po new file mode 100644 index 000000000..4027b2307 --- /dev/null +++ b/configuration_helper/i18n/gl_ES.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/he.po b/configuration_helper/i18n/he.po new file mode 100644 index 000000000..b7210b8eb --- /dev/null +++ b/configuration_helper/i18n/he.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "מזהה" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" diff --git a/configuration_helper/i18n/hr.po b/configuration_helper/i18n/hr.po new file mode 100644 index 000000000..3aeea49fe --- /dev/null +++ b/configuration_helper/i18n/hr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-29 00:48+0000\n" +"PO-Revision-Date: 2016-06-14 10:58+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "Apstraktne konfiguracijske postake" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Poduzeće" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" diff --git a/configuration_helper/i18n/hr_HR.po b/configuration_helper/i18n/hr_HR.po new file mode 100644 index 000000000..a8bc8d797 --- /dev/null +++ b/configuration_helper/i18n/hr_HR.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 12:31+0000\n" +"PO-Revision-Date: 2016-05-26 06:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" diff --git a/configuration_helper/i18n/hu.po b/configuration_helper/i18n/hu.po new file mode 100644 index 000000000..afb8ac2d2 --- /dev/null +++ b/configuration_helper/i18n/hu.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" diff --git a/configuration_helper/i18n/id.po b/configuration_helper/i18n/id.po new file mode 100644 index 000000000..198a8faf0 --- /dev/null +++ b/configuration_helper/i18n/id.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" diff --git a/configuration_helper/i18n/it.po b/configuration_helper/i18n/it.po new file mode 100644 index 000000000..1f63bcd69 --- /dev/null +++ b/configuration_helper/i18n/it.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-06 02:25+0000\n" +"PO-Revision-Date: 2018-01-06 02:25+0000\n" +"Last-Translator: Paolo Valier , 2018\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Azienda" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" diff --git a/configuration_helper/i18n/ja.po b/configuration_helper/i18n/ja.po new file mode 100644 index 000000000..3027fe3c9 --- /dev/null +++ b/configuration_helper/i18n/ja.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "最終更新日" diff --git a/configuration_helper/i18n/ko.po b/configuration_helper/i18n/ko.po new file mode 100644 index 000000000..73030e4bd --- /dev/null +++ b/configuration_helper/i18n/ko.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "최근 수정" diff --git a/configuration_helper/i18n/lt.po b/configuration_helper/i18n/lt.po new file mode 100644 index 000000000..c9280c736 --- /dev/null +++ b/configuration_helper/i18n/lt.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" diff --git a/configuration_helper/i18n/lt_LT.po b/configuration_helper/i18n/lt_LT.po new file mode 100644 index 000000000..d801a4160 --- /dev/null +++ b/configuration_helper/i18n/lt_LT.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/lv.po b/configuration_helper/i18n/lv.po new file mode 100644 index 000000000..e7337183a --- /dev/null +++ b/configuration_helper/i18n/lv.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/mk.po b/configuration_helper/i18n/mk.po new file mode 100644 index 000000000..233baf63a --- /dev/null +++ b/configuration_helper/i18n/mk.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Последна промена на" diff --git a/configuration_helper/i18n/mn.po b/configuration_helper/i18n/mn.po new file mode 100644 index 000000000..6d39dd82a --- /dev/null +++ b/configuration_helper/i18n/mn.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" diff --git a/configuration_helper/i18n/nb.po b/configuration_helper/i18n/nb.po new file mode 100644 index 000000000..9c8c43a28 --- /dev/null +++ b/configuration_helper/i18n/nb.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " diff --git a/configuration_helper/i18n/nb_NO.po b/configuration_helper/i18n/nb_NO.po new file mode 100644 index 000000000..098a21294 --- /dev/null +++ b/configuration_helper/i18n/nb_NO.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Sist endret den" diff --git a/configuration_helper/i18n/nl.po b/configuration_helper/i18n/nl.po new file mode 100644 index 000000000..61f107737 --- /dev/null +++ b/configuration_helper/i18n/nl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" diff --git a/configuration_helper/i18n/nl_BE.po b/configuration_helper/i18n/nl_BE.po new file mode 100644 index 000000000..34ff4cd1a --- /dev/null +++ b/configuration_helper/i18n/nl_BE.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" diff --git a/configuration_helper/i18n/nl_NL.po b/configuration_helper/i18n/nl_NL.po new file mode 100644 index 000000000..7fe89341a --- /dev/null +++ b/configuration_helper/i18n/nl_NL.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# Peter Hageman , 2017 +# Erwin van der Ploeg , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-26 11:57+0000\n" +"PO-Revision-Date: 2017-07-26 11:57+0000\n" +"Last-Translator: Erwin van der Ploeg , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" diff --git a/configuration_helper/i18n/pl.po b/configuration_helper/i18n/pl.po new file mode 100644 index 000000000..6eddfdfea --- /dev/null +++ b/configuration_helper/i18n/pl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 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" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" diff --git a/configuration_helper/i18n/pt.po b/configuration_helper/i18n/pt.po new file mode 100644 index 000000000..c04483fe8 --- /dev/null +++ b/configuration_helper/i18n/pt.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +# Pedro Castro Silva , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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 , 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" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Empresa" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" diff --git a/configuration_helper/i18n/pt_BR.po b/configuration_helper/i18n/pt_BR.po new file mode 100644 index 000000000..0a7ff6f09 --- /dev/null +++ b/configuration_helper/i18n/pt_BR.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-05-26 06:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "Identificação" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última atualização em" diff --git a/configuration_helper/i18n/pt_PT.po b/configuration_helper/i18n/pt_PT.po new file mode 100644 index 000000000..c0d721e8d --- /dev/null +++ b/configuration_helper/i18n/pt_PT.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" diff --git a/configuration_helper/i18n/ro.po b/configuration_helper/i18n/ro.po new file mode 100644 index 000000000..c34f512f9 --- /dev/null +++ b/configuration_helper/i18n/ro.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +# Dorin Hongu , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: Dorin Hongu , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Companie" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" diff --git a/configuration_helper/i18n/ru.po b/configuration_helper/i18n/ru.po new file mode 100644 index 000000000..2f3e6d318 --- /dev/null +++ b/configuration_helper/i18n/ru.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/sk.po b/configuration_helper/i18n/sk.po new file mode 100644 index 000000000..157fb165f --- /dev/null +++ b/configuration_helper/i18n/sk.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" diff --git a/configuration_helper/i18n/sl.po b/configuration_helper/i18n/sl.po new file mode 100644 index 000000000..389bee414 --- /dev/null +++ b/configuration_helper/i18n/sl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 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: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "Družba" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" diff --git a/configuration_helper/i18n/sr.po b/configuration_helper/i18n/sr.po new file mode 100644 index 000000000..9ce00256e --- /dev/null +++ b/configuration_helper/i18n/sr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/sr@latin.po b/configuration_helper/i18n/sr@latin.po new file mode 100644 index 000000000..8b6fc7c28 --- /dev/null +++ b/configuration_helper/i18n/sr@latin.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" diff --git a/configuration_helper/i18n/sv.po b/configuration_helper/i18n/sv.po new file mode 100644 index 000000000..523d8460e --- /dev/null +++ b/configuration_helper/i18n/sv.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" diff --git a/configuration_helper/i18n/th.po b/configuration_helper/i18n/th.po new file mode 100644 index 000000000..a35ed9288 --- /dev/null +++ b/configuration_helper/i18n/th.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "รหัส" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" diff --git a/configuration_helper/i18n/tr.po b/configuration_helper/i18n/tr.po new file mode 100644 index 000000000..8d30e5c72 --- /dev/null +++ b/configuration_helper/i18n/tr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" diff --git a/configuration_helper/i18n/tr_TR.po b/configuration_helper/i18n/tr_TR.po new file mode 100644 index 000000000..96ea8a301 --- /dev/null +++ b/configuration_helper/i18n/tr_TR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "Kimlik" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" diff --git a/configuration_helper/i18n/uk.po b/configuration_helper/i18n/uk.po new file mode 100644 index 000000000..1d7832b49 --- /dev/null +++ b/configuration_helper/i18n/uk.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"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: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" diff --git a/configuration_helper/i18n/vi.po b/configuration_helper/i18n/vi.po new file mode 100644 index 000000000..b82a6395b --- /dev/null +++ b/configuration_helper/i18n/vi.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" diff --git a/configuration_helper/i18n/vi_VN.po b/configuration_helper/i18n/vi_VN.po new file mode 100644 index 000000000..41b4f3cc9 --- /dev/null +++ b/configuration_helper/i18n/vi_VN.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" diff --git a/configuration_helper/i18n/zh_CN.po b/configuration_helper/i18n/zh_CN.po new file mode 100644 index 000000000..d22b5ca5f --- /dev/null +++ b/configuration_helper/i18n/zh_CN.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "公司" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "ID" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "最后修改时间" diff --git a/configuration_helper/i18n/zh_TW.po b/configuration_helper/i18n/zh_TW.po new file mode 100644 index 000000000..6a0a19765 --- /dev/null +++ b/configuration_helper/i18n/zh_TW.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-24 02:40+0000\n" +"PO-Revision-Date: 2017-05-24 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "編號" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "最後修改:" From bbf50988a34ec46c1fa0b6654edac61184d2162d Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Tue, 29 May 2018 14:20:11 +0200 Subject: [PATCH 09/19] [MIG] configuration_helper: Migration to 11.0 --- configuration_helper/__manifest__.py | 11 +++-------- configuration_helper/models/config.py | 8 ++++---- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/configuration_helper/__manifest__.py b/configuration_helper/__manifest__.py index 37552c3d2..e34b1276b 100644 --- a/configuration_helper/__manifest__.py +++ b/configuration_helper/__manifest__.py @@ -1,18 +1,13 @@ -# -*- coding: utf-8 -*- -# © 2014 David BEAL Akretion +# Copyright 2014 David BEAL Akretion # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). {'name': 'Configuration Helper', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'author': "Akretion,Odoo Community Association (OCA)", 'maintainer': 'Akretion', 'category': 'server', - 'complexity': 'normal', 'depends': ['base'], - 'website': 'http://www.akretion.com/', - 'data': [], - 'tests': [], + 'website': 'https://github.com/OCA/server-tools', 'installable': True, 'auto_install': False, 'license': 'AGPL-3', - 'application': False, } diff --git a/configuration_helper/models/config.py b/configuration_helper/models/config.py index 27debf9a7..d9dd18381 100644 --- a/configuration_helper/models/config.py +++ b/configuration_helper/models/config.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2014 David BEAL Akretion # © 2016 Yannick Vaucher (Camptocamp SA) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -30,10 +29,11 @@ class AbstractConfigSettings(models.AbstractModel): return True @api.model - def _setup_base(self, partial): + def _setup_base(self): + import pdb; pdb.set_trace() cls = type(self) - super(AbstractConfigSettings, self)._setup_base(partial) - if not self._companyObject: + super(AbstractConfigSettings, self)._setup_base() + if not cls._companyObject: return if cls._setup_extra_done: return From deb052081dbf857c294e77d34e979c6b6267eee7 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Tue, 29 May 2018 15:48:19 +0200 Subject: [PATCH 10/19] Update readme for generator --- configuration_helper/README.rst | 58 -------------------- configuration_helper/readme/CONTRIBUTORS.rst | 4 ++ configuration_helper/readme/DESCRIPTION.rst | 11 ++++ configuration_helper/readme/ROADMAP.rst | 2 + configuration_helper/readme/USAGE.rst | 13 +++++ 5 files changed, 30 insertions(+), 58 deletions(-) delete mode 100644 configuration_helper/README.rst create mode 100644 configuration_helper/readme/CONTRIBUTORS.rst create mode 100644 configuration_helper/readme/DESCRIPTION.rst create mode 100644 configuration_helper/readme/ROADMAP.rst create mode 100644 configuration_helper/readme/USAGE.rst diff --git a/configuration_helper/README.rst b/configuration_helper/README.rst deleted file mode 100644 index 7592001f1..000000000 --- a/configuration_helper/README.rst +++ /dev/null @@ -1,58 +0,0 @@ -.. 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 - -==================== -Configuration Helper -==================== - -*This module is intended for developer only. It does nothing used alone.* - -It helps to create `config.settings` by providing an abstract Class. - -This class: - - * creates automatically related fields in 'whatiwant.config.settings' - using those defined in 'res.company': it avoids duplicated field definitions. - * company_id field with default value is created - * onchange_company_id is defined to update all related fields - * supported fields: char, text, integer, float, datetime, date, boolean, m2o - - -How to use ----------- - -.. code-block:: python - - from . company import ResCompany - - class WhatiwantClassSettings(orm.TransientModel): - _inherit = ['res.config.settings', 'abstract.config.settings'] - _name = 'whatiwant.config.settings' - # fields must be defined in ResCompany class - # related fields are automatically generated from previous definitions - _companyObject = ResCompany - # all prefixed field with _prefix in res.company, will be available in 'whatiwant.config.settings' model - _prefix = 'prefixyouchoose_' - - -Roadmap -------- - * support (or check support) for these field types : o2m, m2m, reference, property, selection - * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) - -Bug Tracker -=========== - -Bugs are tracked on `GitHub 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. - -Contributors ------------- - -* Yannick Vaucher -* David BEAL -* Sébastien BEAU -* Angel Moya diff --git a/configuration_helper/readme/CONTRIBUTORS.rst b/configuration_helper/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..31198d249 --- /dev/null +++ b/configuration_helper/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Yannick Vaucher +* David BEAL +* Sébastien BEAU +* Angel Moya \ No newline at end of file diff --git a/configuration_helper/readme/DESCRIPTION.rst b/configuration_helper/readme/DESCRIPTION.rst new file mode 100644 index 000000000..7d420e61a --- /dev/null +++ b/configuration_helper/readme/DESCRIPTION.rst @@ -0,0 +1,11 @@ +*This module is intended for developer only. It does nothing used alone.* + +It helps to create `config.settings` by providing an abstract Class. + +This class: + + * creates automatically related fields in 'whatiwant.config.settings' + using those defined in 'res.company': it avoids duplicated field definitions. + * company_id field with default value is created + * onchange_company_id is defined to update all related fields + * supported fields: char, text, integer, float, datetime, date, boolean, m2o diff --git a/configuration_helper/readme/ROADMAP.rst b/configuration_helper/readme/ROADMAP.rst new file mode 100644 index 000000000..71d14010e --- /dev/null +++ b/configuration_helper/readme/ROADMAP.rst @@ -0,0 +1,2 @@ + * support (or check support) for these field types : o2m, m2m, reference, property, selection + * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) diff --git a/configuration_helper/readme/USAGE.rst b/configuration_helper/readme/USAGE.rst new file mode 100644 index 000000000..231d01be0 --- /dev/null +++ b/configuration_helper/readme/USAGE.rst @@ -0,0 +1,13 @@ +.. code-block:: python + + from . company import ResCompany + + class WhatiwantClassSettings(orm.TransientModel): + _inherit = ['res.config.settings', 'abstract.config.settings'] + _name = 'whatiwant.config.settings' + # fields must be defined in ResCompany class + # related fields are automatically generated from previous definitions + _companyObject = ResCompany + # all prefixed field with _prefix in res.company, will be available in 'whatiwant.config.settings' model + _prefix = 'prefixyouchoose_' + From b58ca6068f7e050da75442790fe9db3d02b1deb2 Mon Sep 17 00:00:00 2001 From: Timon Tschanz Date: Thu, 28 Jun 2018 18:04:27 +0200 Subject: [PATCH 11/19] make test_configuration_helper installable and set name on inheritance --- configuration_helper/models/config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/configuration_helper/models/config.py b/configuration_helper/models/config.py index d9dd18381..32668005c 100644 --- a/configuration_helper/models/config.py +++ b/configuration_helper/models/config.py @@ -30,7 +30,6 @@ class AbstractConfigSettings(models.AbstractModel): @api.model def _setup_base(self): - import pdb; pdb.set_trace() cls = type(self) super(AbstractConfigSettings, self)._setup_base() if not cls._companyObject: From f287670853be30fea8ed6010c5ade18dffcfbad2 Mon Sep 17 00:00:00 2001 From: Patrick Tombez Date: Tue, 25 Sep 2018 11:20:41 +0200 Subject: [PATCH 12/19] [MIG] Update module to match V11 architecture --- configuration_helper/models/config.py | 33 ++++++++++++--------------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/configuration_helper/models/config.py b/configuration_helper/models/config.py index 32668005c..10433a949 100644 --- a/configuration_helper/models/config.py +++ b/configuration_helper/models/config.py @@ -4,6 +4,7 @@ import re from odoo import api, fields, models +from inspect import getmembers class AbstractConfigSettings(models.AbstractModel): @@ -11,10 +12,6 @@ class AbstractConfigSettings(models.AbstractModel): _description = 'Abstract configuration settings' # prefix field name to differentiate fields in company with those in config _prefix = 'setting_' - # this is the class name to import in your module - # (it should be ResCompany or res_company, depends of your code) - _companyObject = None - _setup_extra_done = False company_id = fields.Many2one( 'res.company', @@ -32,22 +29,20 @@ class AbstractConfigSettings(models.AbstractModel): def _setup_base(self): cls = type(self) super(AbstractConfigSettings, self)._setup_base() - if not cls._companyObject: - return - if cls._setup_extra_done: - return - for field_key in cls._companyObject.__dict__.keys(): - field = cls._companyObject.__dict__[field_key] - if isinstance(field, fields.Field): - # allows to exclude some field - if self._filter_field(field_key): - # fields.agrs contains fields attributes - kwargs = field.args.copy() - kwargs['related'] = 'company_id.' + field_key - field_key = re.sub('^' + self._prefix, '', field_key) - self._add_field(field_key, field.new(**kwargs)) + + comp_fields = filter( + lambda f: (f[0].startswith(self._prefix) and + self._filter_field(f[0])), + getmembers(type(self.env['res.company']), + fields.Field.__instancecheck__) + ) + + for field_key, field in comp_fields: + kwargs = field.args.copy() + kwargs['related'] = 'company_id.' + field_key + field_key = re.sub('^' + self._prefix, '', field_key) + self._add_field(field_key, field.new(**kwargs)) cls._proper_fields = set(cls._fields) self._add_inherited_fields() cls.pool.model_cache[cls.__bases__] = cls - cls._setup_extra_done = True From 60e2a4234556cf3ce298b2b2ffdf4eeb87b213d0 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Tue, 9 Oct 2018 10:13:37 +0200 Subject: [PATCH 13/19] Add to contributors --- configuration_helper/readme/CONTRIBUTORS.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration_helper/readme/CONTRIBUTORS.rst b/configuration_helper/readme/CONTRIBUTORS.rst index 31198d249..8d6cc8a1c 100644 --- a/configuration_helper/readme/CONTRIBUTORS.rst +++ b/configuration_helper/readme/CONTRIBUTORS.rst @@ -1,4 +1,6 @@ * Yannick Vaucher * David BEAL * Sébastien BEAU -* Angel Moya \ No newline at end of file +* Angel Moya +* Akim Juillerat +* Patrick Tombez From 7eed569dad9a96f33a63e6ab8b2a1e135eda8fd9 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 10 Oct 2018 09:51:50 +0000 Subject: [PATCH 14/19] [UPD] README.rst --- configuration_helper/README.rst | 111 +++++ .../static/description/index.html | 461 ++++++++++++++++++ 2 files changed, 572 insertions(+) create mode 100644 configuration_helper/README.rst create mode 100644 configuration_helper/static/description/index.html diff --git a/configuration_helper/README.rst b/configuration_helper/README.rst new file mode 100644 index 000000000..724bc286b --- /dev/null +++ b/configuration_helper/README.rst @@ -0,0 +1,111 @@ +==================== +Configuration Helper +==================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github + :target: https://github.com/OCA/server-tools/tree/11.0/configuration_helper + :alt: OCA/server-tools +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-configuration_helper + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/149/11.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +*This module is intended for developer only. It does nothing used alone.* + +It helps to create `config.settings` by providing an abstract Class. + +This class: + + * creates automatically related fields in 'whatiwant.config.settings' + using those defined in 'res.company': it avoids duplicated field definitions. + * company_id field with default value is created + * onchange_company_id is defined to update all related fields + * supported fields: char, text, integer, float, datetime, date, boolean, m2o + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +.. code-block:: python + + from . company import ResCompany + + class WhatiwantClassSettings(orm.TransientModel): + _inherit = ['res.config.settings', 'abstract.config.settings'] + _name = 'whatiwant.config.settings' + # fields must be defined in ResCompany class + # related fields are automatically generated from previous definitions + _companyObject = ResCompany + # all prefixed field with _prefix in res.company, will be available in 'whatiwant.config.settings' model + _prefix = 'prefixyouchoose_' + + +Known issues / Roadmap +====================== + + * support (or check support) for these field types : o2m, m2m, reference, property, selection + * automatically generate a default view for 'whatiwant.config.settings' (in --debug ?) + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Yannick Vaucher +* David BEAL +* Sébastien BEAU +* Angel Moya +* Akim Juillerat +* Patrick Tombez + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +This module is part of the `OCA/server-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/configuration_helper/static/description/index.html b/configuration_helper/static/description/index.html new file mode 100644 index 000000000..5f06b1c91 --- /dev/null +++ b/configuration_helper/static/description/index.html @@ -0,0 +1,461 @@ + + + + + + +Configuration Helper + + + +
+

Configuration Helper

+ + +

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runbot

+

This module is intended for developer only. It does nothing used alone.

+

It helps to create config.settings by providing an abstract Class.

+

This class:

+
+
    +
  • creates automatically related fields in ‘whatiwant.config.settings’ +using those defined in ‘res.company’: it avoids duplicated field definitions.
  • +
  • company_id field with default value is created
  • +
  • onchange_company_id is defined to update all related fields
  • +
  • supported fields: char, text, integer, float, datetime, date, boolean, m2o
  • +
+
+

Table of contents

+ +
+

Usage

+
+from . company import ResCompany
+
+class WhatiwantClassSettings(orm.TransientModel):
+    _inherit = ['res.config.settings', 'abstract.config.settings']
+    _name = 'whatiwant.config.settings'
+    # fields must be defined in ResCompany class
+    # related fields are automatically generated from previous definitions
+    _companyObject = ResCompany
+    # all prefixed field with _prefix in res.company, will be available in 'whatiwant.config.settings' model
+    _prefix = 'prefixyouchoose_'
+
+
+
+

Known issues / Roadmap

+
+
    +
  • support (or check support) for these field types : o2m, m2m, reference, property, selection
  • +
  • automatically generate a default view for ‘whatiwant.config.settings’ (in –debug ?)
  • +
+
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub 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.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

This module is part of the OCA/server-tools project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + From 3323db626dbb279f726a1a4c6bcd11a7ab2e9b5b Mon Sep 17 00:00:00 2001 From: oca-travis Date: Wed, 10 Oct 2018 10:17:14 +0000 Subject: [PATCH 15/19] [UPD] Update configuration_helper.pot --- configuration_helper/i18n/am.po | 7 ++-- configuration_helper/i18n/ar.po | 7 ++-- configuration_helper/i18n/bg.po | 4 +- configuration_helper/i18n/bs.po | 7 ++-- configuration_helper/i18n/ca.po | 4 +- .../i18n/configuration_helper.pot | 40 +++++++++++++++++++ configuration_helper/i18n/cs.po | 4 +- configuration_helper/i18n/da.po | 4 +- configuration_helper/i18n/de.po | 4 +- configuration_helper/i18n/el_GR.po | 7 ++-- configuration_helper/i18n/en_GB.po | 7 ++-- configuration_helper/i18n/es.po | 4 +- configuration_helper/i18n/es_AR.po | 7 ++-- configuration_helper/i18n/es_CL.po | 7 ++-- configuration_helper/i18n/es_CO.po | 7 ++-- configuration_helper/i18n/es_CR.po | 7 ++-- configuration_helper/i18n/es_DO.po | 7 ++-- configuration_helper/i18n/es_EC.po | 7 ++-- configuration_helper/i18n/es_ES.po | 7 ++-- configuration_helper/i18n/es_MX.po | 7 ++-- configuration_helper/i18n/es_PE.po | 7 ++-- configuration_helper/i18n/es_PY.po | 7 ++-- configuration_helper/i18n/es_VE.po | 7 ++-- configuration_helper/i18n/et.po | 4 +- configuration_helper/i18n/eu.po | 4 +- configuration_helper/i18n/fa.po | 4 +- configuration_helper/i18n/fi.po | 7 ++-- configuration_helper/i18n/fr.po | 4 +- configuration_helper/i18n/fr_CA.po | 7 ++-- configuration_helper/i18n/fr_CH.po | 7 ++-- configuration_helper/i18n/gl.po | 4 +- configuration_helper/i18n/gl_ES.po | 7 ++-- configuration_helper/i18n/he.po | 4 +- configuration_helper/i18n/hr.po | 10 +++-- configuration_helper/i18n/hr_HR.po | 10 +++-- configuration_helper/i18n/hu.po | 4 +- configuration_helper/i18n/id.po | 4 +- configuration_helper/i18n/it.po | 4 +- configuration_helper/i18n/ja.po | 4 +- configuration_helper/i18n/ko.po | 4 +- configuration_helper/i18n/lt.po | 7 ++-- configuration_helper/i18n/lt_LT.po | 10 +++-- configuration_helper/i18n/lv.po | 7 ++-- configuration_helper/i18n/mk.po | 4 +- configuration_helper/i18n/mn.po | 4 +- configuration_helper/i18n/nb.po | 7 ++-- configuration_helper/i18n/nb_NO.po | 7 ++-- configuration_helper/i18n/nl.po | 4 +- configuration_helper/i18n/nl_BE.po | 7 ++-- configuration_helper/i18n/nl_NL.po | 7 ++-- configuration_helper/i18n/pl.po | 8 ++-- configuration_helper/i18n/pt.po | 4 +- configuration_helper/i18n/pt_BR.po | 7 ++-- configuration_helper/i18n/pt_PT.po | 7 ++-- configuration_helper/i18n/ro.po | 7 ++-- configuration_helper/i18n/ru.po | 8 ++-- configuration_helper/i18n/sk.po | 4 +- configuration_helper/i18n/sl.po | 7 ++-- configuration_helper/i18n/sr.po | 7 ++-- configuration_helper/i18n/sr@latin.po | 10 +++-- configuration_helper/i18n/sv.po | 4 +- configuration_helper/i18n/th.po | 4 +- configuration_helper/i18n/tr.po | 4 +- configuration_helper/i18n/tr_TR.po | 7 ++-- configuration_helper/i18n/uk.po | 7 ++-- configuration_helper/i18n/vi.po | 4 +- configuration_helper/i18n/vi_VN.po | 7 ++-- configuration_helper/i18n/zh_CN.po | 7 ++-- configuration_helper/i18n/zh_TW.po | 7 ++-- 69 files changed, 270 insertions(+), 182 deletions(-) create mode 100644 configuration_helper/i18n/configuration_helper.pot diff --git a/configuration_helper/i18n/am.po b/configuration_helper/i18n/am.po index d67d56985..790f7a62c 100644 --- a/configuration_helper/i18n/am.po +++ b/configuration_helper/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-09-10 02:52+0000\n" "PO-Revision-Date: 2016-05-26 06:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/language/am/)\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/" +"language/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/ar.po b/configuration_helper/i18n/ar.po index 357ee47b1..a073455ba 100644 --- a/configuration_helper/i18n/ar.po +++ b/configuration_helper/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/bg.po b/configuration_helper/i18n/bg.po index cd58e96cb..1546760c6 100644 --- a/configuration_helper/i18n/bg.po +++ b/configuration_helper/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/bs.po b/configuration_helper/i18n/bs.po index 90343f1bc..5e06dfc34 100644 --- a/configuration_helper/i18n/bs.po +++ b/configuration_helper/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\n" -"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" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/ca.po b/configuration_helper/i18n/ca.po index f7e2a39e5..6074916ef 100644 --- a/configuration_helper/i18n/ca.po +++ b/configuration_helper/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/configuration_helper.pot b/configuration_helper/i18n/configuration_helper.pot new file mode 100644 index 000000000..246a0ca0f --- /dev/null +++ b/configuration_helper/i18n/configuration_helper.pot @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * configuration_helper +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: configuration_helper +#: model:ir.model,name:configuration_helper.model_abstract_config_settings +msgid "Abstract configuration settings" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id +msgid "Company" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_display_name +msgid "Display Name" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_id +msgid "ID" +msgstr "" + +#. module: configuration_helper +#: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings___last_update +msgid "Last Modified on" +msgstr "" + diff --git a/configuration_helper/i18n/cs.po b/configuration_helper/i18n/cs.po index 31e628c33..febb019d8 100644 --- a/configuration_helper/i18n/cs.po +++ b/configuration_helper/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/da.po b/configuration_helper/i18n/da.po index 5343a2a5d..4b4d87029 100644 --- a/configuration_helper/i18n/da.po +++ b/configuration_helper/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/de.po b/configuration_helper/i18n/de.po index 2b2604ada..43e7aee73 100644 --- a/configuration_helper/i18n/de.po +++ b/configuration_helper/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 # Niki Waibel , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: Niki Waibel , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/el_GR.po b/configuration_helper/i18n/el_GR.po index b366d5fcf..f78f6f789 100644 --- a/configuration_helper/i18n/el_GR.po +++ b/configuration_helper/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-09-10 02:52+0000\n" "PO-Revision-Date: 2016-05-26 06:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/el_GR/)\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-server-" +"tools-9-0/language/el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/en_GB.po b/configuration_helper/i18n/en_GB.po index 49ab82156..d7dace281 100644 --- a/configuration_helper/i18n/en_GB.po +++ b/configuration_helper/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es.po b/configuration_helper/i18n/es.po index 933db490f..ed746e392 100644 --- a/configuration_helper/i18n/es.po +++ b/configuration_helper/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_AR.po b/configuration_helper/i18n/es_AR.po index a5fbb9d78..6074eccf2 100644 --- a/configuration_helper/i18n/es_AR.po +++ b/configuration_helper/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_CL.po b/configuration_helper/i18n/es_CL.po index b08ab3085..187f8a647 100644 --- a/configuration_helper/i18n/es_CL.po +++ b/configuration_helper/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_CO.po b/configuration_helper/i18n/es_CO.po index a395bfaff..98c2c067b 100644 --- a/configuration_helper/i18n/es_CO.po +++ b/configuration_helper/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_CR.po b/configuration_helper/i18n/es_CR.po index 926324ea7..e026ca748 100644 --- a/configuration_helper/i18n/es_CR.po +++ b/configuration_helper/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_DO.po b/configuration_helper/i18n/es_DO.po index 4ec8ebcdc..1208cd7b3 100644 --- a/configuration_helper/i18n/es_DO.po +++ b/configuration_helper/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_EC.po b/configuration_helper/i18n/es_EC.po index 1013f5903..f95248a5c 100644 --- a/configuration_helper/i18n/es_EC.po +++ b/configuration_helper/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_ES.po b/configuration_helper/i18n/es_ES.po index e8299055f..e226eea0e 100644 --- a/configuration_helper/i18n/es_ES.po +++ b/configuration_helper/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_MX.po b/configuration_helper/i18n/es_MX.po index ca3276ea7..cb6b75864 100644 --- a/configuration_helper/i18n/es_MX.po +++ b/configuration_helper/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_PE.po b/configuration_helper/i18n/es_PE.po index cb14859ce..fab298d36 100644 --- a/configuration_helper/i18n/es_PE.po +++ b/configuration_helper/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_PY.po b/configuration_helper/i18n/es_PY.po index ac97724c4..5dff04e70 100644 --- a/configuration_helper/i18n/es_PY.po +++ b/configuration_helper/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/es_VE.po b/configuration_helper/i18n/es_VE.po index 329ae1fd5..98f3dbacd 100644 --- a/configuration_helper/i18n/es_VE.po +++ b/configuration_helper/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/et.po b/configuration_helper/i18n/et.po index b97dda219..7db473b7e 100644 --- a/configuration_helper/i18n/et.po +++ b/configuration_helper/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/eu.po b/configuration_helper/i18n/eu.po index cd743a712..daf391c92 100644 --- a/configuration_helper/i18n/eu.po +++ b/configuration_helper/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/fa.po b/configuration_helper/i18n/fa.po index 8d8b70b0f..914fd80b1 100644 --- a/configuration_helper/i18n/fa.po +++ b/configuration_helper/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/fi.po b/configuration_helper/i18n/fi.po index ccf326ddf..c2ce6d086 100644 --- a/configuration_helper/i18n/fi.po +++ b/configuration_helper/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-07-09 10:34+0000\n" "PO-Revision-Date: 2016-05-26 06:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/fi/)\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-9-0/" +"language/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/fr.po b/configuration_helper/i18n/fr.po index 7d31cd63c..e39337cde 100644 --- a/configuration_helper/i18n/fr.po +++ b/configuration_helper/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/fr_CA.po b/configuration_helper/i18n/fr_CA.po index 0c7b31b01..62154fd21 100644 --- a/configuration_helper/i18n/fr_CA.po +++ b/configuration_helper/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/fr_CH.po b/configuration_helper/i18n/fr_CH.po index 95de7a8e2..2467ccffb 100644 --- a/configuration_helper/i18n/fr_CH.po +++ b/configuration_helper/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/gl.po b/configuration_helper/i18n/gl.po index 5536b0f13..91da7eca3 100644 --- a/configuration_helper/i18n/gl.po +++ b/configuration_helper/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/gl_ES.po b/configuration_helper/i18n/gl_ES.po index 4027b2307..05c196401 100644 --- a/configuration_helper/i18n/gl_ES.po +++ b/configuration_helper/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/he.po b/configuration_helper/i18n/he.po index b7210b8eb..52cfd63dc 100644 --- a/configuration_helper/i18n/he.po +++ b/configuration_helper/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/hr.po b/configuration_helper/i18n/hr.po index 3aeea49fe..57aff3c89 100644 --- a/configuration_helper/i18n/hr.po +++ b/configuration_helper/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # Bole , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-06-29 00:48+0000\n" "PO-Revision-Date: 2016-06-14 10:58+0000\n" "Last-Translator: Bole \n" -"Language-Team: Croatian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/hr/)\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-server-tools-9-0/" +"language/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"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" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/hr_HR.po b/configuration_helper/i18n/hr_HR.po index a8bc8d797..b2cf2c583 100644 --- a/configuration_helper/i18n/hr_HR.po +++ b/configuration_helper/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "POT-Creation-Date: 2016-06-09 12:31+0000\n" "PO-Revision-Date: 2016-05-26 06:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-" +"tools-9-0/language/hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_HR\n" -"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" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/hu.po b/configuration_helper/i18n/hu.po index afb8ac2d2..8288885ad 100644 --- a/configuration_helper/i18n/hu.po +++ b/configuration_helper/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/id.po b/configuration_helper/i18n/id.po index 198a8faf0..ed92aac29 100644 --- a/configuration_helper/i18n/id.po +++ b/configuration_helper/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/it.po b/configuration_helper/i18n/it.po index 1f63bcd69..d8cfabf3f 100644 --- a/configuration_helper/i18n/it.po +++ b/configuration_helper/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 # Paolo Valier , 2018 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-01-06 02:25+0000\n" "Last-Translator: Paolo Valier , 2018\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/ja.po b/configuration_helper/i18n/ja.po index 3027fe3c9..1a1fce543 100644 --- a/configuration_helper/i18n/ja.po +++ b/configuration_helper/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/ko.po b/configuration_helper/i18n/ko.po index 73030e4bd..06256d3a6 100644 --- a/configuration_helper/i18n/ko.po +++ b/configuration_helper/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/lt.po b/configuration_helper/i18n/lt.po index c9280c736..fe155b2de 100644 --- a/configuration_helper/i18n/lt.po +++ b/configuration_helper/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/lt_LT.po b/configuration_helper/i18n/lt_LT.po index d801a4160..9a462d78a 100644 --- a/configuration_helper/i18n/lt_LT.po +++ b/configuration_helper/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/lv.po b/configuration_helper/i18n/lv.po index e7337183a..f51cb8932 100644 --- a/configuration_helper/i18n/lv.po +++ b/configuration_helper/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/mk.po b/configuration_helper/i18n/mk.po index 233baf63a..60e968a20 100644 --- a/configuration_helper/i18n/mk.po +++ b/configuration_helper/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/mn.po b/configuration_helper/i18n/mn.po index 6d39dd82a..03a7bdd57 100644 --- a/configuration_helper/i18n/mn.po +++ b/configuration_helper/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/nb.po b/configuration_helper/i18n/nb.po index 9c8c43a28..bacee91cb 100644 --- a/configuration_helper/i18n/nb.po +++ b/configuration_helper/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/nb_NO.po b/configuration_helper/i18n/nb_NO.po index 098a21294..39753ff94 100644 --- a/configuration_helper/i18n/nb_NO.po +++ b/configuration_helper/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/nl.po b/configuration_helper/i18n/nl.po index 61f107737..bc2461604 100644 --- a/configuration_helper/i18n/nl.po +++ b/configuration_helper/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/nl_BE.po b/configuration_helper/i18n/nl_BE.po index 34ff4cd1a..90b312efb 100644 --- a/configuration_helper/i18n/nl_BE.po +++ b/configuration_helper/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/nl_NL.po b/configuration_helper/i18n/nl_NL.po index 7fe89341a..0de265ff0 100644 --- a/configuration_helper/i18n/nl_NL.po +++ b/configuration_helper/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # Peter Hageman , 2017 # Erwin van der Ploeg , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-07-26 11:57+0000\n" "PO-Revision-Date: 2017-07-26 11:57+0000\n" "Last-Translator: Erwin van der Ploeg , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/pl.po b/configuration_helper/i18n/pl.po index 6eddfdfea..7f483bd2a 100644 --- a/configuration_helper/i18n/pl.po +++ b/configuration_helper/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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=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" #. module: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/pt.po b/configuration_helper/i18n/pt.po index c04483fe8..b3221b8d8 100644 --- a/configuration_helper/i18n/pt.po +++ b/configuration_helper/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-06-22 01:12+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/pt_BR.po b/configuration_helper/i18n/pt_BR.po index 0a7ff6f09..e0c2117b9 100644 --- a/configuration_helper/i18n/pt_BR.po +++ b/configuration_helper/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-07-09 10:34+0000\n" "PO-Revision-Date: 2016-05-26 06:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-" +"tools-9-0/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/pt_PT.po b/configuration_helper/i18n/pt_PT.po index c0d721e8d..859be6874 100644 --- a/configuration_helper/i18n/pt_PT.po +++ b/configuration_helper/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/ro.po b/configuration_helper/i18n/ro.po index c34f512f9..dd804e2aa 100644 --- a/configuration_helper/i18n/ro.po +++ b/configuration_helper/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 # Dorin Hongu , 2017 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2017-12-16 02:17+0000\n" "Last-Translator: Dorin Hongu , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/ru.po b/configuration_helper/i18n/ru.po index 2f3e6d318..4120d878e 100644 --- a/configuration_helper/i18n/ru.po +++ b/configuration_helper/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #. module: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/sk.po b/configuration_helper/i18n/sk.po index 157fb165f..d11d58e91 100644 --- a/configuration_helper/i18n/sk.po +++ b/configuration_helper/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/sl.po b/configuration_helper/i18n/sl.po index 389bee414..495d7cae1 100644 --- a/configuration_helper/i18n/sl.po +++ b/configuration_helper/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/sr.po b/configuration_helper/i18n/sr.po index 9ce00256e..53a50602c 100644 --- a/configuration_helper/i18n/sr.po +++ b/configuration_helper/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr\n" -"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" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/sr@latin.po b/configuration_helper/i18n/sr@latin.po index 8b6fc7c28..30295864f 100644 --- a/configuration_helper/i18n/sr@latin.po +++ b/configuration_helper/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr@latin\n" -"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" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/sv.po b/configuration_helper/i18n/sv.po index 523d8460e..749140da0 100644 --- a/configuration_helper/i18n/sv.po +++ b/configuration_helper/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/th.po b/configuration_helper/i18n/th.po index a35ed9288..85ee44061 100644 --- a/configuration_helper/i18n/th.po +++ b/configuration_helper/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/tr.po b/configuration_helper/i18n/tr.po index 8d30e5c72..4ff0649cc 100644 --- a/configuration_helper/i18n/tr.po +++ b/configuration_helper/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/tr_TR.po b/configuration_helper/i18n/tr_TR.po index 96ea8a301..5d52194b1 100644 --- a/configuration_helper/i18n/tr_TR.po +++ b/configuration_helper/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/uk.po b/configuration_helper/i18n/uk.po index 1d7832b49..c38ea4474 100644 --- a/configuration_helper/i18n/uk.po +++ b/configuration_helper/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: uk\n" -"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" +"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: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings diff --git a/configuration_helper/i18n/vi.po b/configuration_helper/i18n/vi.po index b82a6395b..287867fa7 100644 --- a/configuration_helper/i18n/vi.po +++ b/configuration_helper/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/vi_VN.po b/configuration_helper/i18n/vi_VN.po index 41b4f3cc9..a6b573730 100644 --- a/configuration_helper/i18n/vi_VN.po +++ b/configuration_helper/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/zh_CN.po b/configuration_helper/i18n/zh_CN.po index d22b5ca5f..226a7a250 100644 --- a/configuration_helper/i18n/zh_CN.po +++ b/configuration_helper/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper diff --git a/configuration_helper/i18n/zh_TW.po b/configuration_helper/i18n/zh_TW.po index 6a0a19765..21b64b51a 100644 --- a/configuration_helper/i18n/zh_TW.po +++ b/configuration_helper/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * configuration_helper -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-24 02:40+0000\n" "PO-Revision-Date: 2017-05-24 02:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: configuration_helper From 4cb24502de25fbe2ea794c155991ecbddc7c43cb Mon Sep 17 00:00:00 2001 From: Thomas Pot Date: Wed, 10 Oct 2018 10:51:50 +0000 Subject: [PATCH 16/19] Translated using Weblate (Dutch) Currently translated at 100,0% (5 of 5 strings) Translation: server-tools-11.0/server-tools-11.0-configuration_helper Translate-URL: https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-configuration_helper/nl_NL/ --- configuration_helper/i18n/nl_NL.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/configuration_helper/i18n/nl_NL.po b/configuration_helper/i18n/nl_NL.po index 0de265ff0..5b0311b97 100644 --- a/configuration_helper/i18n/nl_NL.po +++ b/configuration_helper/i18n/nl_NL.po @@ -10,20 +10,21 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-07-26 11:57+0000\n" -"PO-Revision-Date: 2017-07-26 11:57+0000\n" -"Last-Translator: Erwin van der Ploeg , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" -"teams/23907/nl_NL/)\n" +"PO-Revision-Date: 2018-10-10 10:51+0000\n" +"Last-Translator: Thomas Pot \n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/" +"23907/nl_NL/)\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.1.1\n" #. module: configuration_helper #: model:ir.model,name:configuration_helper.model_abstract_config_settings msgid "Abstract configuration settings" -msgstr "" +msgstr "Abstract configuratie-instellingen" #. module: configuration_helper #: model:ir.model.fields,field_description:configuration_helper.field_abstract_config_settings_company_id From e976f4b79d44867854116d57612fd99bfa220bdc Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 2 Apr 2019 14:48:06 +0000 Subject: [PATCH 17/19] [ADD] icon.png --- configuration_helper/static/description/icon.png | Bin 0 -> 9455 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 configuration_helper/static/description/icon.png diff --git a/configuration_helper/static/description/icon.png b/configuration_helper/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From 16bc5b72337afc3a73f43c4b56b938aa80d70332 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 29 Jul 2019 03:39:00 +0000 Subject: [PATCH 18/19] [UPD] README.rst --- configuration_helper/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration_helper/static/description/index.html b/configuration_helper/static/description/index.html index 5f06b1c91..85bffedbc 100644 --- a/configuration_helper/static/description/index.html +++ b/configuration_helper/static/description/index.html @@ -3,7 +3,7 @@ - + Configuration Helper