From e4ed208eb24b5930653516da217d4b93e44eded2 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 25 Jun 2013 10:29:42 +0200 Subject: [PATCH 01/27] [MV] rename better_zip to base_location --- base_location/__init__.py | 25 +++++ base_location/__openerp__.py | 37 +++++++ base_location/better_zip.py | 72 ++++++++++++++ base_location/better_zip_view.xml | 51 ++++++++++ base_location/company.py | 45 +++++++++ base_location/company_view.xml | 19 ++++ base_location/i18n/en.po | 107 ++++++++++++++++++++ base_location/i18n/es.po | 108 +++++++++++++++++++++ base_location/i18n/fr.po | 107 ++++++++++++++++++++ base_location/partner.py | 40 ++++++++ base_location/partner_view.xml | 17 ++++ base_location/security/ir.model.access.csv | 3 + base_location/state.py | 29 ++++++ base_location/state_view.xml | 26 +++++ 14 files changed, 686 insertions(+) create mode 100644 base_location/__init__.py create mode 100644 base_location/__openerp__.py create mode 100644 base_location/better_zip.py create mode 100644 base_location/better_zip_view.xml create mode 100644 base_location/company.py create mode 100644 base_location/company_view.xml create mode 100644 base_location/i18n/en.po create mode 100644 base_location/i18n/es.po create mode 100644 base_location/i18n/fr.po create mode 100644 base_location/partner.py create mode 100644 base_location/partner_view.xml create mode 100644 base_location/security/ir.model.access.csv create mode 100644 base_location/state.py create mode 100644 base_location/state_view.xml diff --git a/base_location/__init__.py b/base_location/__init__.py new file mode 100644 index 000000000..ba9aeedea --- /dev/null +++ b/base_location/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi. Copyright Camptocamp SA +# Contributor: Pedro Manuel Baeza +# Ignacio Ibeas +# +# 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 better_zip +from . import partner +from . import state +from . import company diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py new file mode 100644 index 000000000..682a4d90b --- /dev/null +++ b/base_location/__openerp__.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi. Copyright Camptocamp SA +# Contributor: Pedro Manuel Baeza +# Ignacio Ibeas +# +# 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': 'Location management (aka Better ZIP)', + 'version': '0.3', + 'depends': ['base'], + 'author': 'Camptocamp', + 'description': """ +Introduces a better zip/npa management system. +It enables zip/city auto-completion on partners""", + 'website': 'http://www.camptocamp.com', + 'data': ['better_zip_view.xml', + 'state_view.xml', + 'company_view.xml', + 'partner_view.xml', + 'security/ir.model.access.csv'], + 'installable': True, + 'active': False, + } diff --git a/base_location/better_zip.py b/base_location/better_zip.py new file mode 100644 index 000000000..56de4616e --- /dev/null +++ b/base_location/better_zip.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi. Copyright Camptocamp SA +# Contributor: Pedro Manuel Baeza +# Ignacio Ibeas +# +# 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 openerp.osv import orm, fields + + +class BetterZip(orm.Model): + " City/locations completion object" + + _name = "res.better.zip" + _description = __doc__ + _order = "priority" + + _columns = {'priority': fields.integer('Priority', deprecated=True), + 'name': fields.char('ZIP', required=True), + 'city': fields.char('City', required=True), + 'state_id': fields.many2one('res.country.state', 'State'), + 'country_id': fields.many2one('res.country', 'Country'), + 'code': fields.char('City Code', size=64, + help="The official code for the city"), + } + + _defaults = {'priority': 100} + + def name_get(self, cursor, uid, ids, context=None): + res = [] + for bzip in self.browse(cursor, uid, ids): + name = [bzip.name, bzip.city] + if bzip.state_id: + name.append(bzip.state_id.name) + if bzip.country_id: + name.append(bzip.country_id.name) + res.append((bzip.id, ", ".join(name))) + return res + + def onchange_state_id(self, cr, uid, ids, state_id=False, context={}): + result = {} + if state_id: + state = self.pool['res.country.state'].browse(cr, uid, state_id, context=context) + if state: + result['value'] = {'country_id': state.country_id.id} + return result + + def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100): + if args is None: + args = [] + if context is None: + context = {} + ids = [] + if name: + ids = self.search(cr, uid, [('name', 'ilike', name)] + args, limit=limit) + if not ids: + ids = self.search(cr, uid, [('city', operator, name)] + args, limit=limit) + return self.name_get(cr, uid, ids, context=context) diff --git a/base_location/better_zip_view.xml b/base_location/better_zip_view.xml new file mode 100644 index 000000000..0fc8d11de --- /dev/null +++ b/base_location/better_zip_view.xml @@ -0,0 +1,51 @@ + + + + + + res.better.zip.form + res.better.zip + +
+ + + + + + + + +
+
+
+ + + res.better.zip.tree + res.better.zip + + + + + + + + + + + + + Cites/locations Management + res.better.zip + form + tree,form + + + + +
+
diff --git a/base_location/company.py b/base_location/company.py new file mode 100644 index 000000000..03ab50bb5 --- /dev/null +++ b/base_location/company.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi. Copyright Camptocamp SA +# Contributor: Pedro Manuel Baeza +# Ignacio Ibeas +# +# 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 openerp.osv import orm, fields + + +class ResCompany(orm.Model): + + _inherit = 'res.company' + + def on_change_city(self, cursor, uid, ids, zip_id): + result = {} + if zip_id: + bzip = self.pool['res.better.zip'].browse(cursor, uid, zip_id) + result = {'value': {'zip': bzip.name, + 'country_id': bzip.country_id.id if bzip.country_id else False, + 'city': bzip.city, + 'state_id': bzip.state_id.id if bzip.state_id else False + } + } + return result + + _columns = { + 'better_zip_id': fields.many2one('res.better.zip', 'Location', select=1, + help=('Use the city name or the zip code' + ' to search the location')), + } diff --git a/base_location/company_view.xml b/base_location/company_view.xml new file mode 100644 index 000000000..d697158e3 --- /dev/null +++ b/base_location/company_view.xml @@ -0,0 +1,19 @@ + + + + + + res.company.form.city + res.company + + + + + + + + + diff --git a/base_location/i18n/en.po b/base_location/i18n/en.po new file mode 100644 index 000000000..6d35374c8 --- /dev/null +++ b/base_location/i18n/en.po @@ -0,0 +1,107 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * better_zip +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-06-07 14:17+0000\n" +"PO-Revision-Date: 2013-05-08 12:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: better_zip +#: model:ir.actions.act_window,name:better_zip.action_zip_tree +msgid "Cites/locations Management" +msgstr "Cites/locations Management" + +#. module: better_zip +#: field:res.better.zip,city:0 +msgid "City" +msgstr "City" + +#. module: better_zip +#: view:res.better.zip:0 field:res.better.zip,name:0 +msgid "ZIP" +msgstr "ZIP" + +#. module: better_zip +#: field:res.better.zip,country_id:0 +msgid "Country" +msgstr "Country" + +#. module: better_zip +#: field:res.better.zip,priority:0 +msgid "Priority" +msgstr "Priority" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_company +msgid "Companies" +msgstr "Companies" + +#. module: better_zip +#: field:res.better.zip,code:0 +msgid "City Code" +msgstr "City Code" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_better_zip +msgid " City/locations completion object" +msgstr " City/locations completion object" + +#. module: better_zip +#: help:res.company,better_zip_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Use the city name or the zip code to search the location" + +#. module: better_zip +#: field:res.partner,zip_id:0 +msgid "City/Location" +msgstr "City/Location" + +#. module: better_zip +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "State" + +#. module: better_zip +#: field:res.company,better_zip_id:0 +msgid "Location" +msgstr "Location" + +#. module: better_zip +#: model:ir.ui.menu,name:better_zip.zip_base +msgid "Cities/Locations Management" +msgstr "Cities/Locations Management" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: better_zip +#: view:res.company:0 view:res.partner:0 +msgid "City completion" +msgstr "City completion" + +#. module: better_zip +#: field:res.country.state,better_zip_ids:0 +msgid "Cities" +msgstr "Cities" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_country_state +msgid "Country state" +msgstr "Country state" + +#. module: better_zip +#: help:res.better.zip,code:0 +msgid "The official code for the city" +msgstr "The official code for the city" diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po new file mode 100644 index 000000000..22c7becb2 --- /dev/null +++ b/base_location/i18n/es.po @@ -0,0 +1,108 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * better_zip +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-06-07 14:17+0000\n" +"PO-Revision-Date: 2013-05-08 12:04+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: better_zip +#: model:ir.actions.act_window,name:better_zip.action_zip_tree +msgid "Cites/locations Management" +msgstr "Cites/locations Management" + +#. module: better_zip +#: field:res.better.zip,city:0 +msgid "City" +msgstr "City" + +#. module: better_zip +#: view:res.better.zip:0 field:res.better.zip,name:0 +msgid "ZIP" +msgstr "ZIP" + +#. module: better_zip +#: field:res.better.zip,country_id:0 +msgid "Country" +msgstr "Country" + +#. module: better_zip +#: field:res.better.zip,priority:0 +msgid "Priority" +msgstr "Priority" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_company +msgid "Companies" +msgstr "Companies" + +#. module: better_zip +#: field:res.better.zip,code:0 +msgid "City Code" +msgstr "City Code" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_better_zip +msgid " City/locations completion object" +msgstr " City/locations completion object" + +#. module: better_zip +#: help:res.company,better_zip_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Use the city name or the zip code to search the location" + +#. module: better_zip +#: field:res.partner,zip_id:0 +msgid "City/Location" +msgstr "City/Location" + +#. module: better_zip +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "State" + +#. module: better_zip +#: field:res.company,better_zip_id:0 +msgid "Location" +msgstr "Location" + +#. module: better_zip +#: model:ir.ui.menu,name:better_zip.zip_base +msgid "Cities/Locations Management" +msgstr "Cities/Locations Management" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: better_zip +#: view:res.company:0 view:res.partner:0 +#, fuzzy +msgid "City completion" +msgstr "City completion" + +#. module: better_zip +#: field:res.country.state,better_zip_ids:0 +msgid "Cities" +msgstr "Cities" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_country_state +msgid "Country state" +msgstr "Country state" + +#. module: better_zip +#: help:res.better.zip,code:0 +msgid "The official code for the city" +msgstr "The official code for the city" diff --git a/base_location/i18n/fr.po b/base_location/i18n/fr.po new file mode 100644 index 000000000..c7d5fc968 --- /dev/null +++ b/base_location/i18n/fr.po @@ -0,0 +1,107 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * better_zip +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-06-07 14:17+0000\n" +"PO-Revision-Date: 2013-05-08 12:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: better_zip +#: model:ir.actions.act_window,name:better_zip.action_zip_tree +msgid "Cites/locations Management" +msgstr "Cites/locations Management" + +#. module: better_zip +#: field:res.better.zip,city:0 +msgid "City" +msgstr "Ville" + +#. module: better_zip +#: view:res.better.zip:0 field:res.better.zip,name:0 +msgid "ZIP" +msgstr "ZIP" + +#. module: better_zip +#: field:res.better.zip,country_id:0 +msgid "Country" +msgstr "Pays" + +#. module: better_zip +#: field:res.better.zip,priority:0 +msgid "Priority" +msgstr "Priorité" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: better_zip +#: field:res.better.zip,code:0 +msgid "City Code" +msgstr "Code de la ville" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_better_zip +msgid " City/locations completion object" +msgstr " City/locations completion object" + +#. module: better_zip +#: help:res.company,better_zip_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Utilisez le nom de la ville ou le zip lors des recherches" + +#. module: better_zip +#: field:res.partner,zip_id:0 +msgid "City/Location" +msgstr "Ville/location" + +#. module: better_zip +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "Etat" + +#. module: better_zip +#: field:res.company,better_zip_id:0 +msgid "Location" +msgstr "Location" + +#. module: better_zip +#: model:ir.ui.menu,name:better_zip.zip_base +msgid "Cities/Locations Management" +msgstr "Cities/Locations Management" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_partner +msgid "Partner" +msgstr "Partenaire" + +#. module: better_zip +#: view:res.company:0 view:res.partner:0 +msgid "City completion" +msgstr "Complétion par ville" + +#. module: better_zip +#: field:res.country.state,better_zip_ids:0 +msgid "Cities" +msgstr "Villes" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_country_state +msgid "Country state" +msgstr "Etat" + +#. module: better_zip +#: help:res.better.zip,code:0 +msgid "The official code for the city" +msgstr "Code officiel de la ville" diff --git a/base_location/partner.py b/base_location/partner.py new file mode 100644 index 000000000..b6db7bc8b --- /dev/null +++ b/base_location/partner.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi. Copyright Camptocamp SA +# Contributor: Pedro Manuel Baeza +# Ignacio Ibeas +# +# 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 openerp.osv import orm, fields + + +class ResPartner(orm.Model): + _inherit = "res.partner" + _columns = {'zip_id': fields.many2one('res.better.zip', 'City/Location')} + + def onchange_zip_id(self, cursor, uid, ids, zip_id, context=None): + if not zip_id: + return {} + if isinstance(zip_id, list): + zip_id = zip_id[0] + bzip = self.pool['res.better.zip'].browse(cursor, uid, zip_id, context=context) + return {'value': {'zip': bzip.name, + 'city': bzip.city, + 'country_id': bzip.country_id.id if bzip.country_id else False, + 'state_id': bzip.state_id.id if bzip.state_id else False, + } + } diff --git a/base_location/partner_view.xml b/base_location/partner_view.xml new file mode 100644 index 000000000..cc6b29301 --- /dev/null +++ b/base_location/partner_view.xml @@ -0,0 +1,17 @@ + + + + + res.partner.zip_id.2 + res.partner + + + + + + + + + diff --git a/base_location/security/ir.model.access.csv b/base_location/security/ir.model.access.csv new file mode 100644 index 000000000..c6562df1b --- /dev/null +++ b/base_location/security/ir.model.access.csv @@ -0,0 +1,3 @@ +"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" +"ir_model_access_betterzip0","res_better_zip group_user_all","model_res_better_zip",base.group_user,1,0,0,0 +"ir_model_access_betterzip1","res_better_zip group_user","model_res_better_zip","base.group_partner_manager",1,1,1,1 \ No newline at end of file diff --git a/base_location/state.py b/base_location/state.py new file mode 100644 index 000000000..4312384af --- /dev/null +++ b/base_location/state.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Nicolas Bessi. Copyright Camptocamp SA +# Contributor: Pedro Manuel Baeza +# Ignacio Ibeas +# +# 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 openerp.osv import orm, fields + + +class ResCountryState(orm.Model): + + _inherit = 'res.country.state' + + _columns = {'better_zip_ids': fields.one2many('res.better.zip', 'state_id', 'Cities')} diff --git a/base_location/state_view.xml b/base_location/state_view.xml new file mode 100644 index 000000000..96497c9e5 --- /dev/null +++ b/base_location/state_view.xml @@ -0,0 +1,26 @@ + + + + + + view_country_state_form2 + res.country.state + + + + + + + + + + + + + + + + From 3551a9bd450a57654b1c77af7201e1f5d50cd504 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Tue, 25 Jun 2013 10:57:02 +0200 Subject: [PATCH 02/27] base_location: [IMP] Spanish translation and translation template. --- base_location/i18n/base_location.pot | 109 +++++++++++++++++++++++++++ base_location/i18n/es.po | 103 ++++++++++++------------- 2 files changed, 161 insertions(+), 51 deletions(-) create mode 100644 base_location/i18n/base_location.pot diff --git a/base_location/i18n/base_location.pot b/base_location/i18n/base_location.pot new file mode 100644 index 000000000..d93cec6fe --- /dev/null +++ b/base_location/i18n/base_location.pot @@ -0,0 +1,109 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_location +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-06-25 08:56+0000\n" +"PO-Revision-Date: 2013-06-25 08:56+0000\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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "" + +#. module: base_location +#: field:res.better.zip,city:0 +msgid "City" +msgstr "" + +#. module: base_location +#: view:res.better.zip:0 +#: field:res.better.zip,name:0 +msgid "ZIP" +msgstr "" + +#. module: base_location +#: field:res.better.zip,country_id:0 +msgid "Country" +msgstr "" + +#. module: base_location +#: field:res.better.zip,priority:0 +msgid "Priority" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: field:res.better.zip,code:0 +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid " City/locations completion object" +msgstr "" + +#. module: base_location +#: help:res.company,better_zip_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: field:res.partner,zip_id:0 +msgid "City/Location" +msgstr "" + +#. module: base_location +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "" + +#. module: base_location +#: field:res.company,better_zip_id:0 +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: view:res.company:0 +#: view:res.partner:0 +msgid "City completion" +msgstr "" + +#. module: base_location +#: field:res.country.state,better_zip_ids:0 +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: help:res.better.zip,code:0 +msgid "The official code for the city" +msgstr "" + diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index 22c7becb2..fca36c59d 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -1,108 +1,109 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * better_zip +# * base_location # msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-07 14:17+0000\n" -"PO-Revision-Date: 2013-05-08 12:04+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2013-06-25 08:47+0000\n" +"PO-Revision-Date: 2013-06-25 10:47+0100\n" +"Last-Translator: Pedro Manuel Baeza \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" -#. module: better_zip -#: model:ir.actions.act_window,name:better_zip.action_zip_tree +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree msgid "Cites/locations Management" -msgstr "Cites/locations Management" +msgstr "Gestión de ciudades/ubicaciones" -#. module: better_zip +#. module: base_location #: field:res.better.zip,city:0 msgid "City" -msgstr "City" +msgstr "Ciudad" -#. module: better_zip -#: view:res.better.zip:0 field:res.better.zip,name:0 +#. module: base_location +#: view:res.better.zip:0 +#: field:res.better.zip,name:0 msgid "ZIP" -msgstr "ZIP" +msgstr "C.P." -#. module: better_zip +#. module: base_location #: field:res.better.zip,country_id:0 msgid "Country" -msgstr "Country" +msgstr "País" -#. module: better_zip +#. module: base_location #: field:res.better.zip,priority:0 msgid "Priority" -msgstr "Priority" +msgstr "Prioridad" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_company +#. module: base_location +#: model:ir.model,name:base_location.model_res_company msgid "Companies" -msgstr "Companies" +msgstr "Compañías" -#. module: better_zip +#. module: base_location #: field:res.better.zip,code:0 msgid "City Code" -msgstr "City Code" +msgstr "Código de ciudad" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_better_zip +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip msgid " City/locations completion object" -msgstr " City/locations completion object" +msgstr " Objeto de completado de ciudad/ubicación" -#. module: better_zip +#. module: base_location #: help:res.company,better_zip_id:0 msgid "Use the city name or the zip code to search the location" -msgstr "Use the city name or the zip code to search the location" +msgstr "Utilice el nombre de ciudad o el código postal para buscar la ubicación" -#. module: better_zip +#. module: base_location #: field:res.partner,zip_id:0 msgid "City/Location" -msgstr "City/Location" +msgstr "Ciudad/Ubicación" -#. module: better_zip +#. module: base_location #: field:res.better.zip,state_id:0 msgid "State" -msgstr "State" +msgstr "Provincia" -#. module: better_zip +#. module: base_location #: field:res.company,better_zip_id:0 msgid "Location" -msgstr "Location" +msgstr "Ubicación" -#. module: better_zip -#: model:ir.ui.menu,name:better_zip.zip_base +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base msgid "Cities/Locations Management" -msgstr "Cities/Locations Management" +msgstr "Ciudad/Ubicaciones" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_partner +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner msgid "Partner" -msgstr "Partner" +msgstr "Empresa" -#. module: better_zip -#: view:res.company:0 view:res.partner:0 -#, fuzzy +#. module: base_location +#: view:res.company:0 +#: view:res.partner:0 msgid "City completion" -msgstr "City completion" +msgstr "Autocompletado a partir de la ciudad" -#. module: better_zip +#. module: base_location #: field:res.country.state,better_zip_ids:0 msgid "Cities" -msgstr "Cities" +msgstr "Ciudades" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_country_state +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state msgid "Country state" -msgstr "Country state" +msgstr "Provincia" -#. module: better_zip +#. module: base_location #: help:res.better.zip,code:0 msgid "The official code for the city" -msgstr "The official code for the city" +msgstr "El código oficial para la ciudad" + From 322b9fb339c7957db5af4447c5503069ec7617e8 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 9 Jul 2013 10:03:15 +0200 Subject: [PATCH 03/27] [FIX] mutable default in function signature --- base_location/better_zip.py | 2 +- base_location/company.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/base_location/better_zip.py b/base_location/better_zip.py index 56de4616e..8d6d01614 100644 --- a/base_location/better_zip.py +++ b/base_location/better_zip.py @@ -51,7 +51,7 @@ class BetterZip(orm.Model): res.append((bzip.id, ", ".join(name))) return res - def onchange_state_id(self, cr, uid, ids, state_id=False, context={}): + def onchange_state_id(self, cr, uid, ids, state_id=False, context=None): result = {} if state_id: state = self.pool['res.country.state'].browse(cr, uid, state_id, context=context) diff --git a/base_location/company.py b/base_location/company.py index 03ab50bb5..6f52c7bd0 100644 --- a/base_location/company.py +++ b/base_location/company.py @@ -26,10 +26,12 @@ class ResCompany(orm.Model): _inherit = 'res.company' - def on_change_city(self, cursor, uid, ids, zip_id): + def on_change_city(self, cr, uid, ids, zip_id, context=None): result = {} + if context is None: + context = {} if zip_id: - bzip = self.pool['res.better.zip'].browse(cursor, uid, zip_id) + bzip = self.pool['res.better.zip'].browse(cr, uid, zip_id, context=context) result = {'value': {'zip': bzip.name, 'country_id': bzip.country_id.id if bzip.country_id else False, 'city': bzip.city, From 13ddee7c388024938c556e803a7b8066aec8e94a Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 31 Jul 2013 17:02:17 +0200 Subject: [PATCH 04/27] [FIX] base_location: Changed partner view to avoid extrange behaviour when company country is filled. --- base_location/better_zip.py | 7 +++++-- base_location/better_zip_view.xml | 12 ++++++++++++ base_location/company_view.xml | 1 + base_location/i18n/base_location.pot | 13 +++++++++---- base_location/i18n/es.po | 15 ++++++++++----- base_location/partner_view.xml | 15 +++++++++++++-- 6 files changed, 50 insertions(+), 13 deletions(-) diff --git a/base_location/better_zip.py b/base_location/better_zip.py index 8d6d01614..562a842e3 100644 --- a/base_location/better_zip.py +++ b/base_location/better_zip.py @@ -30,7 +30,7 @@ class BetterZip(orm.Model): _order = "priority" _columns = {'priority': fields.integer('Priority', deprecated=True), - 'name': fields.char('ZIP', required=True), + 'name': fields.char('ZIP'), 'city': fields.char('City', required=True), 'state_id': fields.many2one('res.country.state', 'State'), 'country_id': fields.many2one('res.country', 'Country'), @@ -43,7 +43,10 @@ class BetterZip(orm.Model): def name_get(self, cursor, uid, ids, context=None): res = [] for bzip in self.browse(cursor, uid, ids): - name = [bzip.name, bzip.city] + if bzip.name: + name = [bzip.name, bzip.city] + else: + name = [bzip.city] if bzip.state_id: name.append(bzip.state_id.name) if bzip.country_id: diff --git a/base_location/better_zip_view.xml b/base_location/better_zip_view.xml index 0fc8d11de..de67ec1af 100644 --- a/base_location/better_zip_view.xml +++ b/base_location/better_zip_view.xml @@ -33,12 +33,24 @@ + + res.better.zip.select + res.better.zip + + + + + + + + Cites/locations Management res.better.zip form tree,form + diff --git a/base_location/i18n/base_location.pot b/base_location/i18n/base_location.pot index d93cec6fe..078e79ab2 100644 --- a/base_location/i18n/base_location.pot +++ b/base_location/i18n/base_location.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-25 08:56+0000\n" -"PO-Revision-Date: 2013-06-25 08:56+0000\n" +"POT-Creation-Date: 2013-12-12 22:33+0000\n" +"PO-Revision-Date: 2013-12-12 22:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -31,6 +31,11 @@ msgstr "" msgid "ZIP" msgstr "" +#. module: base_location +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "" + #. module: base_location #: field:res.better.zip,country_id:0 msgid "Country" @@ -67,8 +72,8 @@ msgid "City/Location" msgstr "" #. module: base_location -#: field:res.better.zip,state_id:0 -msgid "State" +#: view:res.better.zip:0 +msgid "Search city" msgstr "" #. module: base_location diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index fca36c59d..3ff60e231 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-25 08:47+0000\n" -"PO-Revision-Date: 2013-06-25 10:47+0100\n" +"POT-Creation-Date: 2013-12-12 22:34+0000\n" +"PO-Revision-Date: 2013-12-12 23:34+0100\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -31,6 +31,11 @@ msgstr "Ciudad" msgid "ZIP" msgstr "C.P." +#. module: base_location +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "Provincia" + #. module: base_location #: field:res.better.zip,country_id:0 msgid "Country" @@ -67,9 +72,9 @@ msgid "City/Location" msgstr "Ciudad/Ubicación" #. module: base_location -#: field:res.better.zip,state_id:0 -msgid "State" -msgstr "Provincia" +#: view:res.better.zip:0 +msgid "Search city" +msgstr "Buscar ciudad" #. module: base_location #: field:res.company,better_zip_id:0 diff --git a/base_location/partner_view.xml b/base_location/partner_view.xml index cc6b29301..1329b1e02 100644 --- a/base_location/partner_view.xml +++ b/base_location/partner_view.xml @@ -6,11 +6,22 @@ res.partner - + + placeholder="City completion" + attrs="{'invisible': [('use_parent_address','=',True)]}" + /> + + + From 78105ec59062d8aa78664a089fcff405b97a562e Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Tue, 11 Feb 2014 18:31:33 -0500 Subject: [PATCH 05/27] [FIX] Add context propagation to base_location --- base_location/__init__.py | 1 + base_location/better_zip.py | 21 ++++++++++++++------- base_location/company.py | 26 ++++++++++++++------------ base_location/partner.py | 20 +++++++++++--------- base_location/state.py | 7 ++++--- 5 files changed, 44 insertions(+), 31 deletions(-) diff --git a/base_location/__init__.py b/base_location/__init__.py index ba9aeedea..878769646 100644 --- a/base_location/__init__.py +++ b/base_location/__init__.py @@ -19,6 +19,7 @@ # along with this program. If not, see . # ############################################################################## + from . import better_zip from . import partner from . import state diff --git a/base_location/better_zip.py b/base_location/better_zip.py index 562a842e3..c51644a12 100644 --- a/base_location/better_zip.py +++ b/base_location/better_zip.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## +# # # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza @@ -18,11 +18,12 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # -############################################################################## +# from openerp.osv import orm, fields class BetterZip(orm.Model): + " City/locations completion object" _name = "res.better.zip" @@ -42,7 +43,7 @@ class BetterZip(orm.Model): def name_get(self, cursor, uid, ids, context=None): res = [] - for bzip in self.browse(cursor, uid, ids): + for bzip in self.browse(cursor, uid, ids, context=context): if bzip.name: name = [bzip.name, bzip.city] else: @@ -57,19 +58,25 @@ class BetterZip(orm.Model): def onchange_state_id(self, cr, uid, ids, state_id=False, context=None): result = {} if state_id: - state = self.pool['res.country.state'].browse(cr, uid, state_id, context=context) + state = self.pool['res.country.state'].browse( + cr, uid, state_id, context=context) if state: result['value'] = {'country_id': state.country_id.id} return result - def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100): + def name_search( + self, cr, uid, name, args=None, operator='ilike', context=None, + limit=100 + ): if args is None: args = [] if context is None: context = {} ids = [] if name: - ids = self.search(cr, uid, [('name', 'ilike', name)] + args, limit=limit) + ids = self.search( + cr, uid, [('name', 'ilike', name)] + args, limit=limit) if not ids: - ids = self.search(cr, uid, [('city', operator, name)] + args, limit=limit) + ids = self.search( + cr, uid, [('city', operator, name)] + args, limit=limit) return self.name_get(cr, uid, ids, context=context) diff --git a/base_location/company.py b/base_location/company.py index 6f52c7bd0..35ef3d856 100644 --- a/base_location/company.py +++ b/base_location/company.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## +# # # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza @@ -18,7 +18,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # -############################################################################## +# from openerp.osv import orm, fields @@ -31,17 +31,19 @@ class ResCompany(orm.Model): if context is None: context = {} if zip_id: - bzip = self.pool['res.better.zip'].browse(cr, uid, zip_id, context=context) - result = {'value': {'zip': bzip.name, - 'country_id': bzip.country_id.id if bzip.country_id else False, - 'city': bzip.city, - 'state_id': bzip.state_id.id if bzip.state_id else False - } - } + bzip = self.pool['res.better.zip'].browse( + cr, uid, zip_id, context=context) + result = {'value': { + 'zip': bzip.name, + 'country_id': bzip.country_id.id if bzip.country_id else False, + 'city': bzip.city, + 'state_id': bzip.state_id.id if bzip.state_id else False + } + } return result _columns = { - 'better_zip_id': fields.many2one('res.better.zip', 'Location', select=1, - help=('Use the city name or the zip code' - ' to search the location')), + 'better_zip_id': fields.many2one( + 'res.better.zip', 'Location', select=1, + help=('Use the city name or the zip code to search the location')), } diff --git a/base_location/partner.py b/base_location/partner.py index b6db7bc8b..76218ecd5 100644 --- a/base_location/partner.py +++ b/base_location/partner.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## +# # # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza @@ -18,7 +18,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # -############################################################################## +# from openerp.osv import orm, fields @@ -31,10 +31,12 @@ class ResPartner(orm.Model): return {} if isinstance(zip_id, list): zip_id = zip_id[0] - bzip = self.pool['res.better.zip'].browse(cursor, uid, zip_id, context=context) - return {'value': {'zip': bzip.name, - 'city': bzip.city, - 'country_id': bzip.country_id.id if bzip.country_id else False, - 'state_id': bzip.state_id.id if bzip.state_id else False, - } - } + bzip = self.pool['res.better.zip'].browse( + cursor, uid, zip_id, context=context) + return {'value': { + 'zip': bzip.name, + 'city': bzip.city, + 'country_id': bzip.country_id.id if bzip.country_id else False, + 'state_id': bzip.state_id.id if bzip.state_id else False, + } + } diff --git a/base_location/state.py b/base_location/state.py index 4312384af..24cc81e20 100644 --- a/base_location/state.py +++ b/base_location/state.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## +# # # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza @@ -18,7 +18,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # -############################################################################## +# from openerp.osv import orm, fields @@ -26,4 +26,5 @@ class ResCountryState(orm.Model): _inherit = 'res.country.state' - _columns = {'better_zip_ids': fields.one2many('res.better.zip', 'state_id', 'Cities')} + _columns = {'better_zip_ids': fields.one2many( + 'res.better.zip', 'state_id', 'Cities')} From cb7a4969b3b6749473f99d75ed3473f026921114 Mon Sep 17 00:00:00 2001 From: Franco Tampieri Date: Mon, 22 Sep 2014 16:40:24 +0200 Subject: [PATCH 06/27] [Add] Add italian translation, change field class to edit-only for better-zip field --- base_location/i18n/it.po | 107 +++++++++++++++++++++++++++++++++ base_location/partner_view.xml | 2 + 2 files changed, 109 insertions(+) create mode 100644 base_location/i18n/it.po diff --git a/base_location/i18n/it.po b/base_location/i18n/it.po new file mode 100644 index 000000000..e87fffdee --- /dev/null +++ b/base_location/i18n/it.po @@ -0,0 +1,107 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * better_zip +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-06-07 14:17+0000\n" +"PO-Revision-Date: 2014-09-22 16:32+0100\n" +"Last-Translator: Franco Tampieri \n" +"Language-Team: \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.9\n" + +#. module: better_zip +#: model:ir.actions.act_window,name:better_zip.action_zip_tree +msgid "Cites/locations Management" +msgstr "Gestione Città/Locazioni" + +#. module: better_zip +#: field:res.better.zip,city:0 +msgid "City" +msgstr "Città" + +#. module: better_zip +#: view:res.better.zip:0 field:res.better.zip,name:0 +msgid "ZIP" +msgstr "CAP" + +#. module: better_zip +#: field:res.better.zip,country_id:0 +msgid "Country" +msgstr "Paese" + +#. module: better_zip +#: field:res.better.zip,priority:0 +msgid "Priority" +msgstr "Priorità" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_company +msgid "Companies" +msgstr "Aziende" + +#. module: better_zip +#: field:res.better.zip,code:0 +msgid "City Code" +msgstr "Codice Città" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_better_zip +msgid " City/locations completion object" +msgstr " oggetto completamento Città/locazioni" + +#. module: better_zip +#: help:res.company,better_zip_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Usare il nome della città o il codice CAP per ricercare la locazione" + +#. module: better_zip +#: field:res.partner,zip_id:0 +msgid "City/Location" +msgstr "Città/Locazione" + +#. module: better_zip +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "Provincia" + +#. module: better_zip +#: field:res.company,better_zip_id:0 +msgid "Location" +msgstr "Locazione" + +#. module: better_zip +#: model:ir.ui.menu,name:better_zip.zip_base +msgid "Cities/Locations Management" +msgstr "Gestione Città/Locazioni" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: better_zip +#: view:res.company:0 view:res.partner:0 +msgid "City completion" +msgstr "Completamento città" + +#. module: better_zip +#: field:res.country.state,better_zip_ids:0 +msgid "Cities" +msgstr "Città" + +#. module: better_zip +#: model:ir.model,name:better_zip.model_res_country_state +msgid "Country state" +msgstr "Provincia Paese" + +#. module: better_zip +#: help:res.better.zip,code:0 +msgid "The official code for the city" +msgstr "Il codice ufficiale per la città" diff --git a/base_location/partner_view.xml b/base_location/partner_view.xml index 1329b1e02..b75b04a3a 100644 --- a/base_location/partner_view.xml +++ b/base_location/partner_view.xml @@ -12,6 +12,7 @@ on_change="onchange_zip_id(zip_id)" placeholder="City completion" attrs="{'invisible': [('use_parent_address','=',True)]}" + class="oe_edit_only" /> @@ -20,6 +21,7 @@ on_change="onchange_zip_id(zip_id)" placeholder="City completion" attrs="{'invisible': [('use_parent_address','=',True)]}" + class="oe_edit_only" /> From 931a409ecd0d31629bc1ca6543b7f3ae4c3fc6d9 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 29 Dec 2014 15:46:56 +0100 Subject: [PATCH 07/27] base_location: Don't position zip_id after street2, to avoid layout issues with module partner_address_street3 --- base_location/partner_view.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base_location/partner_view.xml b/base_location/partner_view.xml index b75b04a3a..ae4e3190c 100644 --- a/base_location/partner_view.xml +++ b/base_location/partner_view.xml @@ -6,7 +6,7 @@ res.partner - +
- - +
+ Date: Fri, 16 Jan 2015 08:40:55 +0100 Subject: [PATCH 08/27] Danish translation --- base_location/i18n/da.po | 113 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 base_location/i18n/da.po diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po new file mode 100644 index 000000000..916496908 --- /dev/null +++ b/base_location/i18n/da.po @@ -0,0 +1,113 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_location +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-12-12 22:33+0000\n" +"PO-Revision-Date: 2015-01-16 08:36+0100\n" +"Last-Translator: Hans Henrik Gabelgaard \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.7.3\n" +"Language: da_DK\n" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "By/Postnummer/Lokations administration" + +#. module: base_location +#: field:res.better.zip,city:0 +msgid "City" +msgstr "By" + +#. module: base_location +#: view:res.better.zip:0 field:res.better.zip,name:0 +msgid "ZIP" +msgstr "Postnr" + +#. module: base_location +#: field:res.better.zip,state_id:0 +msgid "State" +msgstr "Delstat" + +#. module: base_location +#: field:res.better.zip,country_id:0 +msgid "Country" +msgstr "Land." + +#. module: base_location +#: field:res.better.zip,priority:0 +msgid "Priority" +msgstr "Prioritet" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Virksomheder" + +#. module: base_location +#: field:res.better.zip,code:0 +msgid "City Code" +msgstr "Postnummer" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid " City/locations completion object" +msgstr " Slå by/postnummer op" + +#. module: base_location +#: help:res.company,better_zip_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Søg på bynavn eller postnummer" + +#. module: base_location +#: field:res.partner,zip_id:0 +msgid "City/Location" +msgstr "Postnr/by " + +#. module: base_location +#: view:res.better.zip:0 +msgid "Search city" +msgstr "Søg by" + +#. module: base_location +#: field:res.company,better_zip_id:0 +msgid "Location" +msgstr "Postnr/by " + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Byer/Loaktions administration" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: view:res.company:0 view:res.partner:0 +msgid "City completion" +msgstr "Slå by/postnummer op" + +#. module: base_location +#: field:res.country.state,better_zip_ids:0 +msgid "Cities" +msgstr "Byer" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Delstat/region" + +#. module: base_location +#: help:res.better.zip,code:0 +msgid "The official code for the city" +msgstr "Postnummer" From c01ba9d8f18dedf8d172cf189c0a97ca00066811 Mon Sep 17 00:00:00 2001 From: Alejandro Santana Date: Mon, 19 Jan 2015 00:35:12 +0100 Subject: [PATCH 09/27] [IMP] base_location: Updated to v8 syntax and uses. Added filters in some views. Added two columns in respective tree views. --- base_location/README.rst | 20 ++++++ base_location/__init__.py | 6 +- base_location/__openerp__.py | 43 ++++++++----- base_location/better_zip.py | 82 ------------------------ base_location/better_zip_view.xml | 63 ------------------ base_location/company_view.xml | 20 ------ base_location/models/__init__.py | 10 +++ base_location/models/better_zip.py | 67 +++++++++++++++++++ base_location/{ => models}/company.py | 39 +++++------ base_location/{ => models}/partner.py | 31 ++++----- base_location/{ => models}/state.py | 8 +-- base_location/partner_view.xml | 30 --------- base_location/state_view.xml | 26 -------- base_location/views/better_zip_view.xml | 70 ++++++++++++++++++++ base_location/views/company_view.xml | 21 ++++++ base_location/views/partner_view.xml | 27 ++++++++ base_location/views/res_country_view.xml | 17 +++++ base_location/views/state_view.xml | 26 ++++++++ 18 files changed, 321 insertions(+), 285 deletions(-) create mode 100644 base_location/README.rst delete mode 100644 base_location/better_zip.py delete mode 100644 base_location/better_zip_view.xml delete mode 100644 base_location/company_view.xml create mode 100644 base_location/models/__init__.py create mode 100644 base_location/models/better_zip.py rename base_location/{ => models}/company.py (52%) rename base_location/{ => models}/partner.py (55%) rename base_location/{ => models}/state.py (81%) delete mode 100644 base_location/partner_view.xml delete mode 100644 base_location/state_view.xml create mode 100644 base_location/views/better_zip_view.xml create mode 100644 base_location/views/company_view.xml create mode 100644 base_location/views/partner_view.xml create mode 100644 base_location/views/res_country_view.xml create mode 100644 base_location/views/state_view.xml diff --git a/base_location/README.rst b/base_location/README.rst new file mode 100644 index 000000000..817183a5b --- /dev/null +++ b/base_location/README.rst @@ -0,0 +1,20 @@ +Enhanced ZIP management +======================= + +This module introduces a better zip/npa management system. + +It enables zip, city, state and country auto-completion on partners and companies. + +Also allows different search filters. + + +Author +------ + +- Nicolas Bessi. (Copyright Camptocamp SA) + +Contributors +------------ +- Ignacio Ibeas (Acysos S.L.) +- Pedro M. Baeza +- Alejandro Santana diff --git a/base_location/__init__.py b/base_location/__init__.py index 878769646..bb01c93ee 100644 --- a/base_location/__init__.py +++ b/base_location/__init__.py @@ -4,6 +4,7 @@ # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza # Ignacio Ibeas +# Alejandro Santana # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -20,7 +21,4 @@ # ############################################################################## -from . import better_zip -from . import partner -from . import state -from . import company +from . import models diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index 682a4d90b..3a8d3b223 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -4,6 +4,7 @@ # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza # Ignacio Ibeas +# Alejandro Santana # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -19,19 +20,29 @@ # along with this program. If not, see . # ############################################################################## -{'name': 'Location management (aka Better ZIP)', - 'version': '0.3', - 'depends': ['base'], - 'author': 'Camptocamp', - 'description': """ -Introduces a better zip/npa management system. -It enables zip/city auto-completion on partners""", - 'website': 'http://www.camptocamp.com', - 'data': ['better_zip_view.xml', - 'state_view.xml', - 'company_view.xml', - 'partner_view.xml', - 'security/ir.model.access.csv'], - 'installable': True, - 'active': False, - } +{ + 'name': 'Location management (aka Better ZIP)', + 'version': '8.0.1.0.0', + 'depends': ['base'], + 'author': "Camptocamp," + "ACYSOS S.L.," + "Alejandro Santana," + "Serv. Tecnol. Avanzados - Pedro M. Baeza," + "Odoo Community Association (OCA)", + 'license': "AGPL-3", + 'contributors': [ + 'Pedro M. Baeza ', + 'Ignacio Ibeas (Acysos S.L.)', + 'Alejandro Santana ', + ], + 'summary': '''Enhanced zip/npa management system''', + 'website': 'http://www.camptocamp.com', + 'data': ['views/better_zip_view.xml', + 'views/state_view.xml', + 'views/res_country_view.xml', + 'views/company_view.xml', + 'views/partner_view.xml', + 'security/ir.model.access.csv'], + 'installable': True, + 'active': False, +} diff --git a/base_location/better_zip.py b/base_location/better_zip.py deleted file mode 100644 index c51644a12..000000000 --- a/base_location/better_zip.py +++ /dev/null @@ -1,82 +0,0 @@ -# -*- coding: utf-8 -*- -# -# -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Contributor: Pedro Manuel Baeza -# Ignacio Ibeas -# -# 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 openerp.osv import orm, fields - - -class BetterZip(orm.Model): - - " City/locations completion object" - - _name = "res.better.zip" - _description = __doc__ - _order = "priority" - - _columns = {'priority': fields.integer('Priority', deprecated=True), - 'name': fields.char('ZIP'), - 'city': fields.char('City', required=True), - 'state_id': fields.many2one('res.country.state', 'State'), - 'country_id': fields.many2one('res.country', 'Country'), - 'code': fields.char('City Code', size=64, - help="The official code for the city"), - } - - _defaults = {'priority': 100} - - def name_get(self, cursor, uid, ids, context=None): - res = [] - for bzip in self.browse(cursor, uid, ids, context=context): - if bzip.name: - name = [bzip.name, bzip.city] - else: - name = [bzip.city] - if bzip.state_id: - name.append(bzip.state_id.name) - if bzip.country_id: - name.append(bzip.country_id.name) - res.append((bzip.id, ", ".join(name))) - return res - - def onchange_state_id(self, cr, uid, ids, state_id=False, context=None): - result = {} - if state_id: - state = self.pool['res.country.state'].browse( - cr, uid, state_id, context=context) - if state: - result['value'] = {'country_id': state.country_id.id} - return result - - def name_search( - self, cr, uid, name, args=None, operator='ilike', context=None, - limit=100 - ): - if args is None: - args = [] - if context is None: - context = {} - ids = [] - if name: - ids = self.search( - cr, uid, [('name', 'ilike', name)] + args, limit=limit) - if not ids: - ids = self.search( - cr, uid, [('city', operator, name)] + args, limit=limit) - return self.name_get(cr, uid, ids, context=context) diff --git a/base_location/better_zip_view.xml b/base_location/better_zip_view.xml deleted file mode 100644 index de67ec1af..000000000 --- a/base_location/better_zip_view.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - res.better.zip.form - res.better.zip - -
- - - - - - - - -
-
-
- - - res.better.zip.tree - res.better.zip - - - - - - - - - - - - - res.better.zip.select - res.better.zip - - - - - - - - - - Cites/locations Management - res.better.zip - form - tree,form - - - - - -
-
diff --git a/base_location/company_view.xml b/base_location/company_view.xml deleted file mode 100644 index 9aa24e358..000000000 --- a/base_location/company_view.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - res.company.form.city - res.company - - - - - - - - - diff --git a/base_location/models/__init__.py b/base_location/models/__init__.py new file mode 100644 index 000000000..351a33ad1 --- /dev/null +++ b/base_location/models/__init__.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# +# License, author and contributors information in: +# __openerp__.py file at the root folder of this module. +# + +from . import better_zip +from . import partner +from . import state +from . import company diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py new file mode 100644 index 000000000..3f86f8ed4 --- /dev/null +++ b/base_location/models/better_zip.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +# +# +# Author: Nicolas Bessi. Copyright Camptocamp SA +# Contributor: Pedro Manuel Baeza +# Ignacio Ibeas +# Alejandro Santana +# +# 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 openerp import models, fields, api + + +class BetterZip(models.Model): + '''City/locations completion object''' + + _name = "res.better.zip" + _description = __doc__ + _order = "name asc" + + name = fields.Char('ZIP') + code = fields.Char('City Code', size=64, + help="The official code for the city") + city = fields.Char('City', required=True) + state_id = fields.Many2one('res.country.state', 'State') + country_id = fields.Many2one('res.country', 'Country') + + @api.multi + def name_get(self): + res = [] + for bzip in self: + if bzip.name: + name = [bzip.name, bzip.city] + else: + name = [bzip.city] + if bzip.state_id: + name.append(bzip.state_id.name) + if bzip.country_id: + name.append(bzip.country_id.name) + res.append((bzip.id, ", ".join(name))) + return res + + @api.onchange('state_id') + def onchange_state_id(self): + if self.state_id: + self.country_id = self.state_id.country_id + + @api.model + def name_search(self, name, args=None, operator='ilike', limit=100): + args = args or [] + recs = self.browse() + if name: + recs = self.search([('name', 'ilike', name)] + args, limit=limit) + if not recs: + recs = self.search([('city', operator, name)] + args, limit=limit) + return recs.name_get() diff --git a/base_location/company.py b/base_location/models/company.py similarity index 52% rename from base_location/company.py rename to base_location/models/company.py index 35ef3d856..6368761cf 100644 --- a/base_location/company.py +++ b/base_location/models/company.py @@ -4,6 +4,7 @@ # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza # Ignacio Ibeas +# Alejandro Santana # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -19,31 +20,25 @@ # along with this program. If not, see . # # -from openerp.osv import orm, fields +from openerp import models, fields, api -class ResCompany(orm.Model): +class ResCompany(models.Model): _inherit = 'res.company' - def on_change_city(self, cr, uid, ids, zip_id, context=None): - result = {} - if context is None: - context = {} - if zip_id: - bzip = self.pool['res.better.zip'].browse( - cr, uid, zip_id, context=context) - result = {'value': { - 'zip': bzip.name, - 'country_id': bzip.country_id.id if bzip.country_id else False, - 'city': bzip.city, - 'state_id': bzip.state_id.id if bzip.state_id else False - } - } - return result + @api.one + @api.onchange('better_zip_id') + def on_change_city(self): + if self.better_zip_id: + self.zip = self.better_zip_id.name + self.city = self.better_zip_id.city + self.state_id = self.better_zip_id.state_id + self.country_id = self.better_zip_id.country_id - _columns = { - 'better_zip_id': fields.many2one( - 'res.better.zip', 'Location', select=1, - help=('Use the city name or the zip code to search the location')), - } + better_zip_id = fields.Many2one( + 'res.better.zip', + string='Location', + select=1, + help='Use the city name or the zip code to search the location', + ) diff --git a/base_location/partner.py b/base_location/models/partner.py similarity index 55% rename from base_location/partner.py rename to base_location/models/partner.py index 76218ecd5..c16ae83b1 100644 --- a/base_location/partner.py +++ b/base_location/models/partner.py @@ -4,6 +4,7 @@ # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza # Ignacio Ibeas +# Alejandro Santana # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -19,24 +20,18 @@ # along with this program. If not, see . # # -from openerp.osv import orm, fields +from openerp import models, fields, api -class ResPartner(orm.Model): - _inherit = "res.partner" - _columns = {'zip_id': fields.many2one('res.better.zip', 'City/Location')} +class ResPartner(models.Model): + _inherit = 'res.partner' + zip_id = fields.Many2one('res.better.zip', 'City/Location') - def onchange_zip_id(self, cursor, uid, ids, zip_id, context=None): - if not zip_id: - return {} - if isinstance(zip_id, list): - zip_id = zip_id[0] - bzip = self.pool['res.better.zip'].browse( - cursor, uid, zip_id, context=context) - return {'value': { - 'zip': bzip.name, - 'city': bzip.city, - 'country_id': bzip.country_id.id if bzip.country_id else False, - 'state_id': bzip.state_id.id if bzip.state_id else False, - } - } + @api.one + @api.onchange('zip_id') + def onchange_zip_id(self): + if self.zip_id: + self.zip = self.zip_id.name + self.city = self.zip_id.city + self.state_id = self.zip_id.state_id + self.country_id = self.zip_id.country_id diff --git a/base_location/state.py b/base_location/models/state.py similarity index 81% rename from base_location/state.py rename to base_location/models/state.py index 24cc81e20..d9db12e50 100644 --- a/base_location/state.py +++ b/base_location/models/state.py @@ -4,6 +4,7 @@ # Author: Nicolas Bessi. Copyright Camptocamp SA # Contributor: Pedro Manuel Baeza # Ignacio Ibeas +# Alejandro Santana # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -19,12 +20,11 @@ # along with this program. If not, see . # # -from openerp.osv import orm, fields +from openerp import models, fields -class ResCountryState(orm.Model): +class ResCountryState(models.Model): _inherit = 'res.country.state' - _columns = {'better_zip_ids': fields.one2many( - 'res.better.zip', 'state_id', 'Cities')} + better_zip_ids = fields.One2many('res.better.zip', 'state_id', 'Cities') diff --git a/base_location/partner_view.xml b/base_location/partner_view.xml deleted file mode 100644 index ae4e3190c..000000000 --- a/base_location/partner_view.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - res.partner.zip_id.2 - res.partner - - -
- -
- - - -
-
-
-
diff --git a/base_location/state_view.xml b/base_location/state_view.xml deleted file mode 100644 index 96497c9e5..000000000 --- a/base_location/state_view.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - view_country_state_form2 - res.country.state - - - - - - - - - - - - - - - - diff --git a/base_location/views/better_zip_view.xml b/base_location/views/better_zip_view.xml new file mode 100644 index 000000000..d0e1782a7 --- /dev/null +++ b/base_location/views/better_zip_view.xml @@ -0,0 +1,70 @@ + + + + + + res.better.zip.form + res.better.zip + +
+ + + + + + + +
+
+
+ + + res.better.zip.tree + res.better.zip + + + + + + + + + + + + + res.better.zip.select + res.better.zip + + + + + + + + + + + + + + + + + Cites/locations Management + res.better.zip + form + tree,form + + + + + + +
+
diff --git a/base_location/views/company_view.xml b/base_location/views/company_view.xml new file mode 100644 index 000000000..e723db3a7 --- /dev/null +++ b/base_location/views/company_view.xml @@ -0,0 +1,21 @@ + + + + + + + res.company.form.city + res.company + + + + + + + + + + diff --git a/base_location/views/partner_view.xml b/base_location/views/partner_view.xml new file mode 100644 index 000000000..517a179e9 --- /dev/null +++ b/base_location/views/partner_view.xml @@ -0,0 +1,27 @@ + + + + + + res.partner.zip_id.2 + res.partner + + +
+ +
+ + + +
+
+ +
+
diff --git a/base_location/views/res_country_view.xml b/base_location/views/res_country_view.xml new file mode 100644 index 000000000..7e1deaa09 --- /dev/null +++ b/base_location/views/res_country_view.xml @@ -0,0 +1,17 @@ + + + + + + res.country.search + res.country + + + + + + + + + + diff --git a/base_location/views/state_view.xml b/base_location/views/state_view.xml new file mode 100644 index 000000000..38b550c97 --- /dev/null +++ b/base_location/views/state_view.xml @@ -0,0 +1,26 @@ + + + + + + view_country_state_form2 + res.country.state + + + + + + + + + + + + + + + + From 6da39310b5509815f97bfd2821065de500c6f5de Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 25 Feb 2015 22:56:47 +0100 Subject: [PATCH 10/27] [IMP] base_location_geonames_import: Several improvements and added hooks * Added Icon. * Improve module description and extracted to README.rst. * Pass country instead of country_id for advance comparisons. * Allow to transform city name. * Some code style. * Do not remove all entries of a country, but only not found. * Include hooks for transforming some things. * Include spanish translation. --- base_location/README.rst | 34 ++- base_location/static/description/icon.png | Bin 0 -> 7055 bytes base_location/static/description/icon.svg | 304 ++++++++++++++++++++++ 3 files changed, 331 insertions(+), 7 deletions(-) create mode 100644 base_location/static/description/icon.png create mode 100644 base_location/static/description/icon.svg diff --git a/base_location/README.rst b/base_location/README.rst index 817183a5b..8c0350d9e 100644 --- a/base_location/README.rst +++ b/base_location/README.rst @@ -8,13 +8,33 @@ It enables zip, city, state and country auto-completion on partners and companie Also allows different search filters. -Author ------- - -- Nicolas Bessi. (Copyright Camptocamp SA) +Credits +======= Contributors ------------ -- Ignacio Ibeas (Acysos S.L.) -- Pedro M. Baeza -- Alejandro Santana + +* Nicolas Bessi. (Copyright Camptocamp SA) +* Ignacio Ibeas (Acysos S.L.) +* Pedro M. Baeza +* Alejandro Santana + +Icon +---- +* http://icon-park.com/icon/location-map-pin-orange3/ + + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. \ No newline at end of file diff --git a/base_location/static/description/icon.png b/base_location/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8a0a336d1cc2c5a699d5e9eca60e2dfd5d4f33 GIT binary patch literal 7055 zcmV;A8*t=_P)lKYHTaqRDC0UkiY?CE~ zumRiP0C9Xtv6Wqugs=f8soiCFLwQwOu$8Lhk5nawV7z%iT>}+DcoYR|dx5YJVadV> zKS8z_KM<0odv)hM)7|InA3c5VnKRupbEkVASKq2%^*npJ&+q$to!1DZ6qgdRGh!XE z8Q4-kZU$1onY#SEems|%RdP_*IV=z>l>pfpVF8DMyMQ+WTk({g21q0XiG+7Vfa@w; z2VAMZyJZ(Ri${jzz*m6BGqbAN|GOC+RuloUGh!Tg3!c*N5Q2@PqZVUh7RjV&RC)`z zuEKTwqoPt#l*=wsQUtzOQ~KDLg=nqo zWua1$l*^KGN#Z!l1-=h_7WmuDtg_?#rQyL)6CgVyZUg>I2;ML`nP7a}Vr0bX%WvDZ zqFk2b^DeHdP67W7_{Yrb5I0yC7)kxzn@AwYIU{1))==!i8wJ)Iz(8V<#qa9zbh&ZStA68N9Mk(C@422Ox_IrlLk_{f^+ zB;(`#iSbcUttl?dIY_C#1iUXZs|tg@rfx7$0%T{z6fm2x#M{@cO_ELzr`3nSbrt95 z9Bf-X4ZI^Wt6m!PH7yqdBS3aW>;%4?N{Kz|)+7g(z!%0wt<`I$ld;zFgF?RGk}J3_@F$sB^_PRbo=(ws0%T{zjlg%OCKF?; zCK7%9?Ovl&mCP+TD8+xs%&PxA=5fJonCcmDc?uABAL%QHQ-k> zv+BEpzMgjITgsiC5o5qVkEE?jR`~#9qZX?s5^3O{vNPiH0bfpA^t0yr+hjuAv}P)a zQe4t9Ii6s2#99x0H9I3#^|6hYjlK{dJ0m`73GP`tl|+Cy9D9k&>d7Rjq__r{t@m{d zC3=2g*%@&saAeJ@6bVc8O##vcx1z8M61yOAD+=lK=eJQHfHkXkm$kqLpmuKNr`mTRv!oMjr|8AqGui;J0sQr zFHTJ)){Ld&wSFm~e9onGUZUQ4Kk7H`2S6C6Y%1RrDdpmE{ILgF{e!<@WD0~8FA*G9 zaUtg@;BaPE9gFqk5z$Km{CP4V{$$;%c%4jTUXnlKB0usu#NJyLm2N8Ehp%k?v9EZO z1g`5c`K?c|?)axjO~gxrT*;+eli$wFsyD@Y;)v)80kSjV3gEdl6UmWujN|$FGcM(g zhu}{?j}W3keE5%brTfPqrRzu6b&*n%I(>}IpMO8;2`jcVSt>Z6w^52aGqdVz@tid} zdPRUo(n;}KtH{fig7H)WORyJsTios5EqYO#y)$76kw}Q>ZKh!16&Lr8`?22h z$IDV)r-~2qCPIkC_kMoQCn;>$A4~TD0@6tf;O-u@dspZQ0Y;MXbodm`y4Zj82-bW4 zcu^_s6dvROf;>UH^Xc!u`mRq<+^|2Edm8b=$(`95F%$zLu@WFVBh~`9k0h+f4OLx` zR4zNTnCW+-G+oJ^cz`hL*MHBK*ALx?a#iH}N+m1=tOst5v+cV@+#cW#ONeAbh)9De zQbO@{3Ge!&K&5m-hIUHtlnB05w%y3auW59``aog zj0EjUzg8CCDJd$ybRg0_3KmK5))?ErE5u2F?N&tPqrfgG)SjDLT4GQf?NpDP zNDBK5Kxs=f0-zw_oi7td!$(1!9ratRdid`aN`igGVc2u?;%l7{L07Q;IlY%tO4*U} z!w8|Dv$W*^Yb}Vr-SKl0}luniJqf@sY7W>0c+0X6*qnDZo zhz6w;?p+^R_ILV)MlwY_mv`7S=pMmXJwVhD;Kx*b6wiNdqTT!Ed*(TV-VZvLIf-Nu zJ_EWA0RkWaTo!uqeLyTpV13r>CO-sp3-_u+4bM#_n~E@BGu?E%&$m*3JI_+ww4Z52 z+s}nTyV5OqJC_Xvaa92$KvG2X#_rBTfl6toM1M?QkJUl5e}X(qJMR*P;-&)#OGT~( z6by9TKr95v%&KyBM%1KI(H407UbO?|OS!bgpHeEY5(t|7u^g`u_MQ*vM$19!-yG;p zWO3#Ib5VC)9Qnpyg*JRA6FXZ;D}{zV_MZpgvXc*c^Sru*_RWD3AijRwQW`E`qFI0a5lDl_;MD=es{kbi_%33sQiJ5(5NSKm7q}*UfFM z9>B7!hS=W;0ha4w!rZ@5-mq}DkX|*A&wOF9JCnv20u(2uQqg+H5`yHZCmO6Z$a=%9 z*`L+hsdO4%0zH5mt>mo};ACv=-zDPo07qTa2UUb_4J!$X*4FOB@0a(xg8kP_gyjoC zBnl%zQ21H>y@#+PcmT)Sv-oKDXNU*!c>u{#DeL_J-3l=N=!2n3=p@-QJ%aBQ!n{K_ z*1zfLhjB{Lyq)VRke3hvGG9`sP@H!oWX1p@38Vk#uewsSDcyz!Q%p!Zdi<{&%D@Q_ z@479?*KO4M5)nGeg$1e8Pf!kV|6wD9`g=aYYWkquqLmjgG5s%}j^_S7>;G})E9%wm z&k_&fC4k~HuB+Zh#Nmzf>0?MK8x*f+{LnmZZ<0V)zJClOKv-xAQvT#GPGA?Kc{$rv zpv3HvBS!?F9(dq^Nau@!n3wJHf0g7l+x1*z*MeZpr+=qGIi^bwbMxlwVXw6dDPaV- z?6V(;bZ@RyNLQ(vNI!zt_bKW`7zkot8<>5Y__Ks1{_|+mwe}Xw|IWiWR~~Mf_|a-& zhmIiY2bx@dr^>(l>mNj&h_<@B<|t|||MK^TA9yoODRBS2LHsL&B%gF0gd=jtibs2~^h@AkLZ>ZBq z{-IWj7zPwbM=|-GPju|QgTh3opKlrW&z)e^;}6vbf4UdjR!C_*_r?7m`WoI`fJMb? zLO)5+o8{qe5j%hvMn|or6_sKFO8$cCeSpbxKVWap;Lqv|CjpRHA+djTcEdf_-5X5WwF zI4xa$n1!3+z(0?F46}TI%Rck_SkE1gd>?jA;i$x^uio&xkKxUqNaOvTU6LhlpnC*p zm^acJ^ls}e#Yd#0F1WT@b}w1;R53;3+2dR``+IHUepn6=_I{Y+C(fSW@{b>;mXCh@ z(gmlcRCe9okJXZ+Bfuyg0n&H`2qi(U!$EJiiTgL=UIeqF^K>lFQd0x4Y*JKm0UfU-?v|;a(lpl4Ndd#E-PzB2MW37I)>k<|cc;JBt zdZMVFZWEXJwt6J{M)96nS>2r;kB0$vNwMzX4J_G_r6N2?gZ)7o%1cX32-d@4d0qLs6_};6n zx}372m{^tn&b9A)8dwL6;U#?|c<$d%{9ti{@FE)GzxLexTx9g^4%WdIK4n$JODuE zsCqqnNW9l6s;^^-q?PK|FZUNpf}K}9z2mksuWr}{uo}$Eo3qMxjRRF&D zuT26Iz&Kur@H>e7@Q@&&W9Z0{BVDw9F#6^Jd}NNP2eUVdJ4ZDO)FiPYOr-tnLX`W(e?+`Jr-A+@oqd z=f=?0I%tt4sM;eue)D_n%E*MT_!LW7|5#ndHJQ*JkKuI>>th6Z*RVN85E};OfdB69 z|B;gcIsfAq9#rQR*`%2rhdugztOa==|s9J}_d>eWp%I}Hd zeGJkAEZ)>--u0&sN}2ewoL9}$B8F7tg5u)HdcJ?~F8yBg$2tK_5||z#t-Wq0jut&k zllx8pqlR5rUa3}lmy|*?}--} zga-(^A?xJ6HP>tFIEgP2k;*^Wy|wxHrg-k zxbAamfu%9B0gIZ4=XW1uZtb#m!3iRPq_Hd5oCm0jNroU|M8Z&%fi&05sqfu-*RkT* z^v~4%;9bAUK}AgP!vnw4$$bS`x~Xudg#=9uMLWidK_-Fz(JYY`<=COOenpjpQk4N3 zzY8qDlLy~SEj`-qzLfD;CxEGZJ3xZw14`q(v0~63z&{4o%Rjqf@7dS3T=ioyz=V)F zIKOr)Ki$2*-Tef)d!GQl;%yq0U(=)$62$HehM@}ZkAd~_zutbw6BW``l^=lhSHLX^ z{`J0YiRq%7 z>!0<@GSu88CvSRFr`M}nzCYW?wEBuBC7KD~6Qx}Uhz)}#fa%u!2Gko;Dq*=l*>~v0 zTA_blptb-n?%q#jY_ipL>yOPu&sV&!aDNdCT(0l85t695<=~Yo_fcB4Cg{5L>km`D8ShQy>t3Lh^#}F^#JMhD z&>kSH5%t7rF>8MDx;JD?sWH2n@15(nt5B^7PTg>ud7Y-TvU)$p`z~K!1hP<Ukl z2>Oa)bEU9pEU{sb1TY&jD1J7SOl~S&dim-DuayhE^8%GT{9^k~@@p6W$)%muyEK<~ zeqyIvyH9{TjUGU^em?|+#{Rh12KJi(?JUWRolPav&#u4qbj3=$)kAy`JRh)_xI~uOBbc>;e20!a*fqPrHNrN`L_NnjRp?l{S#T9vv^7x$@fA%01{9 zDi>hxvh6Hv+TLlb4@&g>RlvUZ%J#*7-H-oz{U6i|*sA>^V;Dj}D|c#ofD%x8^}1VL zs=0z%h4{w$C6r6>+P*`k@;f1^uXx|(oAKTxftdiByMzRd2F7mvFsPM5-p%;Sn-tzn zTX+qSWT|0Oc+;l!36mq`)$0=%H*UL-%)hd3DyEgjl09qGjP;BkAj4Gbnb^S}FGPn`X&0@!(JOC_t0e{__?p`gHX33^$oGh6Ftn<5X zIJNnS$F3`uDkBqtopqhVwxMFf>w9k0-LCJ7%`V*P@Kdw4Zsdbis8ege-Lt23!TjDip5RWB#6=d-&GvyZE`fT&T;O zCOR3+jNc@{z?Bb!4FNvPP@sncf!ApIbTPd;NI8?!7pki_yppS&%Z#SYQ@2LG0(N>- zRkmF2@5o_VewoIxd*8avEZ^MkPaoRV>w7cP_e;ILBz!>_bP^a83W8?Q>WXRV8z^ti zJe%)g=5W3OwB}d*ImAu>FY7S?L^N({cq5~2>>lShk}NObp@4x zVsZBkPuUWRway2ATnU9LlrG=xD=Dbr(EIXD5`+!u1|@u9**4GU4Gx=eGrDi188Wl41zmlOixe-O0|vKPUe;|IFzeEWz+VWN{l>IK&M!=QW^G6K}&U{hZW&Gosdv{L2DeaCAKl%3`goFK_ppqAN{r@6w=d-Ud6 z%Iy7PE4SaSg9iqb?1f>d2ml?EplPag^{Ra@x+7y3a^?2cU#fvEp}J$wMVc*N@8UJb z@lC4_>e6kM=na+fVF(ET9ajcT)5h%en|_q5w733T1?)8&D(=*p9L@E7e0};>TbDnK zRT$(I-%GJh6A|`321bJ7%UIG<92F!`I5?53SYf z7-|9-mSgr0G=~B!QE}I9_|ZZoy#CKsK#osT+|Aq1&^&dk(;8pT^jDnK>lkVRXbAEI zfh4fE?KobnCwW2ff1v`-mdnr3IIdty(40NJS8w2>cyVFq31Bp6+oaIhf6EDJS+#`< zII2-9E|hF=uGoE=B}JQx5327?<%f;muPEii3Lt=nprp_oIjpI%iGsUo^|Sd}GXV-! zkXFKRuiX1nf?a;Q8M|Slcq<~_2VtcUz*K&#%Ah9KY|TOTu&gkWKP-+RNY1oP_BVmyYV!^^YzW?+MSHwuW04N z3L!uMS|)?)+8dvfmQ^ciVW1|x@=tEw_5#6{UnIOs_mWgTtULmQmG_NaAU#r+qZ2Qb zv@lSrfka4l?t6ytgioKyq0iQB`prv0`LKcr5Rhb<9zgFDDyymKlNGzs{maqumzkV8 zM|l5!(1_m9Oy1}PRty0Qg!Kt5PUBYVH=U^2UVnh2yoDcXa_VW?Z_dzap8kp~^;%&i z5};K%xVWIiy8h6U65MjVQ>f;ETC@HHjR~JQS3hWd-r`D~OHKK(G6?{!a{wEtiS--j zRVw{L)rP7AQi8Q}?-MkS=mibuHZ9K7j+Ycx6ahl=0MiRB4iT%-v12tGsy4_(^3}x7 zJ+II_bGPkOZ7!jt&%}x%fCf|XW@nH$L_D$TsBJ^71}c?4#!|T#wpb%<`c@xrt-n~Q z1b{}@95`bran+vhOT5*;YIN)<&2#rU8QkgD{R{*vjsPtNhnhNs(l_0DhOvo1Cz1MQ z`ta>vqD4EQUEBw$Vb!GHP~jeoXmPSe&CzDqje55kJ` t01!G|EG!fR9fPv{Mdib#nehkV{{vvlua>nKl*Ir5002ovPDHLkV1n%k>iYly literal 0 HcmV?d00001 diff --git a/base_location/static/description/icon.svg b/base_location/static/description/icon.svg new file mode 100644 index 000000000..c3e4d6059 --- /dev/null +++ b/base_location/static/description/icon.svg @@ -0,0 +1,304 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 44e81a896d9c32d0edfea66532f0caf5607dd7d0 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Mon, 16 Mar 2015 12:29:24 -0400 Subject: [PATCH 11/27] Add demo data Brussels Belgium city --- base_location/README.rst | 3 ++- base_location/__openerp__.py | 4 ++++ base_location/demo/better_zip.xml | 12 ++++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 base_location/demo/better_zip.xml diff --git a/base_location/README.rst b/base_location/README.rst index 8c0350d9e..0fb7de7a5 100644 --- a/base_location/README.rst +++ b/base_location/README.rst @@ -18,6 +18,7 @@ Contributors * Ignacio Ibeas (Acysos S.L.) * Pedro M. Baeza * Alejandro Santana +- Sandy Carter Icon ---- @@ -37,4 +38,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit http://odoo-community.org. \ No newline at end of file +To contribute to this module, please visit http://odoo-community.org. diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index 3a8d3b223..bb9a25e36 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -34,6 +34,7 @@ 'Pedro M. Baeza ', 'Ignacio Ibeas (Acysos S.L.)', 'Alejandro Santana ', + 'Sandy Carter ', ], 'summary': '''Enhanced zip/npa management system''', 'website': 'http://www.camptocamp.com', @@ -43,6 +44,9 @@ 'views/company_view.xml', 'views/partner_view.xml', 'security/ir.model.access.csv'], + 'demo': [ + 'demo/better_zip.xml', + ], 'installable': True, 'active': False, } diff --git a/base_location/demo/better_zip.xml b/base_location/demo/better_zip.xml new file mode 100644 index 000000000..7ecc6b14b --- /dev/null +++ b/base_location/demo/better_zip.xml @@ -0,0 +1,12 @@ + + + + + + 1000 + Brussels + + + + + From 892af00c16919bccf51caee15c4d220186030eaf Mon Sep 17 00:00:00 2001 From: Juan Jose Scarafia Date: Sat, 21 Mar 2015 09:53:00 -0300 Subject: [PATCH 12/27] IMP Create new computed stored field 'display_name' that use zip, city, state and country in order to allow search using '%' from the m2o widget --- base_location/models/better_zip.py | 43 +++++++++++++----------------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py index 3f86f8ed4..7790d9ff7 100644 --- a/base_location/models/better_zip.py +++ b/base_location/models/better_zip.py @@ -28,7 +28,9 @@ class BetterZip(models.Model): _name = "res.better.zip" _description = __doc__ _order = "name asc" + _rec_name = "display_name" + display_name = fields.Char('Name', compute='_get_display_name', store=True) name = fields.Char('ZIP') code = fields.Char('City Code', size=64, help="The official code for the city") @@ -36,32 +38,25 @@ class BetterZip(models.Model): state_id = fields.Many2one('res.country.state', 'State') country_id = fields.Many2one('res.country', 'Country') - @api.multi - def name_get(self): - res = [] - for bzip in self: - if bzip.name: - name = [bzip.name, bzip.city] - else: - name = [bzip.city] - if bzip.state_id: - name.append(bzip.state_id.name) - if bzip.country_id: - name.append(bzip.country_id.name) - res.append((bzip.id, ", ".join(name))) - return res + @api.one + @api.depends( + 'name', + 'city', + 'state_id', + 'country_id', + ) + def _get_display_name(self): + if self.name: + name = [self.name, self.city] + else: + name = [self.city] + if self.state_id: + name.append(self.state_id.name) + if self.country_id: + name.append(self.country_id.name) + self.display_name = ", ".join(name) @api.onchange('state_id') def onchange_state_id(self): if self.state_id: self.country_id = self.state_id.country_id - - @api.model - def name_search(self, name, args=None, operator='ilike', limit=100): - args = args or [] - recs = self.browse() - if name: - recs = self.search([('name', 'ilike', name)] + args, limit=limit) - if not recs: - recs = self.search([('city', operator, name)] + args, limit=limit) - return recs.name_get() From 713a2c9d9121bf4bfbb91d1fff9cc8c1b642b12f Mon Sep 17 00:00:00 2001 From: Hans Henrik Gabelgaard Date: Fri, 22 May 2015 13:20:41 +0200 Subject: [PATCH 13/27] Translated to Danish --- base_location/i18n/da.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po index 916496908..456ceb4c0 100644 --- a/base_location/i18n/da.po +++ b/base_location/i18n/da.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-12 22:33+0000\n" -"PO-Revision-Date: 2015-01-16 08:36+0100\n" +"PO-Revision-Date: 2015-05-22 13:19+0100\n" "Last-Translator: Hans Henrik Gabelgaard \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.7.3\n" +"X-Generator: Poedit 1.8\n" "Language: da_DK\n" #. module: base_location @@ -30,7 +30,7 @@ msgstr "By" #. module: base_location #: view:res.better.zip:0 field:res.better.zip,name:0 msgid "ZIP" -msgstr "Postnr" +msgstr "Postnr." #. module: base_location #: field:res.better.zip,state_id:0 From dbcc0d0810aca75d4c80487932afe9a3ba57b27f Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Wed, 14 Oct 2015 11:40:23 +0200 Subject: [PATCH 14/27] [MIG] base_location: Migration to 9.0 --- base_location/README.rst | 27 +++- base_location/__openerp__.py | 6 +- base_location/i18n/da.po | 152 +++++++++++------- base_location/i18n/de.po | 163 ++++++++++++++++++++ base_location/i18n/en.po | 107 ------------- base_location/i18n/es.po | 152 +++++++++++------- base_location/i18n/fi.po | 154 +++++++++++++++++++ base_location/i18n/fr.po | 187 +++++++++++++--------- base_location/i18n/hr_HR.po | 155 +++++++++++++++++++ base_location/i18n/it.po | 196 +++++++++++++++--------- base_location/i18n/nl.po | 155 +++++++++++++++++++ base_location/i18n/pt_BR.po | 155 +++++++++++++++++++ base_location/i18n/sl.po | 155 +++++++++++++++++++ base_location/tests/__init__.py | 4 + base_location/tests/test_completion.py | 50 ++++++ base_location/views/better_zip_view.xml | 2 +- base_location/views/partner_view.xml | 13 +- 17 files changed, 1460 insertions(+), 373 deletions(-) create mode 100644 base_location/i18n/de.po delete mode 100644 base_location/i18n/en.po create mode 100644 base_location/i18n/fi.po create mode 100644 base_location/i18n/hr_HR.po create mode 100644 base_location/i18n/nl.po create mode 100644 base_location/i18n/pt_BR.po create mode 100644 base_location/i18n/sl.po create mode 100644 base_location/tests/__init__.py create mode 100644 base_location/tests/test_completion.py diff --git a/base_location/README.rst b/base_location/README.rst index 0fb7de7a5..d3434c556 100644 --- a/base_location/README.rst +++ b/base_location/README.rst @@ -1,3 +1,8 @@ +.. 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 + +======================= Enhanced ZIP management ======================= @@ -7,6 +12,23 @@ It enables zip, city, state and country auto-completion on partners and companie Also allows different search filters. +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/134/9.0 + +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 `here `_. Credits ======= @@ -14,11 +36,12 @@ Credits Contributors ------------ -* Nicolas Bessi. (Copyright Camptocamp SA) +* Nicolas Bessi (Camptocamp) * Ignacio Ibeas (Acysos S.L.) * Pedro M. Baeza * Alejandro Santana -- Sandy Carter +* Sandy Carter +* Yannick Vaucher Icon ---- diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index bb9a25e36..b987141b9 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -22,7 +22,7 @@ ############################################################################## { 'name': 'Location management (aka Better ZIP)', - 'version': '8.0.1.0.0', + 'version': '9.0.1.0.0', 'depends': ['base'], 'author': "Camptocamp," "ACYSOS S.L.," @@ -31,10 +31,12 @@ "Odoo Community Association (OCA)", 'license': "AGPL-3", 'contributors': [ + 'Nicolas Bessi ', 'Pedro M. Baeza ', 'Ignacio Ibeas (Acysos S.L.)', 'Alejandro Santana ', 'Sandy Carter ', + 'Yannick Vaucher ', ], 'summary': '''Enhanced zip/npa management system''', 'website': 'http://www.camptocamp.com', @@ -48,5 +50,5 @@ 'demo/better_zip.xml', ], 'installable': True, - 'active': False, + 'auto_install': False, } diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po index 456ceb4c0..cd7b6f2a4 100644 --- a/base_location/i18n/da.po +++ b/base_location/i18n/da.po @@ -1,21 +1,22 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * base_location -# +# * base_location +# +# Translators: +# Hans Henrik Gabelgaard , 2015 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: partner-contact (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-12 22:33+0000\n" -"PO-Revision-Date: 2015-05-22 13:19+0100\n" -"Last-Translator: Hans Henrik Gabelgaard \n" -"Language-Team: \n" +"POT-Creation-Date: 2015-12-17 01:36+0000\n" +"PO-Revision-Date: 2015-12-15 11:17+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8\n" -"Language: da_DK\n" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree @@ -23,29 +24,40 @@ msgid "Cites/locations Management" msgstr "By/Postnummer/Lokations administration" #. module: base_location -#: field:res.better.zip,city:0 +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "Byer" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Byer/Loaktions administration" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city msgid "City" msgstr "By" #. module: base_location -#: view:res.better.zip:0 field:res.better.zip,name:0 -msgid "ZIP" -msgstr "Postnr." +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Postnummer" #. module: base_location -#: field:res.better.zip,state_id:0 -msgid "State" -msgstr "Delstat" +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Slå by/postnummer op" #. module: base_location -#: field:res.better.zip,country_id:0 -msgid "Country" -msgstr "Land." +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Postnr/by " #. module: base_location -#: field:res.better.zip,priority:0 -msgid "Priority" -msgstr "Prioritet" +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" #. module: base_location #: model:ir.model,name:base_location.model_res_company @@ -53,39 +65,61 @@ msgid "Companies" msgstr "Virksomheder" #. module: base_location -#: field:res.better.zip,code:0 -msgid "City Code" -msgstr "Postnummer" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land." #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip -msgid " City/locations completion object" -msgstr " Slå by/postnummer op" +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Delstat/region" #. module: base_location -#: help:res.company,better_zip_id:0 -msgid "Use the city name or the zip code to search the location" -msgstr "Søg på bynavn eller postnummer" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "" #. module: base_location -#: field:res.partner,zip_id:0 -msgid "City/Location" -msgstr "Postnr/by " +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "" #. module: base_location -#: view:res.better.zip:0 -msgid "Search city" -msgstr "Søg by" +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "" #. module: base_location -#: field:res.company,better_zip_id:0 +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Postnr/by " #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base -msgid "Cities/Locations Management" -msgstr "Byer/Loaktions administration" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Navn" #. module: base_location #: model:ir.model,name:base_location.model_res_partner @@ -93,21 +127,29 @@ msgid "Partner" msgstr "Partner" #. module: base_location -#: view:res.company:0 view:res.partner:0 -msgid "City completion" -msgstr "Slå by/postnummer op" - -#. module: base_location -#: field:res.country.state,better_zip_ids:0 -msgid "Cities" -msgstr "Byer" +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Søg by" #. module: base_location -#: model:ir.model,name:base_location.model_res_country_state -msgid "Country state" -msgstr "Delstat/region" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "Delstat" #. module: base_location -#: help:res.better.zip,code:0 +#: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Postnummer" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Søg på bynavn eller postnummer" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "Postnr." diff --git a/base_location/i18n/de.po b/base_location/i18n/de.po new file mode 100644 index 000000000..25f20f340 --- /dev/null +++ b/base_location/i18n/de.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# Hotellook, 2014 +# Matjaž Mozetič , 2016 +# Rudolf Schnapka , 2016 +# Rudolf Schnapka , 2015 +msgid "" +msgstr "" +"Project-Id-Version: partner-contact (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-17 04:14+0000\n" +"PO-Revision-Date: 2016-04-21 08:44+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-partner-contact-9-0/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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "Standorte-Verwaltung" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "Orte" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Standorte-Verwaltung" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +msgid "City" +msgstr "Stadt" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Ortskennung" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Orts-Vervollständigung" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Stadt/Standort" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "Stadt/Standorte-Vervollständungsobjekt" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Unternehmen" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Bundesland" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "erstellt von" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "erstellt am" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Gruppiere" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Zuletzt verändert am" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "zuletzt aktualisiert von" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "zuletzt aktualisiert am" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "Standort" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Bezeichnung" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Suche Ort" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "Bundesland" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "Die offizielle Kennung der Stadt" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Verwenden Sie den Stadtnamen oder die PLZ, um nach diesem Standort zu suchen" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "PLZ" diff --git a/base_location/i18n/en.po b/base_location/i18n/en.po deleted file mode 100644 index 6d35374c8..000000000 --- a/base_location/i18n/en.po +++ /dev/null @@ -1,107 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * better_zip -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-07 14:17+0000\n" -"PO-Revision-Date: 2013-05-08 12:03+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: better_zip -#: model:ir.actions.act_window,name:better_zip.action_zip_tree -msgid "Cites/locations Management" -msgstr "Cites/locations Management" - -#. module: better_zip -#: field:res.better.zip,city:0 -msgid "City" -msgstr "City" - -#. module: better_zip -#: view:res.better.zip:0 field:res.better.zip,name:0 -msgid "ZIP" -msgstr "ZIP" - -#. module: better_zip -#: field:res.better.zip,country_id:0 -msgid "Country" -msgstr "Country" - -#. module: better_zip -#: field:res.better.zip,priority:0 -msgid "Priority" -msgstr "Priority" - -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_company -msgid "Companies" -msgstr "Companies" - -#. module: better_zip -#: field:res.better.zip,code:0 -msgid "City Code" -msgstr "City Code" - -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_better_zip -msgid " City/locations completion object" -msgstr " City/locations completion object" - -#. module: better_zip -#: help:res.company,better_zip_id:0 -msgid "Use the city name or the zip code to search the location" -msgstr "Use the city name or the zip code to search the location" - -#. module: better_zip -#: field:res.partner,zip_id:0 -msgid "City/Location" -msgstr "City/Location" - -#. module: better_zip -#: field:res.better.zip,state_id:0 -msgid "State" -msgstr "State" - -#. module: better_zip -#: field:res.company,better_zip_id:0 -msgid "Location" -msgstr "Location" - -#. module: better_zip -#: model:ir.ui.menu,name:better_zip.zip_base -msgid "Cities/Locations Management" -msgstr "Cities/Locations Management" - -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_partner -msgid "Partner" -msgstr "Partner" - -#. module: better_zip -#: view:res.company:0 view:res.partner:0 -msgid "City completion" -msgstr "City completion" - -#. module: better_zip -#: field:res.country.state,better_zip_ids:0 -msgid "Cities" -msgstr "Cities" - -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_country_state -msgid "Country state" -msgstr "Country state" - -#. module: better_zip -#: help:res.better.zip,code:0 -msgid "The official code for the city" -msgstr "The official code for the city" diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index 3ff60e231..06c30de92 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -1,19 +1,23 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * base_location -# +# * base_location +# +# Translators: +# Antonio Trueba, 2016 +# Francisco Palm , 2015 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: partner-contact (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-12 22:34+0000\n" -"PO-Revision-Date: 2013-12-12 23:34+0100\n" -"Last-Translator: Pedro Manuel Baeza \n" -"Language-Team: \n" +"POT-Creation-Date: 2015-12-19 20:35+0000\n" +"PO-Revision-Date: 2016-01-01 09:03+0000\n" +"Last-Translator: Antonio Trueba\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree @@ -21,30 +25,40 @@ msgid "Cites/locations Management" msgstr "Gestión de ciudades/ubicaciones" #. module: base_location -#: field:res.better.zip,city:0 +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "Ciudades" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Ciudad/Ubicaciones" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city msgid "City" msgstr "Ciudad" #. module: base_location -#: view:res.better.zip:0 -#: field:res.better.zip,name:0 -msgid "ZIP" -msgstr "C.P." +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Código de ciudad" #. module: base_location -#: field:res.better.zip,state_id:0 -msgid "State" -msgstr "Provincia" +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Autocompletado a partir de la ciudad" #. module: base_location -#: field:res.better.zip,country_id:0 -msgid "Country" -msgstr "País" +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Ciudad/Ubicación" #. module: base_location -#: field:res.better.zip,priority:0 -msgid "Priority" -msgstr "Prioridad" +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "Autocompletado de objetos a partir de ciudades/ubicaciones" #. module: base_location #: model:ir.model,name:base_location.model_res_company @@ -52,39 +66,61 @@ msgid "Companies" msgstr "Compañías" #. module: base_location -#: field:res.better.zip,code:0 -msgid "City Code" -msgstr "Código de ciudad" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip -msgid " City/locations completion object" -msgstr " Objeto de completado de ciudad/ubicación" +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Provincia" #. module: base_location -#: help:res.company,better_zip_id:0 -msgid "Use the city name or the zip code to search the location" -msgstr "Utilice el nombre de ciudad o el código postal para buscar la ubicación" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" #. module: base_location -#: field:res.partner,zip_id:0 -msgid "City/Location" -msgstr "Ciudad/Ubicación" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" #. module: base_location -#: view:res.better.zip:0 -msgid "Search city" -msgstr "Buscar ciudad" +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Modificado por última vez el" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización en" #. module: base_location -#: field:res.company,better_zip_id:0 +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Ubicación" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base -msgid "Cities/Locations Management" -msgstr "Ciudad/Ubicaciones" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" #. module: base_location #: model:ir.model,name:base_location.model_res_partner @@ -92,23 +128,29 @@ msgid "Partner" msgstr "Empresa" #. module: base_location -#: view:res.company:0 -#: view:res.partner:0 -msgid "City completion" -msgstr "Autocompletado a partir de la ciudad" - -#. module: base_location -#: field:res.country.state,better_zip_ids:0 -msgid "Cities" -msgstr "Ciudades" +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Buscar ciudad" #. module: base_location -#: model:ir.model,name:base_location.model_res_country_state -msgid "Country state" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" msgstr "Provincia" #. module: base_location -#: help:res.better.zip,code:0 +#: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "El código oficial para la ciudad" +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Utilice el nombre de ciudad o el código postal para buscar la ubicación" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "C.P." diff --git a/base_location/i18n/fi.po b/base_location/i18n/fi.po new file mode 100644 index 000000000..3d36cda58 --- /dev/null +++ b/base_location/i18n/fi.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: partner-contact (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-30 12:05+0000\n" +"PO-Revision-Date: 2015-12-15 11:17+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-partner-contact-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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Maa" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivitetty" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivittänyt" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/fr.po b/base_location/i18n/fr.po index c7d5fc968..ff09b5bc9 100644 --- a/base_location/i18n/fr.po +++ b/base_location/i18n/fr.po @@ -1,107 +1,154 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * better_zip -# +# * base_location +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: partner-contact (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-07 14:17+0000\n" -"PO-Revision-Date: 2013-05-08 12:03+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"Language: \n" +"POT-Creation-Date: 2016-03-20 01:52+0000\n" +"PO-Revision-Date: 2016-03-23 10:34+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: better_zip -#: model:ir.actions.act_window,name:better_zip.action_zip_tree +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree msgid "Cites/locations Management" msgstr "Cites/locations Management" -#. module: better_zip -#: field:res.better.zip,city:0 +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "Villes" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Cities/Locations Management" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city msgid "City" msgstr "Ville" -#. module: better_zip -#: view:res.better.zip:0 field:res.better.zip,name:0 -msgid "ZIP" -msgstr "ZIP" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Code de la ville" -#. module: better_zip -#: field:res.better.zip,country_id:0 -msgid "Country" -msgstr "Pays" +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Complétion par ville" -#. module: better_zip -#: field:res.better.zip,priority:0 -msgid "Priority" -msgstr "Priorité" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Ville/location" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_company +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company msgid "Companies" msgstr "Sociétés" -#. module: better_zip -#: field:res.better.zip,code:0 -msgid "City Code" -msgstr "Code de la ville" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Pays" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_better_zip -msgid " City/locations completion object" -msgstr " City/locations completion object" +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Etat" -#. module: better_zip -#: help:res.company,better_zip_id:0 -msgid "Use the city name or the zip code to search the location" -msgstr "Utilisez le nom de la ville ou le zip lors des recherches" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Créé par" -#. module: better_zip -#: field:res.partner,zip_id:0 -msgid "City/Location" -msgstr "Ville/location" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Créé le" -#. module: better_zip -#: field:res.better.zip,state_id:0 -msgid "State" -msgstr "Etat" +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "Identifiant" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" -#. module: better_zip -#: field:res.company,better_zip_id:0 +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Location" -#. module: better_zip -#: model:ir.ui.menu,name:better_zip.zip_base -msgid "Cities/Locations Management" -msgstr "Cities/Locations Management" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_partner +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner msgid "Partner" msgstr "Partenaire" -#. module: better_zip -#: view:res.company:0 view:res.partner:0 -msgid "City completion" -msgstr "Complétion par ville" - -#. module: better_zip -#: field:res.country.state,better_zip_ids:0 -msgid "Cities" -msgstr "Villes" +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_country_state -msgid "Country state" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" msgstr "Etat" -#. module: better_zip -#: help:res.better.zip,code:0 +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Code officiel de la ville" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Utilisez le nom de la ville ou le zip lors des recherches" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "ZIP" diff --git a/base_location/i18n/hr_HR.po b/base_location/i18n/hr_HR.po new file mode 100644 index 000000000..e14c2ea21 --- /dev/null +++ b/base_location/i18n/hr_HR.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: partner-contact (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-08 05:38+0000\n" +"PO-Revision-Date: 2016-05-31 18:41+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-partner-contact-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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "Upravljanje gradovima/lokacijama" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "Gradovi" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Upravljanje gradovima/lokacijama" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +msgid "City" +msgstr "Grad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Šifra grada" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Popunjavanje grada" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Grad/Lokacija" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "Objekt popunjavanja Grada/Lokacije" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Država" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Oblast/Županija" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Prupiraj po" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Zadnji modificirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "Lokacija" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Naziv" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Pretraži gradove" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "Oblast/Županija" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "Službena šifra ovog grada" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Koristite naziv ili šifru grada za pretraživanje" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "ZIP" diff --git a/base_location/i18n/it.po b/base_location/i18n/it.po index e87fffdee..cb80dd6cc 100644 --- a/base_location/i18n/it.po +++ b/base_location/i18n/it.po @@ -1,107 +1,155 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * better_zip -# +# * base_location +# +# Translators: +# Paolo Valier, 2016 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: partner-contact (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-07 14:17+0000\n" -"PO-Revision-Date: 2014-09-22 16:32+0100\n" -"Last-Translator: Franco Tampieri \n" -"Language-Team: \n" -"Language: it\n" +"POT-Creation-Date: 2016-03-20 01:37+0000\n" +"PO-Revision-Date: 2016-03-19 05:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.9\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: better_zip -#: model:ir.actions.act_window,name:better_zip.action_zip_tree +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree msgid "Cites/locations Management" msgstr "Gestione Città/Locazioni" -#. module: better_zip -#: field:res.better.zip,city:0 -msgid "City" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" msgstr "Città" -#. module: better_zip -#: view:res.better.zip:0 field:res.better.zip,name:0 -msgid "ZIP" -msgstr "CAP" - -#. module: better_zip -#: field:res.better.zip,country_id:0 -msgid "Country" -msgstr "Paese" - -#. module: better_zip -#: field:res.better.zip,priority:0 -msgid "Priority" -msgstr "Priorità" +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Gestione Città/Locazioni" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_company -msgid "Companies" -msgstr "Aziende" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +msgid "City" +msgstr "Città" -#. module: better_zip -#: field:res.better.zip,code:0 +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code msgid "City Code" msgstr "Codice Città" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_better_zip -msgid " City/locations completion object" -msgstr " oggetto completamento Città/locazioni" - -#. module: better_zip -#: help:res.company,better_zip_id:0 -msgid "Use the city name or the zip code to search the location" -msgstr "Usare il nome della città o il codice CAP per ricercare la locazione" +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Completamento città" -#. module: better_zip -#: field:res.partner,zip_id:0 +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id msgid "City/Location" msgstr "Città/Locazione" -#. module: better_zip -#: field:res.better.zip,state_id:0 -msgid "State" -msgstr "Provincia" +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Aziende" -#. module: better_zip -#: field:res.company,better_zip_id:0 +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Paese" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Provincia Paese" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creato il" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Raggruppa per" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Ultimo caricamento il" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ultimo caricamento di" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Locazione" -#. module: better_zip -#: model:ir.ui.menu,name:better_zip.zip_base -msgid "Cities/Locations Management" -msgstr "Gestione Città/Locazioni" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nome" -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_partner +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner msgid "Partner" msgstr "Partner" -#. module: better_zip -#: view:res.company:0 view:res.partner:0 -msgid "City completion" -msgstr "Completamento città" +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Ricerca città" -#. module: better_zip -#: field:res.country.state,better_zip_ids:0 -msgid "Cities" -msgstr "Città" - -#. module: better_zip -#: model:ir.model,name:better_zip.model_res_country_state -msgid "Country state" -msgstr "Provincia Paese" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "Provincia" -#. module: better_zip -#: help:res.better.zip,code:0 +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Il codice ufficiale per la città" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Usare il nome della città o il codice CAP per ricercare la locazione" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "CAP" diff --git a/base_location/i18n/nl.po b/base_location/i18n/nl.po new file mode 100644 index 000000000..dcd6295d2 --- /dev/null +++ b/base_location/i18n/nl.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# Erwin van der Ploeg , 2016 +msgid "" +msgstr "" +"Project-Id-Version: partner-contact (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-20 01:52+0000\n" +"PO-Revision-Date: 2016-03-25 12:34+0000\n" +"Last-Translator: Erwin van der Ploeg \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-partner-contact-9-0/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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +msgid "City" +msgstr "Plaats" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Plaats/Locatie" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Relatie" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/pt_BR.po b/base_location/i18n/pt_BR.po new file mode 100644 index 000000000..572adff93 --- /dev/null +++ b/base_location/i18n/pt_BR.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# danimaribeiro , 2015 +msgid "" +msgstr "" +"Project-Id-Version: partner-contact (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-17 01:36+0000\n" +"PO-Revision-Date: 2015-12-15 11:17+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-partner-contact-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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "Gerenciamento de Cidade/locais" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "Cidades" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Gerenciamento Cidade/Locais" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +msgid "City" +msgstr "Cidade" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Código da cidade" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Autocompletar de cidades" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Cidade/Localização" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "Objeto autocompletar de Cidades/Locais" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Estado" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Útima atualização por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Útima atualização em" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "Localização" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nome" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Parceiro" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Buscar cidade" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "Estado" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "O código oficial da cidade" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Use o nome da cidade ou o CEP para pesquisar a localização" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "CEP" diff --git a/base_location/i18n/sl.po b/base_location/i18n/sl.po new file mode 100644 index 000000000..3b9e20558 --- /dev/null +++ b/base_location/i18n/sl.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# Matjaž Mozetič , 2015 +msgid "" +msgstr "" +"Project-Id-Version: partner-contact (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-17 01:36+0000\n" +"PO-Revision-Date: 2015-12-15 13:22+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-partner-contact-9-0/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" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations Management" +msgstr "Upravljanje krajev/lokacij" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +msgid "Cities" +msgstr "Kraji" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.zip_base +msgid "Cities/Locations Management" +msgstr "Kraji/Upravljanje lokacij" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +msgid "City" +msgstr "Kraj" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Koda kraja" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "Izpolnjevanje kraja" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "Kraj/Lokacija" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "Objekt izpolnjevanja kraja/lokacije" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Družbe" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Država" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "Zvezna država" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Združi po" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "Lokacija" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Naziv" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Iskanje kraja" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "Zvezna država" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "Uradna koda kraja" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Iskanje lokacije z uporabo imena kraja ali poštne številke" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.ui.view,arch_db:base_location.better_zip_form +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "ZIP" +msgstr "Poštna številka" diff --git a/base_location/tests/__init__.py b/base_location/tests/__init__.py new file mode 100644 index 000000000..78c6dfa4c --- /dev/null +++ b/base_location/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2015 Yannick Vaucher (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_completion diff --git a/base_location/tests/test_completion.py b/base_location/tests/test_completion.py new file mode 100644 index 000000000..30ea0a743 --- /dev/null +++ b/base_location/tests/test_completion.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# © 2015 Yannick Vaucher (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +"""Test a city completion and onchanges.""" + +from openerp.tests.common import TransactionCase + + +class TestCompletion(TransactionCase): + + def test_onchange_better_zip_state_id(self): + """ Test onchange on res.better.zip """ + usa_MA = self.env.ref('base.state_us_34') + self.better_zip1.state_id = usa_MA + self.better_zip1.onchange_state_id() + self.assertEqual(self.better_zip1.country_id, usa_MA.country_id) + + def test_onchange_partner_city_completion(self): + self.partner1.zip_id = self.better_zip1 + self.partner1.onchange_zip_id() + self.assertEqual(self.partner1.zip, self.better_zip1.name) + self.assertEqual(self.partner1.city, self.better_zip1.city) + self.assertEqual(self.partner1.state_id, self.better_zip1.state_id) + self.assertEqual(self.partner1.country_id, self.better_zip1.country_id) + + def test_onchange_company_city_completion(self): + self.company.better_zip_id = self.better_zip1 + self.company.on_change_city() + self.assertEqual(self.company.zip, self.better_zip1.name) + self.assertEqual(self.company.city, self.better_zip1.city) + self.assertEqual(self.company.state_id, self.better_zip1.state_id) + self.assertEqual(self.company.country_id, self.better_zip1.country_id) + + def setUp(self): + super(TestCompletion, self).setUp() + state_vd = self.env['res.country.state'].create({ + 'name': 'Vaud', + 'code': 'VD', + 'country_id': self.ref('base.ch'), + }) + self.company = self.env.ref('base.main_company') + self.better_zip1 = self.env['res.better.zip'].create({ + 'name': 1000, + 'city': 'Lausanne', + 'state_id': state_vd.id, + 'country_id': self.ref('base.ch'), + }) + self.partner1 = self.env['res.partner'].create({ + 'name': 'Camptocamp', + }) diff --git a/base_location/views/better_zip_view.xml b/base_location/views/better_zip_view.xml index d0e1782a7..cfe13bc52 100644 --- a/base_location/views/better_zip_view.xml +++ b/base_location/views/better_zip_view.xml @@ -6,7 +6,7 @@ res.better.zip.form res.better.zip -
+ diff --git a/base_location/views/partner_view.xml b/base_location/views/partner_view.xml index 517a179e9..cade97e03 100644 --- a/base_location/views/partner_view.xml +++ b/base_location/views/partner_view.xml @@ -7,17 +7,16 @@ res.partner -
+ -
- - + + From 3a965f3552daaa0c023868c70e25a5443053b61e Mon Sep 17 00:00:00 2001 From: Francesco Apruzzese Date: Wed, 19 Oct 2016 10:57:33 +0200 Subject: [PATCH 15/27] [MIG] base_location: Migrated to 10.0 * Headers shortened * Move cities management to settings --- base_location/README.rst | 5 +- base_location/__init__.py | 23 +--- base_location/__openerp__.py | 40 ++----- base_location/models/__init__.py | 6 +- base_location/models/better_zip.py | 25 +---- base_location/models/company.py | 28 +---- base_location/models/partner.py | 27 +---- base_location/models/state.py | 26 +---- base_location/tests/__init__.py | 5 +- base_location/tests/test_completion.py | 7 +- base_location/views/better_zip_view.xml | 130 ++++++++++++----------- base_location/views/company_view.xml | 32 +++--- base_location/views/partner_view.xml | 42 ++++---- base_location/views/res_country_view.xml | 26 +++-- base_location/views/state_view.xml | 46 ++++---- 15 files changed, 174 insertions(+), 294 deletions(-) diff --git a/base_location/README.rst b/base_location/README.rst index d3434c556..9cafe8b0c 100644 --- a/base_location/README.rst +++ b/base_location/README.rst @@ -17,7 +17,7 @@ Usage .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/134/9.0 + :target: https://runbot.odoo-community.org/runbot/134/10.0 Bug Tracker =========== @@ -28,7 +28,7 @@ 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 `here `_. +10.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. Credits ======= @@ -42,6 +42,7 @@ Contributors * Alejandro Santana * Sandy Carter * Yannick Vaucher +* Francesco Apruzzese Icon ---- diff --git a/base_location/__init__.py b/base_location/__init__.py index bb01c93ee..a5fc6a4d0 100644 --- a/base_location/__init__.py +++ b/base_location/__init__.py @@ -1,24 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Contributor: Pedro Manuel Baeza -# Ignacio Ibeas -# Alejandro Santana -# -# 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 . -# -############################################################################## +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import models diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index b987141b9..969b89308 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -1,43 +1,19 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Contributor: Pedro Manuel Baeza -# Ignacio Ibeas -# Alejandro Santana -# -# 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 . -# -############################################################################## +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + { 'name': 'Location management (aka Better ZIP)', - 'version': '9.0.1.0.0', - 'depends': ['base'], + 'version': '10.0.1.0.0', + 'depends': [ + 'base', + ], 'author': "Camptocamp," "ACYSOS S.L.," "Alejandro Santana," - "Serv. Tecnol. Avanzados - Pedro M. Baeza," + "Tecnativa," "Odoo Community Association (OCA)", 'license': "AGPL-3", - 'contributors': [ - 'Nicolas Bessi ', - 'Pedro M. Baeza ', - 'Ignacio Ibeas (Acysos S.L.)', - 'Alejandro Santana ', - 'Sandy Carter ', - 'Yannick Vaucher ', - ], 'summary': '''Enhanced zip/npa management system''', 'website': 'http://www.camptocamp.com', 'data': ['views/better_zip_view.xml', diff --git a/base_location/models/__init__.py b/base_location/models/__init__.py index 351a33ad1..3d1df1e8d 100644 --- a/base_location/models/__init__.py +++ b/base_location/models/__init__.py @@ -1,8 +1,6 @@ # -*- coding: utf-8 -*- -# -# License, author and contributors information in: -# __openerp__.py file at the root folder of this module. -# +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import better_zip from . import partner diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py index 7790d9ff7..c85ea78ae 100644 --- a/base_location/models/better_zip.py +++ b/base_location/models/better_zip.py @@ -1,25 +1,8 @@ # -*- coding: utf-8 -*- -# -# -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Contributor: Pedro Manuel Baeza -# Ignacio Ibeas -# Alejandro Santana -# -# 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 openerp import models, fields, api +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models, fields, api class BetterZip(models.Model): diff --git a/base_location/models/company.py b/base_location/models/company.py index 6368761cf..d1970d2ae 100644 --- a/base_location/models/company.py +++ b/base_location/models/company.py @@ -1,33 +1,14 @@ # -*- coding: utf-8 -*- -# -# -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Contributor: Pedro Manuel Baeza -# Ignacio Ibeas -# Alejandro Santana -# -# 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 openerp import models, fields, api +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models, fields, api class ResCompany(models.Model): _inherit = 'res.company' - @api.one @api.onchange('better_zip_id') def on_change_city(self): if self.better_zip_id: @@ -39,6 +20,5 @@ class ResCompany(models.Model): better_zip_id = fields.Many2one( 'res.better.zip', string='Location', - select=1, help='Use the city name or the zip code to search the location', ) diff --git a/base_location/models/partner.py b/base_location/models/partner.py index c16ae83b1..1eaa08cf3 100644 --- a/base_location/models/partner.py +++ b/base_location/models/partner.py @@ -1,33 +1,14 @@ # -*- coding: utf-8 -*- -# -# -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Contributor: Pedro Manuel Baeza -# Ignacio Ibeas -# Alejandro Santana -# -# 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 openerp import models, fields, api +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models, fields, api class ResPartner(models.Model): _inherit = 'res.partner' zip_id = fields.Many2one('res.better.zip', 'City/Location') - @api.one @api.onchange('zip_id') def onchange_zip_id(self): if self.zip_id: diff --git a/base_location/models/state.py b/base_location/models/state.py index d9db12e50..5c3b31f60 100644 --- a/base_location/models/state.py +++ b/base_location/models/state.py @@ -1,26 +1,8 @@ # -*- coding: utf-8 -*- -# -# -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Contributor: Pedro Manuel Baeza -# Ignacio Ibeas -# Alejandro Santana -# -# 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 openerp import models, fields +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models, fields class ResCountryState(models.Model): diff --git a/base_location/tests/__init__.py b/base_location/tests/__init__.py index 78c6dfa4c..3c8d5b3d9 100644 --- a/base_location/tests/__init__.py +++ b/base_location/tests/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- -# © 2015 Yannick Vaucher (Camptocamp) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# Copyright 2015 Yannick Vaucher, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from . import test_completion diff --git a/base_location/tests/test_completion.py b/base_location/tests/test_completion.py index 30ea0a743..cf75c05f3 100644 --- a/base_location/tests/test_completion.py +++ b/base_location/tests/test_completion.py @@ -1,9 +1,8 @@ # -*- coding: utf-8 -*- -# © 2015 Yannick Vaucher (Camptocamp) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -"""Test a city completion and onchanges.""" +# Copyright 2015 Yannick Vaucher, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp.tests.common import TransactionCase +from odoo.tests.common import TransactionCase class TestCompletion(TransactionCase): diff --git a/base_location/views/better_zip_view.xml b/base_location/views/better_zip_view.xml index cfe13bc52..d384c7d8e 100644 --- a/base_location/views/better_zip_view.xml +++ b/base_location/views/better_zip_view.xml @@ -1,70 +1,74 @@ - - + - - res.better.zip.form - res.better.zip - - - - - - - - - - - - + + res.better.zip.form + res.better.zip + +
+ + + + + + + +
+
+
+ + + res.better.zip.tree + res.better.zip + + + + + + + + + + - - res.better.zip.tree - res.better.zip - - - - - - - - - - + + res.better.zip.select + res.better.zip + + + + + + + + + + + + + + - - res.better.zip.select - res.better.zip - - - - - - - - - - - - - - + + Cites/locations + res.better.zip + form + tree,form + + + - - Cites/locations Management - res.better.zip - form - tree,form - - - + - + -
-
+ diff --git a/base_location/views/company_view.xml b/base_location/views/company_view.xml index e723db3a7..a2775ebd0 100644 --- a/base_location/views/company_view.xml +++ b/base_location/views/company_view.xml @@ -1,21 +1,19 @@ - - + - - - res.company.form.city - res.company - - - - - + + + res.company.form.city + res.company + + + + - + + - - + diff --git a/base_location/views/partner_view.xml b/base_location/views/partner_view.xml index cade97e03..cc3499b40 100644 --- a/base_location/views/partner_view.xml +++ b/base_location/views/partner_view.xml @@ -1,26 +1,24 @@ - - + - - res.partner.zip_id.2 - res.partner - - - - - - - - + + res.partner.zip_id.2 + res.partner + + + + - + + + + + - - + diff --git a/base_location/views/res_country_view.xml b/base_location/views/res_country_view.xml index 7e1deaa09..d45cd0cb1 100644 --- a/base_location/views/res_country_view.xml +++ b/base_location/views/res_country_view.xml @@ -1,17 +1,15 @@ - - + - - res.country.search - res.country - - - - - - - + + res.country.search + res.country + + + + + + + - - + diff --git a/base_location/views/state_view.xml b/base_location/views/state_view.xml index 38b550c97..e4e37845d 100644 --- a/base_location/views/state_view.xml +++ b/base_location/views/state_view.xml @@ -1,26 +1,26 @@ - - - - - view_country_state_form2 - res.country.state - - - - - - - - - - - + + + + + view_country_state_form2 + res.country.state + + + + + + + + + + - - - +
+ + + From 6e88a6e61cc731fb891c2e21158a5d15bfbf4da6 Mon Sep 17 00:00:00 2001 From: kitcharoen poolperm Date: Thu, 5 Jan 2017 12:54:40 +0700 Subject: [PATCH 16/27] [FIX][10.0] base_location : "better_zip_ids" field set colspan="2" in state view --- base_location/views/state_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_location/views/state_view.xml b/base_location/views/state_view.xml index e4e37845d..cbd4f72aa 100644 --- a/base_location/views/state_view.xml +++ b/base_location/views/state_view.xml @@ -10,7 +10,7 @@ From 1c3277ee25027ffc67bffe079a05f510cd3fe92c Mon Sep 17 00:00:00 2001 From: Dave Lasley Date: Sun, 23 Apr 2017 17:00:18 -0700 Subject: [PATCH 17/27] [10.0][IMP] base_location(geonames): Add Lat/Long (#405) * [IMP] base_location: Add lat & long to `better.zip` * Add latitude and longitude columns to `better.zip` * [IMP] base_location_geonames_import: Add lat/long * Add support for latitude & longitude to genomes importer --- base_location/README.rst | 1 + base_location/__openerp__.py | 2 +- base_location/models/better_zip.py | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/base_location/README.rst b/base_location/README.rst index 9cafe8b0c..5f52c2da8 100644 --- a/base_location/README.rst +++ b/base_location/README.rst @@ -43,6 +43,7 @@ Contributors * Sandy Carter * Yannick Vaucher * Francesco Apruzzese +* Dave Lasley Icon ---- diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index 969b89308..91b865f5e 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -4,7 +4,7 @@ { 'name': 'Location management (aka Better ZIP)', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', 'depends': [ 'base', ], diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py index c85ea78ae..777f736ce 100644 --- a/base_location/models/better_zip.py +++ b/base_location/models/better_zip.py @@ -20,6 +20,8 @@ class BetterZip(models.Model): city = fields.Char('City', required=True) state_id = fields.Many2one('res.country.state', 'State') country_id = fields.Many2one('res.country', 'Country') + latitude = fields.Float() + longitude = fields.Float() @api.one @api.depends( From 07543b2a99cd09f5b909aa180da6fc6a73c3b9f0 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 17 Sep 2016 20:36:48 -0400 Subject: [PATCH 18/27] OCA Transbot updated translations from Transifex --- base_location/i18n/am.po | 160 ++++++++++++++++++++++++++++++ base_location/i18n/ar.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/bg.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/bs.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/ca.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/cs.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/da.po | 48 ++++++--- base_location/i18n/de.po | 49 ++++++---- base_location/i18n/el_GR.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/en_GB.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es.po | 42 +++++--- base_location/i18n/es_AR.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_CL.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_CO.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_CR.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_DO.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_EC.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_ES.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_MX.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_PE.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_PY.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/es_VE.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/et.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/eu.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/fa.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/fi.po | 43 ++++++--- base_location/i18n/fr.po | 46 ++++++--- base_location/i18n/fr_CA.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/fr_CH.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/gl.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/gl_ES.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/he.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/hr.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/hr_HR.po | 38 +++++--- base_location/i18n/hu.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/id.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/it.po | 40 +++++--- base_location/i18n/ja.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/ko.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/lt.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/lt_LT.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/lv.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/mk.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/mn.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/nb.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/nb_NO.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/nl.po | 42 +++++--- base_location/i18n/nl_BE.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/nl_NL.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/pl.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/pt.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/pt_BR.po | 41 +++++--- base_location/i18n/pt_PT.po | 161 +++++++++++++++++++++++++++++++ base_location/i18n/ro.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/ru.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/sk.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/sl.po | 38 +++++--- base_location/i18n/sr.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/sr@latin.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/sv.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/th.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/tr.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/tr_TR.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/uk.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/vi.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/vi_VN.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/zh_CN.po | 171 +++++++++++++++++++++++++++++++++ base_location/i18n/zh_TW.po | 171 +++++++++++++++++++++++++++++++++ 68 files changed, 10189 insertions(+), 135 deletions(-) create mode 100644 base_location/i18n/am.po create mode 100644 base_location/i18n/ar.po create mode 100644 base_location/i18n/bg.po create mode 100644 base_location/i18n/bs.po create mode 100644 base_location/i18n/ca.po create mode 100644 base_location/i18n/cs.po create mode 100644 base_location/i18n/el_GR.po create mode 100644 base_location/i18n/en_GB.po create mode 100644 base_location/i18n/es_AR.po create mode 100644 base_location/i18n/es_CL.po create mode 100644 base_location/i18n/es_CO.po create mode 100644 base_location/i18n/es_CR.po create mode 100644 base_location/i18n/es_DO.po create mode 100644 base_location/i18n/es_EC.po create mode 100644 base_location/i18n/es_ES.po create mode 100644 base_location/i18n/es_MX.po create mode 100644 base_location/i18n/es_PE.po create mode 100644 base_location/i18n/es_PY.po create mode 100644 base_location/i18n/es_VE.po create mode 100644 base_location/i18n/et.po create mode 100644 base_location/i18n/eu.po create mode 100644 base_location/i18n/fa.po create mode 100644 base_location/i18n/fr_CA.po create mode 100644 base_location/i18n/fr_CH.po create mode 100644 base_location/i18n/gl.po create mode 100644 base_location/i18n/gl_ES.po create mode 100644 base_location/i18n/he.po create mode 100644 base_location/i18n/hr.po create mode 100644 base_location/i18n/hu.po create mode 100644 base_location/i18n/id.po create mode 100644 base_location/i18n/ja.po create mode 100644 base_location/i18n/ko.po create mode 100644 base_location/i18n/lt.po create mode 100644 base_location/i18n/lt_LT.po create mode 100644 base_location/i18n/lv.po create mode 100644 base_location/i18n/mk.po create mode 100644 base_location/i18n/mn.po create mode 100644 base_location/i18n/nb.po create mode 100644 base_location/i18n/nb_NO.po create mode 100644 base_location/i18n/nl_BE.po create mode 100644 base_location/i18n/nl_NL.po create mode 100644 base_location/i18n/pl.po create mode 100644 base_location/i18n/pt.po create mode 100644 base_location/i18n/pt_PT.po create mode 100644 base_location/i18n/ro.po create mode 100644 base_location/i18n/ru.po create mode 100644 base_location/i18n/sk.po create mode 100644 base_location/i18n/sr.po create mode 100644 base_location/i18n/sr@latin.po create mode 100644 base_location/i18n/sv.po create mode 100644 base_location/i18n/th.po create mode 100644 base_location/i18n/tr.po create mode 100644 base_location/i18n/tr_TR.po create mode 100644 base_location/i18n/uk.po create mode 100644 base_location/i18n/vi.po create mode 100644 base_location/i18n/vi_VN.po create mode 100644 base_location/i18n/zh_CN.po create mode 100644 base_location/i18n/zh_TW.po diff --git a/base_location/i18n/am.po b/base_location/i18n/am.po new file mode 100644 index 000000000..2660a3c83 --- /dev/null +++ b/base_location/i18n/am.po @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-10 03:39+0000\n" +"PO-Revision-Date: 2017-03-10 03:39+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "ተባባሪ" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/ar.po b/base_location/i18n/ar.po new file mode 100644 index 000000000..9898f8470 --- /dev/null +++ b/base_location/i18n/ar.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "تجميع حسب" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "المعرف" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "الاسم" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "الشريك" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/bg.po b/base_location/i18n/bg.po new file mode 100644 index 000000000..06f2727bb --- /dev/null +++ b/base_location/i18n/bg.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Групиране по" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Име" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Партньор" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/bs.po b/base_location/i18n/bs.po new file mode 100644 index 000000000..c93c48eaa --- /dev/null +++ b/base_location/i18n/bs.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupiši po" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Ime" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/ca.po b/base_location/i18n/ca.po new file mode 100644 index 000000000..504a292dc --- /dev/null +++ b/base_location/i18n/ca.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupa Per" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nom" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Empresa" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/cs.po b/base_location/i18n/cs.po new file mode 100644 index 000000000..56e52a487 --- /dev/null +++ b/base_location/i18n/cs.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Seskupit podle" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Název" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Společník" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po index cd7b6f2a4..5d2804caa 100644 --- a/base_location/i18n/da.po +++ b/base_location/i18n/da.po @@ -3,15 +3,15 @@ # * base_location # # Translators: -# Hans Henrik Gabelgaard , 2015 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-17 01:36+0000\n" -"PO-Revision-Date: 2015-12-15 11:17+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Danish (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/da/)\n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\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" @@ -20,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "By/Postnummer/Lokations administration" +msgid "Cites/locations" +msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Byer" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Byer/Loaktions administration" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "By" @@ -51,6 +58,7 @@ msgstr "Slå by/postnummer op" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Postnr/by " @@ -79,17 +87,17 @@ msgstr "Delstat/region" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid msgid "Created by" -msgstr "" +msgstr "Oprettet af" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date msgid "Created on" -msgstr "" +msgstr "Oprettet den" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" -msgstr "" +msgstr "Gruppér efter" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_id @@ -99,16 +107,21 @@ msgstr "ID" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update msgid "Last Modified on" -msgstr "" +msgstr "Sidst ændret den" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Sidst opdateret af" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" msgstr "" #. module: base_location @@ -116,6 +129,11 @@ msgstr "" msgid "Location" msgstr "Postnr/by " +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" @@ -149,7 +167,5 @@ msgstr "Søg på bynavn eller postnummer" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "Postnr." diff --git a/base_location/i18n/de.po b/base_location/i18n/de.po index 25f20f340..17ad4b5ef 100644 --- a/base_location/i18n/de.po +++ b/base_location/i18n/de.po @@ -3,23 +3,15 @@ # * base_location # # Translators: -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# Carles Antoli , 2015 -# Christophe CHAUVET , 2015 -# Christophe CHAUVET , 2015 -# Hotellook, 2014 -# Matjaž Mozetič , 2016 -# Rudolf Schnapka , 2016 -# Rudolf Schnapka , 2015 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-17 04:14+0000\n" -"PO-Revision-Date: 2016-04-21 08:44+0000\n" -"Last-Translator: Rudolf Schnapka \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/de/)\n" +"POT-Creation-Date: 2017-05-01 20:42+0000\n" +"PO-Revision-Date: 2017-05-01 20:42+0000\n" +"Last-Translator: OCA Transbot , 2016\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" @@ -28,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "Standorte-Verwaltung" +msgid "Cites/locations" +msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Orte" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Standorte-Verwaltung" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Stadt" @@ -59,6 +58,7 @@ msgstr "Orts-Vervollständigung" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Stadt/Standort" @@ -119,11 +119,21 @@ msgstr "zuletzt aktualisiert von" msgid "Last Updated on" msgstr "zuletzt aktualisiert am" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Standort" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" @@ -153,11 +163,10 @@ msgstr "Die offizielle Kennung der Stadt" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_company_better_zip_id msgid "Use the city name or the zip code to search the location" -msgstr "Verwenden Sie den Stadtnamen oder die PLZ, um nach diesem Standort zu suchen" +msgstr "" +"Verwenden Sie den Stadtnamen oder die PLZ, um nach diesem Standort zu suchen" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "PLZ" diff --git a/base_location/i18n/el_GR.po b/base_location/i18n/el_GR.po new file mode 100644 index 000000000..687f1a87a --- /dev/null +++ b/base_location/i18n/el_GR.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Ονομασία" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Συνεργάτης" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/en_GB.po b/base_location/i18n/en_GB.po new file mode 100644 index 000000000..c2debc4e0 --- /dev/null +++ b/base_location/i18n/en_GB.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Group By" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Name" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index 06c30de92..3e40cc746 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -3,16 +3,15 @@ # * base_location # # Translators: -# Antonio Trueba, 2016 -# Francisco Palm , 2015 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-19 20:35+0000\n" -"PO-Revision-Date: 2016-01-01 09:03+0000\n" -"Last-Translator: Antonio Trueba\n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/es/)\n" +"POT-Creation-Date: 2017-05-01 20:42+0000\n" +"PO-Revision-Date: 2017-05-01 20:42+0000\n" +"Last-Translator: OCA Transbot , 2016\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" @@ -21,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "Gestión de ciudades/ubicaciones" +msgid "Cites/locations" +msgstr "Ciudades/Ubicaciones" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Ciudades" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "Ciudades/Ubicaciones" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Ciudad/Ubicaciones" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Ciudad" @@ -52,6 +58,7 @@ msgstr "Autocompletado a partir de la ciudad" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Ciudad/Ubicación" @@ -112,11 +119,21 @@ msgstr "Última actualización por" msgid "Last Updated on" msgstr "Última actualización en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Ubicación" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" @@ -146,11 +163,10 @@ msgstr "El código oficial para la ciudad" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_company_better_zip_id msgid "Use the city name or the zip code to search the location" -msgstr "Utilice el nombre de ciudad o el código postal para buscar la ubicación" +msgstr "" +"Utilice el nombre de ciudad o el código postal para buscar la ubicación" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "C.P." diff --git a/base_location/i18n/es_AR.po b/base_location/i18n/es_AR.po new file mode 100644 index 000000000..bc17abfc6 --- /dev/null +++ b/base_location/i18n/es_AR.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_CL.po b/base_location/i18n/es_CL.po new file mode 100644 index 000000000..e3fc9e6ef --- /dev/null +++ b/base_location/i18n/es_CL.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_CO.po b/base_location/i18n/es_CO.po new file mode 100644 index 000000000..b90344bf6 --- /dev/null +++ b/base_location/i18n/es_CO.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_CR.po b/base_location/i18n/es_CR.po new file mode 100644 index 000000000..3f8510c26 --- /dev/null +++ b/base_location/i18n/es_CR.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Empresa" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_DO.po b/base_location/i18n/es_DO.po new file mode 100644 index 000000000..dadf6b8ba --- /dev/null +++ b/base_location/i18n/es_DO.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_EC.po b/base_location/i18n/es_EC.po new file mode 100644 index 000000000..36a08360d --- /dev/null +++ b/base_location/i18n/es_EC.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Empresa" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_ES.po b/base_location/i18n/es_ES.po new file mode 100644 index 000000000..dbb4ef996 --- /dev/null +++ b/base_location/i18n/es_ES.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_MX.po b/base_location/i18n/es_MX.po new file mode 100644 index 000000000..c3fe5a921 --- /dev/null +++ b/base_location/i18n/es_MX.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Empresa" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_PE.po b/base_location/i18n/es_PE.po new file mode 100644 index 000000000..c64de812c --- /dev/null +++ b/base_location/i18n/es_PE.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_PY.po b/base_location/i18n/es_PY.po new file mode 100644 index 000000000..6cfc3194c --- /dev/null +++ b/base_location/i18n/es_PY.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/es_VE.po b/base_location/i18n/es_VE.po new file mode 100644 index 000000000..94b54134d --- /dev/null +++ b/base_location/i18n/es_VE.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nombre" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Empresa" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/et.po b/base_location/i18n/et.po new file mode 100644 index 000000000..9bd678fca --- /dev/null +++ b/base_location/i18n/et.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Loodud" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Rühmitamine" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nimi" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/eu.po b/base_location/i18n/eu.po new file mode 100644 index 000000000..7941d5c80 --- /dev/null +++ b/base_location/i18n/eu.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Group By" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Izena" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Kidea" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/fa.po b/base_location/i18n/fa.po new file mode 100644 index 000000000..8df411110 --- /dev/null +++ b/base_location/i18n/fa.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "گروه‌بندی برمبنای" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "شناسه" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "نام" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/fi.po b/base_location/i18n/fi.po index 3d36cda58..cf90f31c5 100644 --- a/base_location/i18n/fi.po +++ b/base_location/i18n/fi.po @@ -3,14 +3,15 @@ # * base_location # # Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-30 12:05+0000\n" -"PO-Revision-Date: 2015-12-15 11:17+0000\n" -"Last-Translator: <>\n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/fi/)\n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" +msgid "Cites/locations" msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -50,6 +58,7 @@ msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "" @@ -98,7 +107,7 @@ msgstr "ID" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update msgid "Last Modified on" -msgstr "" +msgstr "Viimeksi muokattu" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid @@ -110,20 +119,30 @@ msgstr "Viimeksi päivitetty" msgid "Last Updated on" msgstr "Viimeksi päivittänyt" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" -msgstr "" +msgstr "Nimi" #. module: base_location #: model:ir.model,name:base_location.model_res_partner msgid "Partner" -msgstr "" +msgstr "Kumppani" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -134,7 +153,7 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "State" -msgstr "" +msgstr "Tila" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code @@ -148,7 +167,5 @@ msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "" diff --git a/base_location/i18n/fr.po b/base_location/i18n/fr.po index ff09b5bc9..f4ab5c265 100644 --- a/base_location/i18n/fr.po +++ b/base_location/i18n/fr.po @@ -3,14 +3,16 @@ # * base_location # # Translators: +# OCA Transbot , 2016 +# leemannd , 2017 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-20 01:52+0000\n" -"PO-Revision-Date: 2016-03-23 10:34+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/fr/)\n" +"POT-Creation-Date: 2017-05-01 20:42+0000\n" +"PO-Revision-Date: 2017-05-01 20:42+0000\n" +"Last-Translator: leemannd , 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" @@ -19,21 +21,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "Cites/locations Management" +msgid "Cites/locations" +msgstr "Villes / lieux" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Villes" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "Villes / Lieux" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Cities/Locations Management" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Ville" @@ -50,13 +59,14 @@ msgstr "Complétion par ville" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Ville/location" #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" -msgstr "" +msgstr "Objet de compléte de Ville / lieux" #. module: base_location #: model:ir.model,name:base_location.model_res_company @@ -88,7 +98,7 @@ msgstr "Créé le" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" -msgstr "" +msgstr "Regrouper par" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_id @@ -110,15 +120,25 @@ msgstr "Mis à jour par" msgid "Last Updated on" msgstr "Mis à jour le" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Location" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" -msgstr "" +msgstr "Nom" #. module: base_location #: model:ir.model,name:base_location.model_res_partner @@ -128,7 +148,7 @@ msgstr "Partenaire" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Search city" -msgstr "" +msgstr "Rechercher ville" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id @@ -148,7 +168,5 @@ msgstr "Utilisez le nom de la ville ou le zip lors des recherches" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "ZIP" diff --git a/base_location/i18n/fr_CA.po b/base_location/i18n/fr_CA.po new file mode 100644 index 000000000..1ac5e71f3 --- /dev/null +++ b/base_location/i18n/fr_CA.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "Identifiant" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nom" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partenaire" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/fr_CH.po b/base_location/i18n/fr_CH.po new file mode 100644 index 000000000..ff0a4ce13 --- /dev/null +++ b/base_location/i18n/fr_CH.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partenaire" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/gl.po b/base_location/i18n/gl.po new file mode 100644 index 000000000..16f373fb6 --- /dev/null +++ b/base_location/i18n/gl.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Modificado por última vez o" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nome" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Empresa" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/gl_ES.po b/base_location/i18n/gl_ES.po new file mode 100644 index 000000000..32409ac1a --- /dev/null +++ b/base_location/i18n/gl_ES.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/he.po b/base_location/i18n/he.po new file mode 100644 index 000000000..fe24c5994 --- /dev/null +++ b/base_location/i18n/he.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "קבץ לפי" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "מזהה" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "שם" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/hr.po b/base_location/i18n/hr.po new file mode 100644 index 000000000..8efe09ce9 --- /dev/null +++ b/base_location/i18n/hr.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupiraj po" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Naziv" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/hr_HR.po b/base_location/i18n/hr_HR.po index e14c2ea21..3368aca26 100644 --- a/base_location/i18n/hr_HR.po +++ b/base_location/i18n/hr_HR.po @@ -3,15 +3,15 @@ # * base_location # # Translators: -# Bole , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-08 05:38+0000\n" -"PO-Revision-Date: 2016-05-31 18:41+0000\n" -"Last-Translator: Bole \n" -"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/hr_HR/)\n" +"POT-Creation-Date: 2017-05-01 20:42+0000\n" +"PO-Revision-Date: 2017-05-01 20:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "Upravljanje gradovima/lokacijama" +msgid "Cites/locations" +msgstr "Gradovi / Lokacije" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Gradovi" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "Gradovi / Lokacije" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Upravljanje gradovima/lokacijama" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Grad" @@ -51,6 +58,7 @@ msgstr "Popunjavanje grada" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Grad/Lokacija" @@ -111,11 +119,21 @@ msgstr "Zadnji ažurirao" msgid "Last Updated on" msgstr "Zadnje ažurirano" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Lokacija" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" @@ -149,7 +167,5 @@ msgstr "Koristite naziv ili šifru grada za pretraživanje" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "ZIP" diff --git a/base_location/i18n/hu.po b/base_location/i18n/hu.po new file mode 100644 index 000000000..d00e3e719 --- /dev/null +++ b/base_location/i18n/hu.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Csoportosítás..." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Név" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/id.po b/base_location/i18n/id.po new file mode 100644 index 000000000..122547ef6 --- /dev/null +++ b/base_location/i18n/id.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Dikelompokan berdasarkan .." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nama" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/it.po b/base_location/i18n/it.po index cb80dd6cc..7e6090af4 100644 --- a/base_location/i18n/it.po +++ b/base_location/i18n/it.po @@ -3,15 +3,15 @@ # * base_location # # Translators: -# Paolo Valier, 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-20 01:37+0000\n" -"PO-Revision-Date: 2016-03-19 05:58+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/it/)\n" +"POT-Creation-Date: 2017-05-01 20:42+0000\n" +"PO-Revision-Date: 2017-05-01 20:42+0000\n" +"Last-Translator: OCA Transbot , 2016\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" @@ -20,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "Gestione Città/Locazioni" +msgid "Cites/locations" +msgstr "Città/luoghi" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Città" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "Città/luoghi" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Gestione Città/Locazioni" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Città" @@ -51,13 +58,14 @@ msgstr "Completamento città" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Città/Locazione" #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" -msgstr "" +msgstr "Città/luoghi di completamento oggetto" #. module: base_location #: model:ir.model,name:base_location.model_res_company @@ -111,11 +119,21 @@ msgstr "Ultimo caricamento il" msgid "Last Updated on" msgstr "Ultimo caricamento di" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Locazione" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" @@ -149,7 +167,5 @@ msgstr "Usare il nome della città o il codice CAP per ricercare la locazione" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "CAP" diff --git a/base_location/i18n/ja.po b/base_location/i18n/ja.po new file mode 100644 index 000000000..ffc355d1d --- /dev/null +++ b/base_location/i18n/ja.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "作成者" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "作成日" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "グループ化" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "名称" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "パートナ" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/ko.po b/base_location/i18n/ko.po new file mode 100644 index 000000000..e10ae09c7 --- /dev/null +++ b/base_location/i18n/ko.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "작성일" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "그룹화" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "이름" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/lt.po b/base_location/i18n/lt.po new file mode 100644 index 000000000..02963ff34 --- /dev/null +++ b/base_location/i18n/lt.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupuoti pagal" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Pavadinimas" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partneris" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/lt_LT.po b/base_location/i18n/lt_LT.po new file mode 100644 index 000000000..a2cdc8e73 --- /dev/null +++ b/base_location/i18n/lt_LT.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/lv.po b/base_location/i18n/lv.po new file mode 100644 index 000000000..31fb16609 --- /dev/null +++ b/base_location/i18n/lv.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupēt pēc" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nosaukums" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partneris" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/mk.po b/base_location/i18n/mk.po new file mode 100644 index 000000000..513cd3a89 --- /dev/null +++ b/base_location/i18n/mk.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Групирај по" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Име" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Партнер" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/mn.po b/base_location/i18n/mn.po new file mode 100644 index 000000000..8a9439a68 --- /dev/null +++ b/base_location/i18n/mn.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Бүлэглэх" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Нэр" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Харилцагч" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/nb.po b/base_location/i18n/nb.po new file mode 100644 index 000000000..2b60465c2 --- /dev/null +++ b/base_location/i18n/nb.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupper etter" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Navn" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/nb_NO.po b/base_location/i18n/nb_NO.po new file mode 100644 index 000000000..e0c88875c --- /dev/null +++ b/base_location/i18n/nb_NO.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Gruppe laget av" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/nl.po b/base_location/i18n/nl.po index dcd6295d2..55453dac7 100644 --- a/base_location/i18n/nl.po +++ b/base_location/i18n/nl.po @@ -3,15 +3,15 @@ # * base_location # # Translators: -# Erwin van der Ploeg , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-20 01:52+0000\n" -"PO-Revision-Date: 2016-03-25 12:34+0000\n" -"Last-Translator: Erwin van der Ploeg \n" -"Language-Team: Dutch (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/nl/)\n" +"POT-Creation-Date: 2017-05-01 20:42+0000\n" +"PO-Revision-Date: 2017-05-01 20:42+0000\n" +"Last-Translator: OCA Transbot , 2016\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" @@ -20,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" +msgid "Cites/locations" msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Plaats" @@ -51,6 +58,7 @@ msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Plaats/Locatie" @@ -89,7 +97,7 @@ msgstr "Aangemaakt op" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" -msgstr "" +msgstr "Groepeer op" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_id @@ -99,7 +107,7 @@ msgstr "ID" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update msgid "Last Modified on" -msgstr "" +msgstr "Laatst bijgewerkt op" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid @@ -111,15 +119,25 @@ msgstr "Laatst bijgewerkt door" msgid "Last Updated on" msgstr "Laatst bijgewerkt op" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" -msgstr "" +msgstr "Naam" #. module: base_location #: model:ir.model,name:base_location.model_res_partner @@ -149,7 +167,5 @@ msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "" diff --git a/base_location/i18n/nl_BE.po b/base_location/i18n/nl_BE.po new file mode 100644 index 000000000..cd93f8d0a --- /dev/null +++ b/base_location/i18n/nl_BE.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Groeperen op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Naam:" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Relatie" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/nl_NL.po b/base_location/i18n/nl_NL.po new file mode 100644 index 000000000..86e211da6 --- /dev/null +++ b/base_location/i18n/nl_NL.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: Peter Hageman , 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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "Plaats" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "Land" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Groepeer op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "Breedtegraad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "Lengtegraad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Naam" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Relatie" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Gebruik de plaatsnaam of de postcode om de locatie te bepalen" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "Postcode" diff --git a/base_location/i18n/pl.po b/base_location/i18n/pl.po new file mode 100644 index 000000000..f66819643 --- /dev/null +++ b/base_location/i18n/pl.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Pogrupuj wg" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nazwa" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/pt.po b/base_location/i18n/pt.po new file mode 100644 index 000000000..b82eab158 --- /dev/null +++ b/base_location/i18n/pt.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nome" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Parceiro" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/pt_BR.po b/base_location/i18n/pt_BR.po index 572adff93..1b397fa5e 100644 --- a/base_location/i18n/pt_BR.po +++ b/base_location/i18n/pt_BR.po @@ -3,15 +3,16 @@ # * base_location # # Translators: -# danimaribeiro , 2015 +# OCA Transbot , 2016 +# falexandresilva , 2017 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-17 01:36+0000\n" -"PO-Revision-Date: 2015-12-15 11:17+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/pt_BR/)\n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: falexandresilva , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,21 +21,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "Gerenciamento de Cidade/locais" +msgid "Cites/locations" +msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Cidades" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "Cidades/Locais" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Gerenciamento Cidade/Locais" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Cidade" @@ -51,6 +59,7 @@ msgstr "Autocompletar de cidades" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Cidade/Localização" @@ -99,7 +108,7 @@ msgstr "ID" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update msgid "Last Modified on" -msgstr "" +msgstr "Última atualização em" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid @@ -111,11 +120,21 @@ msgstr "Útima atualização por" msgid "Last Updated on" msgstr "Útima atualização em" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "Latitude" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Localização" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "Longitude" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" @@ -149,7 +168,5 @@ msgstr "Use o nome da cidade ou o CEP para pesquisar a localização" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "CEP" diff --git a/base_location/i18n/pt_PT.po b/base_location/i18n/pt_PT.po new file mode 100644 index 000000000..8423876a8 --- /dev/null +++ b/base_location/i18n/pt_PT.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +# Tiago Baptista , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-20 18:18+0000\n" +"PO-Revision-Date: 2017-01-20 18:18+0000\n" +"Last-Translator: Tiago Baptista , 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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "Cidades" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "Cidade" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "Código da Cidade" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "País" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Modificado em" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "Local" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nome" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Parceiro" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "Procurar cidade" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "Estado" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "Código oficial da cidade" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "Utilize o nome da cidade ou o código postal para pesquisar o local" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "Código Postal" diff --git a/base_location/i18n/ro.po b/base_location/i18n/ro.po new file mode 100644 index 000000000..4c3ce8ba2 --- /dev/null +++ b/base_location/i18n/ro.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Creat la" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupează după" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Nume" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partener" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/ru.po b/base_location/i18n/ru.po new file mode 100644 index 000000000..c11b4bbd6 --- /dev/null +++ b/base_location/i18n/ru.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Создано" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Создан" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Название" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Контрагент" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/sk.po b/base_location/i18n/sk.po new file mode 100644 index 000000000..22e316c8c --- /dev/null +++ b/base_location/i18n/sk.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Zoskupiť podľa" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Meno" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/sl.po b/base_location/i18n/sl.po index 3b9e20558..a6e891fc4 100644 --- a/base_location/i18n/sl.po +++ b/base_location/i18n/sl.po @@ -3,15 +3,15 @@ # * base_location # # Translators: -# Matjaž Mozetič , 2015 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: partner-contact (9.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-17 01:36+0000\n" -"PO-Revision-Date: 2015-12-15 13:22+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-partner-contact-9-0/language/sl/)\n" +"POT-Creation-Date: 2017-05-01 20:42+0000\n" +"PO-Revision-Date: 2017-05-01 20:42+0000\n" +"Last-Translator: OCA Transbot , 2016\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" @@ -20,21 +20,28 @@ msgstr "" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" -msgstr "Upravljanje krajev/lokacij" +msgid "Cites/locations" +msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" msgstr "Kraji" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Cities/Locations Management" msgstr "Kraji/Upravljanje lokacij" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Kraj" @@ -51,6 +58,7 @@ msgstr "Izpolnjevanje kraja" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "City/Location" msgstr "Kraj/Lokacija" @@ -111,11 +119,21 @@ msgstr "Zadnji posodobil" msgid "Last Updated on" msgstr "Zadnjič posodobljeno" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id msgid "Location" msgstr "Lokacija" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name msgid "Name" @@ -149,7 +167,5 @@ msgstr "Iskanje lokacije z uporabo imena kraja ali poštne številke" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -#: model:ir.ui.view,arch_db:base_location.better_zip_form -#: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "ZIP" msgstr "Poštna številka" diff --git a/base_location/i18n/sr.po b/base_location/i18n/sr.po new file mode 100644 index 000000000..849820d4f --- /dev/null +++ b/base_location/i18n/sr.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupiši po" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Ime" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/sr@latin.po b/base_location/i18n/sr@latin.po new file mode 100644 index 000000000..303affca3 --- /dev/null +++ b/base_location/i18n/sr@latin.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupisano po" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Ime:" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/sv.po b/base_location/i18n/sv.po new file mode 100644 index 000000000..e7897c4b6 --- /dev/null +++ b/base_location/i18n/sv.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Gruppera efter" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Namn" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Företag" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/th.po b/base_location/i18n/th.po new file mode 100644 index 000000000..3c906dedd --- /dev/null +++ b/base_location/i18n/th.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "จัดกลุ่มโดย" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "รหัส" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "ชื่อ" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "พาร์ทเนอร์" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/tr.po b/base_location/i18n/tr.po new file mode 100644 index 000000000..c1a494014 --- /dev/null +++ b/base_location/i18n/tr.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Grupla" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Adı" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "İş Ortağı" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/tr_TR.po b/base_location/i18n/tr_TR.po new file mode 100644 index 000000000..2db05ef27 --- /dev/null +++ b/base_location/i18n/tr_TR.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "Kimlik" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Ad" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Ortak" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/uk.po b/base_location/i18n/uk.po new file mode 100644 index 000000000..87cdc9c36 --- /dev/null +++ b/base_location/i18n/uk.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Створив" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Групувати за" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Name" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/vi.po b/base_location/i18n/vi.po new file mode 100644 index 000000000..5f7edc1c2 --- /dev/null +++ b/base_location/i18n/vi.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "Group By" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Tên" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "Đối tác" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/vi_VN.po b/base_location/i18n/vi_VN.po new file mode 100644 index 000000000..02a519b60 --- /dev/null +++ b/base_location/i18n/vi_VN.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "Tên" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/zh_CN.po b/base_location/i18n/zh_CN.po new file mode 100644 index 000000000..a064d0f41 --- /dev/null +++ b/base_location/i18n/zh_CN.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "创建者" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "创建时间" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "分组" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "ID" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "名称" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "业务伙伴" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" diff --git a/base_location/i18n/zh_TW.po b/base_location/i18n/zh_TW.po new file mode 100644 index 000000000..ba243fe11 --- /dev/null +++ b/base_location/i18n/zh_TW.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_location +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 01:50+0000\n" +"PO-Revision-Date: 2017-06-10 01:50+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: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +msgid "Cites/locations" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu +msgid "Cities/Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Cities/Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "City/Location" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" +msgstr "" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" +msgstr "建立者" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" +msgstr "建立於" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" +msgstr "分組方式" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" +msgstr "編號" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id +msgid "Location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Name" +msgstr "名稱" + +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Partner" +msgstr "夥伴" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code +msgid "The official code for the city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" From e5d0e3d40a996d268501d4f3225865aee45093f2 Mon Sep 17 00:00:00 2001 From: etobella Date: Wed, 18 Oct 2017 09:39:14 +0200 Subject: [PATCH 19/27] [MIG] base_location --- base_location/README.rst | 53 ++-- base_location/__init__.py | 1 - base_location/__openerp__.py | 5 +- base_location/demo/better_zip.xml | 8 +- base_location/models/__init__.py | 1 - base_location/models/better_zip.py | 101 ++++++-- base_location/models/company.py | 64 ++++- base_location/models/partner.py | 60 ++++- base_location/models/state.py | 1 - base_location/security/ir.model.access.csv | 2 +- base_location/tests/__init__.py | 3 +- base_location/tests/test_base_location.py | 270 +++++++++++++++++++++ base_location/tests/test_completion.py | 49 ---- base_location/views/better_zip_view.xml | 35 ++- base_location/views/company_view.xml | 10 +- base_location/views/partner_view.xml | 20 +- base_location/views/res_country_view.xml | 16 ++ 17 files changed, 555 insertions(+), 144 deletions(-) create mode 100644 base_location/tests/test_base_location.py delete mode 100644 base_location/tests/test_completion.py diff --git a/base_location/README.rst b/base_location/README.rst index 5f52c2da8..160dbf7c0 100644 --- a/base_location/README.rst +++ b/base_location/README.rst @@ -1,5 +1,5 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 ======================= @@ -12,27 +12,52 @@ It enables zip, city, state and country auto-completion on partners and companie Also allows different search filters. +Configuration +============= + +#. Activate the developer mode in *Settings*. +#. Go to *Settings / Technical / Locations Management / Locations*. +#. Create a new Location. + +or, with module 'Contacts Directory' installed: +#. Go to *Contacts / Configuration / Localization / Countries*. +#. Locate the desired country. +#. Press on the button 'Locations'. + +or, +#. Go to *Contacts / Configuration / Localization / Fed. States* +#. Locate the desired state. +#. Enter the desired Locations. + Usage ===== +#. Access a partner record +#. Fill the field *Location completion* +#. Information about country, state, city and zip will be filled automatically + + + .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/134/10.0 + :target: https://runbot.odoo-community.org/runbot/134/11.0 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 `here `_. +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 smash it by providing detailed and welcomed feedback. Credits ======= +Images +------ + +* Icon park: `Icon http://icon-park.com/icon/location-map-pin-orange3/` + Contributors ------------ @@ -45,17 +70,13 @@ Contributors * Francesco Apruzzese * Dave Lasley -Icon ----- -* http://icon-park.com/icon/location-map-pin-orange3/ - Maintainer ---------- -.. image:: http://odoo-community.org/logo.png +.. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association - :target: http://odoo-community.org + :target: https://odoo-community.org This module is maintained by the OCA. @@ -63,4 +84,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/base_location/__init__.py b/base_location/__init__.py index a5fc6a4d0..e2aed6e67 100644 --- a/base_location/__init__.py +++ b/base_location/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index 91b865f5e..ab99a039d 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -1,12 +1,11 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Location management (aka Better ZIP)', - 'version': '10.0.1.0.1', + 'version': '11.0.1.0.0', 'depends': [ - 'base', + 'base_address_city' ], 'author': "Camptocamp," "ACYSOS S.L.," diff --git a/base_location/demo/better_zip.xml b/base_location/demo/better_zip.xml index 7ecc6b14b..0c7f3b9ee 100644 --- a/base_location/demo/better_zip.xml +++ b/base_location/demo/better_zip.xml @@ -1,12 +1,8 @@ - - - + 1000 Brussels - - - + diff --git a/base_location/models/__init__.py b/base_location/models/__init__.py index 3d1df1e8d..3f7a893a5 100644 --- a/base_location/models/__init__.py +++ b/base_location/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py index 777f736ce..be949fe23 100644 --- a/base_location/models/better_zip.py +++ b/base_location/models/better_zip.py @@ -1,8 +1,8 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import models, fields, api +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError class BetterZip(models.Model): @@ -11,37 +11,90 @@ class BetterZip(models.Model): _name = "res.better.zip" _description = __doc__ _order = "name asc" - _rec_name = "display_name" - display_name = fields.Char('Name', compute='_get_display_name', store=True) name = fields.Char('ZIP') - code = fields.Char('City Code', size=64, - help="The official code for the city") + code = fields.Char( + 'City Code', + size=64, + help="The official code for the city" + ) city = fields.Char('City', required=True) - state_id = fields.Many2one('res.country.state', 'State') + city_id = fields.Many2one( + 'res.city', + 'City', + ) + state_id = fields.Many2one( + 'res.country.state', + 'State', + ) country_id = fields.Many2one('res.country', 'Country') + enforce_cities = fields.Boolean( + related='country_id.enforce_cities', + readonly=True, + ) latitude = fields.Float() longitude = fields.Float() - @api.one - @api.depends( - 'name', - 'city', - 'state_id', - 'country_id', - ) - def _get_display_name(self): - if self.name: - name = [self.name, self.city] - else: - name = [self.city] - if self.state_id: - name.append(self.state_id.name) + @api.multi + @api.depends('name', 'city', 'state_id', 'country_id') + def name_get(self): + result = [] + for rec in self: + name = [] + if rec.name: + name.append('%(name)s' % {'name': rec.name}) + name.append('%(name)s' % {'name': rec.city}) + if rec.state_id: + name.append('%(name)s' % {'name': rec.state_id.name}) + if rec.country_id: + name.append('%(name)s' % {'name': rec.country_id.name}) + result.append((rec.id, ", ".join(name))) + return result + + @api.onchange('country_id') + def _onchange_country_id(self): + if self.state_id.country_id != self.country_id: + self.state_id = False + if self.city_id.country_id != self.country_id: + self.city_id = False if self.country_id: - name.append(self.country_id.name) - self.display_name = ", ".join(name) + domain = [('country_id', '=', self.country_id.id)] + else: + domain = [] + return { + 'domain': { + 'state_id': domain, + 'city_id': domain, + } + } + + @api.onchange('city_id') + def _onchange_city_id(self): + if self.city_id: + self.city = self.city_id.name + self.country_id = self.city_id.country_id + self.state_id = self.city_id.state_id @api.onchange('state_id') - def onchange_state_id(self): + def _onchange_state_id(self): if self.state_id: self.country_id = self.state_id.country_id + + @api.constrains('state_id', 'country_id', 'city_id') + def constrains_country(self): + for rec in self: + if rec.state_id and rec.state_id.country_id != \ + rec.country_id: + raise ValidationError(_( + "The country of the state differs from the country in " + "location %s") % rec.name) + if rec.city_id and rec.city_id.country_id \ + != rec.country_id: + raise ValidationError(_( + "The country of the city differs from the country in " + "location %s") % rec.name) + if rec.city_id and rec.city_id.state_id \ + != rec.state_id: + raise ValidationError(_( + "The state of the city differs from the state in " + "location %s") % rec.name) diff --git a/base_location/models/company.py b/base_location/models/company.py index d1970d2ae..3c0e78560 100644 --- a/base_location/models/company.py +++ b/base_location/models/company.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). @@ -6,19 +5,60 @@ from odoo import models, fields, api class ResCompany(models.Model): - _inherit = 'res.company' - @api.onchange('better_zip_id') - def on_change_city(self): - if self.better_zip_id: - self.zip = self.better_zip_id.name - self.city = self.better_zip_id.city - self.state_id = self.better_zip_id.state_id - self.country_id = self.better_zip_id.country_id - - better_zip_id = fields.Many2one( + city_id = fields.Many2one( + 'res.city', + compute='_compute_address', + inverse='_inverse_city_id', + string="City" + ) + zip_id = fields.Many2one( 'res.better.zip', - string='Location', + string='ZIP Location', + compute='_compute_address', + inverse='_inverse_zip_id', + oldname="better_zip_id", help='Use the city name or the zip code to search the location', ) + # In order to keep the same logic used in odoo, fields must be computed + # and inversed, not related. This way, we can ensure that it works + # correctly on changes and inconsistencies cannot happen. + # When you make the fields related, the constrains added in res.partner + # will fail. because when you change the city_id in the company, you are + # effectively changing it in the partner. The constrains on the partner + # are evaluated before the inverse methods update the other fields (city, + # etc..). And we need constrains in the partner to ensure consistency. + # So, as a conclusion, address fields are very related to each other. + # Either you make them all related to the partner in company, or you + # don't for all of them. But mixing methods produces inconsistencies. + + country_enforce_cities = fields.Boolean( + related='country_id.enforce_cities' + ) + + def _get_company_address_fields(self, partner): + res = super(ResCompany, self)._get_company_address_fields(partner) + res['city_id'] = partner.city_id + res['zip_id'] = partner.zip_id + return res + + def _inverse_city_id(self): + for company in self: + company.partner_id.city_id = company.city_id + + def _inverse_zip_id(self): + for company in self: + company.partner_id.zip_id = company.zip_id + + @api.onchange('zip_id') + def _onchange_zip_id(self): + if self.zip_id: + self.zip = self.zip_id.name + self.city_id = self.zip_id.city_id + self.city = self.zip_id.city + self.country_id = self.zip_id.country_id + if self.country_id.enforce_cities: + self.state_id = self.city_id.state_id + else: + self.state_id = self.zip_id.state_id diff --git a/base_location/models/partner.py b/base_location/models/partner.py index 1eaa08cf3..61e172920 100644 --- a/base_location/models/partner.py +++ b/base_location/models/partner.py @@ -1,18 +1,66 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import models, fields, api +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError class ResPartner(models.Model): _inherit = 'res.partner' - zip_id = fields.Many2one('res.better.zip', 'City/Location') + zip_id = fields.Many2one('res.better.zip', 'ZIP Location') + + @api.onchange('city_id') + def _onchange_city_id(self): + if not self.zip_id: + super(ResPartner, self)._onchange_city_id() + if self.zip_id and self.city_id != self.zip_id.city_id: + self.zip_id = False + self.zip = False + self.city = False + if self.city_id: + return { + 'domain': { + 'zip_id': [('city_id', '=', self.city_id.id)] + }, + } + return {'domain': {'zip_id': []}} + + @api.onchange('state_id') + def _onchange_state_id(self): + if self.zip_id and self.state_id != self.zip_id.state_id: + self.zip_id = False + self.zip = False + self.city = False + + @api.onchange('country_id') + def _onchange_country_id(self): + res = super(ResPartner, self)._onchange_country_id() + if self.zip_id and self.zip_id.country_id != self.country_id: + self.zip_id = False + return res @api.onchange('zip_id') - def onchange_zip_id(self): + def _onchange_zip_id(self): if self.zip_id: + self.country_id = self.zip_id.country_id + if self.country_id.enforce_cities: + self.city_id = self.zip_id.city_id self.zip = self.zip_id.name - self.city = self.zip_id.city self.state_id = self.zip_id.state_id - self.country_id = self.zip_id.country_id + self.city = self.zip_id.city + + @api.constrains('zip_id', 'country_id', 'city_id', 'state_id') + def _check_zip(self): + for rec in self.filtered('zip_id'): + if rec.zip_id.state_id != rec.state_id: + raise ValidationError(_( + "The state of the partner %s differs from that in " + "location %s") % (rec.name, rec.zip_id.name)) + if rec.zip_id.country_id != rec.country_id: + raise ValidationError(_( + "The country of the partner %s differs from that in " + "location %s") % (rec.name, rec.zip_id.name)) + if rec.zip_id.city_id != rec.city_id: + raise ValidationError(_( + "The city of partner %s differs from that in " + "location %s") % (rec.name, rec.zip_id.name)) diff --git a/base_location/models/state.py b/base_location/models/state.py index 5c3b31f60..5161a34a6 100644 --- a/base_location/models/state.py +++ b/base_location/models/state.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/base_location/security/ir.model.access.csv b/base_location/security/ir.model.access.csv index c6562df1b..5ef6c8b46 100644 --- a/base_location/security/ir.model.access.csv +++ b/base_location/security/ir.model.access.csv @@ -1,3 +1,3 @@ "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "ir_model_access_betterzip0","res_better_zip group_user_all","model_res_better_zip",base.group_user,1,0,0,0 -"ir_model_access_betterzip1","res_better_zip group_user","model_res_better_zip","base.group_partner_manager",1,1,1,1 \ No newline at end of file +"ir_model_access_betterzip1","res_better_zip group_user","model_res_better_zip","base.group_partner_manager",1,1,1,1 diff --git a/base_location/tests/__init__.py b/base_location/tests/__init__.py index 3c8d5b3d9..372da9775 100644 --- a/base_location/tests/__init__.py +++ b/base_location/tests/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Yannick Vaucher, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from . import test_completion +from . import test_base_location diff --git a/base_location/tests/test_base_location.py b/base_location/tests/test_base_location.py new file mode 100644 index 000000000..b179f3b5d --- /dev/null +++ b/base_location/tests/test_base_location.py @@ -0,0 +1,270 @@ +# Copyright 2015 Yannick Vaucher, Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import TransactionCase +from odoo.exceptions import ValidationError + + +class TestBaseLocation(TransactionCase): + + def test_onchange_better_zip_state_id(self): + """ Test onchange on res.better.zip """ + usa_MA = self.env.ref('base.state_us_34') + better_zip1 = self.env['res.better.zip'].new(self.values_better_zip1()) + better_zip1.state_id = usa_MA + better_zip1._onchange_state_id() + self.assertEqual(better_zip1.country_id, usa_MA.country_id) + + def test_onchange_better_zip_city_id(self): + better_zip2 = self.env['res.better.zip'].new(self.values_better_zip2()) + better_zip2.city_id = self.city_madrid + better_zip2._onchange_city_id() + self.assertEqual(better_zip2.city, self.city_madrid.name) + + def test_onchange_better_zip_country_id(self): + better_zip1 = self.env['res.better.zip'].new(self.values_better_zip1()) + better_zip1.country_id = self.env.ref('base.es') + better_zip1._onchange_country_id() + self.assertFalse(better_zip1.state_id) + + def test_onchange_better_zip_none(self): + better_zip1 = self.env['res.better.zip'].new(self.values_better_zip1()) + better_zip1.country_id = False + better_zip1._onchange_country_id() + self.assertFalse(better_zip1.state_id) + + def test_onchange_partner_city_completion(self): + partner1 = self.env['res.partner'].new({ + 'name': 'Camptocamp', + }) + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + better_zip2.country_id.enforce_cities = True + partner1.zip_id = better_zip2 + partner1._onchange_zip_id() + self.assertEqual(partner1.zip, better_zip2.name) + self.assertEqual(partner1.city, better_zip2.city) + self.assertEqual(partner1.state_id, better_zip2.state_id) + self.assertEqual(partner1.country_id, better_zip2.country_id) + + def test_onchange_company_city_completion(self): + company = self.env['res.company'].new({'name': 'Test'}) + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + company.zip_id = better_zip1 + company._onchange_zip_id() + self.assertEqual(company.zip, better_zip1.name) + self.assertEqual(company.city, better_zip1.city) + self.assertEqual(company.state_id, better_zip1.state_id) + self.assertEqual(company.country_id, better_zip1.country_id) + + def test_company_address_fields(self): + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1() + ) + company = self.env['res.company'].create({ + 'name': 'Test', + }) + self.assertTrue(company.partner_id) + company.partner_id.write({ + 'zip_id': better_zip1.id, + 'state_id': better_zip1.state_id.id, + 'country_id': better_zip1.country_id.id, + 'city_id': better_zip1.city_id.id, + 'city': better_zip1.city, + 'zip': better_zip1.name, + }) + company._compute_address() + self.assertEqual(company.zip_id, company.partner_id.zip_id) + self.assertEqual(company.city_id, company.partner_id.city_id) + + def test_company_address_fields_inverse(self): + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2() + ) + company = self.env['res.company'].new({ + 'name': 'Test', + 'partner_id': self.env['res.partner'].new({}).id + # Partner must be initiated in order to be filled + }) + company.update({ + 'zip_id': better_zip2.id, + }) + company._inverse_city_id() + company._inverse_zip_id() + self.assertEqual(company.zip_id, company.partner_id.zip_id) + self.assertEqual(company.city_id, company.partner_id.city_id) + + def test_onchange_company_city_id_completion(self): + company = self.env['res.company'].new({'name': 'Test'}) + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + company.zip_id = better_zip2 + company._onchange_zip_id() + self.assertEqual(company.city_id, better_zip2.city_id) + + def test_constrains_better_zip_01(self): + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + + better_zip1.city_id = self.city_lausanne + with self.assertRaises(ValidationError): + better_zip2.city_id = better_zip1.city_id + + def test_constrains_better_zip_02(self): + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + + with self.assertRaises(ValidationError): + better_zip2.country_id = better_zip1.country_id + + def test_constrains_better_zip_03(self): + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + + with self.assertRaises(ValidationError): + better_zip2.state_id = better_zip1.state_id + + def test_constrains_better_zip_04(self): + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + + with self.assertRaises(ValidationError): + better_zip2.city_id = self.city_madrid + + def test_constrains_partner_01(self): + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + with self.assertRaises(ValidationError): + self.env['res.partner'].create({ + 'name': 'P1', + 'zip_id': better_zip2.id, + }) + + def test_constrains_partner_02(self): + better_zip2 = self.env['res.better.zip'].create( + self.values_better_zip2()) + partner = self.env['res.partner'].create({ + 'name': 'P1', + 'zip_id': better_zip2.id, + 'country_id': better_zip2.country_id.id, + 'state_id': better_zip2.state_id.id, + 'city_id': better_zip2.city_id.id, + }) + + with self.assertRaises(ValidationError): + partner.country_id = self.ref('base.ch') + + with self.assertRaises(ValidationError): + partner.state_id = self.state_vd.id, + + with self.assertRaises(ValidationError): + partner.city_id = self.city_lausanne + + def values_better_zip1(self): + return { + 'name': 1000, + 'city': 'Lausanne', + 'state_id': self.state_vd.id, + 'country_id': self.ref('base.ch'), + } + + def values_better_zip2(self): + return { + 'city_id': self.city_bcn.id, + 'city': self.city_bcn.name, + 'state_id': self.state_bcn.id, + 'country_id': self.ref('base.es'), + } + + def test_partner_onchange_country(self): + country_es = self.browse_ref('base.es') + country_es.enforce_cities = True + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + partner = self.env['res.partner'].new({ + 'name': 'TEST', + 'zip_id': better_zip1.id + }) + partner.country_id = country_es + partner._onchange_country_id() + self.assertFalse(partner.zip_id) + + def test_partner_onchange_city(self): + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + partner = self.env['res.partner'].new({ + 'name': 'TEST', + 'zip_id': better_zip1.id + }) + self.city_bcn.country_id.enforce_cities = False + partner.city_id = self.city_bcn + partner._onchange_city_id() + self.assertFalse(partner.zip_id) + partner.city_id = False + res = partner._onchange_city_id() + self.assertFalse(res['domain']['zip_id']) + + def test_partner_onchange_state(self): + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + partner = self.env['res.partner'].new({ + 'name': 'TEST', + 'zip_id': better_zip1.id + }) + partner.state_id = self.state_bcn + partner._onchange_state_id() + self.assertFalse(partner.zip_id) + + def test_display_name(self): + better_zip1 = self.env['res.better.zip'].create( + self.values_better_zip1()) + self.assertEqual( + better_zip1.display_name, '1000, Lausanne, Vaud, '+self.browse_ref( + 'base.ch' + ).name + ) + + def setUp(self): + super(TestBaseLocation, self).setUp() + self.state_vd = self.env['res.country.state'].create({ + 'name': 'Vaud', + 'code': 'VD', + 'country_id': self.ref('base.ch'), + }) + self.env['res.country'].browse(self.ref('base.es')).write({ + 'enforce_cities': True + }) + self.company = self.env.ref('base.main_company') + + self.state_bcn = self.env['res.country.state'].create({ + 'name': 'Barcelona', + 'code': '08', + 'country_id': self.ref('base.es'), + }) + self.state_madrid = self.env['res.country.state'].create({ + 'name': 'Madrid', + 'code': '28', + 'country_id': self.ref('base.es'), + }) + self.city_bcn = self.env['res.city'].create({ + 'name': 'Barcelona', + 'state_id': self.state_bcn.id, + 'country_id': self.ref('base.es'), + }) + self.city_madrid = self.env['res.city'].create({ + 'name': 'Madrid', + 'state_id': self.state_madrid.id, + 'country_id': self.ref('base.es'), + }) + self.city_lausanne = self.env['res.city'].create({ + 'name': 'Lausanne', + 'state_id': self.state_vd.id, + 'country_id': self.ref('base.ch'), + }) diff --git a/base_location/tests/test_completion.py b/base_location/tests/test_completion.py deleted file mode 100644 index cf75c05f3..000000000 --- a/base_location/tests/test_completion.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright 2015 Yannick Vaucher, Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo.tests.common import TransactionCase - - -class TestCompletion(TransactionCase): - - def test_onchange_better_zip_state_id(self): - """ Test onchange on res.better.zip """ - usa_MA = self.env.ref('base.state_us_34') - self.better_zip1.state_id = usa_MA - self.better_zip1.onchange_state_id() - self.assertEqual(self.better_zip1.country_id, usa_MA.country_id) - - def test_onchange_partner_city_completion(self): - self.partner1.zip_id = self.better_zip1 - self.partner1.onchange_zip_id() - self.assertEqual(self.partner1.zip, self.better_zip1.name) - self.assertEqual(self.partner1.city, self.better_zip1.city) - self.assertEqual(self.partner1.state_id, self.better_zip1.state_id) - self.assertEqual(self.partner1.country_id, self.better_zip1.country_id) - - def test_onchange_company_city_completion(self): - self.company.better_zip_id = self.better_zip1 - self.company.on_change_city() - self.assertEqual(self.company.zip, self.better_zip1.name) - self.assertEqual(self.company.city, self.better_zip1.city) - self.assertEqual(self.company.state_id, self.better_zip1.state_id) - self.assertEqual(self.company.country_id, self.better_zip1.country_id) - - def setUp(self): - super(TestCompletion, self).setUp() - state_vd = self.env['res.country.state'].create({ - 'name': 'Vaud', - 'code': 'VD', - 'country_id': self.ref('base.ch'), - }) - self.company = self.env.ref('base.main_company') - self.better_zip1 = self.env['res.better.zip'].create({ - 'name': 1000, - 'city': 'Lausanne', - 'state_id': state_vd.id, - 'country_id': self.ref('base.ch'), - }) - self.partner1 = self.env['res.partner'].create({ - 'name': 'Camptocamp', - }) diff --git a/base_location/views/better_zip_view.xml b/base_location/views/better_zip_view.xml index d384c7d8e..207c88e92 100644 --- a/base_location/views/better_zip_view.xml +++ b/base_location/views/better_zip_view.xml @@ -7,11 +7,20 @@
- - - - - + + + + + + + + + + +
@@ -41,16 +50,18 @@ - - - - + + + + - Cites/locations + Locations res.better.zip form tree,form @@ -59,13 +70,13 @@ - + + + + + + [('country_enforce_cities', '=', True)] + diff --git a/base_location/views/partner_view.xml b/base_location/views/partner_view.xml index cc3499b40..1e8a016e5 100644 --- a/base_location/views/partner_view.xml +++ b/base_location/views/partner_view.xml @@ -1,24 +1,26 @@ - res.partner.zip_id.2 res.partner - + + options="{'create_name_field': 'city', 'no_open': True, 'no_create': True}" + placeholder="Location completion" + class="oe_edit_only" + attrs="{'readonly': [('type', '=', 'contact'),('parent_id', '!=', False)]}"/> - + + options="{'create_name_field': 'city', 'no_open': True, 'no_create': True}" + placeholder="City completion" + class="oe_edit_only"/> + diff --git a/base_location/views/res_country_view.xml b/base_location/views/res_country_view.xml index d45cd0cb1..cbf0f3ff3 100644 --- a/base_location/views/res_country_view.xml +++ b/base_location/views/res_country_view.xml @@ -12,4 +12,20 @@ + + res.country + + + + + + + + From fd794ac1d31dfafc8becd8f9f8f767663b0f1cda Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 25 Nov 2017 07:36:02 +0100 Subject: [PATCH 20/27] OCA Transbot updated translations from Transifex --- base_location/i18n/am.po | 121 +++++++++++++++++++++++-------- base_location/i18n/ar.po | 114 ++++++++++++++++++++--------- base_location/i18n/bg.po | 118 +++++++++++++++++++++--------- base_location/i18n/bs.po | 114 ++++++++++++++++++++--------- base_location/i18n/ca.po | 118 +++++++++++++++++++++--------- base_location/i18n/cs.po | 114 ++++++++++++++++++++--------- base_location/i18n/da.po | 120 ++++++++++++++++++++++--------- base_location/i18n/de.po | 120 ++++++++++++++++++++++--------- base_location/i18n/el_GR.po | 118 +++++++++++++++++++++--------- base_location/i18n/en_GB.po | 114 ++++++++++++++++++++--------- base_location/i18n/es.po | 122 +++++++++++++++++++++---------- base_location/i18n/es_AR.po | 112 +++++++++++++++++++++-------- base_location/i18n/es_CL.po | 112 +++++++++++++++++++++-------- base_location/i18n/es_CO.po | 121 ++++++++++++++++++++++--------- base_location/i18n/es_CR.po | 114 ++++++++++++++++++++--------- base_location/i18n/es_DO.po | 112 +++++++++++++++++++++-------- base_location/i18n/es_EC.po | 114 ++++++++++++++++++++--------- base_location/i18n/es_ES.po | 114 ++++++++++++++++++++--------- base_location/i18n/es_MX.po | 114 ++++++++++++++++++++--------- base_location/i18n/es_PE.po | 112 +++++++++++++++++++++-------- base_location/i18n/es_PY.po | 112 +++++++++++++++++++++-------- base_location/i18n/es_VE.po | 114 ++++++++++++++++++++--------- base_location/i18n/et.po | 114 ++++++++++++++++++++--------- base_location/i18n/eu.po | 114 ++++++++++++++++++++--------- base_location/i18n/fa.po | 112 +++++++++++++++++++++-------- base_location/i18n/fi.po | 118 +++++++++++++++++++++--------- base_location/i18n/fr.po | 128 +++++++++++++++++++++++---------- base_location/i18n/fr_CA.po | 114 ++++++++++++++++++++--------- base_location/i18n/fr_CH.po | 112 +++++++++++++++++++++-------- base_location/i18n/gl.po | 118 +++++++++++++++++++++--------- base_location/i18n/he.po | 112 +++++++++++++++++++++-------- base_location/i18n/hr.po | 118 +++++++++++++++++++++--------- base_location/i18n/hr_HR.po | 122 +++++++++++++++++++++---------- base_location/i18n/hu.po | 114 ++++++++++++++++++++--------- base_location/i18n/id.po | 112 +++++++++++++++++++++-------- base_location/i18n/it.po | 122 +++++++++++++++++++++---------- base_location/i18n/ja.po | 114 ++++++++++++++++++++--------- base_location/i18n/ko.po | 112 +++++++++++++++++++++-------- base_location/i18n/lt.po | 114 ++++++++++++++++++++--------- base_location/i18n/lv.po | 114 ++++++++++++++++++++--------- base_location/i18n/mk.po | 114 ++++++++++++++++++++--------- base_location/i18n/mn.po | 114 ++++++++++++++++++++--------- base_location/i18n/nb.po | 114 ++++++++++++++++++++--------- base_location/i18n/nb_NO.po | 112 +++++++++++++++++++++-------- base_location/i18n/nl.po | 118 +++++++++++++++++++++--------- base_location/i18n/nl_BE.po | 114 ++++++++++++++++++++--------- base_location/i18n/nl_NL.po | 123 +++++++++++++++++++++---------- base_location/i18n/pl.po | 116 +++++++++++++++++++++--------- base_location/i18n/pt.po | 118 +++++++++++++++++++++--------- base_location/i18n/pt_BR.po | 123 +++++++++++++++++++++---------- base_location/i18n/pt_PT.po | 126 +++++++++++++++++++++++--------- base_location/i18n/ro.po | 114 ++++++++++++++++++++--------- base_location/i18n/ru.po | 114 ++++++++++++++++++++--------- base_location/i18n/sk.po | 114 ++++++++++++++++++++--------- base_location/i18n/sl.po | 120 ++++++++++++++++++++++--------- base_location/i18n/sr.po | 112 +++++++++++++++++++++-------- base_location/i18n/sr@latin.po | 116 +++++++++++++++++++++--------- base_location/i18n/sv.po | 114 ++++++++++++++++++++--------- base_location/i18n/th.po | 114 ++++++++++++++++++++--------- base_location/i18n/tr.po | 118 +++++++++++++++++++++--------- base_location/i18n/tr_TR.po | 114 ++++++++++++++++++++--------- base_location/i18n/uk.po | 112 +++++++++++++++++++++-------- base_location/i18n/vi.po | 114 ++++++++++++++++++++--------- base_location/i18n/vi_VN.po | 112 +++++++++++++++++++++-------- base_location/i18n/zh_CN.po | 118 +++++++++++++++++++++--------- base_location/i18n/zh_TW.po | 114 ++++++++++++++++++++--------- 66 files changed, 5482 insertions(+), 2158 deletions(-) diff --git a/base_location/i18n/am.po b/base_location/i18n/am.po index 2660a3c83..1b9abbf71 100644 --- a/base_location/i18n/am.po +++ b/base_location/i18n/am.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-10 03:39+0000\n" -"PO-Revision-Date: 2017-03-10 03:39+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,11 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -71,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -93,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -119,19 +125,31 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "ተባባሪ" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -144,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -158,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/ar.po b/base_location/i18n/ar.po index 9898f8470..ffc7d31e0 100644 --- a/base_location/i18n/ar.po +++ b/base_location/i18n/ar.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "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: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "أنشئ بواسطة" msgid "Created on" msgstr "أنشئ في" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "الاسم" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "الشريك" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/bg.po b/base_location/i18n/bg.po index 06f2727bb..9b81f435a 100644 --- a/base_location/i18n/bg.po +++ b/base_location/i18n/bg.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Създадено от" msgid "Created on" msgstr "Създадено на" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Име" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Партньор" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/bs.po b/base_location/i18n/bs.po index c93c48eaa..f319487ba 100644 --- a/base_location/i18n/bs.po +++ b/base_location/i18n/bs.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Kreirao" msgid "Created on" msgstr "Kreirano" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Ime" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/ca.po b/base_location/i18n/ca.po index 504a292dc..b47c59d0c 100644 --- a/base_location/i18n/ca.po +++ b/base_location/i18n/ca.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creat per" msgid "Created on" msgstr "Creat el" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nom" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Empresa" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/cs.po b/base_location/i18n/cs.po index 56e52a487..920560f1d 100644 --- a/base_location/i18n/cs.po +++ b/base_location/i18n/cs.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Vytvořil(a)" msgid "Created on" msgstr "Vytvořeno" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Název" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Společník" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po index 5d2804caa..4a15f9245 100644 --- a/base_location/i18n/da.po +++ b/base_location/i18n/da.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "Byer" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Byer/Loaktions administration" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "By" @@ -56,12 +51,6 @@ msgstr "Postnummer" msgid "City completion" msgstr "Slå by/postnummer op" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Postnr/by " - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "Virksomheder" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Oprettet af" msgid "Created on" msgstr "Oprettet den" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Postnr/by " +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Navn" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "Søg by" msgid "State" msgstr "Delstat" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Postnummer" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Søg på bynavn eller postnummer" @@ -169,3 +212,10 @@ msgstr "Søg på bynavn eller postnummer" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "Postnr." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/de.po b/base_location/i18n/de.po index 17ad4b5ef..a47e14440 100644 --- a/base_location/i18n/de.po +++ b/base_location/i18n/de.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 20:42+0000\n" -"PO-Revision-Date: 2017-05-01 20:42+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2017-12-13 03:42+0000\n" +"Last-Translator: OCA Transbot , 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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "Orte" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Standorte-Verwaltung" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Stadt" @@ -56,12 +51,6 @@ msgstr "Ortskennung" msgid "City completion" msgstr "Orts-Vervollständigung" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Stadt/Standort" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "Stadt/Standorte-Vervollständungsobjekt" msgid "Companies" msgstr "Unternehmen" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "Kontakt" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "erstellt von" msgid "Created on" msgstr "erstellt am" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Standort" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Bezeichnung" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "Suche Ort" msgid "State" msgstr "Bundesland" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Die offizielle Kennung der Stadt" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" "Verwenden Sie den Stadtnamen oder die PLZ, um nach diesem Standort zu suchen" @@ -170,3 +213,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "PLZ" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/el_GR.po b/base_location/i18n/el_GR.po index 687f1a87a..75676e09c 100644 --- a/base_location/i18n/el_GR.po +++ b/base_location/i18n/el_GR.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Δημιουργήθηκε από " msgid "Created on" msgstr "Δημιουργήθηκε στις" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Ονομασία" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Συνεργάτης" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/en_GB.po b/base_location/i18n/en_GB.po index c2debc4e0..a0e3ce4f9 100644 --- a/base_location/i18n/en_GB.po +++ b/base_location/i18n/en_GB.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Created by" msgid "Created on" msgstr "Created on" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Name" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index 3e40cc746..9b7ba6d26 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 20:42+0000\n" -"PO-Revision-Date: 2017-05-01 20:42+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2017-12-13 03:42+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" @@ -19,9 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" -msgstr "Ciudades/Ubicaciones" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." +msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids @@ -29,18 +32,10 @@ msgstr "Ciudades/Ubicaciones" msgid "Cities" msgstr "Ciudades" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "Ciudades/Ubicaciones" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Ciudad/Ubicaciones" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Ciudad" @@ -56,12 +51,6 @@ msgstr "Código de ciudad" msgid "City completion" msgstr "Autocompletado a partir de la ciudad" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Ciudad/Ubicación" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "Autocompletado de objetos a partir de ciudades/ubicaciones" msgid "Companies" msgstr "Compañías" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "Contacto" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Ubicación" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Empresa" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "Buscar ciudad" msgid "State" msgstr "Provincia" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "El código oficial para la ciudad" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" "Utilice el nombre de ciudad o el código postal para buscar la ubicación" @@ -170,3 +213,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "C.P." + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_AR.po b/base_location/i18n/es_AR.po index bc17abfc6..1a94159ba 100644 --- a/base_location/i18n/es_AR.po +++ b/base_location/i18n/es_AR.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_CL.po b/base_location/i18n/es_CL.po index e3fc9e6ef..e39fb9afc 100644 --- a/base_location/i18n/es_CL.po +++ b/base_location/i18n/es_CL.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_CO.po b/base_location/i18n/es_CO.po index b90344bf6..7f7c384da 100644 --- a/base_location/i18n/es_CO.po +++ b/base_location/i18n/es_CO.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2017 +# JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-01-31 03:42+0000\n" +"PO-Revision-Date: 2018-01-31 03:42+0000\n" +"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018\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" @@ -19,36 +20,31 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids #: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" +msgstr "Ciudades" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" -msgstr "" +msgstr "Ciudad" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_code msgid "City Code" -msgstr "" +msgstr "Código Ciudad" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_company_form_city @@ -56,12 +52,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +62,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +89,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +131,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +163,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +213,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_CR.po b/base_location/i18n/es_CR.po index 3f8510c26..e83379d42 100644 --- a/base_location/i18n/es_CR.po +++ b/base_location/i18n/es_CR.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Empresa" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_DO.po b/base_location/i18n/es_DO.po index dadf6b8ba..0d13355fb 100644 --- a/base_location/i18n/es_DO.po +++ b/base_location/i18n/es_DO.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_EC.po b/base_location/i18n/es_EC.po index 36a08360d..3478e9749 100644 --- a/base_location/i18n/es_EC.po +++ b/base_location/i18n/es_EC.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Empresa" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_ES.po b/base_location/i18n/es_ES.po index dbb4ef996..9a07ab10d 100644 --- a/base_location/i18n/es_ES.po +++ b/base_location/i18n/es_ES.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_MX.po b/base_location/i18n/es_MX.po index c3fe5a921..5e00e37de 100644 --- a/base_location/i18n/es_MX.po +++ b/base_location/i18n/es_MX.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Empresa" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_PE.po b/base_location/i18n/es_PE.po index c64de812c..3b01f52cd 100644 --- a/base_location/i18n/es_PE.po +++ b/base_location/i18n/es_PE.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_PY.po b/base_location/i18n/es_PY.po index 6cfc3194c..70a8af4fe 100644 --- a/base_location/i18n/es_PY.po +++ b/base_location/i18n/es_PY.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/es_VE.po b/base_location/i18n/es_VE.po index 94b54134d..fcdc3bbe1 100644 --- a/base_location/i18n/es_VE.po +++ b/base_location/i18n/es_VE.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Empresa" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/et.po b/base_location/i18n/et.po index 9bd678fca..6f1901239 100644 --- a/base_location/i18n/et.po +++ b/base_location/i18n/et.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Loonud" msgid "Created on" msgstr "Loodud" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nimi" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/eu.po b/base_location/i18n/eu.po index 7941d5c80..c2e914349 100644 --- a/base_location/i18n/eu.po +++ b/base_location/i18n/eu.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Nork sortua" msgid "Created on" msgstr "Created on" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Izena" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Kidea" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/fa.po b/base_location/i18n/fa.po index 8df411110..60592de2a 100644 --- a/base_location/i18n/fa.po +++ b/base_location/i18n/fa.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "ایجاد شده توسط" msgid "Created on" msgstr "ایجاد شده در" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "نام" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/fi.po b/base_location/i18n/fi.po index cf90f31c5..e24911afa 100644 --- a/base_location/i18n/fi.po +++ b/base_location/i18n/fi.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Luonut" msgid "Created on" msgstr "Luotu" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nimi" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Kumppani" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "Tila" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/fr.po b/base_location/i18n/fr.po index f4ab5c265..d136de28c 100644 --- a/base_location/i18n/fr.po +++ b/base_location/i18n/fr.po @@ -3,15 +3,15 @@ # * base_location # # Translators: -# OCA Transbot , 2016 -# leemannd , 2017 +# OCA Transbot , 2017 +# Nicolas JEUDY , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 20:42+0000\n" -"PO-Revision-Date: 2017-05-01 20:42+0000\n" -"Last-Translator: leemannd , 2017\n" +"POT-Creation-Date: 2018-01-03 20:26+0000\n" +"PO-Revision-Date: 2018-01-03 20:26+0000\n" +"Last-Translator: Nicolas JEUDY , 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" @@ -20,9 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" -msgstr "Villes / lieux" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." +msgstr "" +"Cocher cette case pour forcer l'utilisation de la liste déroulantes des " +"villes de ce pays lors de la saisie d'une adresse dans ce pays." #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids @@ -30,18 +35,10 @@ msgstr "Villes / lieux" msgid "Cities" msgstr "Villes" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "Villes / Lieux" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Cities/Locations Management" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Ville" @@ -57,12 +54,6 @@ msgstr "Code de la ville" msgid "City completion" msgstr "Complétion par ville" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Ville/location" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -73,6 +64,11 @@ msgstr "Objet de compléte de Ville / lieux" msgid "Companies" msgstr "Sociétés" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "Contacte" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -95,6 +91,17 @@ msgstr "Créé par" msgid "Created on" msgstr "Créé le" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Intitulé" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -123,27 +130,29 @@ msgstr "Mis à jour le" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude msgid "Latitude" -msgstr "" +msgstr "Latitude" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nom" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "Longitude" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -156,13 +165,49 @@ msgstr "Rechercher ville" msgid "State" msgstr "Etat" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Code officiel de la ville" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Utilisez le nom de la ville ou le zip lors des recherches" @@ -170,3 +215,10 @@ msgstr "Utilisez le nom de la ville ou le zip lors des recherches" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "ZIP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "Code postal" diff --git a/base_location/i18n/fr_CA.po b/base_location/i18n/fr_CA.po index 1ac5e71f3..c05dff2a3 100644 --- a/base_location/i18n/fr_CA.po +++ b/base_location/i18n/fr_CA.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Créé par" msgid "Created on" msgstr "Créé le" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nom" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/fr_CH.po b/base_location/i18n/fr_CH.po index ff0a4ce13..ad561544b 100644 --- a/base_location/i18n/fr_CH.po +++ b/base_location/i18n/fr_CH.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Créé par" msgid "Created on" msgstr "Créé le" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/gl.po b/base_location/i18n/gl.po index 16f373fb6..1954724ed 100644 --- a/base_location/i18n/gl.po +++ b/base_location/i18n/gl.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nome" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Empresa" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/he.po b/base_location/i18n/he.po index fe24c5994..05529422d 100644 --- a/base_location/i18n/he.po +++ b/base_location/i18n/he.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "נוצר על ידי" msgid "Created on" msgstr "נוצר ב-" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "שם" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/hr.po b/base_location/i18n/hr.po index 8efe09ce9..3eb642e8a 100644 --- a/base_location/i18n/hr.po +++ b/base_location/i18n/hr.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Kreirao" msgid "Created on" msgstr "Kreirano" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Naziv" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/hr_HR.po b/base_location/i18n/hr_HR.po index 3368aca26..7e34d49a5 100644 --- a/base_location/i18n/hr_HR.po +++ b/base_location/i18n/hr_HR.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 20:42+0000\n" -"PO-Revision-Date: 2017-05-01 20:42+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2017-12-13 03:42+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,9 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" -msgstr "Gradovi / Lokacije" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." +msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids @@ -29,18 +32,10 @@ msgstr "Gradovi / Lokacije" msgid "Cities" msgstr "Gradovi" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "Gradovi / Lokacije" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Upravljanje gradovima/lokacijama" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Grad" @@ -56,12 +51,6 @@ msgstr "Šifra grada" msgid "City completion" msgstr "Popunjavanje grada" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Grad/Lokacija" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "Objekt popunjavanja Grada/Lokacije" msgid "Companies" msgstr "Poduzeća" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "Kontakt" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Kreirao" msgid "Created on" msgstr "Kreirano" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Lokacija" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Naziv" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "Pretraži gradove" msgid "State" msgstr "Oblast/Županija" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Službena šifra ovog grada" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Koristite naziv ili šifru grada za pretraživanje" @@ -169,3 +212,10 @@ msgstr "Koristite naziv ili šifru grada za pretraživanje" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "ZIP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/hu.po b/base_location/i18n/hu.po index d00e3e719..f780baafa 100644 --- a/base_location/i18n/hu.po +++ b/base_location/i18n/hu.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Készítette" msgid "Created on" msgstr "Létrehozás dátuma" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Név" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/id.po b/base_location/i18n/id.po index 122547ef6..b4c7576a0 100644 --- a/base_location/i18n/id.po +++ b/base_location/i18n/id.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Dibuat oleh" msgid "Created on" msgstr "Dibuat pada" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nama" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/it.po b/base_location/i18n/it.po index 7e6090af4..74a958d5b 100644 --- a/base_location/i18n/it.po +++ b/base_location/i18n/it.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 20:42+0000\n" -"PO-Revision-Date: 2017-05-01 20:42+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2017-12-13 03:42+0000\n" +"Last-Translator: OCA Transbot , 2017\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" @@ -19,9 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" -msgstr "Città/luoghi" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." +msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids @@ -29,18 +32,10 @@ msgstr "Città/luoghi" msgid "Cities" msgstr "Città" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "Città/luoghi" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Gestione Città/Locazioni" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Città" @@ -56,12 +51,6 @@ msgstr "Codice Città" msgid "City completion" msgstr "Completamento città" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Città/Locazione" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "Città/luoghi di completamento oggetto" msgid "Companies" msgstr "Aziende" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "Contatto" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creato da" msgid "Created on" msgstr "Creato il" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Locazione" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nome" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "Ricerca città" msgid "State" msgstr "Provincia" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Il codice ufficiale per la città" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Usare il nome della città o il codice CAP per ricercare la locazione" @@ -169,3 +212,10 @@ msgstr "Usare il nome della città o il codice CAP per ricercare la locazione" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "CAP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/ja.po b/base_location/i18n/ja.po index ffc355d1d..18ddb62cb 100644 --- a/base_location/i18n/ja.po +++ b/base_location/i18n/ja.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "作成者" msgid "Created on" msgstr "作成日" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "名称" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "パートナ" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/ko.po b/base_location/i18n/ko.po index e10ae09c7..14d4781d6 100644 --- a/base_location/i18n/ko.po +++ b/base_location/i18n/ko.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "작성자" msgid "Created on" msgstr "작성일" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "이름" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/lt.po b/base_location/i18n/lt.po index 02963ff34..4fd050ee7 100644 --- a/base_location/i18n/lt.po +++ b/base_location/i18n/lt.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Sukūrė" msgid "Created on" msgstr "Sukurta" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Pavadinimas" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partneris" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/lv.po b/base_location/i18n/lv.po index 31fb16609..3aa60a9fb 100644 --- a/base_location/i18n/lv.po +++ b/base_location/i18n/lv.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Izveidoja" msgid "Created on" msgstr "Izveidots" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nosaukums" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partneris" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/mk.po b/base_location/i18n/mk.po index 513cd3a89..a14597cbf 100644 --- a/base_location/i18n/mk.po +++ b/base_location/i18n/mk.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Креирано од" msgid "Created on" msgstr "Креирано на" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Име" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Партнер" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/mn.po b/base_location/i18n/mn.po index 8a9439a68..0fb0e5516 100644 --- a/base_location/i18n/mn.po +++ b/base_location/i18n/mn.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Үүсгэгч" msgid "Created on" msgstr "Үүсгэсэн" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Нэр" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Харилцагч" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/nb.po b/base_location/i18n/nb.po index 2b60465c2..f96bd216d 100644 --- a/base_location/i18n/nb.po +++ b/base_location/i18n/nb.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Opprettet av" msgid "Created on" msgstr "Opprettet den" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Navn" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/nb_NO.po b/base_location/i18n/nb_NO.po index e0c88875c..727ecc9a3 100644 --- a/base_location/i18n/nb_NO.po +++ b/base_location/i18n/nb_NO.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Laget av" msgid "Created on" msgstr "Laget den" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/nl.po b/base_location/i18n/nl.po index 55453dac7..7cff9e39d 100644 --- a/base_location/i18n/nl.po +++ b/base_location/i18n/nl.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 20:42+0000\n" -"PO-Revision-Date: 2017-05-01 20:42+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2017-12-13 03:42+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Plaats" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Plaats/Locatie" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "Contact" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Aangemaakt door" msgid "Created on" msgstr "Aangemaakt op" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Naam" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Relatie" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/nl_BE.po b/base_location/i18n/nl_BE.po index cd93f8d0a..66c2a26a3 100644 --- a/base_location/i18n/nl_BE.po +++ b/base_location/i18n/nl_BE.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Gemaakt door" msgid "Created on" msgstr "Gemaakt op" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Naam:" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Relatie" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/nl_NL.po b/base_location/i18n/nl_NL.po index 86e211da6..51b41e642 100644 --- a/base_location/i18n/nl_NL.po +++ b/base_location/i18n/nl_NL.po @@ -3,13 +3,14 @@ # * base_location # # Translators: +# OCA Transbot , 2017 # Peter Hageman , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-25 06:38+0000\n" +"PO-Revision-Date: 2017-11-25 06:38+0000\n" "Last-Translator: Peter Hageman , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -19,28 +20,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids #: model:ir.ui.view,arch_db:base_location.better_zip_tree msgid "Cities" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" +msgstr "Plaatsen" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Plaats" @@ -48,7 +44,7 @@ msgstr "Plaats" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_code msgid "City Code" -msgstr "" +msgstr "Plaatscode" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_company_form_city @@ -56,12 +52,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +62,11 @@ msgstr "" msgid "Companies" msgstr "Bedrijven" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +89,17 @@ msgstr "Aangemaakt door" msgid "Created on" msgstr "Aangemaakt op" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "Plaatsen afdwingen" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,34 +131,60 @@ msgid "Latitude" msgstr "Breedtegraad" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" -msgstr "Lengtegraad" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" +msgstr "Locaties" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Naam" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "Locatiebeheer" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Relatie" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "Lengtegraad" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Search city" -msgstr "" +msgstr "Zoek plaats" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "State" +msgstr "Staat/Provincie" + +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" msgstr "" #. module: base_location @@ -161,7 +193,19 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Gebruik de plaatsnaam of de postcode om de locatie te bepalen" @@ -169,3 +213,10 @@ msgstr "Gebruik de plaatsnaam of de postcode om de locatie te bepalen" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "Postcode" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/pl.po b/base_location/i18n/pl.po index f66819643..18ba7f94e 100644 --- a/base_location/i18n/pl.po +++ b/base_location/i18n/pl.po @@ -6,21 +6,24 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" +"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: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Utworzone przez" msgid "Created on" msgstr "Utworzono" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nazwa" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/pt.po b/base_location/i18n/pt.po index b82eab158..463d2beeb 100644 --- a/base_location/i18n/pt.po +++ b/base_location/i18n/pt.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+0000\n" +"Last-Translator: OCA Transbot , 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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Criado por" msgid "Created on" msgstr "Criado em" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nome" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/pt_BR.po b/base_location/i18n/pt_BR.po index 1b397fa5e..22aee121d 100644 --- a/base_location/i18n/pt_BR.po +++ b/base_location/i18n/pt_BR.po @@ -3,15 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 -# falexandresilva , 2017 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: falexandresilva , 2017\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -30,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "Cidades" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "Cidades/Locais" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Gerenciamento Cidade/Locais" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Cidade" @@ -57,12 +51,6 @@ msgstr "Código da cidade" msgid "City completion" msgstr "Autocompletar de cidades" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Cidade/Localização" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -73,6 +61,11 @@ msgstr "Objeto autocompletar de Cidades/Locais" msgid "Companies" msgstr "Empresas" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -95,6 +88,17 @@ msgstr "Criado por" msgid "Created on" msgstr "Criado em" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nome a mostrar" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -126,24 +130,26 @@ msgid "Latitude" msgstr "Latitude" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Localização" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" -msgstr "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nome" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "Longitude" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -156,13 +162,49 @@ msgstr "Buscar cidade" msgid "State" msgstr "Estado" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "O código oficial da cidade" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Use o nome da cidade ou o CEP para pesquisar a localização" @@ -170,3 +212,10 @@ msgstr "Use o nome da cidade ou o CEP para pesquisar a localização" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "CEP" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/pt_PT.po b/base_location/i18n/pt_PT.po index 8423876a8..dc50add7c 100644 --- a/base_location/i18n/pt_PT.po +++ b/base_location/i18n/pt_PT.po @@ -3,15 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 -# Tiago Baptista , 2017 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-20 18:18+0000\n" -"PO-Revision-Date: 2017-01-20 18:18+0000\n" -"Last-Translator: Tiago Baptista , 2017\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -20,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -30,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "Cidades" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Cidade" @@ -57,11 +51,6 @@ msgstr "Código da Cidade" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "Empresas" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Criado por" msgid "Created on" msgstr "Criado em" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -120,19 +125,31 @@ msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Local" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nome" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -145,13 +162,49 @@ msgstr "Procurar cidade" msgid "State" msgstr "Estado" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Código oficial da cidade" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Utilize o nome da cidade ou o código postal para pesquisar o local" @@ -159,3 +212,10 @@ msgstr "Utilize o nome da cidade ou o código postal para pesquisar o local" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "Código Postal" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/ro.po b/base_location/i18n/ro.po index 4c3ce8ba2..fbef1aa96 100644 --- a/base_location/i18n/ro.po +++ b/base_location/i18n/ro.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" "MIME-Version: 1.0\n" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Creat de" msgid "Created on" msgstr "Creat la" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Nume" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partener" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/ru.po b/base_location/i18n/ru.po index c11b4bbd6..66485bb7c 100644 --- a/base_location/i18n/ru.po +++ b/base_location/i18n/ru.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "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: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Создано" msgid "Created on" msgstr "Создан" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Название" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Контрагент" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/sk.po b/base_location/i18n/sk.po index 22e316c8c..a4c3345ef 100644 --- a/base_location/i18n/sk.po +++ b/base_location/i18n/sk.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Vytvoril" msgid "Created on" msgstr "Vytvorené" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Meno" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/sl.po b/base_location/i18n/sl.po index a6e891fc4..82adc3f7b 100644 --- a/base_location/i18n/sl.po +++ b/base_location/i18n/sl.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-01 20:42+0000\n" -"PO-Revision-Date: 2017-05-01 20:42+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-12-13 03:42+0000\n" +"PO-Revision-Date: 2017-12-13 03:42+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "Kraji" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "Kraji/Upravljanje lokacij" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "Kraj" @@ -56,12 +51,6 @@ msgstr "Koda kraja" msgid "City completion" msgstr "Izpolnjevanje kraja" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "Kraj/Lokacija" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "Objekt izpolnjevanja kraja/lokacije" msgid "Companies" msgstr "Družbe" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "Stik" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Ustvaril" msgid "Created on" msgstr "Ustvarjeno" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" -msgstr "Lokacija" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Naziv" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "Iskanje kraja" msgid "State" msgstr "Zvezna država" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "Uradna koda kraja" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "Iskanje lokacije z uporabo imena kraja ali poštne številke" @@ -169,3 +212,10 @@ msgstr "Iskanje lokacije z uporabo imena kraja ali poštne številke" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "Poštna številka" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/sr.po b/base_location/i18n/sr.po index 849820d4f..95ff1010d 100644 --- a/base_location/i18n/sr.po +++ b/base_location/i18n/sr.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "" msgid "Created on" msgstr "Kreiran" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Ime" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/sr@latin.po b/base_location/i18n/sr@latin.po index 303affca3..c62ce8e0d 100644 --- a/base_location/i18n/sr@latin.po +++ b/base_location/i18n/sr@latin.po @@ -6,12 +6,12 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Kreirao" msgid "Created on" msgstr "Kreiran" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Ime:" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/sv.po b/base_location/i18n/sv.po index e7897c4b6..55b5978b6 100644 --- a/base_location/i18n/sv.po +++ b/base_location/i18n/sv.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Skapad av" msgid "Created on" msgstr "Skapad den" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Namn" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Företag" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/th.po b/base_location/i18n/th.po index 3c906dedd..7ff237cac 100644 --- a/base_location/i18n/th.po +++ b/base_location/i18n/th.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "สร้างโดย" msgid "Created on" msgstr "สร้างเมื่อ" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "ชื่อ" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "พาร์ทเนอร์" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/tr.po b/base_location/i18n/tr.po index c1a494014..3a38341c1 100644 --- a/base_location/i18n/tr.po +++ b/base_location/i18n/tr.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Oluşturan" msgid "Created on" msgstr "Oluşturuldu" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Adı" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "İş Ortağı" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/tr_TR.po b/base_location/i18n/tr_TR.po index 2db05ef27..01eb98e4b 100644 --- a/base_location/i18n/tr_TR.po +++ b/base_location/i18n/tr_TR.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Oluşturan" msgid "Created on" msgstr "Oluşturulma tarihi" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Ad" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Ortak" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/uk.po b/base_location/i18n/uk.po index 87cdc9c36..ee39d2653 100644 --- a/base_location/i18n/uk.po +++ b/base_location/i18n/uk.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Створив" msgid "Created on" msgstr "Дата створення" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Name" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/vi.po b/base_location/i18n/vi.po index 5f7edc1c2..e39d45fb8 100644 --- a/base_location/i18n/vi.po +++ b/base_location/i18n/vi.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Được tạo bởi" msgid "Created on" msgstr "Được tạo vào" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Tên" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "Đối tác" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/vi_VN.po b/base_location/i18n/vi_VN.po index 02a519b60..6f35c2d8d 100644 --- a/base_location/i18n/vi_VN.po +++ b/base_location/i18n/vi_VN.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "Tạo bởi" msgid "Created on" msgstr "Tạo vào" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +130,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "Tên" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/zh_CN.po b/base_location/i18n/zh_CN.po index a064d0f41..4679587df 100644 --- a/base_location/i18n/zh_CN.po +++ b/base_location/i18n/zh_CN.po @@ -3,14 +3,14 @@ # * base_location # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "创建者" msgid "Created on" msgstr "创建时间" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "名称" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "业务伙伴" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/zh_TW.po b/base_location/i18n/zh_TW.po index ba243fe11..73ca9451b 100644 --- a/base_location/i18n/zh_TW.po +++ b/base_location/i18n/zh_TW.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-10 01:50+0000\n" -"PO-Revision-Date: 2017-06-10 01:50+0000\n" +"POT-Creation-Date: 2017-11-22 03:38+0000\n" +"PO-Revision-Date: 2017-11-22 03:38+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" @@ -19,8 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +32,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +51,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +61,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +88,17 @@ msgstr "建立者" msgid "Created on" msgstr "建立於" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,24 +130,26 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" -msgstr "名稱" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" -msgstr "夥伴" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -155,13 +162,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:64 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:93 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:60 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:88 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:98 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:56 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +212,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" From 0d3b5087a8c95fc6a53c2810c3c17405f34edbab Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Fri, 20 Apr 2018 06:48:13 +0200 Subject: [PATCH 21/27] [IMP] base_location: Include onchange for state Incredibly not included in Odoo core. --- base_location/__openerp__.py | 3 ++- base_location/models/company.py | 6 ++++++ base_location/models/partner.py | 6 ++++++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index ab99a039d..1d4810eba 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -1,9 +1,10 @@ # Copyright 2016 Nicolas Bessi, Camptocamp SA +# Copyright 2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Location management (aka Better ZIP)', - 'version': '11.0.1.0.0', + 'version': '11.0.1.0.1', 'depends': [ 'base_address_city' ], diff --git a/base_location/models/company.py b/base_location/models/company.py index 3c0e78560..1016a1d23 100644 --- a/base_location/models/company.py +++ b/base_location/models/company.py @@ -1,4 +1,5 @@ # Copyright 2016 Nicolas Bessi, Camptocamp SA +# Copyright 2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, fields, api @@ -62,3 +63,8 @@ class ResCompany(models.Model): self.state_id = self.city_id.state_id else: self.state_id = self.zip_id.state_id + + @api.onchange('state_id') + def onchange_state_id(self): + if self.state_id.country_id: + self.country_id = self.state_id.country_id.id diff --git a/base_location/models/partner.py b/base_location/models/partner.py index 61e172920..befddd1ff 100644 --- a/base_location/models/partner.py +++ b/base_location/models/partner.py @@ -1,4 +1,5 @@ # Copyright 2016 Nicolas Bessi, Camptocamp SA +# Copyright 2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models, _ @@ -64,3 +65,8 @@ class ResPartner(models.Model): raise ValidationError(_( "The city of partner %s differs from that in " "location %s") % (rec.name, rec.zip_id.name)) + + @api.onchange('state_id') + def onchange_state_id(self): + if self.state_id.country_id: + self.country_id = self.state_id.country_id.id From 3944b9081eb3647e82f735373350ae436d7d6a56 Mon Sep 17 00:00:00 2001 From: Carli Samuele Date: Wed, 16 May 2018 18:51:01 +0200 Subject: [PATCH 22/27] [IMP] base_location: name_search improvement (#585) --- base_location/models/better_zip.py | 8 +++ base_location/tests/test_base_location.py | 60 +++++++++++++++++++++++ 2 files changed, 68 insertions(+) diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py index be949fe23..991ffa6c8 100644 --- a/base_location/models/better_zip.py +++ b/base_location/models/better_zip.py @@ -51,6 +51,14 @@ class BetterZip(models.Model): result.append((rec.id, ", ".join(name))) return result + @api.model + def name_search(self, name='', args=None, operator='ilike', limit=100): + args = list(args or []) + args += ['|', ('city', operator, name), + '|', ('name', operator, name), ('code', operator, name)] + recs = self.search(args, limit=limit) + return recs.name_get() + @api.onchange('country_id') def _onchange_country_id(self): if self.state_id.country_id != self.country_id: diff --git a/base_location/tests/test_base_location.py b/base_location/tests/test_base_location.py index b179f3b5d..b86817bcb 100644 --- a/base_location/tests/test_base_location.py +++ b/base_location/tests/test_base_location.py @@ -231,6 +231,66 @@ class TestBaseLocation(TransactionCase): ).name ) + def test_name_search___can_find_using_city_name_or_zip_or_code(self): + barcelona_data = { + 'city_id': self.city_bcn.id, + 'city': self.city_bcn.name, + 'name': '444', + 'code': 'BA', + 'state_id': self.state_bcn.id, + 'country_id': self.ref('base.es'), + } + madrid_data = { + 'city_id': self.city_madrid.id, + 'city': self.city_madrid.name, + 'name': '555', + 'code': 'MD', + 'state_id': self.state_madrid.id, + 'country_id': self.ref('base.es'), + } + lausanne_data = { + 'city_id': self.city_lausanne.id, + 'city': self.city_lausanne.name, + 'name': '666', + 'code': 'LA', + 'state_id': self.state_vd.id, + 'country_id': self.ref('base.ch'), + } + + barcelona = self.env['res.better.zip'].create(barcelona_data) + madrid = self.env['res.better.zip'].create(madrid_data) + lausanne = self.env['res.better.zip'].create(lausanne_data) + + found_recs = self.env['res.better.zip'].name_search(name='444') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], barcelona.id) + found_recs = self.env['res.better.zip'].name_search(name='Barcelona') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], barcelona.id) + found_recs = self.env['res.better.zip'].name_search(name='BA') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], barcelona.id) + + found_recs = self.env['res.better.zip'].name_search(name='555') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], madrid.id) + found_recs = self.env['res.better.zip'].name_search(name='Madrid') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], madrid.id) + found_recs = self.env['res.better.zip'].name_search(name='MD') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], madrid.id) + + found_recs = self.env['res.better.zip'].name_search(name='666') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], lausanne.id) + found_recs = self.env['res.better.zip'].name_search(name='Lausanne') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], lausanne.id) + found_recs = self.env['res.better.zip'].name_search(name='LA') + self.assertEqual(len(found_recs), 1) + self.assertEqual(found_recs[0][0], lausanne.id) + def setUp(self): super(TestBaseLocation, self).setUp() self.state_vd = self.env['res.country.state'].create({ From 2486f35ed07513d88f90f5be61cf927031d93442 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Fri, 15 Jun 2018 23:33:34 +0200 Subject: [PATCH 23/27] [UPD] Update base_location.pot --- base_location/i18n/am.po | 16 +-- base_location/i18n/ar.po | 19 +-- base_location/i18n/base_location.pot | 183 +++++++++++++++++++++------ base_location/i18n/bg.po | 16 +-- base_location/i18n/bs.po | 19 +-- base_location/i18n/ca.po | 16 +-- base_location/i18n/cs.po | 16 +-- base_location/i18n/da.po | 16 +-- base_location/i18n/de.po | 16 +-- base_location/i18n/el_GR.po | 19 +-- base_location/i18n/en_GB.po | 19 +-- base_location/i18n/es.po | 16 +-- base_location/i18n/es_AR.po | 19 +-- base_location/i18n/es_CL.po | 19 +-- base_location/i18n/es_CO.po | 22 ++-- base_location/i18n/es_CR.po | 19 +-- base_location/i18n/es_DO.po | 19 +-- base_location/i18n/es_EC.po | 19 +-- base_location/i18n/es_ES.po | 19 +-- base_location/i18n/es_MX.po | 19 +-- base_location/i18n/es_PE.po | 19 +-- base_location/i18n/es_PY.po | 19 +-- base_location/i18n/es_VE.po | 19 +-- base_location/i18n/et.po | 16 +-- base_location/i18n/eu.po | 16 +-- base_location/i18n/fa.po | 16 +-- base_location/i18n/fi.po | 16 +-- base_location/i18n/fr.po | 16 +-- base_location/i18n/fr_CA.po | 19 +-- base_location/i18n/fr_CH.po | 19 +-- base_location/i18n/gl.po | 16 +-- base_location/i18n/gl_ES.po | 111 +++++++++++----- base_location/i18n/he.po | 16 +-- base_location/i18n/hr.po | 19 +-- base_location/i18n/hr_HR.po | 22 ++-- base_location/i18n/hu.po | 16 +-- base_location/i18n/id.po | 16 +-- base_location/i18n/it.po | 16 +-- base_location/i18n/ja.po | 16 +-- base_location/i18n/ko.po | 16 +-- base_location/i18n/lt.po | 19 +-- base_location/i18n/lt_LT.po | 114 ++++++++++++----- base_location/i18n/lv.po | 19 +-- base_location/i18n/mk.po | 16 +-- base_location/i18n/mn.po | 16 +-- base_location/i18n/nb.po | 19 +-- base_location/i18n/nb_NO.po | 19 +-- base_location/i18n/nl.po | 16 +-- base_location/i18n/nl_BE.po | 19 +-- base_location/i18n/nl_NL.po | 19 +-- base_location/i18n/pl.po | 20 +-- base_location/i18n/pt.po | 16 +-- base_location/i18n/pt_BR.po | 19 +-- base_location/i18n/pt_PT.po | 19 +-- base_location/i18n/ro.po | 19 +-- base_location/i18n/ru.po | 20 +-- base_location/i18n/sk.po | 16 +-- base_location/i18n/sl.po | 19 +-- base_location/i18n/sr.po | 19 +-- base_location/i18n/sr@latin.po | 22 ++-- base_location/i18n/sv.po | 16 +-- base_location/i18n/th.po | 16 +-- base_location/i18n/tr.po | 16 +-- base_location/i18n/tr_TR.po | 19 +-- base_location/i18n/uk.po | 19 +-- base_location/i18n/vi.po | 16 +-- base_location/i18n/vi_VN.po | 19 +-- base_location/i18n/zh_CN.po | 19 +-- base_location/i18n/zh_TW.po | 19 +-- 69 files changed, 918 insertions(+), 671 deletions(-) diff --git a/base_location/i18n/am.po b/base_location/i18n/am.po index 1b9abbf71..3c6e925d1 100644 --- a/base_location/i18n/am.po +++ b/base_location/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/ar.po b/base_location/i18n/ar.po index ffc7d31e0..036856d90 100644 --- a/base_location/i18n/ar.po +++ b/base_location/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/base_location.pot b/base_location/i18n/base_location.pot index 078e79ab2..17ed884bd 100644 --- a/base_location/i18n/base_location.pot +++ b/base_location/i18n/base_location.pot @@ -1,13 +1,11 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-12 22:33+0000\n" -"PO-Revision-Date: 2013-12-12 22:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,34 +14,39 @@ msgstr "" "Plural-Forms: \n" #. module: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations Management" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "Check this box to ensure every address created in that country has a 'City' chosen in the list of the country's cities." msgstr "" #. module: base_location -#: field:res.better.zip,city:0 -msgid "City" +#: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids +#: model:ir.ui.view,arch_db:base_location.better_zip_tree +msgid "Cities" msgstr "" #. module: base_location -#: view:res.better.zip:0 -#: field:res.better.zip,name:0 -msgid "ZIP" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id +#: model:ir.ui.view,arch_db:base_location.better_zip_form +msgid "City" msgstr "" #. module: base_location -#: field:res.better.zip,state_id:0 -msgid "State" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code +msgid "City Code" msgstr "" #. module: base_location -#: field:res.better.zip,country_id:0 -msgid "Country" +#: model:ir.ui.view,arch_db:base_location.view_company_form_city +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "City completion" msgstr "" #. module: base_location -#: field:res.better.zip,priority:0 -msgid "Priority" +#: model:ir.model,name:base_location.model_res_better_zip +msgid "City/locations completion object" msgstr "" #. module: base_location @@ -52,63 +55,161 @@ msgid "Companies" msgstr "" #. module: base_location -#: field:res.better.zip,code:0 -msgid "City Code" +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip -msgid " City/locations completion object" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +#: model:ir.ui.view,arch_db:base_location.view_country_search +msgid "Country" msgstr "" #. module: base_location -#: help:res.company,better_zip_id:0 -msgid "Use the city name or the zip code to search the location" +#: model:ir.model,name:base_location.model_res_country_state +msgid "Country state" msgstr "" #. module: base_location -#: field:res.partner,zip_id:0 -msgid "City/Location" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +msgid "Created by" msgstr "" #. module: base_location -#: view:res.better.zip:0 -msgid "Search city" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +msgid "Created on" msgstr "" #. module: base_location -#: field:res.company,better_zip_id:0 -msgid "Location" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" msgstr "" #. module: base_location -#: model:ir.ui.menu,name:base_location.zip_base -msgid "Cities/Locations Management" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Group By" msgstr "" #. module: base_location -#: view:res.company:0 -#: view:res.partner:0 -msgid "City completion" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +msgid "ID" msgstr "" #. module: base_location -#: field:res.country.state,better_zip_ids:0 -msgid "Cities" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +msgid "Last Modified on" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_country_state -msgid "Country state" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude +msgid "Latitude" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" +msgstr "" + +#. module: base_location +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: help:res.better.zip,code:0 +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" +msgstr "" + +#. module: base_location +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "Search city" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id +#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter +msgid "State" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:65 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:101 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:61 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:96 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" +#. module: base_location +#: code:addons/base_location/models/better_zip.py:106 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:57 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +msgid "ZIP" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" + diff --git a/base_location/i18n/bg.po b/base_location/i18n/bg.po index 9b81f435a..692c4bcb6 100644 --- a/base_location/i18n/bg.po +++ b/base_location/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/bs.po b/base_location/i18n/bs.po index f319487ba..cbb118f88 100644 --- a/base_location/i18n/bs.po +++ b/base_location/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/ca.po b/base_location/i18n/ca.po index b47c59d0c..c4542aafc 100644 --- a/base_location/i18n/ca.po +++ b/base_location/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/cs.po b/base_location/i18n/cs.po index 920560f1d..759b82371 100644 --- a/base_location/i18n/cs.po +++ b/base_location/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po index 4a15f9245..aa6bd4cf9 100644 --- a/base_location/i18n/da.po +++ b/base_location/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "Delstat" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "Postnummer" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/de.po b/base_location/i18n/de.po index a47e14440..976210f07 100644 --- a/base_location/i18n/de.po +++ b/base_location/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-13 03:42+0000\n" "Last-Translator: OCA Transbot , 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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "Bundesland" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "Die offizielle Kennung der Stadt" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/el_GR.po b/base_location/i18n/el_GR.po index 75676e09c..699becb0c 100644 --- a/base_location/i18n/el_GR.po +++ b/base_location/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/en_GB.po b/base_location/i18n/en_GB.po index a0e3ce4f9..1f0032216 100644 --- a/base_location/i18n/en_GB.po +++ b/base_location/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index 9b7ba6d26..423da73fb 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-13 03:42+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "Provincia" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "El código oficial para la ciudad" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_AR.po b/base_location/i18n/es_AR.po index 1a94159ba..f82d675b4 100644 --- a/base_location/i18n/es_AR.po +++ b/base_location/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_CL.po b/base_location/i18n/es_CL.po index e39fb9afc..814c05f20 100644 --- a/base_location/i18n/es_CL.po +++ b/base_location/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_CO.po b/base_location/i18n/es_CO.po index 7f7c384da..7da14d70e 100644 --- a/base_location/i18n/es_CO.po +++ b/base_location/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 # JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018 @@ -11,12 +11,14 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-01-31 03:42+0000\n" "PO-Revision-Date: 2018-01-31 03:42+0000\n" -"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA , 2018\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: base_location @@ -164,25 +166,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -193,13 +195,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_CR.po b/base_location/i18n/es_CR.po index e83379d42..19f8cdcb4 100644 --- a/base_location/i18n/es_CR.po +++ b/base_location/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_DO.po b/base_location/i18n/es_DO.po index 0d13355fb..227bde8fb 100644 --- a/base_location/i18n/es_DO.po +++ b/base_location/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_EC.po b/base_location/i18n/es_EC.po index 3478e9749..822ae95e0 100644 --- a/base_location/i18n/es_EC.po +++ b/base_location/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_ES.po b/base_location/i18n/es_ES.po index 9a07ab10d..0e94d69f8 100644 --- a/base_location/i18n/es_ES.po +++ b/base_location/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_MX.po b/base_location/i18n/es_MX.po index 5e00e37de..ccf836d53 100644 --- a/base_location/i18n/es_MX.po +++ b/base_location/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_PE.po b/base_location/i18n/es_PE.po index 3b01f52cd..897def3aa 100644 --- a/base_location/i18n/es_PE.po +++ b/base_location/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_PY.po b/base_location/i18n/es_PY.po index 70a8af4fe..e896833cd 100644 --- a/base_location/i18n/es_PY.po +++ b/base_location/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/es_VE.po b/base_location/i18n/es_VE.po index fcdc3bbe1..cc59e5c72 100644 --- a/base_location/i18n/es_VE.po +++ b/base_location/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/et.po b/base_location/i18n/et.po index 6f1901239..2dbb116d2 100644 --- a/base_location/i18n/et.po +++ b/base_location/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/eu.po b/base_location/i18n/eu.po index c2e914349..6717f0924 100644 --- a/base_location/i18n/eu.po +++ b/base_location/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/fa.po b/base_location/i18n/fa.po index 60592de2a..7672e8277 100644 --- a/base_location/i18n/fa.po +++ b/base_location/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/fi.po b/base_location/i18n/fi.po index e24911afa..9636485e1 100644 --- a/base_location/i18n/fi.po +++ b/base_location/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "Tila" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/fr.po b/base_location/i18n/fr.po index d136de28c..835013380 100644 --- a/base_location/i18n/fr.po +++ b/base_location/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 # Nicolas JEUDY , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-01-03 20:26+0000\n" "Last-Translator: Nicolas JEUDY , 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: base_location @@ -166,25 +166,25 @@ msgid "State" msgstr "Etat" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -195,13 +195,13 @@ msgid "The official code for the city" msgstr "Code officiel de la ville" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/fr_CA.po b/base_location/i18n/fr_CA.po index c05dff2a3..989fe1821 100644 --- a/base_location/i18n/fr_CA.po +++ b/base_location/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/fr_CH.po b/base_location/i18n/fr_CH.po index ad561544b..92bc9f46c 100644 --- a/base_location/i18n/fr_CH.po +++ b/base_location/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/gl.po b/base_location/i18n/gl.po index 1954724ed..f1283d6f1 100644 --- a/base_location/i18n/gl.po +++ b/base_location/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/gl_ES.po b/base_location/i18n/gl_ES.po index 32409ac1a..4bf60b310 100644 --- a/base_location/i18n/gl_ES.po +++ b/base_location/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,16 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-06-10 01:50+0000\n" "PO-Revision-Date: 2017-06-10 01:50+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: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +33,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +52,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +62,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +89,17 @@ msgstr "" msgid "Created on" msgstr "" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +131,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +163,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:65 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:101 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:61 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:96 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:106 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:57 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +213,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/he.po b/base_location/i18n/he.po index 05529422d..cc1bacf32 100644 --- a/base_location/i18n/he.po +++ b/base_location/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/hr.po b/base_location/i18n/hr.po index 3eb642e8a..0a8c43b18 100644 --- a/base_location/i18n/hr.po +++ b/base_location/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/hr_HR.po b/base_location/i18n/hr_HR.po index 7e34d49a5..cca5c3073 100644 --- a/base_location/i18n/hr_HR.po +++ b/base_location/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-13 03:42+0000\n" "PO-Revision-Date: 2017-12-13 03:42+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +165,25 @@ msgid "State" msgstr "Oblast/Županija" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +194,13 @@ msgid "The official code for the city" msgstr "Službena šifra ovog grada" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/hu.po b/base_location/i18n/hu.po index f780baafa..f5e2f9336 100644 --- a/base_location/i18n/hu.po +++ b/base_location/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/id.po b/base_location/i18n/id.po index b4c7576a0..2995d677a 100644 --- a/base_location/i18n/id.po +++ b/base_location/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/it.po b/base_location/i18n/it.po index 74a958d5b..67e0b7ec4 100644 --- a/base_location/i18n/it.po +++ b/base_location/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-13 03:42+0000\n" "Last-Translator: OCA Transbot , 2017\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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "Provincia" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "Il codice ufficiale per la città" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/ja.po b/base_location/i18n/ja.po index 18ddb62cb..1463f42e2 100644 --- a/base_location/i18n/ja.po +++ b/base_location/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/ko.po b/base_location/i18n/ko.po index 14d4781d6..c7b12df10 100644 --- a/base_location/i18n/ko.po +++ b/base_location/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/lt.po b/base_location/i18n/lt.po index 4fd050ee7..d69d70332 100644 --- a/base_location/i18n/lt.po +++ b/base_location/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/lt_LT.po b/base_location/i18n/lt_LT.po index a2cdc8e73..5f4dd1a95 100644 --- a/base_location/i18n/lt_LT.po +++ b/base_location/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,16 +11,21 @@ msgstr "" "POT-Creation-Date: 2017-06-10 01:50+0000\n" "PO-Revision-Date: 2017-06-10 01:50+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: base_location -#: model:ir.actions.act_window,name:base_location.action_zip_tree -msgid "Cites/locations" +#: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +msgid "" +"Check this box to ensure every address created in that country has a 'City' " +"chosen in the list of the country's cities." msgstr "" #. module: base_location @@ -29,18 +34,10 @@ msgstr "" msgid "Cities" msgstr "" -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_menu -msgid "Cities/Locations" -msgstr "" - -#. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Cities/Locations Management" -msgstr "" - #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_city +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_city_id +#: model:ir.model.fields,field_description:base_location.field_res_company_city_id #: model:ir.ui.view,arch_db:base_location.better_zip_form msgid "City" msgstr "" @@ -56,12 +53,6 @@ msgstr "" msgid "City completion" msgstr "" -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id -#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id -msgid "City/Location" -msgstr "" - #. module: base_location #: model:ir.model,name:base_location.model_res_better_zip msgid "City/locations completion object" @@ -72,6 +63,11 @@ msgstr "" msgid "Companies" msgstr "" +#. module: base_location +#: model:ir.model,name:base_location.model_res_partner +msgid "Contact" +msgstr "" + #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_country_id #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -94,6 +90,17 @@ msgstr "Sukūrė" msgid "Created on" msgstr "Sukurta" +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +msgid "Display Name" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities +#: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities +msgid "Enforce Cities" +msgstr "" + #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Group By" @@ -125,23 +132,25 @@ msgid "Latitude" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_company_better_zip_id -msgid "Location" +#: model:ir.ui.view,arch_db:base_location.view_partner_form +msgid "Location completion" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" +#: model:ir.actions.act_window,name:base_location.action_zip_tree +#: model:ir.ui.menu,name:base_location.locations_menu +#: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Locations" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name -msgid "Name" +#: model:ir.ui.menu,name:base_location.locations_root_menu +msgid "Locations Management" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_partner -msgid "Partner" +#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude +msgid "Longitude" msgstr "" #. module: base_location @@ -155,13 +164,49 @@ msgstr "" msgid "State" msgstr "" +#. module: base_location +#: code:addons/base_location/models/partner.py:65 +#, python-format +msgid "The city of partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:101 +#, python-format +msgid "The country of the city differs from the country in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:61 +#, python-format +msgid "The country of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/better_zip.py:96 +#, python-format +msgid "The country of the state differs from the country in location %s" +msgstr "" + #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code msgid "The official code for the city" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_company_better_zip_id +#: code:addons/base_location/models/better_zip.py:106 +#, python-format +msgid "The state of the city differs from the state in location %s" +msgstr "" + +#. module: base_location +#: code:addons/base_location/models/partner.py:57 +#, python-format +msgid "The state of the partner %s differs from that in location %s" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,help:base_location.field_res_company_zip_id msgid "Use the city name or the zip code to search the location" msgstr "" @@ -169,3 +214,10 @@ msgstr "" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_name msgid "ZIP" msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_company_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_users_zip_id +msgid "ZIP Location" +msgstr "" diff --git a/base_location/i18n/lv.po b/base_location/i18n/lv.po index 3aa60a9fb..97ddb9ca3 100644 --- a/base_location/i18n/lv.po +++ b/base_location/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/mk.po b/base_location/i18n/mk.po index a14597cbf..184b9ca0f 100644 --- a/base_location/i18n/mk.po +++ b/base_location/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/mn.po b/base_location/i18n/mn.po index 0fb0e5516..e96d72a73 100644 --- a/base_location/i18n/mn.po +++ b/base_location/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/nb.po b/base_location/i18n/nb.po index f96bd216d..795ca2de9 100644 --- a/base_location/i18n/nb.po +++ b/base_location/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/nb_NO.po b/base_location/i18n/nb_NO.po index 727ecc9a3..e591a9dbc 100644 --- a/base_location/i18n/nb_NO.po +++ b/base_location/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/nl.po b/base_location/i18n/nl.po index 7cff9e39d..ec4497654 100644 --- a/base_location/i18n/nl.po +++ b/base_location/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-13 03:42+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/nl_BE.po b/base_location/i18n/nl_BE.po index 66c2a26a3..4528509ba 100644 --- a/base_location/i18n/nl_BE.po +++ b/base_location/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/nl_NL.po b/base_location/i18n/nl_NL.po index 51b41e642..adf345e29 100644 --- a/base_location/i18n/nl_NL.po +++ b/base_location/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-11-25 06:38+0000\n" "PO-Revision-Date: 2017-11-25 06:38+0000\n" "Last-Translator: Peter Hageman , 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: base_location @@ -164,25 +165,25 @@ msgid "State" msgstr "Staat/Provincie" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -193,13 +194,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/pl.po b/base_location/i18n/pl.po index 18ba7f94e..1627eeacf 100644 --- a/base_location/i18n/pl.po +++ b/base_location/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +165,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +194,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/pt.po b/base_location/i18n/pt.po index 463d2beeb..638bf3a45 100644 --- a/base_location/i18n/pt.po +++ b/base_location/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/pt_BR.po b/base_location/i18n/pt_BR.po index 22aee121d..0b7e6bf89 100644 --- a/base_location/i18n/pt_BR.po +++ b/base_location/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "Estado" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "O código oficial da cidade" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/pt_PT.po b/base_location/i18n/pt_PT.po index dc50add7c..0434cf4c9 100644 --- a/base_location/i18n/pt_PT.po +++ b/base_location/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "Estado" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "Código oficial da cidade" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/ro.po b/base_location/i18n/ro.po index fbef1aa96..c6354cb0b 100644 --- a/base_location/i18n/ro.po +++ b/base_location/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/ru.po b/base_location/i18n/ru.po index 66485bb7c..6778bf5cb 100644 --- a/base_location/i18n/ru.po +++ b/base_location/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +165,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +194,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/sk.po b/base_location/i18n/sk.po index a4c3345ef..f9627b0e8 100644 --- a/base_location/i18n/sk.po +++ b/base_location/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/sl.po b/base_location/i18n/sl.po index 82adc3f7b..75f906f3a 100644 --- a/base_location/i18n/sl.po +++ b/base_location/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-13 03:42+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "Zvezna država" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "Uradna koda kraja" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/sr.po b/base_location/i18n/sr.po index 95ff1010d..4c1a1e13a 100644 --- a/base_location/i18n/sr.po +++ b/base_location/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/sr@latin.po b/base_location/i18n/sr@latin.po index c62ce8e0d..110f4e975 100644 --- a/base_location/i18n/sr@latin.po +++ b/base_location/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +165,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +194,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/sv.po b/base_location/i18n/sv.po index 55b5978b6..719d37b87 100644 --- a/base_location/i18n/sv.po +++ b/base_location/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/th.po b/base_location/i18n/th.po index 7ff237cac..51e41b38e 100644 --- a/base_location/i18n/th.po +++ b/base_location/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/tr.po b/base_location/i18n/tr.po index 3a38341c1..a11438518 100644 --- a/base_location/i18n/tr.po +++ b/base_location/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/tr_TR.po b/base_location/i18n/tr_TR.po index 01eb98e4b..f30697c0a 100644 --- a/base_location/i18n/tr_TR.po +++ b/base_location/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/uk.po b/base_location/i18n/uk.po index ee39d2653..b852b5d52 100644 --- a/base_location/i18n/uk.po +++ b/base_location/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/vi.po b/base_location/i18n/vi.po index e39d45fb8..557a4ea7f 100644 --- a/base_location/i18n/vi.po +++ b/base_location/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +163,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +192,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/vi_VN.po b/base_location/i18n/vi_VN.po index 6f35c2d8d..8c12755ba 100644 --- a/base_location/i18n/vi_VN.po +++ b/base_location/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/zh_CN.po b/base_location/i18n/zh_CN.po index 4679587df..ed4b50240 100644 --- a/base_location/i18n/zh_CN.po +++ b/base_location/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/zh_TW.po b/base_location/i18n/zh_TW.po index 73ca9451b..9f688316d 100644 --- a/base_location/i18n/zh_TW.po +++ b/base_location/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-22 03:38+0000\n" "PO-Revision-Date: 2017-11-22 03:38+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: base_location @@ -163,25 +164,25 @@ msgid "State" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:64 +#: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:93 +#: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:60 +#: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:88 +#: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" msgstr "" @@ -192,13 +193,13 @@ msgid "The official code for the city" msgstr "" #. module: base_location -#: code:addons/base_location/models/better_zip.py:98 +#: code:addons/base_location/models/better_zip.py:106 #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:56 +#: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" From 25ea81f78435db30b09cad09fe57396e53d00359 Mon Sep 17 00:00:00 2001 From: Enric Tobella Date: Fri, 13 Jul 2018 09:35:02 +0000 Subject: [PATCH 24/27] Translated using Weblate (Spanish) Currently translated at 66.7% (24 of 36 strings) Translation: partner-contact-11.0/partner-contact-11.0-base_location Translate-URL: https://translation.odoo-community.org/projects/partner-contact-11-0/partner-contact-11-0-base_location/es/ --- base_location/i18n/es.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index 423da73fb..71fa54b3a 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -9,14 +9,15 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-12-13 03:42+0000\n" -"PO-Revision-Date: 2017-12-13 03:42+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2018-07-13 11:55+0000\n" +"Last-Translator: Enric Tobella \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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.0.1\n" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -127,7 +128,7 @@ msgstr "Última actualización en" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude msgid "Latitude" -msgstr "" +msgstr "Latitud" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_partner_form @@ -149,7 +150,7 @@ msgstr "" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude msgid "Longitude" -msgstr "" +msgstr "Longitud" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter From 3be5c7901116ac80fb37d5d8f70445106872d3c3 Mon Sep 17 00:00:00 2001 From: Rudolf Schnapka Date: Wed, 22 Aug 2018 12:28:12 +0000 Subject: [PATCH 25/27] Translated using Weblate (German) Currently translated at 100,0% (36 of 36 strings) Translation: partner-contact-11.0/partner-contact-11.0-base_location Translate-URL: https://translation.odoo-community.org/projects/partner-contact-11-0/partner-contact-11-0-base_location/de/ --- base_location/i18n/de.po | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/base_location/i18n/de.po b/base_location/i18n/de.po index 976210f07..37521f9cb 100644 --- a/base_location/i18n/de.po +++ b/base_location/i18n/de.po @@ -9,14 +9,15 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-12-13 03:42+0000\n" -"PO-Revision-Date: 2017-12-13 03:42+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2018-08-22 12:38+0000\n" +"Last-Translator: Rudolf Schnapka \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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.1.1\n" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_enforce_cities @@ -25,6 +26,9 @@ msgid "" "Check this box to ensure every address created in that country has a 'City' " "chosen in the list of the country's cities." msgstr "" +"Aktivieren Sie dieses Kontrollkästchen, um sicherzustellen, dass für jede in " +"diesem Land erstellte Adresse eine \"Stadt\" in der Liste der Städte des " +"Landes ausgewählt ist." #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_country_state_better_zip_ids @@ -97,7 +101,7 @@ msgstr "Anzeigename" #: model:ir.model.fields,field_description:base_location.field_res_better_zip_enforce_cities #: model:ir.model.fields,field_description:base_location.field_res_company_country_enforce_cities msgid "Enforce Cities" -msgstr "" +msgstr "Städte erzwingen" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter @@ -127,34 +131,34 @@ msgstr "zuletzt aktualisiert am" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_latitude msgid "Latitude" -msgstr "" +msgstr "Breitengrad" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_partner_form msgid "Location completion" -msgstr "" +msgstr "Standortvervollständigung" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree #: model:ir.ui.menu,name:base_location.locations_menu #: model:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form msgid "Locations" -msgstr "" +msgstr "Standorte" #. module: base_location #: model:ir.ui.menu,name:base_location.locations_root_menu msgid "Locations Management" -msgstr "" +msgstr "Standorteverwaltung" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude msgid "Longitude" -msgstr "" +msgstr "Längengrad" #. module: base_location #: model:ir.ui.view,arch_db:base_location.view_better_zip_filter msgid "Search city" -msgstr "Suche Ort" +msgstr "Suche Stadt" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_better_zip_state_id @@ -166,25 +170,25 @@ msgstr "Bundesland" #: code:addons/base_location/models/partner.py:65 #, python-format msgid "The city of partner %s differs from that in location %s" -msgstr "" +msgstr "Die Stadt des Partners %s weicht von der des Standorts %s ab" #. module: base_location #: code:addons/base_location/models/better_zip.py:101 #, python-format msgid "The country of the city differs from the country in location %s" -msgstr "" +msgstr "Das Land der Stadt unterscheidet sich vom Land des Standorts %s" #. module: base_location #: code:addons/base_location/models/partner.py:61 #, python-format msgid "The country of the partner %s differs from that in location %s" -msgstr "" +msgstr "Das Land des Partners %s unterscheidet sich vom dem des Standorts %s" #. module: base_location #: code:addons/base_location/models/better_zip.py:96 #, python-format msgid "The country of the state differs from the country in location %s" -msgstr "" +msgstr "Das Land des Bundeslands unterscheidet sich vom Land des Standorts %s" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_better_zip_code @@ -196,12 +200,14 @@ msgstr "Die offizielle Kennung der Stadt" #, python-format msgid "The state of the city differs from the state in location %s" msgstr "" +"Das Bundesland der Stadt unterscheidet sich vom Bundesland am Standort %s" #. module: base_location #: code:addons/base_location/models/partner.py:57 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" +"Das Bundesland des Partners %s unterscheidet sich von dem am Standort %s" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_company_zip_id @@ -219,4 +225,4 @@ msgstr "PLZ" #: model:ir.model.fields,field_description:base_location.field_res_partner_zip_id #: model:ir.model.fields,field_description:base_location.field_res_users_zip_id msgid "ZIP Location" -msgstr "" +msgstr "Standort-PLZ" From f4f38c4c595375e8d6055585547490d8c7ca764f Mon Sep 17 00:00:00 2001 From: Aitor Bouzas Date: Mon, 8 Oct 2018 17:04:28 +0200 Subject: [PATCH 26/27] [MIG] base_location: Migration to 12.0 This module has now been refactored to be more consistent with what base_address_city offers to the location management. Added dependency to contacts so that I could change the menu location for cities / zip management. Now, every res.city record has a relation One2many to res.city.zip (old res.better.zip). This way, every zip has a realted city too. Zips can be searched through city code, zip or city name (same as before). Modified tests and deleted not needed tests. Added sql contraints so that zips and cities are unique within it's country / state / city. --- base_location/README.rst | 106 ++-- base_location/__init__.py | 1 - base_location/__openerp__.py | 24 +- base_location/demo/better_zip.xml | 8 - base_location/demo/res_city_zip.xml | 13 + base_location/models/__init__.py | 9 +- base_location/models/better_zip.py | 108 ---- base_location/models/res_city.py | 19 + base_location/models/res_city_zip.py | 40 ++ .../models/{company.py => res_company.py} | 46 +- .../models/{partner.py => res_partner.py} | 60 ++- base_location/models/state.py | 11 - base_location/readme/CONFIGURE.rst | 10 + base_location/readme/CONTRIBUTORS.rst | 9 + base_location/readme/CREDITS.rst | 1 + base_location/readme/DESCRIPTION.rst | 5 + base_location/readme/USAGE.rst | 3 + base_location/security/ir.model.access.csv | 3 +- base_location/static/description/index.html | 463 ++++++++++++++++++ base_location/tests/__init__.py | 1 - base_location/tests/test_base_location.py | 394 +++++++-------- base_location/views/better_zip_view.xml | 85 ---- base_location/views/res_city_view.xml | 63 +++ base_location/views/res_city_zip_view.xml | 56 +++ ...{company_view.xml => res_company_view.xml} | 0 base_location/views/res_country_view.xml | 2 +- ...{partner_view.xml => res_partner_view.xml} | 1 - base_location/views/state_view.xml | 26 - 28 files changed, 998 insertions(+), 569 deletions(-) delete mode 100644 base_location/demo/better_zip.xml create mode 100644 base_location/demo/res_city_zip.xml delete mode 100644 base_location/models/better_zip.py create mode 100644 base_location/models/res_city.py create mode 100644 base_location/models/res_city_zip.py rename base_location/models/{company.py => res_company.py} (62%) rename base_location/models/{partner.py => res_partner.py} (55%) delete mode 100644 base_location/models/state.py create mode 100644 base_location/readme/CONFIGURE.rst create mode 100644 base_location/readme/CONTRIBUTORS.rst create mode 100644 base_location/readme/CREDITS.rst create mode 100644 base_location/readme/DESCRIPTION.rst create mode 100644 base_location/readme/USAGE.rst create mode 100644 base_location/static/description/index.html delete mode 100644 base_location/views/better_zip_view.xml create mode 100644 base_location/views/res_city_view.xml create mode 100644 base_location/views/res_city_zip_view.xml rename base_location/views/{company_view.xml => res_company_view.xml} (100%) rename base_location/views/{partner_view.xml => res_partner_view.xml} (99%) delete mode 100644 base_location/views/state_view.xml diff --git a/base_location/README.rst b/base_location/README.rst index 160dbf7c0..33b6fe83c 100644 --- a/base_location/README.rst +++ b/base_location/README.rst @@ -1,33 +1,54 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 +==================================== +Location management (aka Better ZIP) +==================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fpartner--contact-lightgray.png?logo=github + :target: https://github.com/OCA/partner-contact/tree/12.0/base_location + :alt: OCA/partner-contact +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/partner-contact-12-0/partner-contact-12-0-base_location + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/134/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module introduces a zip model that allows you to manage locations in a better way. + +The zips will allow the users to complete automatically all address-related fields by just filling the zip. -======================= -Enhanced ZIP management -======================= - -This module introduces a better zip/npa management system. +Also allows different search filters. -It enables zip, city, state and country auto-completion on partners and companies. +**Table of contents** -Also allows different search filters. +.. contents:: + :local: Configuration ============= -#. Activate the developer mode in *Settings*. -#. Go to *Settings / Technical / Locations Management / Locations*. -#. Create a new Location. +#. Go to *Contacts / Configuration / Localization / Cities*. +#. Create a new City. + +#. Go to *Contacts / Configuration / Localization / Zips*. +#. Create a new Zip and relate it to the city (you can also create the Zip from the City). or, with module 'Contacts Directory' installed: #. Go to *Contacts / Configuration / Localization / Countries*. #. Locate the desired country. -#. Press on the button 'Locations'. - -or, -#. Go to *Contacts / Configuration / Localization / Fed. States* -#. Locate the desired state. -#. Enter the desired Locations. +#. Press on the button 'Cities' / 'Zips'. Usage ===== @@ -36,52 +57,59 @@ Usage #. Fill the field *Location completion* #. Information about country, state, city and zip will be filled automatically - - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/134/11.0 - 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 smash it by providing detailed and welcomed feedback. +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 ======= -Images ------- +Authors +~~~~~~~ -* Icon park: `Icon http://icon-park.com/icon/location-map-pin-orange3/` +* Camptocamp +* ACYSOS S.L. +* Alejandro Santana +* Tecnativa +* AdaptiveCity Contributors ------------- +~~~~~~~~~~~~ * Nicolas Bessi (Camptocamp) * Ignacio Ibeas (Acysos S.L.) -* Pedro M. Baeza +* Pedro M. Baeza * Alejandro Santana * Sandy Carter * Yannick Vaucher * Francesco Apruzzese * Dave Lasley +* Aitor Bouzas + +Other credits +~~~~~~~~~~~~~ + +* Icon park: `Icon http://icon-park.com/icon/location-map-pin-orange3/` +Maintainers +~~~~~~~~~~~ -Maintainer ----------- +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit https://odoo-community.org. +This module is part of the `OCA/partner-contact `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_location/__init__.py b/base_location/__init__.py index e2aed6e67..69f7babdf 100644 --- a/base_location/__init__.py +++ b/base_location/__init__.py @@ -1,4 +1,3 @@ -# Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import models diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py index 1d4810eba..532856707 100644 --- a/base_location/__openerp__.py +++ b/base_location/__openerp__.py @@ -4,26 +4,30 @@ { 'name': 'Location management (aka Better ZIP)', - 'version': '11.0.1.0.1', + 'version': '12.0.1.0.0', 'depends': [ - 'base_address_city' + 'base_address_city', + 'contacts', ], 'author': "Camptocamp," "ACYSOS S.L.," "Alejandro Santana," "Tecnativa," + "AdaptiveCity," "Odoo Community Association (OCA)", 'license': "AGPL-3", 'summary': '''Enhanced zip/npa management system''', - 'website': 'http://www.camptocamp.com', - 'data': ['views/better_zip_view.xml', - 'views/state_view.xml', - 'views/res_country_view.xml', - 'views/company_view.xml', - 'views/partner_view.xml', - 'security/ir.model.access.csv'], + 'website': 'https://github.com/OCA/partner-contact', + 'data': [ + 'security/ir.model.access.csv', + 'views/res_city_zip_view.xml', + 'views/res_city_view.xml', + 'views/res_country_view.xml', + 'views/res_company_view.xml', + 'views/res_partner_view.xml', + ], 'demo': [ - 'demo/better_zip.xml', + 'demo/res_city_zip.xml', ], 'installable': True, 'auto_install': False, diff --git a/base_location/demo/better_zip.xml b/base_location/demo/better_zip.xml deleted file mode 100644 index 0c7f3b9ee..000000000 --- a/base_location/demo/better_zip.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - 1000 - Brussels - - - diff --git a/base_location/demo/res_city_zip.xml b/base_location/demo/res_city_zip.xml new file mode 100644 index 000000000..e940e49f1 --- /dev/null +++ b/base_location/demo/res_city_zip.xml @@ -0,0 +1,13 @@ + + + + + Brussels + + + + + 1000 + + + diff --git a/base_location/models/__init__.py b/base_location/models/__init__.py index 3f7a893a5..1fb23520f 100644 --- a/base_location/models/__init__.py +++ b/base_location/models/__init__.py @@ -1,7 +1,6 @@ -# Copyright 2016 Nicolas Bessi, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from . import better_zip -from . import partner -from . import state -from . import company +from . import res_city_zip +from . import res_partner +from . import res_company +from . import res_city diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py deleted file mode 100644 index 991ffa6c8..000000000 --- a/base_location/models/better_zip.py +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 2016 Nicolas Bessi, Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo import api, fields, models, _ -from odoo.exceptions import ValidationError - - -class BetterZip(models.Model): - '''City/locations completion object''' - - _name = "res.better.zip" - _description = __doc__ - _order = "name asc" - - name = fields.Char('ZIP') - code = fields.Char( - 'City Code', - size=64, - help="The official code for the city" - ) - city = fields.Char('City', required=True) - city_id = fields.Many2one( - 'res.city', - 'City', - ) - state_id = fields.Many2one( - 'res.country.state', - 'State', - ) - country_id = fields.Many2one('res.country', 'Country') - enforce_cities = fields.Boolean( - related='country_id.enforce_cities', - readonly=True, - ) - latitude = fields.Float() - longitude = fields.Float() - - @api.multi - @api.depends('name', 'city', 'state_id', 'country_id') - def name_get(self): - result = [] - for rec in self: - name = [] - if rec.name: - name.append('%(name)s' % {'name': rec.name}) - name.append('%(name)s' % {'name': rec.city}) - if rec.state_id: - name.append('%(name)s' % {'name': rec.state_id.name}) - if rec.country_id: - name.append('%(name)s' % {'name': rec.country_id.name}) - result.append((rec.id, ", ".join(name))) - return result - - @api.model - def name_search(self, name='', args=None, operator='ilike', limit=100): - args = list(args or []) - args += ['|', ('city', operator, name), - '|', ('name', operator, name), ('code', operator, name)] - recs = self.search(args, limit=limit) - return recs.name_get() - - @api.onchange('country_id') - def _onchange_country_id(self): - if self.state_id.country_id != self.country_id: - self.state_id = False - if self.city_id.country_id != self.country_id: - self.city_id = False - if self.country_id: - domain = [('country_id', '=', self.country_id.id)] - else: - domain = [] - return { - 'domain': { - 'state_id': domain, - 'city_id': domain, - } - } - - @api.onchange('city_id') - def _onchange_city_id(self): - if self.city_id: - self.city = self.city_id.name - self.country_id = self.city_id.country_id - self.state_id = self.city_id.state_id - - @api.onchange('state_id') - def _onchange_state_id(self): - if self.state_id: - self.country_id = self.state_id.country_id - - @api.constrains('state_id', 'country_id', 'city_id') - def constrains_country(self): - for rec in self: - if rec.state_id and rec.state_id.country_id != \ - rec.country_id: - raise ValidationError(_( - "The country of the state differs from the country in " - "location %s") % rec.name) - if rec.city_id and rec.city_id.country_id \ - != rec.country_id: - raise ValidationError(_( - "The country of the city differs from the country in " - "location %s") % rec.name) - if rec.city_id and rec.city_id.state_id \ - != rec.state_id: - raise ValidationError(_( - "The state of the city differs from the state in " - "location %s") % rec.name) diff --git a/base_location/models/res_city.py b/base_location/models/res_city.py new file mode 100644 index 000000000..629268b5d --- /dev/null +++ b/base_location/models/res_city.py @@ -0,0 +1,19 @@ +# Copyright 2018 Aitor Bouzas +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class City(models.Model): + _inherit = 'res.city' + + zip_ids = fields.One2many('res.city.zip', 'city_id', + string="Zips in this city") + + _sql_constraints = [ + ('name_state_country_uniq', + 'UNIQUE(name, state_id, country_id)', + 'You already have a city with that name in the same state.' + 'The city must have a unique name within ' + 'it\'s state and it\'s country'), + ] diff --git a/base_location/models/res_city_zip.py b/base_location/models/res_city_zip.py new file mode 100644 index 000000000..12c679a96 --- /dev/null +++ b/base_location/models/res_city_zip.py @@ -0,0 +1,40 @@ +# Copyright 2016 Nicolas Bessi, Camptocamp SA +# Copyright 2018 Aitor Bouzas +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class ResCityZip(models.Model): + """City/locations completion object""" + + _name = "res.city.zip" + _description = __doc__ + _order = "name asc" + _rec_name = "display_name" + + name = fields.Char('ZIP', required=True) + city_id = fields.Many2one( + 'res.city', + 'City', + required=True, + ) + display_name = fields.Char(compute='_compute_new_display_name', + store=True, index=True) + + _sql_constraints = [ + ('name_city_uniq', 'UNIQUE(name, city_id)', + 'You already have a zip with that code in the same city. ' + 'The zip code must be unique within it\'s city'), + ] + + @api.multi + @api.depends('name', 'city_id') + def _compute_new_display_name(self): + for rec in self: + name = [rec.name, rec.city_id.name] + if rec.city_id.state_id: + name.append(rec.city_id.state_id.name) + if rec.city_id.country_id: + name.append(rec.city_id.country_id.name) + rec.display_name = ", ".join(name) diff --git a/base_location/models/company.py b/base_location/models/res_company.py similarity index 62% rename from base_location/models/company.py rename to base_location/models/res_company.py index 1016a1d23..f78642aa9 100644 --- a/base_location/models/company.py +++ b/base_location/models/res_company.py @@ -8,38 +8,39 @@ from odoo import models, fields, api class ResCompany(models.Model): _inherit = 'res.company' + # In order to keep the same logic used in Odoo, fields must be computed + # and inversed, not related. This way we can ensure that it works + # correctly on changes and that inconsistencies cannot happen. + # When you make the fields related, the constrains added in res.partner + # will fail, because when you change the city_id in the company, you are + # effectively changing it in the partner. The constrains on the partner + # are evaluated before the inverse methods update the other fields (city, + # etc..) so we need them to ensure consistency. + # As a conclusion, address fields are very related to each other. + # Either you make them all related to the partner in company, or you + # don't for all of them. Mixing both approaches produces inconsistencies. + city_id = fields.Many2one( 'res.city', compute='_compute_address', inverse='_inverse_city_id', - string="City" + string="City ID" ) zip_id = fields.Many2one( - 'res.better.zip', + 'res.city.zip', string='ZIP Location', compute='_compute_address', inverse='_inverse_zip_id', oldname="better_zip_id", help='Use the city name or the zip code to search the location', ) - # In order to keep the same logic used in odoo, fields must be computed - # and inversed, not related. This way, we can ensure that it works - # correctly on changes and inconsistencies cannot happen. - # When you make the fields related, the constrains added in res.partner - # will fail. because when you change the city_id in the company, you are - # effectively changing it in the partner. The constrains on the partner - # are evaluated before the inverse methods update the other fields (city, - # etc..). And we need constrains in the partner to ensure consistency. - # So, as a conclusion, address fields are very related to each other. - # Either you make them all related to the partner in company, or you - # don't for all of them. But mixing methods produces inconsistencies. country_enforce_cities = fields.Boolean( related='country_id.enforce_cities' ) def _get_company_address_fields(self, partner): - res = super(ResCompany, self)._get_company_address_fields(partner) + res = super()._get_company_address_fields(partner) res['city_id'] = partner.city_id res['zip_id'] = partner.zip_id return res @@ -55,16 +56,15 @@ class ResCompany(models.Model): @api.onchange('zip_id') def _onchange_zip_id(self): if self.zip_id: - self.zip = self.zip_id.name - self.city_id = self.zip_id.city_id - self.city = self.zip_id.city - self.country_id = self.zip_id.country_id - if self.country_id.enforce_cities: - self.state_id = self.city_id.state_id - else: - self.state_id = self.zip_id.state_id + self.update({ + 'zip': self.zip_id.name, + 'city_id': self.zip_id.city_id, + 'city': self.zip_id.city_id.name, + 'country_id': self.zip_id.city_id.country_id, + 'state_id': self.zip_id.city_id.state_id, + }) @api.onchange('state_id') - def onchange_state_id(self): + def _onchange_state_id(self): if self.state_id.country_id: self.country_id = self.state_id.country_id.id diff --git a/base_location/models/partner.py b/base_location/models/res_partner.py similarity index 55% rename from base_location/models/partner.py rename to base_location/models/res_partner.py index befddd1ff..273dc3027 100644 --- a/base_location/models/partner.py +++ b/base_location/models/res_partner.py @@ -8,16 +8,19 @@ from odoo.exceptions import ValidationError class ResPartner(models.Model): _inherit = 'res.partner' - zip_id = fields.Many2one('res.better.zip', 'ZIP Location') + + zip_id = fields.Many2one('res.city.zip', 'ZIP Location') @api.onchange('city_id') def _onchange_city_id(self): if not self.zip_id: - super(ResPartner, self)._onchange_city_id() + super()._onchange_city_id() if self.zip_id and self.city_id != self.zip_id.city_id: - self.zip_id = False - self.zip = False - self.city = False + self.update({ + 'zip_id': False, + 'zip': False, + 'city': False, + }) if self.city_id: return { 'domain': { @@ -26,38 +29,37 @@ class ResPartner(models.Model): } return {'domain': {'zip_id': []}} - @api.onchange('state_id') - def _onchange_state_id(self): - if self.zip_id and self.state_id != self.zip_id.state_id: - self.zip_id = False - self.zip = False - self.city = False - @api.onchange('country_id') def _onchange_country_id(self): - res = super(ResPartner, self)._onchange_country_id() - if self.zip_id and self.zip_id.country_id != self.country_id: + res = super()._onchange_country_id() + if self.zip_id and self.zip_id.city_id.country_id != self.country_id: self.zip_id = False return res @api.onchange('zip_id') def _onchange_zip_id(self): if self.zip_id: - self.country_id = self.zip_id.country_id - if self.country_id.enforce_cities: - self.city_id = self.zip_id.city_id - self.zip = self.zip_id.name - self.state_id = self.zip_id.state_id - self.city = self.zip_id.city + vals = { + 'city_id': self.zip_id.city_id, + 'zip': self.zip_id.name, + 'city': self.zip_id.city_id.name, + } + if self.zip_id.city_id.country_id: + vals.update({'country_id': self.zip_id.city_id.country_id}) + if self.zip_id.city_id.state_id: + vals.update({'state_id': self.zip_id.city_id.state_id}) + self.update(vals) @api.constrains('zip_id', 'country_id', 'city_id', 'state_id') def _check_zip(self): - for rec in self.filtered('zip_id'): - if rec.zip_id.state_id != rec.state_id: + for rec in self: + if not rec.zip_id: + continue + if rec.zip_id.city_id.state_id != rec.state_id: raise ValidationError(_( "The state of the partner %s differs from that in " "location %s") % (rec.name, rec.zip_id.name)) - if rec.zip_id.country_id != rec.country_id: + if rec.zip_id.city_id.country_id != rec.country_id: raise ValidationError(_( "The country of the partner %s differs from that in " "location %s") % (rec.name, rec.zip_id.name)) @@ -67,6 +69,14 @@ class ResPartner(models.Model): "location %s") % (rec.name, rec.zip_id.name)) @api.onchange('state_id') - def onchange_state_id(self): + def _onchange_state_id(self): + vals = {} if self.state_id.country_id: - self.country_id = self.state_id.country_id.id + vals.update({'country_id': self.state_id.country_id}) + if self.zip_id and self.state_id != self.zip_id.city_id.state_id: + vals.update({ + 'zip_id': False, + 'zip': False, + 'city': False, + }) + self.update(vals) diff --git a/base_location/models/state.py b/base_location/models/state.py deleted file mode 100644 index 5161a34a6..000000000 --- a/base_location/models/state.py +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright 2016 Nicolas Bessi, Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo import models, fields - - -class ResCountryState(models.Model): - - _inherit = 'res.country.state' - - better_zip_ids = fields.One2many('res.better.zip', 'state_id', 'Cities') diff --git a/base_location/readme/CONFIGURE.rst b/base_location/readme/CONFIGURE.rst new file mode 100644 index 000000000..32d87344b --- /dev/null +++ b/base_location/readme/CONFIGURE.rst @@ -0,0 +1,10 @@ +#. Go to *Contacts / Configuration / Localization / Cities*. +#. Create a new City. + +#. Go to *Contacts / Configuration / Localization / Zips*. +#. Create a new Zip and relate it to the city (you can also create the Zip from the City). + +or, with module 'Contacts Directory' installed: +#. Go to *Contacts / Configuration / Localization / Countries*. +#. Locate the desired country. +#. Press on the button 'Cities' / 'Zips'. diff --git a/base_location/readme/CONTRIBUTORS.rst b/base_location/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..b90283688 --- /dev/null +++ b/base_location/readme/CONTRIBUTORS.rst @@ -0,0 +1,9 @@ +* Nicolas Bessi (Camptocamp) +* Ignacio Ibeas (Acysos S.L.) +* Pedro M. Baeza +* Alejandro Santana +* Sandy Carter +* Yannick Vaucher +* Francesco Apruzzese +* Dave Lasley +* Aitor Bouzas diff --git a/base_location/readme/CREDITS.rst b/base_location/readme/CREDITS.rst new file mode 100644 index 000000000..e84ac4aed --- /dev/null +++ b/base_location/readme/CREDITS.rst @@ -0,0 +1 @@ +* Icon park: `Icon http://icon-park.com/icon/location-map-pin-orange3/` diff --git a/base_location/readme/DESCRIPTION.rst b/base_location/readme/DESCRIPTION.rst new file mode 100644 index 000000000..c4afc713f --- /dev/null +++ b/base_location/readme/DESCRIPTION.rst @@ -0,0 +1,5 @@ +This module introduces a zip model that allows you to manage locations in a better way. + +The zips will allow the users to complete automatically all address-related fields by just filling the zip. + +Also allows different search filters. diff --git a/base_location/readme/USAGE.rst b/base_location/readme/USAGE.rst new file mode 100644 index 000000000..bc8bfc983 --- /dev/null +++ b/base_location/readme/USAGE.rst @@ -0,0 +1,3 @@ +#. Access a partner record +#. Fill the field *Location completion* +#. Information about country, state, city and zip will be filled automatically diff --git a/base_location/security/ir.model.access.csv b/base_location/security/ir.model.access.csv index 5ef6c8b46..e0699ce7b 100644 --- a/base_location/security/ir.model.access.csv +++ b/base_location/security/ir.model.access.csv @@ -1,3 +1,2 @@ "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" -"ir_model_access_betterzip0","res_better_zip group_user_all","model_res_better_zip",base.group_user,1,0,0,0 -"ir_model_access_betterzip1","res_better_zip group_user","model_res_better_zip","base.group_partner_manager",1,1,1,1 +"ir_model_access_cityzip0","res_city_zip group_user","model_res_city_zip","base.group_partner_manager",1,1,1,1 diff --git a/base_location/static/description/index.html b/base_location/static/description/index.html new file mode 100644 index 000000000..2ed60fbde --- /dev/null +++ b/base_location/static/description/index.html @@ -0,0 +1,463 @@ + + + + + + +Location management (aka Better ZIP) + + + +
+

Location management (aka Better ZIP)

+ + +

Beta License: AGPL-3 OCA/partner-contact Translate me on Weblate Try me on Runbot

+

This module introduces a zip model that allows you to manage locations in a better way.

+

The zips will allow the users to complete automatically all address-related fields by just filling the zip.

+

Also allows different search filters.

+

Table of contents

+ +
+

Configuration

+
    +
  1. Go to Contacts / Configuration / Localization / Cities.
  2. +
  3. Create a new City.
  4. +
  5. Go to Contacts / Configuration / Localization / Zips.
  6. +
  7. Create a new Zip and relate it to the city (you can also create the Zip from the City).
  8. +
+

or, with module ‘Contacts Directory’ installed: +#. Go to Contacts / Configuration / Localization / Countries. +#. Locate the desired country. +#. Press on the button ‘Cities’ / ‘Zips’.

+
+
+

Usage

+
    +
  1. Access a partner record
  2. +
  3. Fill the field Location completion
  4. +
  5. Information about country, state, city and zip will be filled automatically
  6. +
+
+
+

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

+
    +
  • Camptocamp
  • +
  • ACYSOS S.L.
  • +
  • Alejandro Santana
  • +
  • Tecnativa
  • +
  • AdaptiveCity
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+
    +
  • Icon park: Icon http://icon-park.com/icon/location-map-pin-orange3/
  • +
+
+
+

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/partner-contact project on GitHub.

+

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

+
+
+
+ + diff --git a/base_location/tests/__init__.py b/base_location/tests/__init__.py index 372da9775..9816762b0 100644 --- a/base_location/tests/__init__.py +++ b/base_location/tests/__init__.py @@ -1,4 +1,3 @@ -# Copyright 2015 Yannick Vaucher, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import test_base_location diff --git a/base_location/tests/test_base_location.py b/base_location/tests/test_base_location.py index b86817bcb..eef4aad61 100644 --- a/base_location/tests/test_base_location.py +++ b/base_location/tests/test_base_location.py @@ -1,94 +1,119 @@ # Copyright 2015 Yannick Vaucher, Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo.tests.common import TransactionCase from odoo.exceptions import ValidationError +from odoo.tests import tagged, common +from odoo.tools.misc import mute_logger +import psycopg2 + + +@tagged('post_install', '-at_install') +class TestBaseLocation(common.SavepointCase): + + @classmethod + def setUpClass(cls): + super().setUpClass() + country_obj = cls.env['res.country.state'] + city_obj = cls.env['res.city'] + zip_obj = cls.env['res.city.zip'] + cls.partner_obj = cls.env['res.partner'] + cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True)) + cls.state_vd = country_obj.create({ + 'name': 'Vaud', + 'code': 'VD', + 'country_id': cls.env.ref('base.ch').id, + }) + cls.env.ref('base.es').write({ + 'enforce_cities': True + }) + cls.company = cls.env.ref('base.main_company') - -class TestBaseLocation(TransactionCase): - - def test_onchange_better_zip_state_id(self): - """ Test onchange on res.better.zip """ - usa_MA = self.env.ref('base.state_us_34') - better_zip1 = self.env['res.better.zip'].new(self.values_better_zip1()) - better_zip1.state_id = usa_MA - better_zip1._onchange_state_id() - self.assertEqual(better_zip1.country_id, usa_MA.country_id) - - def test_onchange_better_zip_city_id(self): - better_zip2 = self.env['res.better.zip'].new(self.values_better_zip2()) - better_zip2.city_id = self.city_madrid - better_zip2._onchange_city_id() - self.assertEqual(better_zip2.city, self.city_madrid.name) - - def test_onchange_better_zip_country_id(self): - better_zip1 = self.env['res.better.zip'].new(self.values_better_zip1()) - better_zip1.country_id = self.env.ref('base.es') - better_zip1._onchange_country_id() - self.assertFalse(better_zip1.state_id) - - def test_onchange_better_zip_none(self): - better_zip1 = self.env['res.better.zip'].new(self.values_better_zip1()) - better_zip1.country_id = False - better_zip1._onchange_country_id() - self.assertFalse(better_zip1.state_id) + cls.state_bcn = country_obj.create({ + 'name': 'Barcelona', + 'code': '08', + 'country_id': cls.env.ref('base.es').id, + }) + cls.state_madrid = country_obj.create({ + 'name': 'Madrid', + 'code': '28', + 'country_id': cls.env.ref('base.es').id, + }) + cls.city_bcn = city_obj.create({ + 'name': 'Barcelona', + 'state_id': cls.state_bcn.id, + 'country_id': cls.env.ref('base.es').id, + }) + cls.city_madrid = city_obj.create({ + 'name': 'Madrid', + 'state_id': cls.state_madrid.id, + 'country_id': cls.env.ref('base.es').id, + }) + cls.city_lausanne = city_obj.create({ + 'name': 'Lausanne', + 'state_id': cls.state_vd.id, + 'country_id': cls.env.ref('base.ch').id, + }) + cls.lausanne = zip_obj.create({ + 'name': '666', + 'city_id': cls.city_lausanne.id, + }) + cls.barcelona = zip_obj.create({ + 'name': '444', + 'city_id': cls.city_bcn.id, + }) def test_onchange_partner_city_completion(self): - partner1 = self.env['res.partner'].new({ + """Test that partner data is filled accodingly""" + partner1 = self.partner_obj.new({ 'name': 'Camptocamp', }) - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) - better_zip2.country_id.enforce_cities = True - partner1.zip_id = better_zip2 + self.barcelona.city_id.country_id.enforce_cities = True + partner1.zip_id = self.barcelona partner1._onchange_zip_id() - self.assertEqual(partner1.zip, better_zip2.name) - self.assertEqual(partner1.city, better_zip2.city) - self.assertEqual(partner1.state_id, better_zip2.state_id) - self.assertEqual(partner1.country_id, better_zip2.country_id) + self.assertEqual(partner1.zip, self.barcelona.name) + self.assertEqual(partner1.city, self.barcelona.city_id.name) + self.assertEqual(partner1.state_id, self.barcelona.city_id.state_id) + self.assertEqual(partner1.country_id, + self.barcelona.city_id.country_id) def test_onchange_company_city_completion(self): + """Test that company data is filled accodingly""" company = self.env['res.company'].new({'name': 'Test'}) - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) - company.zip_id = better_zip1 + company.zip_id = self.lausanne company._onchange_zip_id() - self.assertEqual(company.zip, better_zip1.name) - self.assertEqual(company.city, better_zip1.city) - self.assertEqual(company.state_id, better_zip1.state_id) - self.assertEqual(company.country_id, better_zip1.country_id) + self.assertEqual(company.zip, self.lausanne.name) + self.assertEqual(company.city, self.lausanne.city_id.name) + self.assertEqual(company.state_id, self.lausanne.city_id.state_id) + self.assertEqual(company.country_id, self.lausanne.city_id.country_id) def test_company_address_fields(self): - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1() - ) + """Test if the partner address fields changes when + changing the ones from the company""" company = self.env['res.company'].create({ 'name': 'Test', }) self.assertTrue(company.partner_id) company.partner_id.write({ - 'zip_id': better_zip1.id, - 'state_id': better_zip1.state_id.id, - 'country_id': better_zip1.country_id.id, - 'city_id': better_zip1.city_id.id, - 'city': better_zip1.city, - 'zip': better_zip1.name, + 'zip_id': self.lausanne.id, + 'state_id': self.lausanne.city_id.state_id.id, + 'country_id': self.lausanne.city_id.country_id.id, + 'city_id': self.lausanne.city_id.id, + 'city': self.lausanne.city_id.name, + 'zip': self.lausanne.name, }) company._compute_address() self.assertEqual(company.zip_id, company.partner_id.zip_id) self.assertEqual(company.city_id, company.partner_id.city_id) def test_company_address_fields_inverse(self): - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2() - ) + """Test inverse fields from res.company""" company = self.env['res.company'].new({ 'name': 'Test', - 'partner_id': self.env['res.partner'].new({}).id + 'partner_id': self.partner_obj.new({}).id # Partner must be initiated in order to be filled }) company.update({ - 'zip_id': better_zip2.id, + 'zip_id': self.barcelona.id, }) company._inverse_city_id() company._inverse_zip_id() @@ -96,112 +121,76 @@ class TestBaseLocation(TransactionCase): self.assertEqual(company.city_id, company.partner_id.city_id) def test_onchange_company_city_id_completion(self): + """Test city auto-completion when changing zip in a company""" company = self.env['res.company'].new({'name': 'Test'}) - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) - company.zip_id = better_zip2 + company.zip_id = self.barcelona company._onchange_zip_id() - self.assertEqual(company.city_id, better_zip2.city_id) - - def test_constrains_better_zip_01(self): - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) - - better_zip1.city_id = self.city_lausanne - with self.assertRaises(ValidationError): - better_zip2.city_id = better_zip1.city_id - - def test_constrains_better_zip_02(self): - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) - - with self.assertRaises(ValidationError): - better_zip2.country_id = better_zip1.country_id - - def test_constrains_better_zip_03(self): - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) - - with self.assertRaises(ValidationError): - better_zip2.state_id = better_zip1.state_id - - def test_constrains_better_zip_04(self): - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) - - with self.assertRaises(ValidationError): - better_zip2.city_id = self.city_madrid + self.assertEqual(company.city_id, self.barcelona.city_id) def test_constrains_partner_01(self): - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) + """Test partner 1 constraints""" with self.assertRaises(ValidationError): - self.env['res.partner'].create({ + self.partner_obj.create({ 'name': 'P1', - 'zip_id': better_zip2.id, + 'zip_id': self.barcelona.id, }) - def test_constrains_partner_02(self): - better_zip2 = self.env['res.better.zip'].create( - self.values_better_zip2()) - partner = self.env['res.partner'].create({ + def test_constrains_partner_country(self): + """Test partner country constraints""" + partner = self.partner_obj.create({ 'name': 'P1', - 'zip_id': better_zip2.id, - 'country_id': better_zip2.country_id.id, - 'state_id': better_zip2.state_id.id, - 'city_id': better_zip2.city_id.id, + 'zip_id': self.barcelona.id, + 'country_id': self.barcelona.city_id.country_id.id, + 'state_id': self.barcelona.city_id.state_id.id, + 'city_id': self.barcelona.city_id.id, }) with self.assertRaises(ValidationError): partner.country_id = self.ref('base.ch') - with self.assertRaises(ValidationError): - partner.state_id = self.state_vd.id, + def test_constrains_partner_state(self): + """Test partner state constraints""" + partner = self.partner_obj.create({ + 'name': 'P1', + 'zip_id': self.barcelona.id, + 'country_id': self.barcelona.city_id.country_id.id, + 'state_id': self.barcelona.city_id.state_id.id, + 'city_id': self.barcelona.city_id.id, + }) with self.assertRaises(ValidationError): - partner.city_id = self.city_lausanne + partner.state_id = self.state_vd.id - def values_better_zip1(self): - return { - 'name': 1000, - 'city': 'Lausanne', - 'state_id': self.state_vd.id, - 'country_id': self.ref('base.ch'), - } + def test_constrains_partner_city(self): + """Test partner city constraints""" + partner = self.partner_obj.create({ + 'name': 'P1', + 'zip_id': self.barcelona.id, + 'country_id': self.barcelona.city_id.country_id.id, + 'state_id': self.barcelona.city_id.state_id.id, + 'city_id': self.barcelona.city_id.id, + }) - def values_better_zip2(self): - return { - 'city_id': self.city_bcn.id, - 'city': self.city_bcn.name, - 'state_id': self.state_bcn.id, - 'country_id': self.ref('base.es'), - } + with self.assertRaises(ValidationError): + partner.city_id = self.city_lausanne def test_partner_onchange_country(self): - country_es = self.browse_ref('base.es') + """Test partner onchange country_id""" + country_es = self.env.ref('base.es') country_es.enforce_cities = True - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) - partner = self.env['res.partner'].new({ + partner = self.partner_obj.new({ 'name': 'TEST', - 'zip_id': better_zip1.id + 'zip_id': self.lausanne.id }) partner.country_id = country_es partner._onchange_country_id() self.assertFalse(partner.zip_id) def test_partner_onchange_city(self): - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) - partner = self.env['res.partner'].new({ + """Test partner onchange city_id""" + partner = self.partner_obj.new({ 'name': 'TEST', - 'zip_id': better_zip1.id + 'zip_id': self.lausanne.id }) self.city_bcn.country_id.enforce_cities = False partner.city_id = self.city_bcn @@ -212,119 +201,78 @@ class TestBaseLocation(TransactionCase): self.assertFalse(res['domain']['zip_id']) def test_partner_onchange_state(self): - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) - partner = self.env['res.partner'].new({ + """Test partner onchange state_id""" + partner = self.partner_obj.new({ 'name': 'TEST', - 'zip_id': better_zip1.id + 'zip_id': self.lausanne.id }) partner.state_id = self.state_bcn partner._onchange_state_id() self.assertFalse(partner.zip_id) + self.assertEqual(partner.country_id, partner.state_id.country_id) + + def test_company_onchange_state(self): + """Test company onchange state_id""" + self.company.state_id = self.state_bcn + self.company._onchange_state_id() + self.assertEqual(self.company.country_id, + self.company.state_id.country_id) def test_display_name(self): - better_zip1 = self.env['res.better.zip'].create( - self.values_better_zip1()) + """Test if the display_name is stored and computed properly""" self.assertEqual( - better_zip1.display_name, '1000, Lausanne, Vaud, '+self.browse_ref( + self.lausanne.display_name, + '666, Lausanne, Vaud, ' + self.browse_ref( 'base.ch' ).name ) - def test_name_search___can_find_using_city_name_or_zip_or_code(self): - barcelona_data = { - 'city_id': self.city_bcn.id, - 'city': self.city_bcn.name, - 'name': '444', - 'code': 'BA', - 'state_id': self.state_bcn.id, - 'country_id': self.ref('base.es'), - } + def test_name_search(self): + """Test that zips can be searched through both the name of the + city or the zip code""" madrid_data = { 'city_id': self.city_madrid.id, - 'city': self.city_madrid.name, 'name': '555', - 'code': 'MD', - 'state_id': self.state_madrid.id, - 'country_id': self.ref('base.es'), - } - lausanne_data = { - 'city_id': self.city_lausanne.id, - 'city': self.city_lausanne.name, - 'name': '666', - 'code': 'LA', - 'state_id': self.state_vd.id, - 'country_id': self.ref('base.ch'), } - barcelona = self.env['res.better.zip'].create(barcelona_data) - madrid = self.env['res.better.zip'].create(madrid_data) - lausanne = self.env['res.better.zip'].create(lausanne_data) + madrid = self.env['res.city.zip'].create(madrid_data) - found_recs = self.env['res.better.zip'].name_search(name='444') + found_recs = self.env['res.city.zip'].name_search(name='444') self.assertEqual(len(found_recs), 1) - self.assertEqual(found_recs[0][0], barcelona.id) - found_recs = self.env['res.better.zip'].name_search(name='Barcelona') + self.assertEqual(found_recs[0][0], self.barcelona.id) + found_recs = self.env['res.city.zip'].name_search(name='Barcelona') self.assertEqual(len(found_recs), 1) - self.assertEqual(found_recs[0][0], barcelona.id) - found_recs = self.env['res.better.zip'].name_search(name='BA') - self.assertEqual(len(found_recs), 1) - self.assertEqual(found_recs[0][0], barcelona.id) + self.assertEqual(found_recs[0][0], self.barcelona.id) - found_recs = self.env['res.better.zip'].name_search(name='555') - self.assertEqual(len(found_recs), 1) - self.assertEqual(found_recs[0][0], madrid.id) - found_recs = self.env['res.better.zip'].name_search(name='Madrid') + found_recs = self.env['res.city.zip'].name_search(name='555') self.assertEqual(len(found_recs), 1) self.assertEqual(found_recs[0][0], madrid.id) - found_recs = self.env['res.better.zip'].name_search(name='MD') + found_recs = self.env['res.city.zip'].name_search(name='Madrid') self.assertEqual(len(found_recs), 1) self.assertEqual(found_recs[0][0], madrid.id) - found_recs = self.env['res.better.zip'].name_search(name='666') + found_recs = self.env['res.city.zip'].name_search(name='666') self.assertEqual(len(found_recs), 1) - self.assertEqual(found_recs[0][0], lausanne.id) - found_recs = self.env['res.better.zip'].name_search(name='Lausanne') + self.assertEqual(found_recs[0][0], self.lausanne.id) + found_recs = self.env['res.city.zip'].name_search(name='Lausanne') self.assertEqual(len(found_recs), 1) - self.assertEqual(found_recs[0][0], lausanne.id) - found_recs = self.env['res.better.zip'].name_search(name='LA') - self.assertEqual(len(found_recs), 1) - self.assertEqual(found_recs[0][0], lausanne.id) - - def setUp(self): - super(TestBaseLocation, self).setUp() - self.state_vd = self.env['res.country.state'].create({ - 'name': 'Vaud', - 'code': 'VD', - 'country_id': self.ref('base.ch'), - }) - self.env['res.country'].browse(self.ref('base.es')).write({ - 'enforce_cities': True - }) - self.company = self.env.ref('base.main_company') + self.assertEqual(found_recs[0][0], self.lausanne.id) + + def test_zip_ql_constraints(self): + """Test UNIQUE name within it's area for zips""" + with self.assertRaises( + psycopg2.IntegrityError), mute_logger('odoo.sql_db'): + self.env['res.city.zip'].create({ + 'name': '666', + 'city_id': self.city_lausanne.id, + }) - self.state_bcn = self.env['res.country.state'].create({ - 'name': 'Barcelona', - 'code': '08', - 'country_id': self.ref('base.es'), - }) - self.state_madrid = self.env['res.country.state'].create({ - 'name': 'Madrid', - 'code': '28', - 'country_id': self.ref('base.es'), - }) - self.city_bcn = self.env['res.city'].create({ - 'name': 'Barcelona', - 'state_id': self.state_bcn.id, - 'country_id': self.ref('base.es'), - }) - self.city_madrid = self.env['res.city'].create({ - 'name': 'Madrid', - 'state_id': self.state_madrid.id, - 'country_id': self.ref('base.es'), - }) - self.city_lausanne = self.env['res.city'].create({ - 'name': 'Lausanne', - 'state_id': self.state_vd.id, - 'country_id': self.ref('base.ch'), - }) + def test_city_sql_contraint(self): + """Test UNIQUE name within it's area for cities""" + with self.assertRaises( + psycopg2.IntegrityError), mute_logger('odoo.sql_db'): + self.env['res.city'].create({ + 'name': 'Barcelona', + 'state_id': self.state_bcn.id, + 'country_id': self.ref('base.es'), + }) diff --git a/base_location/views/better_zip_view.xml b/base_location/views/better_zip_view.xml deleted file mode 100644 index 207c88e92..000000000 --- a/base_location/views/better_zip_view.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - - res.better.zip.form - res.better.zip - -
- - - - - - - - - - - - - -
-
-
- - - res.better.zip.tree - res.better.zip - - - - - - - - - - - - - res.better.zip.select - res.better.zip - - - - - - - - - - - - - - - - - Locations - res.better.zip - form - tree,form - - - - - - - - -
diff --git a/base_location/views/res_city_view.xml b/base_location/views/res_city_view.xml new file mode 100644 index 000000000..5ad6fb9aa --- /dev/null +++ b/base_location/views/res_city_view.xml @@ -0,0 +1,63 @@ + + + + + res.city + + + + + + + 1 + + + + + + + + + res.city + +
+ + + + + + + + + + +
+
+
+ + + Cities + ir.actions.act_window + res.city + form + tree,form + + + Display and manage the list of all cities that can be assigned to + your partner records. Note that an option can be set on each country separately + to enforce any address of it to have a city in this list. + + + + + +
diff --git a/base_location/views/res_city_zip_view.xml b/base_location/views/res_city_zip_view.xml new file mode 100644 index 000000000..3eeb5f744 --- /dev/null +++ b/base_location/views/res_city_zip_view.xml @@ -0,0 +1,56 @@ + + + + + res.city.zip.form + res.city.zip + +
+ + + + +
+
+
+ + + res.city.zip.tree + res.city.zip + + + + + + + + + + res.city.zip.select + res.city.zip + + + + + + + + + + Locations + res.city.zip + form + tree,form + + + + + + +
diff --git a/base_location/views/company_view.xml b/base_location/views/res_company_view.xml similarity index 100% rename from base_location/views/company_view.xml rename to base_location/views/res_company_view.xml diff --git a/base_location/views/res_country_view.xml b/base_location/views/res_country_view.xml index cbf0f3ff3..0292f52ab 100644 --- a/base_location/views/res_country_view.xml +++ b/base_location/views/res_country_view.xml @@ -22,7 +22,7 @@ icon="fa-globe" type="action" context="{'default_country_id': active_id, 'search_default_country_id': active_id}" - string="Locations"> + string="Zips">
diff --git a/base_location/views/partner_view.xml b/base_location/views/res_partner_view.xml similarity index 99% rename from base_location/views/partner_view.xml rename to base_location/views/res_partner_view.xml index 1e8a016e5..e10fbd474 100644 --- a/base_location/views/partner_view.xml +++ b/base_location/views/res_partner_view.xml @@ -23,4 +23,3 @@ - diff --git a/base_location/views/state_view.xml b/base_location/views/state_view.xml deleted file mode 100644 index cbd4f72aa..000000000 --- a/base_location/views/state_view.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - view_country_state_form2 - res.country.state - - - - - - - - - - - - - - - - From dec32031dfb6da17faf0b0ced8091952c5721659 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Tue, 16 Oct 2018 11:49:28 +0200 Subject: [PATCH 27/27] [IMP] base_location: Add migration scripts --- .../migrations/12.0.1.0.0/post-migration.py | 35 +++++++++++++++++++ .../migrations/12.0.1.0.0/pre-migration.py | 15 ++++++++ 2 files changed, 50 insertions(+) create mode 100644 base_location/migrations/12.0.1.0.0/post-migration.py create mode 100644 base_location/migrations/12.0.1.0.0/pre-migration.py diff --git a/base_location/migrations/12.0.1.0.0/post-migration.py b/base_location/migrations/12.0.1.0.0/post-migration.py new file mode 100644 index 000000000..3f8ba212a --- /dev/null +++ b/base_location/migrations/12.0.1.0.0/post-migration.py @@ -0,0 +1,35 @@ +# Copyright 2018 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from psycopg2.extensions import AsIs +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + column_name = openupgrade.get_legacy_name('better_zip_id') + openupgrade.logged_query( + "ALTER TABLE res_city_zip ADD %s INTEGER", (AsIs(column_name), ), + ) + openupgrade.logged_query( + env.cr, """ + INSERT INTO res_city_zip ( + %s, name, city_id + ) + SELECT + id, name, city_id + FROM res_better_zip + WHERE city_id IS NOT NULL""", + (AsIs(column_name), ), + ) + # Recompute display name for entries inserted by SQL + env['res.city.zip'].search([])._compute_new_display_name() + # Link res.partner with corresponding new entries + openupgrade.logged_query( + env.cr, """ + UPDATE res_partner rp + SET zip_id = rcz.id + FROM res_city_zip rcz + WHERE rcz.%s = rp.%s""", + (AsIs(column_name), AsIs(openupgrade.get_legacy_name('zip_id')), ), + ) diff --git a/base_location/migrations/12.0.1.0.0/pre-migration.py b/base_location/migrations/12.0.1.0.0/pre-migration.py new file mode 100644 index 000000000..f9a069612 --- /dev/null +++ b/base_location/migrations/12.0.1.0.0/pre-migration.py @@ -0,0 +1,15 @@ +# Copyright 2018 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.rename_columns( + env.cr, { + 'res_partner': [ + ('zip_id', None), + ] + } + )