From 31b1401021aee26e21eda9deafe44ea69e82c91d Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 25 Jun 2013 10:29:42 +0200 Subject: [PATCH 01/32] [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 000000000000..ba9aeedeab05 --- /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 000000000000..682a4d90bc12 --- /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 000000000000..56de4616e83f --- /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 000000000000..0fc8d11deefb --- /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 000000000000..03ab50bb5cbb --- /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 000000000000..d697158e38ce --- /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 000000000000..6d35374c8090 --- /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 000000000000..22c7becb2a17 --- /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 000000000000..c7d5fc968231 --- /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 000000000000..b6db7bc8bf86 --- /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 000000000000..cc6b293016ed --- /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 000000000000..c6562df1bf86 --- /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 000000000000..4312384afb48 --- /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 000000000000..96497c9e5763 --- /dev/null +++ b/base_location/state_view.xml @@ -0,0 +1,26 @@ + + + + + + view_country_state_form2 + res.country.state + + + + + + + + + + + + + + + + From 0a1e9e60548cdfefcc2ee6c15e9d5afafc7fcfba Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Tue, 25 Jun 2013 10:57:02 +0200 Subject: [PATCH 02/32] 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 000000000000..d93cec6feec1 --- /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 22c7becb2a17..fca36c59d9a4 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 c58a3563978924bde81620670ea590b808f3cca4 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 9 Jul 2013 10:03:15 +0200 Subject: [PATCH 03/32] [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 56de4616e83f..8d6d016148e5 100644 --- a/base_location/better_zip.py +++ b/base_location/better_zip.py @@ -51,7 +51,7 @@ def name_get(self, cursor, uid, ids, context=None): 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 03ab50bb5cbb..6f52c7bd003a 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 dacf3f5efcdede3e66d3a4f0b678bac2fc538a37 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 31 Jul 2013 17:02:17 +0200 Subject: [PATCH 04/32] [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 8d6d016148e5..562a842e3e59 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 0fc8d11deefb..de67ec1afe09 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 d93cec6feec1..078e79ab2921 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 fca36c59d9a4..3ff60e23194b 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 cc6b293016ed..1329b1e02083 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 7b9c78bc1669592e11ec53650ece176c45ec4079 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Tue, 11 Feb 2014 18:31:33 -0500 Subject: [PATCH 05/32] [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 ba9aeedeab05..878769646f9e 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 562a842e3e59..c51644a12679 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 @@ def name_get(self, cursor, uid, ids, context=None): 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 6f52c7bd003a..35ef3d856d4a 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 @@ def on_change_city(self, cr, uid, ids, zip_id, context=None): 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 b6db7bc8bf86..76218ecd54a5 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 @@ def onchange_zip_id(self, cursor, uid, ids, zip_id, context=None): 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 4312384afb48..24cc81e207a5 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 59c03a7a631701eeccbe62eaac28e1618b69b530 Mon Sep 17 00:00:00 2001 From: Franco Tampieri Date: Mon, 22 Sep 2014 16:40:24 +0200 Subject: [PATCH 06/32] [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 000000000000..e87fffdeee87 --- /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 1329b1e02083..b75b04a3ad08 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 6685ccbe09f749fb45101b12f119c092d05da874 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 29 Dec 2014 15:46:56 +0100 Subject: [PATCH 07/32] 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 b75b04a3ad08..ae4e3190c414 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/32] 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 000000000000..916496908071 --- /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 bfbd973a090302936bb733c51948f97a5069af29 Mon Sep 17 00:00:00 2001 From: Alejandro Santana Date: Mon, 19 Jan 2015 00:35:12 +0100 Subject: [PATCH 09/32] [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 000000000000..817183a5b934 --- /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 878769646f9e..bb01c93ee7a0 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 682a4d90bc12..3a8d3b223e53 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 c51644a12679..000000000000 --- 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 de67ec1afe09..000000000000 --- 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 9aa24e358216..000000000000 --- 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 000000000000..351a33ad116f --- /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 000000000000..3f86f8ed44bb --- /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 35ef3d856d4a..6368761cfd0b 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 76218ecd54a5..c16ae83b1daf 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 24cc81e207a5..d9db12e505c6 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 ae4e3190c414..000000000000 --- 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 96497c9e5763..000000000000 --- 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 000000000000..d0e1782a78d1 --- /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 000000000000..e723db3a7c42 --- /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 000000000000..517a179e94e6 --- /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 000000000000..7e1deaa094c1 --- /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 000000000000..38b550c9706c --- /dev/null +++ b/base_location/views/state_view.xml @@ -0,0 +1,26 @@ + + + + + + view_country_state_form2 + res.country.state + + + + + + + + + + + + + + + + From 2045985bb7c2a37ae95d7e84cab2829ce503965e Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 25 Feb 2015 22:56:47 +0100 Subject: [PATCH 10/32] [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 817183a5b934..8c0350d9eadf 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 000000000000..c3e4d6059b4d --- /dev/null +++ b/base_location/static/description/icon.svg @@ -0,0 +1,304 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From dcaa5e6b77167aab9789308a926d82888db56f35 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Mon, 16 Mar 2015 12:29:24 -0400 Subject: [PATCH 11/32] 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 8c0350d9eadf..0fb7de7a533e 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 3a8d3b223e53..bb9a25e36571 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 000000000000..7ecc6b14b2b3 --- /dev/null +++ b/base_location/demo/better_zip.xml @@ -0,0 +1,12 @@ + + + + + + 1000 + Brussels + + + + + From 7cf35b4ca5676d95214162c19be30bdd61d3ddc7 Mon Sep 17 00:00:00 2001 From: Juan Jose Scarafia Date: Sat, 21 Mar 2015 09:53:00 -0300 Subject: [PATCH 12/32] 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 3f86f8ed44bb..7790d9ff7f43 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 1ec32f4101ffa2164d3b8d27b47625fb3f086328 Mon Sep 17 00:00:00 2001 From: Hans Henrik Gabelgaard Date: Fri, 22 May 2015 13:20:41 +0200 Subject: [PATCH 13/32] 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 916496908071..456ceb4c0157 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 61b11b8e20ae4da30ee3c44dd1bf0be98d270072 Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Wed, 14 Oct 2015 11:40:23 +0200 Subject: [PATCH 14/32] [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 0fb7de7a533e..d3434c55692c 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 bb9a25e36571..b987141b9778 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 456ceb4c0157..cd7b6f2a4d2f 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 000000000000..25f20f340b6b --- /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 6d35374c8090..000000000000 --- 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 3ff60e23194b..06c30de9287b 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 000000000000..3d36cda580cc --- /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 c7d5fc968231..ff09b5bc95e4 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 000000000000..e14c2ea2140f --- /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 e87fffdeee87..cb80dd6cc348 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 000000000000..dcd6295d2979 --- /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 000000000000..572adff93c45 --- /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 000000000000..3b9e20558bc2 --- /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 000000000000..78c6dfa4c06b --- /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 000000000000..30ea0a7432b4 --- /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 d0e1782a78d1..cfe13bc52657 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 517a179e94e6..cade97e03b40 100644 --- a/base_location/views/partner_view.xml +++ b/base_location/views/partner_view.xml @@ -7,17 +7,16 @@ res.partner -
+ -
- - + + From b24c1d6aea91f87063ff63bb5b269c67810622c2 Mon Sep 17 00:00:00 2001 From: Francesco Apruzzese Date: Wed, 19 Oct 2016 10:57:33 +0200 Subject: [PATCH 15/32] [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/__manifest__.py | 30 ++++++ base_location/__openerp__.py | 54 ---------- 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 ++++---- 16 files changed, 196 insertions(+), 316 deletions(-) create mode 100644 base_location/__manifest__.py delete mode 100644 base_location/__openerp__.py diff --git a/base_location/README.rst b/base_location/README.rst index d3434c55692c..9cafe8b0cc0c 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 bb01c93ee7a0..a5fc6a4d086e 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/__manifest__.py b/base_location/__manifest__.py new file mode 100644 index 000000000000..969b89308121 --- /dev/null +++ b/base_location/__manifest__.py @@ -0,0 +1,30 @@ +# -*- 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.0', + 'depends': [ + 'base', + ], + 'author': "Camptocamp," + "ACYSOS S.L.," + "Alejandro Santana," + "Tecnativa," + "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'], + 'demo': [ + 'demo/better_zip.xml', + ], + 'installable': True, + 'auto_install': False, +} diff --git a/base_location/__openerp__.py b/base_location/__openerp__.py deleted file mode 100644 index b987141b9778..000000000000 --- a/base_location/__openerp__.py +++ /dev/null @@ -1,54 +0,0 @@ -# -*- 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 . -# -############################################################################## -{ - 'name': 'Location management (aka Better ZIP)', - 'version': '9.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': [ - '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', - 'views/state_view.xml', - 'views/res_country_view.xml', - 'views/company_view.xml', - 'views/partner_view.xml', - 'security/ir.model.access.csv'], - 'demo': [ - 'demo/better_zip.xml', - ], - 'installable': True, - 'auto_install': False, -} diff --git a/base_location/models/__init__.py b/base_location/models/__init__.py index 351a33ad116f..3d1df1e8d959 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 7790d9ff7f43..c85ea78ae300 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 6368761cfd0b..d1970d2ae122 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 @@ def on_change_city(self): 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 c16ae83b1daf..1eaa08cf35d1 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 d9db12e505c6..5c3b31f604b8 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 78c6dfa4c06b..3c8d5b3d971f 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 30ea0a7432b4..cf75c05f330e 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 cfe13bc52657..d384c7d8e5a0 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 e723db3a7c42..a2775ebd06aa 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 cade97e03b40..cc3499b401ad 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 7e1deaa094c1..d45cd0cb17b6 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 38b550c9706c..e4e37845d402 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 cee448d70f5fc25c5dbe0bb1b500d420249761c8 Mon Sep 17 00:00:00 2001 From: kitcharoen poolperm Date: Thu, 5 Jan 2017 12:54:40 +0700 Subject: [PATCH 16/32] [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 e4e37845d402..cbd4f72aa942 100644 --- a/base_location/views/state_view.xml +++ b/base_location/views/state_view.xml @@ -10,7 +10,7 @@ From e96e899a9a6c69e03542faf002550414c352af5d Mon Sep 17 00:00:00 2001 From: Dave Lasley Date: Sun, 23 Apr 2017 17:00:18 -0700 Subject: [PATCH 17/32] [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/__manifest__.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 9cafe8b0cc0c..5f52c2da8732 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/__manifest__.py b/base_location/__manifest__.py index 969b89308121..91b865f5ec5f 100644 --- a/base_location/__manifest__.py +++ b/base_location/__manifest__.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 c85ea78ae300..777f736ce002 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 115198ebd22909e397a7bcab222468e09dec20dd Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 17 Sep 2016 20:36:48 -0400 Subject: [PATCH 18/32] 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 000000000000..2660a3c83ec2 --- /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 000000000000..9898f8470430 --- /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 000000000000..06f2727bba17 --- /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 000000000000..c93c48eaa105 --- /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 000000000000..504a292dc58f --- /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 000000000000..56e52a487429 --- /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 cd7b6f2a4d2f..5d2804caaedb 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 25f20f340b6b..17ad4b5efc64 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 000000000000..687f1a87aa62 --- /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 000000000000..c2debc4e003d --- /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 06c30de9287b..3e40cc746569 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 000000000000..bc17abfc60b3 --- /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 000000000000..e3fc9e6ef7c6 --- /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 000000000000..b90344bf6a30 --- /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 000000000000..3f8510c26993 --- /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 000000000000..dadf6b8ba59a --- /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 000000000000..36a08360d97d --- /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 000000000000..dbb4ef996db4 --- /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 000000000000..c3fe5a9218f9 --- /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 000000000000..c64de812c500 --- /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 000000000000..6cfc3194c511 --- /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 000000000000..94b54134d421 --- /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 000000000000..9bd678fca074 --- /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 000000000000..7941d5c80cb0 --- /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 000000000000..8df411110ce1 --- /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 3d36cda580cc..cf90f31c5e6a 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 ff09b5bc95e4..f4ab5c2655b7 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 000000000000..1ac5e71f34c5 --- /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 000000000000..ff0a4ce13d72 --- /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 000000000000..16f373fb6e95 --- /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 000000000000..32409ac1a725 --- /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 000000000000..fe24c5994872 --- /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 000000000000..8efe09ce9eb0 --- /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 e14c2ea2140f..3368aca269da 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 000000000000..d00e3e719640 --- /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 000000000000..122547ef6912 --- /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 cb80dd6cc348..7e6090af4589 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 000000000000..ffc355d1d0fa --- /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 000000000000..e10ae09c7f0e --- /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 000000000000..02963ff34c70 --- /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 000000000000..a2cdc8e739df --- /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 000000000000..31fb16609433 --- /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 000000000000..513cd3a89dc5 --- /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 000000000000..8a9439a682c6 --- /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 000000000000..2b60465c2c43 --- /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 000000000000..e0c88875cc34 --- /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 dcd6295d2979..55453dac7153 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 000000000000..cd93f8d0a5dc --- /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 000000000000..86e211da6f67 --- /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 000000000000..f6681964374d --- /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 000000000000..b82eab1588fe --- /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 572adff93c45..1b397fa5e1f4 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 000000000000..8423876a8c16 --- /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 000000000000..4c3ce8ba2c57 --- /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 000000000000..c11b4bbd68f0 --- /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 000000000000..22e316c8cceb --- /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 3b9e20558bc2..a6e891fc4d29 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 000000000000..849820d4f41e --- /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 000000000000..303affca3367 --- /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 000000000000..e7897c4b6c6a --- /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 000000000000..3c906deddbfa --- /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 000000000000..c1a49401453c --- /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 000000000000..2db05ef272c6 --- /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 000000000000..87cdc9c36a8a --- /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 000000000000..5f7edc1c21ec --- /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 000000000000..02a519b60baf --- /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 000000000000..a064d0f4162d --- /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 000000000000..ba243fe11742 --- /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 ff21c09282823907b3c32b854424a1c4e507c47a Mon Sep 17 00:00:00 2001 From: etobella Date: Wed, 18 Oct 2017 09:39:14 +0200 Subject: [PATCH 19/32] [MIG] base_location --- base_location/README.rst | 53 ++-- base_location/__init__.py | 1 - base_location/__manifest__.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 5f52c2da8732..160dbf7c097d 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 a5fc6a4d086e..e2aed6e67bf2 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/__manifest__.py b/base_location/__manifest__.py index 91b865f5ec5f..ab99a039d25d 100644 --- a/base_location/__manifest__.py +++ b/base_location/__manifest__.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 7ecc6b14b2b3..0c7f3b9ee709 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 3d1df1e8d959..3f7a893a5bd6 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 777f736ce002..be949fe23ed8 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 d1970d2ae122..3c0e7856099c 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 @@ 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 1eaa08cf35d1..61e1729200b5 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 5c3b31f604b8..5161a34a64a9 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 c6562df1bf86..5ef6c8b463c7 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 3c8d5b3d971f..372da9775f1f 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 000000000000..b179f3b5dabc --- /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 cf75c05f330e..000000000000 --- 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 d384c7d8e5a0..207c88e92c02 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 cc3499b401ad..1e8a016e5275 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 d45cd0cb17b6..cbf0f3ff37c5 100644 --- a/base_location/views/res_country_view.xml +++ b/base_location/views/res_country_view.xml @@ -12,4 +12,20 @@ + + res.country + + + + + + + + From 07ea1b4f6ecb57c4eac63111945413141d597741 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 25 Nov 2017 07:36:02 +0100 Subject: [PATCH 20/32] 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 2660a3c83ec2..1b9abbf71bee 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 9898f8470430..ffc7d31e0320 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 06f2727bba17..9b81f435a96f 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 c93c48eaa105..f319487ba320 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 504a292dc58f..b47c59d0cf3d 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 56e52a487429..920560f1d421 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 5d2804caaedb..4a15f9245cf7 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 17ad4b5efc64..a47e14440190 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 687f1a87aa62..75676e09c960 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 c2debc4e003d..a0e3ce4f9789 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 3e40cc746569..9b7ba6d26b54 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 bc17abfc60b3..1a94159ba054 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 e3fc9e6ef7c6..e39fb9afce6e 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 b90344bf6a30..7f7c384da071 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 3f8510c26993..e83379d4258b 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 dadf6b8ba59a..0d13355fbf0f 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 36a08360d97d..3478e97494e3 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 dbb4ef996db4..9a07ab10de86 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 c3fe5a9218f9..5e00e37de630 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 c64de812c500..3b01f52cde39 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 6cfc3194c511..70a8af4fe97c 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 94b54134d421..fcdc3bbe1fe5 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 9bd678fca074..6f19012399c9 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 7941d5c80cb0..c2e914349c01 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 8df411110ce1..60592de2a0f5 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 cf90f31c5e6a..e24911afa3b7 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 f4ab5c2655b7..d136de28c8db 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 1ac5e71f34c5..c05dff2a3df1 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 ff0a4ce13d72..ad561544b751 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 16f373fb6e95..1954724ed553 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 fe24c5994872..05529422da3f 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 8efe09ce9eb0..3eb642e8a5f0 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 3368aca269da..7e34d49a5bfa 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 d00e3e719640..f780baafac05 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 122547ef6912..b4c7576a0dfd 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 7e6090af4589..74a958d5b10a 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 ffc355d1d0fa..18ddb62cba9d 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 e10ae09c7f0e..14d4781d6b80 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 02963ff34c70..4fd050ee7f7d 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 31fb16609433..3aa60a9fb496 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 513cd3a89dc5..a14597cbf7af 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 8a9439a682c6..0fb0e5516f0d 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 2b60465c2c43..f96bd216dc2e 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 e0c88875cc34..727ecc9a3d2d 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 55453dac7153..7cff9e39dc4a 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 cd93f8d0a5dc..66c2a26a3995 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 86e211da6f67..51b41e64277d 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 f6681964374d..18ba7f94e512 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 b82eab1588fe..463d2beebdf7 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 1b397fa5e1f4..22aee121de40 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 8423876a8c16..dc50add7c5bd 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 4c3ce8ba2c57..fbef1aa9656d 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 c11b4bbd68f0..66485bb7cfc7 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 22e316c8cceb..a4c3345ef84c 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 a6e891fc4d29..82adc3f7b818 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 849820d4f41e..95ff1010dd23 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 303affca3367..c62ce8e0d61c 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 e7897c4b6c6a..55b5978b640d 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 3c906deddbfa..7ff237cac220 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 c1a49401453c..3a38341c1373 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 2db05ef272c6..01eb98e4bb3c 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 87cdc9c36a8a..ee39d26539f9 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 5f7edc1c21ec..e39d45fb8ab7 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 02a519b60baf..6f35c2d8d458 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 a064d0f4162d..4679587df3d1 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 ba243fe11742..73ca9451b2b1 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 76e77c0020886c3819fc389893d8f05b1430746d Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Fri, 20 Apr 2018 06:48:13 +0200 Subject: [PATCH 21/32] [IMP] base_location: Include onchange for state Incredibly not included in Odoo core. --- base_location/__manifest__.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/__manifest__.py b/base_location/__manifest__.py index ab99a039d25d..1d4810eba396 100644 --- a/base_location/__manifest__.py +++ b/base_location/__manifest__.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 3c0e7856099c..1016a1d2328b 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 @@ def _onchange_zip_id(self): 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 61e1729200b5..befddd1ffc12 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 @@ def _check_zip(self): 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 756e322975d28a50ad6ac04919540b20714b56b3 Mon Sep 17 00:00:00 2001 From: Carli Samuele Date: Wed, 16 May 2018 18:51:01 +0200 Subject: [PATCH 22/32] [IMP] base_location: name_search improvement (#585) --- 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 +-- base_location/models/better_zip.py | 8 + base_location/tests/test_base_location.py | 60 +++++++ 71 files changed, 986 insertions(+), 671 deletions(-) diff --git a/base_location/i18n/am.po b/base_location/i18n/am.po index 1b9abbf71bee..3c6e925d144d 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 ffc7d31e0320..036856d904d2 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 078e79ab2921..17ed884bd781 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 9b81f435a96f..692c4bcb6d82 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 f319487ba320..cbb118f88133 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 b47c59d0cf3d..c4542aafc9fb 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 920560f1d421..759b823710b3 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 4a15f9245cf7..aa6bd4cf929a 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 a47e14440190..976210f07098 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 75676e09c960..699becb0c9a9 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 a0e3ce4f9789..1f0032216ec0 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 9b7ba6d26b54..423da73fb0df 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 1a94159ba054..f82d675b4f77 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 e39fb9afce6e..814c05f20ea9 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 7f7c384da071..7da14d70efac 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 e83379d4258b..19f8cdcb486c 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 0d13355fbf0f..227bde8fb33b 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 3478e97494e3..822ae95e03e6 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 9a07ab10de86..0e94d69f8f4f 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 5e00e37de630..ccf836d53877 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 3b01f52cde39..897def3aa677 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 70a8af4fe97c..e896833cda0a 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 fcdc3bbe1fe5..cc59e5c7292a 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 6f19012399c9..2dbb116d226d 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 c2e914349c01..6717f0924c15 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 60592de2a0f5..7672e82777a2 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 e24911afa3b7..9636485e113a 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 d136de28c8db..8350133805dd 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 c05dff2a3df1..989fe1821b6f 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 ad561544b751..92bc9f46c2ed 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 1954724ed553..f1283d6f152e 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 32409ac1a725..4bf60b3108be 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 05529422da3f..cc1bacf32cf6 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 3eb642e8a5f0..0a8c43b18516 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 7e34d49a5bfa..cca5c3073700 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 f780baafac05..f5e2f9336e2f 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 b4c7576a0dfd..2995d677a73d 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 74a958d5b10a..67e0b7ec44d4 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 18ddb62cba9d..1463f42e2f0a 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 14d4781d6b80..c7b12df1061d 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 4fd050ee7f7d..d69d703320ac 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 a2cdc8e739df..5f4dd1a95d20 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 3aa60a9fb496..97ddb9ca3eab 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 a14597cbf7af..184b9ca0fb82 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 0fb0e5516f0d..e96d72a73fcd 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 f96bd216dc2e..795ca2de9dce 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 727ecc9a3d2d..e591a9dbcf16 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 7cff9e39dc4a..ec4497654bf5 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 66c2a26a3995..4528509bac5a 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 51b41e64277d..adf345e29bf0 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 18ba7f94e512..1627eeacf87a 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 463d2beebdf7..638bf3a4575d 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 22aee121de40..0b7e6bf89fc5 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 dc50add7c5bd..0434cf4c9a1d 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 fbef1aa9656d..c6354cb0b820 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 66485bb7cfc7..6778bf5cb8b5 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 a4c3345ef84c..f9627b0e845f 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 82adc3f7b818..75f906f3aac8 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 95ff1010dd23..4c1a1e13a058 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 c62ce8e0d61c..110f4e97573e 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 55b5978b640d..719d37b87f14 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 7ff237cac220..51e41b38ebcb 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 3a38341c1373..a114385187fa 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 01eb98e4bb3c..f30697c0a5af 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 ee39d26539f9..b852b5d526e6 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 e39d45fb8ab7..557a4ea7fee0 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 6f35c2d8d458..8c12755babbb 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 4679587df3d1..ed4b50240abd 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 73ca9451b2b1..9f688316dd3f 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 "" diff --git a/base_location/models/better_zip.py b/base_location/models/better_zip.py index be949fe23ed8..991ffa6c816a 100644 --- a/base_location/models/better_zip.py +++ b/base_location/models/better_zip.py @@ -51,6 +51,14 @@ def name_get(self): 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 b179f3b5dabc..b86817bcbcf6 100644 --- a/base_location/tests/test_base_location.py +++ b/base_location/tests/test_base_location.py @@ -231,6 +231,66 @@ def test_display_name(self): ).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 6999387eca49a5e0ff514cf648cd103d0f1fc078 Mon Sep 17 00:00:00 2001 From: Enric Tobella Date: Fri, 13 Jul 2018 09:35:02 +0000 Subject: [PATCH 23/32] 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 423da73fb0df..71fa54b3aad1 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 93557cba83035245c8f47fd22546009ab11d16a2 Mon Sep 17 00:00:00 2001 From: Rudolf Schnapka Date: Wed, 22 Aug 2018 12:28:12 +0000 Subject: [PATCH 24/32] 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 976210f07098..37521f9cb830 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 8bb4bcb167540e4b25ad8a758ba36c66e94517d8 Mon Sep 17 00:00:00 2001 From: Aitor Bouzas Date: Mon, 8 Oct 2018 17:04:28 +0200 Subject: [PATCH 25/32] [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/__manifest__.py | 24 +- base_location/demo/better_zip.xml | 8 - base_location/demo/res_city_zip.xml | 13 + base_location/i18n/am.po | 148 +++--- base_location/i18n/ar.po | 153 +++--- base_location/i18n/base_location.pot | 144 +++--- base_location/i18n/bg.po | 153 +++--- base_location/i18n/bs.po | 153 +++--- base_location/i18n/ca.po | 153 +++--- base_location/i18n/cs.po | 153 +++--- base_location/i18n/da.po | 179 +++---- base_location/i18n/de.po | 206 ++++---- base_location/i18n/el_GR.po | 153 +++--- base_location/i18n/en_GB.po | 153 +++--- base_location/i18n/es.po | 183 +++---- base_location/i18n/es_AR.po | 153 +++--- base_location/i18n/es_CL.po | 153 +++--- base_location/i18n/es_CO.po | 159 +++--- base_location/i18n/es_CR.po | 153 +++--- base_location/i18n/es_DO.po | 153 +++--- base_location/i18n/es_EC.po | 153 +++--- base_location/i18n/es_ES.po | 148 +++--- base_location/i18n/es_MX.po | 153 +++--- base_location/i18n/es_PE.po | 153 +++--- base_location/i18n/es_PY.po | 153 +++--- base_location/i18n/es_VE.po | 153 +++--- base_location/i18n/et.po | 153 +++--- base_location/i18n/eu.po | 153 +++--- base_location/i18n/fa.po | 153 +++--- base_location/i18n/fi.po | 151 +++--- base_location/i18n/fr.po | 185 +++---- base_location/i18n/fr_CA.po | 148 +++--- base_location/i18n/fr_CH.po | 148 +++--- base_location/i18n/gl.po | 153 +++--- base_location/i18n/gl_ES.po | 148 +++--- base_location/i18n/he.po | 153 +++--- base_location/i18n/hr.po | 153 +++--- base_location/i18n/hr_HR.po | 179 +++---- base_location/i18n/hu.po | 153 +++--- base_location/i18n/id.po | 153 +++--- base_location/i18n/it.po | 179 +++---- base_location/i18n/ja.po | 153 +++--- base_location/i18n/ko.po | 153 +++--- base_location/i18n/lt.po | 153 +++--- base_location/i18n/lt_LT.po | 148 +++--- base_location/i18n/lv.po | 153 +++--- base_location/i18n/mk.po | 153 +++--- base_location/i18n/mn.po | 153 +++--- base_location/i18n/nb.po | 153 +++--- base_location/i18n/nb_NO.po | 153 +++--- base_location/i18n/nl.po | 156 +++--- base_location/i18n/nl_BE.po | 153 +++--- base_location/i18n/nl_NL.po | 182 +++---- base_location/i18n/pl.po | 153 +++--- base_location/i18n/pt.po | 153 +++--- base_location/i18n/pt_BR.po | 185 +++---- base_location/i18n/pt_PT.po | 176 ++++--- base_location/i18n/ro.po | 153 +++--- base_location/i18n/ru.po | 148 +++--- base_location/i18n/sk.po | 153 +++--- base_location/i18n/sl.po | 179 +++---- base_location/i18n/sr.po | 153 +++--- base_location/i18n/sr@latin.po | 153 +++--- base_location/i18n/sv.po | 153 +++--- base_location/i18n/th.po | 153 +++--- base_location/i18n/tr.po | 153 +++--- base_location/i18n/tr_TR.po | 148 +++--- base_location/i18n/uk.po | 153 +++--- base_location/i18n/vi.po | 153 +++--- base_location/i18n/vi_VN.po | 148 +++--- base_location/i18n/zh_CN.po | 153 +++--- base_location/i18n/zh_TW.po | 153 +++--- 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 - 97 files changed, 6029 insertions(+), 6351 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 160dbf7c097d..33b6fe83c55f 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 e2aed6e67bf2..69f7babdfb1a 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/__manifest__.py b/base_location/__manifest__.py index 1d4810eba396..5328567078a9 100644 --- a/base_location/__manifest__.py +++ b/base_location/__manifest__.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 0c7f3b9ee709..000000000000 --- 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 000000000000..e940e49f1f57 --- /dev/null +++ b/base_location/demo/res_city_zip.xml @@ -0,0 +1,13 @@ + + + + + Brussels + + + + + 1000 + + + diff --git a/base_location/i18n/am.po b/base_location/i18n/am.po index 3c6e925d144d..583262dfa302 100644 --- a/base_location/i18n/am.po +++ b/base_location/i18n/am.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/ar.po b/base_location/i18n/ar.po index 036856d904d2..127bafb3b013 100644 --- a/base_location/i18n/ar.po +++ b/base_location/i18n/ar.po @@ -20,40 +20,42 @@ msgstr "" "&& 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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "أنشئ بواسطة" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "أنشئ في" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "تجميع حسب" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "المعرف" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "تجميع حسب" diff --git a/base_location/i18n/base_location.pot b/base_location/i18n/base_location.pot index 17ed884bd781..b65883179310 100644 --- a/base_location/i18n/base_location.pot +++ b/base_location/i18n/base_location.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -14,38 +14,40 @@ msgstr "" "Plural-Forms: \n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -60,156 +62,132 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "You already have a zip with that code in the same city. The zip code must be unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/bg.po b/base_location/i18n/bg.po index 692c4bcb6d82..5ecab1f58179 100644 --- a/base_location/i18n/bg.po +++ b/base_location/i18n/bg.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "Създадено от" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Създадено на" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Групиране по" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Групиране по" diff --git a/base_location/i18n/bs.po b/base_location/i18n/bs.po index cbb118f88133..e0edd089dfc4 100644 --- a/base_location/i18n/bs.po +++ b/base_location/i18n/bs.po @@ -20,40 +20,42 @@ msgstr "" "%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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Kreirano" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupiši po" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupiši po" diff --git a/base_location/i18n/ca.po b/base_location/i18n/ca.po index c4542aafc9fb..d0e00bde7ec5 100644 --- a/base_location/i18n/ca.po +++ b/base_location/i18n/ca.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creat el" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupa Per" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupa Per" diff --git a/base_location/i18n/cs.po b/base_location/i18n/cs.po index 759b823710b3..b58fec447ebf 100644 --- a/base_location/i18n/cs.po +++ b/base_location/i18n/cs.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Vytvořeno" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Seskupit podle" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Seskupit podle" diff --git a/base_location/i18n/da.po b/base_location/i18n/da.po index aa6bd4cf929a..3b42ae71b416 100644 --- a/base_location/i18n/da.po +++ b/base_location/i18n/da.po @@ -19,40 +19,43 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Byer" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "By" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" -msgstr "Postnummer" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "By" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Slå by/postnummer op" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +70,153 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 "Delstat/region" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "Oprettet af" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Oprettet den" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Gruppér efter" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_zip____last_update msgid "Last Modified on" msgstr "Sidst ændret den" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_uid msgid "Last Updated by" msgstr "Sidst opdateret af" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_date +#: model:ir.model.fields,field_description:base_location.field_res_city_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 -#: model:ir.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" msgstr "Søg by" #. 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 "Delstat" - -#. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" +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_better_zip_code -msgid "The official code for the city" -msgstr "Postnummer" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: 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 "" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Postnummer" + +#~ msgid "Country state" +#~ msgstr "Delstat/region" + +#~ msgid "Group By" +#~ msgstr "Gruppér efter" + +#~ msgid "State" +#~ msgstr "Delstat" + +#~ msgid "The official code for the city" +#~ msgstr "Postnummer" diff --git a/base_location/i18n/de.po b/base_location/i18n/de.po index 37521f9cb830..ffee5d15b46c 100644 --- a/base_location/i18n/de.po +++ b/base_location/i18n/de.po @@ -20,8 +20,12 @@ msgstr "" "X-Generator: Weblate 3.1.1\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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." @@ -31,32 +35,31 @@ msgstr "" "Landes ausgewählt ist." #. 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Orte" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id 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" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Stadt" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Orts-Vervollständigung" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "Stadt/Standorte-Vervollständungsobjekt" @@ -71,158 +74,175 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "erstellt am" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 "Städte erzwingen" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Gruppiere" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "Städte erzwingen" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date 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 "Breitengrad" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "Location completion" 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 "Standorte" #. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Locations Management" -msgstr "Standorteverwaltung" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_longitude -msgid "Longitude" -msgstr "Längengrad" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Search city" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" msgstr "Suche Stadt" #. 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 -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, python-format msgid "The city of partner %s differs from that in location %s" 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 "Das Land der Stadt unterscheidet sich vom Land des Standorts %s" - -#. module: base_location -#: code:addons/base_location/models/partner.py:61 +#: code:addons/base_location/models/res_partner.py:63 #, python-format msgid "The country of the partner %s differs from that in location %s" 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" -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 -msgid "The official code for the city" -msgstr "Die offizielle Kennung der Stadt" +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 -#: code:addons/base_location/models/better_zip.py:106 -#, python-format -msgid "The state of the city differs from the state in location %s" +#: 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 "" -"Das Bundesland der Stadt unterscheidet sich vom Bundesland am Standort %s" +"Verwenden Sie den Stadtnamen oder die PLZ, um nach diesem Standort zu suchen" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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 -msgid "Use the city name or the zip code to search the location" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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.model.fields,field_description:base_location.field_res_city_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 +#: 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 "Standort-PLZ" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Ortskennung" + +#~ msgid "Country state" +#~ msgstr "Bundesland" + +#~ msgid "Group By" +#~ msgstr "Gruppiere" + +#~ msgid "Latitude" +#~ msgstr "Breitengrad" + +#~ msgid "Locations Management" +#~ msgstr "Standorteverwaltung" + +#~ msgid "Longitude" +#~ msgstr "Längengrad" + +#~ msgid "State" +#~ msgstr "Bundesland" + +#~ msgid "The country of the city differs from the country in location %s" +#~ msgstr "Das Land der Stadt unterscheidet sich vom Land des Standorts %s" + +#~ msgid "The country of the state differs from the country in location %s" +#~ msgstr "" +#~ "Das Land des Bundeslands unterscheidet sich vom Land des Standorts %s" + +#~ msgid "The official code for the city" +#~ msgstr "Die offizielle Kennung der Stadt" + +#~ 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" diff --git a/base_location/i18n/el_GR.po b/base_location/i18n/el_GR.po index 699becb0c9a9..cf5086c3791a 100644 --- a/base_location/i18n/el_GR.po +++ b/base_location/i18n/el_GR.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Ομαδοποίηση Ανά" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "Κωδικός" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Ομαδοποίηση Ανά" diff --git a/base_location/i18n/en_GB.po b/base_location/i18n/en_GB.po index 1f0032216ec0..6cfd41a32c7d 100644 --- a/base_location/i18n/en_GB.po +++ b/base_location/i18n/en_GB.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Created on" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Group By" diff --git a/base_location/i18n/es.po b/base_location/i18n/es.po index 71fa54b3aad1..0a1aecd1f1c2 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -20,40 +20,43 @@ msgstr "" "X-Generator: Weblate 3.0.1\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "Ciudad" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" -msgstr "Código de ciudad" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Ciudad" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Autocompletado a partir de la ciudad" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "Autocompletado de objetos a partir de ciudades/ubicaciones" @@ -68,156 +71,160 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 "Provincia" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 "Latitud" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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 "Longitud" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Search city" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" msgstr "Buscar ciudad" #. 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: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:61 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the partner %s differs from that in location %s" +msgid "The state 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" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" +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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" 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 -msgid "ZIP" -msgstr "C.P." +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "City Code" +#~ msgstr "Código de ciudad" + +#~ msgid "Country state" +#~ msgstr "Provincia" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" + +#~ msgid "Latitude" +#~ msgstr "Latitud" + +#~ msgid "Longitude" +#~ msgstr "Longitud" + +#~ msgid "State" +#~ msgstr "Provincia" + +#~ msgid "The official code for the city" +#~ msgstr "El código oficial para la ciudad" diff --git a/base_location/i18n/es_AR.po b/base_location/i18n/es_AR.po index f82d675b4f77..78385e00adb2 100644 --- a/base_location/i18n/es_AR.po +++ b/base_location/i18n/es_AR.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_CL.po b/base_location/i18n/es_CL.po index 814c05f20ea9..c3838889f018 100644 --- a/base_location/i18n/es_CL.po +++ b/base_location/i18n/es_CL.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_CO.po b/base_location/i18n/es_CO.po index 7da14d70efac..42e4de7bdab6 100644 --- a/base_location/i18n/es_CO.po +++ b/base_location/i18n/es_CO.po @@ -22,40 +22,43 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "Ciudad" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" -msgstr "Código Ciudad" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Ciudad" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -70,155 +73,143 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "City Code" +#~ msgstr "Código Ciudad" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_CR.po b/base_location/i18n/es_CR.po index 19f8cdcb486c..bcbe630aa787 100644 --- a/base_location/i18n/es_CR.po +++ b/base_location/i18n/es_CR.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_DO.po b/base_location/i18n/es_DO.po index 227bde8fb33b..aeb41d936a19 100644 --- a/base_location/i18n/es_DO.po +++ b/base_location/i18n/es_DO.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_EC.po b/base_location/i18n/es_EC.po index 822ae95e03e6..abebb03c67f3 100644 --- a/base_location/i18n/es_EC.po +++ b/base_location/i18n/es_EC.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_ES.po b/base_location/i18n/es_ES.po index 0e94d69f8f4f..bf2817e37818 100644 --- a/base_location/i18n/es_ES.po +++ b/base_location/i18n/es_ES.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/es_MX.po b/base_location/i18n/es_MX.po index ccf836d53877..cecb4f14dec7 100644 --- a/base_location/i18n/es_MX.po +++ b/base_location/i18n/es_MX.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/es_PE.po b/base_location/i18n/es_PE.po index 897def3aa677..ff13bbcd2dd1 100644 --- a/base_location/i18n/es_PE.po +++ b/base_location/i18n/es_PE.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupado por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupado por" diff --git a/base_location/i18n/es_PY.po b/base_location/i18n/es_PY.po index e896833cda0a..86e10ab4b618 100644 --- a/base_location/i18n/es_PY.po +++ b/base_location/i18n/es_PY.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupado por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupado por" diff --git a/base_location/i18n/es_VE.po b/base_location/i18n/es_VE.po index cc59e5c7292a..3843cb404b4f 100644 --- a/base_location/i18n/es_VE.po +++ b/base_location/i18n/es_VE.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/et.po b/base_location/i18n/et.po index 2dbb116d226d..2fc7c5da2bdd 100644 --- a/base_location/i18n/et.po +++ b/base_location/i18n/et.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Loodud" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Rühmitamine" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Rühmitamine" diff --git a/base_location/i18n/eu.po b/base_location/i18n/eu.po index 6717f0924c15..dad26ebc64ee 100644 --- a/base_location/i18n/eu.po +++ b/base_location/i18n/eu.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Created on" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Group By" diff --git a/base_location/i18n/fa.po b/base_location/i18n/fa.po index 7672e82777a2..e170f337e852 100644 --- a/base_location/i18n/fa.po +++ b/base_location/i18n/fa.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "ایجاد شده توسط" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "ایجاد شده در" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "گروه‌بندی برمبنای" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "شناسه" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "گروه‌بندی برمبنای" diff --git a/base_location/i18n/fi.po b/base_location/i18n/fi.po index 9636485e113a..6b41f190d142 100644 --- a/base_location/i18n/fi.po +++ b/base_location/i18n/fi.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Luotu" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_zip____last_update msgid "Last Modified on" msgstr "Viimeksi muokattu" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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_better_zip_latitude -msgid "Latitude" -msgstr "" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Search city" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" 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 "Tila" - -#. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "State" +#~ msgstr "Tila" diff --git a/base_location/i18n/fr.po b/base_location/i18n/fr.po index 8350133805dd..5d8b7785efe4 100644 --- a/base_location/i18n/fr.po +++ b/base_location/i18n/fr.po @@ -20,8 +20,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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." @@ -30,32 +34,31 @@ msgstr "" "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 -#: model:ir.ui.view,arch_db:base_location.better_zip_tree +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Villes" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "Ville" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" -msgstr "Code de la ville" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Ville" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Complétion par ville" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "Objet de compléte de Ville / lieux" @@ -70,155 +73,159 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms:ir.ui.view,arch_db:base_location.view_country_search msgid "Country" msgstr "Pays" #. module: base_location -#: model:ir.model,name:base_location.model_res_country_state -msgid "Country state" -msgstr "Etat" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_uid +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Créé le" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Regrouper par" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "Identifiant" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date 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 "Latitude" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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 "Longitude" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Search city" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" msgstr "Rechercher ville" #. 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: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" +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_better_zip_code -msgid "The official code for the city" -msgstr "Code officiel de la ville" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: 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" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Code de la ville" + +#~ msgid "Country state" +#~ msgstr "Etat" + +#~ msgid "Group By" +#~ msgstr "Regrouper par" + +#~ msgid "Latitude" +#~ msgstr "Latitude" + +#~ msgid "Longitude" +#~ msgstr "Longitude" + +#~ msgid "State" +#~ msgstr "Etat" + +#~ msgid "The official code for the city" +#~ msgstr "Code officiel de la ville" diff --git a/base_location/i18n/fr_CA.po b/base_location/i18n/fr_CA.po index 989fe1821b6f..7734ecb55926 100644 --- a/base_location/i18n/fr_CA.po +++ b/base_location/i18n/fr_CA.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Créé le" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "Identifiant" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/fr_CH.po b/base_location/i18n/fr_CH.po index 92bc9f46c2ed..ff7bfe8617d8 100644 --- a/base_location/i18n/fr_CH.po +++ b/base_location/i18n/fr_CH.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Créé le" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/gl.po b/base_location/i18n/gl.po index f1283d6f152e..c7caf2027f6b 100644 --- a/base_location/i18n/gl.po +++ b/base_location/i18n/gl.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creado en" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/gl_ES.po b/base_location/i18n/gl_ES.po index 4bf60b3108be..ac225fb7761f 100644 --- a/base_location/i18n/gl_ES.po +++ b/base_location/i18n/gl_ES.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/he.po b/base_location/i18n/he.po index cc1bacf32cf6..34750d023b68 100644 --- a/base_location/i18n/he.po +++ b/base_location/i18n/he.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "נוצר על ידי" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "נוצר ב-" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "קבץ לפי" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "מזהה" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "קבץ לפי" diff --git a/base_location/i18n/hr.po b/base_location/i18n/hr.po index 0a8c43b18516..7be5fc50b512 100644 --- a/base_location/i18n/hr.po +++ b/base_location/i18n/hr.po @@ -20,40 +20,42 @@ msgstr "" "%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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Kreirano" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupiraj po" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupiraj po" diff --git a/base_location/i18n/hr_HR.po b/base_location/i18n/hr_HR.po index cca5c3073700..5ce666a718ed 100644 --- a/base_location/i18n/hr_HR.po +++ b/base_location/i18n/hr_HR.po @@ -21,40 +21,43 @@ msgstr "" "%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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Gradovi" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id 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" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Grad" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Popunjavanje grada" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "Objekt popunjavanja Grada/Lokacije" @@ -69,155 +72,153 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Kreirano" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Prupiraj po" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" 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 -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" +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_better_zip_code -msgid "The official code for the city" -msgstr "Službena šifra ovog grada" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: 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 "" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Šifra grada" + +#~ msgid "Country state" +#~ msgstr "Oblast/Županija" + +#~ msgid "Group By" +#~ msgstr "Prupiraj po" + +#~ msgid "State" +#~ msgstr "Oblast/Županija" + +#~ msgid "The official code for the city" +#~ msgstr "Službena šifra ovog grada" diff --git a/base_location/i18n/hu.po b/base_location/i18n/hu.po index f5e2f9336e2f..37677b1402ed 100644 --- a/base_location/i18n/hu.po +++ b/base_location/i18n/hu.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date 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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Csoportosítás..." +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Csoportosítás..." diff --git a/base_location/i18n/id.po b/base_location/i18n/id.po index 2995d677a73d..807226bf2dfa 100644 --- a/base_location/i18n/id.po +++ b/base_location/i18n/id.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Dibuat pada" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Dikelompokan berdasarkan .." +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Dikelompokan berdasarkan .." diff --git a/base_location/i18n/it.po b/base_location/i18n/it.po index 67e0b7ec44d4..b5124532595a 100644 --- a/base_location/i18n/it.po +++ b/base_location/i18n/it.po @@ -19,40 +19,43 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Città" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "Città" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" -msgstr "Codice Città" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Città" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Completamento città" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "Città/luoghi di completamento oggetto" @@ -67,155 +70,153 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creato il" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Raggruppa per" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date 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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" msgstr "Ricerca città" #. 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: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" +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_better_zip_code -msgid "The official code for the city" -msgstr "Il codice ufficiale per la città" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: 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 "" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Codice Città" + +#~ msgid "Country state" +#~ msgstr "Provincia Paese" + +#~ msgid "Group By" +#~ msgstr "Raggruppa per" + +#~ msgid "State" +#~ msgstr "Provincia" + +#~ msgid "The official code for the city" +#~ msgstr "Il codice ufficiale per la città" diff --git a/base_location/i18n/ja.po b/base_location/i18n/ja.po index 1463f42e2f0a..7fc6e699b6e9 100644 --- a/base_location/i18n/ja.po +++ b/base_location/i18n/ja.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "作成者" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "作成日" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "グループ化" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "グループ化" diff --git a/base_location/i18n/ko.po b/base_location/i18n/ko.po index c7b12df1061d..4155d30faa78 100644 --- a/base_location/i18n/ko.po +++ b/base_location/i18n/ko.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "작성자" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "작성일" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "그룹화" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "그룹화" diff --git a/base_location/i18n/lt.po b/base_location/i18n/lt.po index d69d703320ac..b1a46b7807d8 100644 --- a/base_location/i18n/lt.po +++ b/base_location/i18n/lt.po @@ -20,40 +20,42 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Sukurta" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupuoti pagal" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupuoti pagal" diff --git a/base_location/i18n/lt_LT.po b/base_location/i18n/lt_LT.po index 5f4dd1a95d20..d853adac4df9 100644 --- a/base_location/i18n/lt_LT.po +++ b/base_location/i18n/lt_LT.po @@ -21,40 +21,42 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -69,155 +71,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Sukurta" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/lv.po b/base_location/i18n/lv.po index 97ddb9ca3eab..acdd520b7c5a 100644 --- a/base_location/i18n/lv.po +++ b/base_location/i18n/lv.po @@ -20,40 +20,42 @@ msgstr "" "2);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Izveidots" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupēt pēc" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupēt pēc" diff --git a/base_location/i18n/mk.po b/base_location/i18n/mk.po index 184b9ca0fb82..a5881c06335a 100644 --- a/base_location/i18n/mk.po +++ b/base_location/i18n/mk.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "Креирано од" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Креирано на" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Групирај по" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Групирај по" diff --git a/base_location/i18n/mn.po b/base_location/i18n/mn.po index e96d72a73fcd..4174bcd57573 100644 --- a/base_location/i18n/mn.po +++ b/base_location/i18n/mn.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "Үүсгэгч" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Үүсгэсэн" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Бүлэглэх" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Бүлэглэх" diff --git a/base_location/i18n/nb.po b/base_location/i18n/nb.po index 795ca2de9dce..0679c855d551 100644 --- a/base_location/i18n/nb.po +++ b/base_location/i18n/nb.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Opprettet den" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupper etter" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupper etter" diff --git a/base_location/i18n/nb_NO.po b/base_location/i18n/nb_NO.po index e591a9dbcf16..30350279fe24 100644 --- a/base_location/i18n/nb_NO.po +++ b/base_location/i18n/nb_NO.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Laget den" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Gruppe laget av" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Gruppe laget av" diff --git a/base_location/i18n/nl.po b/base_location/i18n/nl.po index ec4497654bf5..0d4ec5ec2f16 100644 --- a/base_location/i18n/nl.po +++ b/base_location/i18n/nl.po @@ -19,40 +19,43 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "Plaats" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" -msgstr "" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Plaats" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Aangemaakt op" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Groepeer op" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_zip____last_update msgid "Last Modified on" msgstr "Laatst bijgewerkt op" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Groepeer op" diff --git a/base_location/i18n/nl_BE.po b/base_location/i18n/nl_BE.po index 4528509bac5a..50f57afc21ee 100644 --- a/base_location/i18n/nl_BE.po +++ b/base_location/i18n/nl_BE.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Gemaakt op" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Groeperen op" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Groeperen op" diff --git a/base_location/i18n/nl_NL.po b/base_location/i18n/nl_NL.po index adf345e29bf0..19616523da71 100644 --- a/base_location/i18n/nl_NL.po +++ b/base_location/i18n/nl_NL.po @@ -21,40 +21,43 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "Plaats" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" -msgstr "Plaatscode" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Plaats" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -69,155 +72,156 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Aangemaakt op" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." +msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Groepeer op" +#: 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.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 "Locaties" #. module: base_location -#: model:ir.ui.menu,name:base_location.locations_root_menu -msgid "Locations Management" -msgstr "Locatiebeheer" - -#. 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.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Search city" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" 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:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:61 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the partner %s differs from that in location %s" +msgid "The state 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 "" +#: 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" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" -msgstr "Postcode" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "City Code" +#~ msgstr "Plaatscode" + +#~ msgid "Group By" +#~ msgstr "Groepeer op" + +#~ msgid "Latitude" +#~ msgstr "Breedtegraad" + +#~ msgid "Locations Management" +#~ msgstr "Locatiebeheer" + +#~ msgid "Longitude" +#~ msgstr "Lengtegraad" + +#~ msgid "State" +#~ msgstr "Staat/Provincie" diff --git a/base_location/i18n/pl.po b/base_location/i18n/pl.po index 1627eeacf87a..60756ef5a413 100644 --- a/base_location/i18n/pl.po +++ b/base_location/i18n/pl.po @@ -21,40 +21,42 @@ msgstr "" "%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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -69,155 +71,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Utworzono" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Pogrupuj wg" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Pogrupuj wg" diff --git a/base_location/i18n/pt.po b/base_location/i18n/pt.po index 638bf3a4575d..15b185794170 100644 --- a/base_location/i18n/pt.po +++ b/base_location/i18n/pt.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Criado em" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" diff --git a/base_location/i18n/pt_BR.po b/base_location/i18n/pt_BR.po index 0b7e6bf89fc5..dedc2dfa72a7 100644 --- a/base_location/i18n/pt_BR.po +++ b/base_location/i18n/pt_BR.po @@ -20,40 +20,43 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Cidades" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id 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" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Autocompletar de cidades" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "Objeto autocompletar de Cidades/Locais" @@ -68,155 +71,159 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Criado em" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_zip____last_update msgid "Last Modified on" msgstr "Última atualização em" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_write_uid +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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_better_zip_latitude -msgid "Latitude" -msgstr "Latitude" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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 "Longitude" - -#. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Search city" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" 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 -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" +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_better_zip_code -msgid "The official code for the city" -msgstr "O código oficial da cidade" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: 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 "" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Código da cidade" + +#~ msgid "Country state" +#~ msgstr "Estado" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" + +#~ msgid "Latitude" +#~ msgstr "Latitude" + +#~ msgid "Longitude" +#~ msgstr "Longitude" + +#~ msgid "State" +#~ msgstr "Estado" + +#~ msgid "The official code for the city" +#~ msgstr "O código oficial da cidade" diff --git a/base_location/i18n/pt_PT.po b/base_location/i18n/pt_PT.po index 0434cf4c9a1d..6457fd9d8216 100644 --- a/base_location/i18n/pt_PT.po +++ b/base_location/i18n/pt_PT.po @@ -20,40 +20,43 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Cidades" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id 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" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +71,150 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Criado em" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Agrupar por" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" 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 -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" +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_better_zip_code -msgid "The official code for the city" -msgstr "Código oficial da cidade" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: 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 "" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Código da Cidade" + +#~ msgid "Group By" +#~ msgstr "Agrupar por" + +#~ msgid "State" +#~ msgstr "Estado" + +#~ msgid "The official code for the city" +#~ msgstr "Código oficial da cidade" diff --git a/base_location/i18n/ro.po b/base_location/i18n/ro.po index c6354cb0b820..151f63f769f9 100644 --- a/base_location/i18n/ro.po +++ b/base_location/i18n/ro.po @@ -20,40 +20,42 @@ msgstr "" "2:1));\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Creat la" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupează după" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupează după" diff --git a/base_location/i18n/ru.po b/base_location/i18n/ru.po index 6778bf5cb8b5..a0ea4778da3b 100644 --- a/base_location/i18n/ru.po +++ b/base_location/i18n/ru.po @@ -21,40 +21,42 @@ msgstr "" "%100>=11 && n%100<=14)? 2 : 3);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -69,155 +71,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "Создано" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Создан" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/sk.po b/base_location/i18n/sk.po index f9627b0e845f..6b3f6a717056 100644 --- a/base_location/i18n/sk.po +++ b/base_location/i18n/sk.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Vytvorené" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Zoskupiť podľa" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Zoskupiť podľa" diff --git a/base_location/i18n/sl.po b/base_location/i18n/sl.po index 75f906f3aac8..21fd6894316f 100644 --- a/base_location/i18n/sl.po +++ b/base_location/i18n/sl.po @@ -20,40 +20,43 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" msgstr "Kraji" #. 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id 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" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +#, fuzzy +msgid "City ID" +msgstr "Kraj" #. 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "Izpolnjevanje kraja" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "Objekt izpolnjevanja kraja/lokacije" @@ -68,155 +71,153 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Ustvarjeno" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Združi po" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date 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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +#, fuzzy +msgid "Search zip" 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 -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:67 #, 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 +#: code:addons/base_location/models/res_partner.py:63 #, 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 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the state differs from the country in location %s" +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_better_zip_code -msgid "The official code for the city" -msgstr "Uradna koda kraja" +#: 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" #. 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" +#: sql_constraint:res.city:0 +msgid "" +"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" 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" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's city" 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" - -#. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: 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 "" + +#. module: base_location +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" +msgstr "" + +#. module: base_location +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" +msgstr "" + +#. module: base_location +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" +msgstr "" + +#~ msgid "City Code" +#~ msgstr "Koda kraja" + +#~ msgid "Country state" +#~ msgstr "Zvezna država" + +#~ msgid "Group By" +#~ msgstr "Združi po" + +#~ msgid "State" +#~ msgstr "Zvezna država" + +#~ msgid "The official code for the city" +#~ msgstr "Uradna koda kraja" diff --git a/base_location/i18n/sr.po b/base_location/i18n/sr.po index 4c1a1e13a058..351e584c65b3 100644 --- a/base_location/i18n/sr.po +++ b/base_location/i18n/sr.po @@ -20,40 +20,42 @@ msgstr "" "%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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Kreiran" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupiši po" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupiši po" diff --git a/base_location/i18n/sr@latin.po b/base_location/i18n/sr@latin.po index 110f4e97573e..3ad2c5939001 100644 --- a/base_location/i18n/sr@latin.po +++ b/base_location/i18n/sr@latin.po @@ -21,40 +21,42 @@ msgstr "" "%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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -69,155 +71,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Kreiran" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupisano po" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupisano po" diff --git a/base_location/i18n/sv.po b/base_location/i18n/sv.po index 719d37b87f14..ef64aba05cb7 100644 --- a/base_location/i18n/sv.po +++ b/base_location/i18n/sv.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Skapad den" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Gruppera efter" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Gruppera efter" diff --git a/base_location/i18n/th.po b/base_location/i18n/th.po index 51e41b38ebcb..69c67d282dd5 100644 --- a/base_location/i18n/th.po +++ b/base_location/i18n/th.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "สร้างโดย" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "สร้างเมื่อ" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "จัดกลุ่มโดย" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "รหัส" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "จัดกลุ่มโดย" diff --git a/base_location/i18n/tr.po b/base_location/i18n/tr.po index a114385187fa..472f08fe4a10 100644 --- a/base_location/i18n/tr.po +++ b/base_location/i18n/tr.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Oluşturuldu" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Grupla" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Grupla" diff --git a/base_location/i18n/tr_TR.po b/base_location/i18n/tr_TR.po index f30697c0a5af..fcb095a3268d 100644 --- a/base_location/i18n/tr_TR.po +++ b/base_location/i18n/tr_TR.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Oluşturulma tarihi" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "Kimlik" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/uk.po b/base_location/i18n/uk.po index b852b5d526e6..e20665e7f217 100644 --- a/base_location/i18n/uk.po +++ b/base_location/i18n/uk.po @@ -20,40 +20,42 @@ msgstr "" "%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 -#: model:ir.model.fields,help:base_location.field_res_company_country_enforce_cities +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "Створив" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "Дата створення" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Групувати за" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Групувати за" diff --git a/base_location/i18n/vi.po b/base_location/i18n/vi.po index 557a4ea7fee0..6d5eacd07391 100644 --- a/base_location/i18n/vi.po +++ b/base_location/i18n/vi.po @@ -19,40 +19,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -67,155 +69,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date 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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "Group By" diff --git a/base_location/i18n/vi_VN.po b/base_location/i18n/vi_VN.po index 8c12755babbb..519c5f060e4c 100644 --- a/base_location/i18n/vi_VN.po +++ b/base_location/i18n/vi_VN.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,137 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date 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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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.ui.view,arch_db:base_location.view_partner_form +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" diff --git a/base_location/i18n/zh_CN.po b/base_location/i18n/zh_CN.po index ed4b50240abd..1bb4b0bb5909 100644 --- a/base_location/i18n/zh_CN.po +++ b/base_location/i18n/zh_CN.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "创建者" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "创建时间" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "分组" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "ID" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "分组" diff --git a/base_location/i18n/zh_TW.po b/base_location/i18n/zh_TW.po index 9f688316dd3f..d0deb62ed8ef 100644 --- a/base_location/i18n/zh_TW.po +++ b/base_location/i18n/zh_TW.po @@ -20,40 +20,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_location -#: 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 +#: model:res.city,name:base_location.demo_brussels_city +msgid "Brussels" +msgstr "" + +#. module: base_location +#: 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 +#: model:ir.actions.act_window,name:base_location.action_res_city_full +#: model:ir.ui.menu,name:base_location.locations_menu_cities msgid "Cities" 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 +#: model:ir.model,name:base_location.model_res_city +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__city_id msgid "City" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_code -msgid "City Code" +#: model:ir.model.fields,field_description:base_location.field_res_company__city_id +msgid "City ID" 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 +#: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city +#: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "City completion" msgstr "" #. module: base_location -#: model:ir.model,name:base_location.model_res_better_zip +#: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" msgstr "" @@ -68,155 +70,140 @@ 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 -#: model:ir.ui.view,arch_db:base_location.view_country_search +#: model_terms: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 +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid msgid "Created by" msgstr "建立者" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_create_date +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_date msgid "Created on" msgstr "建立於" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_display_name +#: model:ir.model.fields,field_description:base_location.field_res_city_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" +#: model_terms:ir.actions.act_window,help:base_location.action_res_city_full +msgid "" +"Display and manage the list of all cities that can be assigned to\n" +" your partner records. Note that an option can be set on each " +"country separately\n" +" to enforce any address of it to have a city in this list." msgstr "" #. module: base_location -#: model:ir.ui.view,arch_db:base_location.view_better_zip_filter -msgid "Group By" -msgstr "分組方式" +#: model:ir.model.fields,field_description:base_location.field_res_company__country_enforce_cities +msgid "Enforce Cities" +msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_id +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__id msgid "ID" msgstr "編號" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip___last_update +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model:ir.model.fields,field_description:base_location.field_res_city_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 +#: model_terms: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 -#: 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" +#: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter +msgid "Search zip" 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" +#: code:addons/base_location/models/res_partner.py:67 +#, python-format +msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/partner.py:65 +#: code:addons/base_location/models/res_partner.py:63 #, python-format -msgid "The city of partner %s differs from that in location %s" +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:101 +#: code:addons/base_location/models/res_partner.py:59 #, python-format -msgid "The country of the city differs from the country in location %s" +msgid "The state of the partner %s differs from that 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" +#: 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 -#: code:addons/base_location/models/better_zip.py:96 -#, python-format -msgid "The country of the state differs from the country in location %s" +#: sql_constraint:res.city:0 +msgid "" +"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" msgstr "" #. module: base_location -#: model:ir.model.fields,help:base_location.field_res_better_zip_code -msgid "The official code for the city" +#: sql_constraint:res.city.zip:0 +msgid "" +"You already have a zip with that code in the same city. The zip code must be " +"unique within it's 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" +#: model:ir.model.fields,field_description:base_location.field_res_city_zip__name +msgid "ZIP" 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" +#: 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 "" #. 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" +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_form +msgid "Zip" msgstr "" #. module: base_location -#: model:ir.model.fields,field_description:base_location.field_res_better_zip_name -msgid "ZIP" +#: model:ir.ui.menu,name:base_location.locations_menu_zips +#: model_terms:ir.ui.view,arch_db:base_location.city_zip_tree +#: model_terms:ir.ui.view,arch_db:base_location.view_city_form +#: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form +msgid "Zips" 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" +#: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids +msgid "Zips in this city" msgstr "" + +#~ msgid "Group By" +#~ msgstr "分組方式" diff --git a/base_location/models/__init__.py b/base_location/models/__init__.py index 3f7a893a5bd6..1fb23520f1d6 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 991ffa6c816a..000000000000 --- 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 000000000000..629268b5d9ad --- /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 000000000000..12c679a96b86 --- /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 1016a1d2328b..f78642aa98d4 100644 --- a/base_location/models/company.py +++ b/base_location/models/res_company.py @@ -8,38 +8,39 @@ 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 @@ def _inverse_zip_id(self): @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 befddd1ffc12..273dc3027d42 100644 --- a/base_location/models/partner.py +++ b/base_location/models/res_partner.py @@ -8,16 +8,19 @@ 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 @@ def _onchange_city_id(self): } 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 @@ def _check_zip(self): "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 5161a34a64a9..000000000000 --- 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 000000000000..32d87344baf5 --- /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 000000000000..b90283688d7c --- /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 000000000000..e84ac4aede2b --- /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 000000000000..c4afc713fa29 --- /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 000000000000..bc8bfc983549 --- /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 5ef6c8b463c7..e0699ce7bdf6 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 000000000000..2ed60fbde03e --- /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 372da9775f1f..9816762b0079 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 b86817bcbcf6..eef4aad61d2f 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 @@ def test_company_address_fields_inverse(self): 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 @@ def test_partner_onchange_city(self): 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 207c88e92c02..000000000000 --- 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 000000000000..5ad6fb9aa893 --- /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 000000000000..3eeb5f744ffa --- /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 cbf0f3ff37c5..0292f52ab1b3 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 1e8a016e5275..e10fbd4745fa 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 cbd4f72aa942..000000000000 --- a/base_location/views/state_view.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - view_country_state_form2 - res.country.state - - - - - - - - - - - - - - - - From 5419d516fa11378b4ad7ef2890b825bf3b6bdbc7 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Tue, 16 Oct 2018 11:49:28 +0200 Subject: [PATCH 26/32] [IMP] base_location: Add migration scripts --- base_location/i18n/it.po | 45 ++++++++++--------- .../migrations/12.0.1.0.0/post-migration.py | 35 +++++++++++++++ .../migrations/12.0.1.0.0/pre-migration.py | 15 +++++++ 3 files changed, 73 insertions(+), 22 deletions(-) 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/i18n/it.po b/base_location/i18n/it.po index b5124532595a..2f35a8528530 100644 --- a/base_location/i18n/it.po +++ b/base_location/i18n/it.po @@ -9,19 +9,20 @@ 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-12-24 17:58+0000\n" +"Last-Translator: Sergio Zanchetta \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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.3\n" #. module: base_location #: model:res.city,name:base_location.demo_brussels_city msgid "Brussels" -msgstr "" +msgstr "Bruxelles" #. module: base_location #: model:ir.model.fields,help:base_location.field_res_company__country_enforce_cities @@ -29,6 +30,8 @@ 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 "" +"Selezionare questa casella per verificare che tutte le città degli indirizzi " +"creati provengano dall'elenco \"Città\" della nazione." #. module: base_location #: model:ir.actions.act_window,name:base_location.action_res_city_full @@ -44,9 +47,8 @@ msgstr "Città" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_company__city_id -#, fuzzy msgid "City ID" -msgstr "Città" +msgstr "ID città" #. module: base_location #: model_terms:ir.ui.view,arch_db:base_location.view_company_form_city @@ -57,7 +59,7 @@ msgstr "Completamento città" #. module: base_location #: model:ir.model,name:base_location.model_res_city_zip msgid "City/locations completion object" -msgstr "Città/luoghi di completamento oggetto" +msgstr "Oggetto completamento città/luoghi" #. module: base_location #: model:ir.model,name:base_location.model_res_company @@ -72,7 +74,7 @@ msgstr "Contatto" #. module: base_location #: model_terms:ir.ui.view,arch_db:base_location.view_country_search msgid "Country" -msgstr "Paese" +msgstr "Nazione" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_city_zip__create_uid @@ -87,7 +89,7 @@ msgstr "Creato il" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_city_zip__display_name msgid "Display Name" -msgstr "Nome da visualizzare" +msgstr "Nome visualizzato" #. module: base_location #: model_terms:ir.actions.act_window,help:base_location.action_res_city_full @@ -116,51 +118,50 @@ msgstr "Ultima modifica il" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_uid msgid "Last Updated by" -msgstr "Ultimo caricamento il" +msgstr "Ultimo aggiornamento il" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_city_zip__write_date msgid "Last Updated on" -msgstr "Ultimo caricamento di" +msgstr "Ultimo aggiornamento di" #. module: base_location #: model_terms:ir.ui.view,arch_db:base_location.view_partner_form msgid "Location completion" -msgstr "" +msgstr "Completamento luogo" #. module: base_location #: model:ir.actions.act_window,name:base_location.action_zip_tree msgid "Locations" -msgstr "" +msgstr "Luoghi" #. module: base_location #: model_terms:ir.ui.view,arch_db:base_location.view_city_zip_filter -#, fuzzy msgid "Search zip" -msgstr "Ricerca città" +msgstr "Ricerca CAP" #. module: base_location #: code:addons/base_location/models/res_partner.py:67 #, python-format msgid "The city of partner %s differs from that in location %s" -msgstr "" +msgstr "La città del partner %s è diversa da quella del luogo %s" #. module: base_location #: code:addons/base_location/models/res_partner.py:63 #, python-format msgid "The country of the partner %s differs from that in location %s" -msgstr "" +msgstr "La nazione del partner %s è diversa dal quella del luogo %s" #. module: base_location #: code:addons/base_location/models/res_partner.py:59 #, python-format msgid "The state of the partner %s differs from that in location %s" -msgstr "" +msgstr "Lo stato del partner %s è diverso da quello del luogo %s" #. 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" +msgstr "Usare il nome della città o il codice CAP per cercare il luogo" #. module: base_location #: sql_constraint:res.city:0 @@ -191,7 +192,7 @@ msgstr "" #. module: base_location #: model_terms:ir.ui.view,arch_db:base_location.city_zip_form msgid "Zip" -msgstr "" +msgstr "CAP" #. module: base_location #: model:ir.ui.menu,name:base_location.locations_menu_zips @@ -199,12 +200,12 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:base_location.view_city_form #: model_terms:ir.ui.view,arch_db:base_location.view_res_country_city_better_zip_form msgid "Zips" -msgstr "" +msgstr "CAP" #. module: base_location #: model:ir.model.fields,field_description:base_location.field_res_city__zip_ids msgid "Zips in this city" -msgstr "" +msgstr "CAP in questa città" #~ msgid "City Code" #~ msgstr "Codice Città" 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 000000000000..3f8ba212aeb6 --- /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 000000000000..f9a069612577 --- /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), + ] + } + ) From 9378d77ef8c1515ff8984090b596755bf60e36c0 Mon Sep 17 00:00:00 2001 From: eLBati Date: Wed, 13 Mar 2019 20:52:17 +0100 Subject: [PATCH 27/32] FIX base_location blocking editing company address. Steps: - Open company form - Set 'city completion' field Get 'The state of the partner My Company differs from that in location X' Disabling _check_zip while writing 'zip' fields from company, as incompatible with the sequence of write operations. Automatic test is added too. --- base_location/__manifest__.py | 2 +- base_location/i18n/am.po | 6 +++--- base_location/i18n/ar.po | 6 +++--- base_location/i18n/base_location.pot | 6 +++--- base_location/i18n/bg.po | 6 +++--- base_location/i18n/bs.po | 6 +++--- base_location/i18n/ca.po | 6 +++--- base_location/i18n/cs.po | 6 +++--- base_location/i18n/da.po | 6 +++--- base_location/i18n/de.po | 6 +++--- base_location/i18n/el_GR.po | 6 +++--- base_location/i18n/en_GB.po | 6 +++--- base_location/i18n/es.po | 6 +++--- base_location/i18n/es_AR.po | 6 +++--- base_location/i18n/es_CL.po | 6 +++--- base_location/i18n/es_CO.po | 6 +++--- base_location/i18n/es_CR.po | 6 +++--- base_location/i18n/es_DO.po | 6 +++--- base_location/i18n/es_EC.po | 6 +++--- base_location/i18n/es_ES.po | 6 +++--- base_location/i18n/es_MX.po | 6 +++--- base_location/i18n/es_PE.po | 6 +++--- base_location/i18n/es_PY.po | 6 +++--- base_location/i18n/es_VE.po | 6 +++--- base_location/i18n/et.po | 6 +++--- base_location/i18n/eu.po | 6 +++--- base_location/i18n/fa.po | 6 +++--- base_location/i18n/fi.po | 6 +++--- base_location/i18n/fr.po | 6 +++--- base_location/i18n/fr_CA.po | 6 +++--- base_location/i18n/fr_CH.po | 6 +++--- base_location/i18n/gl.po | 6 +++--- base_location/i18n/gl_ES.po | 6 +++--- base_location/i18n/he.po | 6 +++--- base_location/i18n/hr.po | 6 +++--- base_location/i18n/hr_HR.po | 6 +++--- base_location/i18n/hu.po | 6 +++--- base_location/i18n/id.po | 6 +++--- base_location/i18n/it.po | 6 +++--- base_location/i18n/ja.po | 6 +++--- base_location/i18n/ko.po | 6 +++--- base_location/i18n/lt.po | 6 +++--- base_location/i18n/lt_LT.po | 6 +++--- base_location/i18n/lv.po | 6 +++--- base_location/i18n/mk.po | 6 +++--- base_location/i18n/mn.po | 6 +++--- base_location/i18n/nb.po | 6 +++--- base_location/i18n/nb_NO.po | 6 +++--- base_location/i18n/nl.po | 6 +++--- base_location/i18n/nl_BE.po | 6 +++--- base_location/i18n/nl_NL.po | 6 +++--- base_location/i18n/pl.po | 6 +++--- base_location/i18n/pt.po | 6 +++--- base_location/i18n/pt_BR.po | 6 +++--- base_location/i18n/pt_PT.po | 6 +++--- base_location/i18n/ro.po | 6 +++--- base_location/i18n/ru.po | 6 +++--- base_location/i18n/sk.po | 6 +++--- base_location/i18n/sl.po | 6 +++--- base_location/i18n/sr.po | 6 +++--- base_location/i18n/sr@latin.po | 6 +++--- base_location/i18n/sv.po | 6 +++--- base_location/i18n/th.po | 6 +++--- base_location/i18n/tr.po | 6 +++--- base_location/i18n/tr_TR.po | 6 +++--- base_location/i18n/uk.po | 6 +++--- base_location/i18n/vi.po | 6 +++--- base_location/i18n/vi_VN.po | 6 +++--- base_location/i18n/zh_CN.po | 6 +++--- base_location/i18n/zh_TW.po | 6 +++--- .../migrations/12.0.1.0.0/post-migration.py | 1 + base_location/models/res_company.py | 14 ++++++++++++-- base_location/models/res_partner.py | 2 ++ base_location/static/description/index.html | 2 +- base_location/tests/test_base_location.py | 3 +++ 75 files changed, 227 insertions(+), 211 deletions(-) diff --git a/base_location/__manifest__.py b/base_location/__manifest__.py index 5328567078a9..e01879bc9573 100644 --- a/base_location/__manifest__.py +++ b/base_location/__manifest__.py @@ -4,7 +4,7 @@ { 'name': 'Location management (aka Better ZIP)', - 'version': '12.0.1.0.0', + 'version': '12.0.1.0.1', 'depends': [ 'base_address_city', 'contacts', diff --git a/base_location/i18n/am.po b/base_location/i18n/am.po index 583262dfa302..9cc00c044f34 100644 --- a/base_location/i18n/am.po +++ b/base_location/i18n/am.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 127bafb3b013..84996e47d2b1 100644 --- a/base_location/i18n/ar.po +++ b/base_location/i18n/ar.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 b65883179310..f8f21bf282c6 100644 --- a/base_location/i18n/base_location.pot +++ b/base_location/i18n/base_location.pot @@ -129,19 +129,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/bg.po b/base_location/i18n/bg.po index 5ecab1f58179..c1ffbf7d771e 100644 --- a/base_location/i18n/bg.po +++ b/base_location/i18n/bg.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 e0edd089dfc4..a23f82f9fc64 100644 --- a/base_location/i18n/bs.po +++ b/base_location/i18n/bs.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 d0e00bde7ec5..9c7652f76f40 100644 --- a/base_location/i18n/ca.po +++ b/base_location/i18n/ca.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 b58fec447ebf..6021fe5518dd 100644 --- a/base_location/i18n/cs.po +++ b/base_location/i18n/cs.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 3b42ae71b416..a02d64d6a1bc 100644 --- a/base_location/i18n/da.po +++ b/base_location/i18n/da.po @@ -140,19 +140,19 @@ msgid "Search zip" msgstr "Søg by" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 ffee5d15b46c..ae4c67310d0d 100644 --- a/base_location/i18n/de.po +++ b/base_location/i18n/de.po @@ -144,19 +144,19 @@ msgid "Search zip" msgstr "Suche Stadt" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "Die Stadt des Partners %s weicht von der des Standorts %s ab" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "Das Land des Partners %s unterscheidet sich vom dem des Standorts %s" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 cf5086c3791a..436f1d41876b 100644 --- a/base_location/i18n/el_GR.po +++ b/base_location/i18n/el_GR.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 6cfd41a32c7d..6e21daec6fe1 100644 --- a/base_location/i18n/en_GB.po +++ b/base_location/i18n/en_GB.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 0a1aecd1f1c2..ae1b029e2ee7 100644 --- a/base_location/i18n/es.po +++ b/base_location/i18n/es.po @@ -141,19 +141,19 @@ msgid "Search zip" msgstr "Buscar ciudad" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 78385e00adb2..b8cb80dba6f9 100644 --- a/base_location/i18n/es_AR.po +++ b/base_location/i18n/es_AR.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 c3838889f018..bab0d4bb9afb 100644 --- a/base_location/i18n/es_CL.po +++ b/base_location/i18n/es_CL.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 42e4de7bdab6..5a992aad2ddb 100644 --- a/base_location/i18n/es_CO.po +++ b/base_location/i18n/es_CO.po @@ -142,19 +142,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 bcbe630aa787..27dbe3122f75 100644 --- a/base_location/i18n/es_CR.po +++ b/base_location/i18n/es_CR.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 aeb41d936a19..9378ee0176f4 100644 --- a/base_location/i18n/es_DO.po +++ b/base_location/i18n/es_DO.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 abebb03c67f3..eded01e78521 100644 --- a/base_location/i18n/es_EC.po +++ b/base_location/i18n/es_EC.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 bf2817e37818..df496f6e2529 100644 --- a/base_location/i18n/es_ES.po +++ b/base_location/i18n/es_ES.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 cecb4f14dec7..4b966c33548e 100644 --- a/base_location/i18n/es_MX.po +++ b/base_location/i18n/es_MX.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 ff13bbcd2dd1..0cd35cd9df4a 100644 --- a/base_location/i18n/es_PE.po +++ b/base_location/i18n/es_PE.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 86e10ab4b618..549751ae9249 100644 --- a/base_location/i18n/es_PY.po +++ b/base_location/i18n/es_PY.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 3843cb404b4f..f74f7230d567 100644 --- a/base_location/i18n/es_VE.po +++ b/base_location/i18n/es_VE.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 2fc7c5da2bdd..2de2aa81b507 100644 --- a/base_location/i18n/et.po +++ b/base_location/i18n/et.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 dad26ebc64ee..fc47b010e7cc 100644 --- a/base_location/i18n/eu.po +++ b/base_location/i18n/eu.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 e170f337e852..a1df8e361c1e 100644 --- a/base_location/i18n/fa.po +++ b/base_location/i18n/fa.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 6b41f190d142..a3066ab492aa 100644 --- a/base_location/i18n/fi.po +++ b/base_location/i18n/fi.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 5d8b7785efe4..771de8efae07 100644 --- a/base_location/i18n/fr.po +++ b/base_location/i18n/fr.po @@ -143,19 +143,19 @@ msgid "Search zip" msgstr "Rechercher ville" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 7734ecb55926..d10856c35ec1 100644 --- a/base_location/i18n/fr_CA.po +++ b/base_location/i18n/fr_CA.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 ff7bfe8617d8..167b4146b688 100644 --- a/base_location/i18n/fr_CH.po +++ b/base_location/i18n/fr_CH.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 c7caf2027f6b..9e86c58a27f9 100644 --- a/base_location/i18n/gl.po +++ b/base_location/i18n/gl.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 ac225fb7761f..bc2206bea714 100644 --- a/base_location/i18n/gl_ES.po +++ b/base_location/i18n/gl_ES.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/he.po b/base_location/i18n/he.po index 34750d023b68..f6ba1589bf1b 100644 --- a/base_location/i18n/he.po +++ b/base_location/i18n/he.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 7be5fc50b512..dd58f1221729 100644 --- a/base_location/i18n/hr.po +++ b/base_location/i18n/hr.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 5ce666a718ed..50ea2177e99d 100644 --- a/base_location/i18n/hr_HR.po +++ b/base_location/i18n/hr_HR.po @@ -142,19 +142,19 @@ msgid "Search zip" msgstr "Pretraži gradove" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 37677b1402ed..d81af749a4f4 100644 --- a/base_location/i18n/hu.po +++ b/base_location/i18n/hu.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 807226bf2dfa..0842ae65abe9 100644 --- a/base_location/i18n/id.po +++ b/base_location/i18n/id.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 2f35a8528530..f95abaf8e9e6 100644 --- a/base_location/i18n/it.po +++ b/base_location/i18n/it.po @@ -141,19 +141,19 @@ msgid "Search zip" msgstr "Ricerca CAP" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "La città del partner %s è diversa da quella del luogo %s" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "La nazione del partner %s è diversa dal quella del luogo %s" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "Lo stato del partner %s è diverso da quello del luogo %s" diff --git a/base_location/i18n/ja.po b/base_location/i18n/ja.po index 7fc6e699b6e9..a61691db9b65 100644 --- a/base_location/i18n/ja.po +++ b/base_location/i18n/ja.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 4155d30faa78..18dbb0214d0c 100644 --- a/base_location/i18n/ko.po +++ b/base_location/i18n/ko.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 b1a46b7807d8..5edef559120f 100644 --- a/base_location/i18n/lt.po +++ b/base_location/i18n/lt.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 d853adac4df9..64319f352e8e 100644 --- a/base_location/i18n/lt_LT.po +++ b/base_location/i18n/lt_LT.po @@ -140,19 +140,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" diff --git a/base_location/i18n/lv.po b/base_location/i18n/lv.po index acdd520b7c5a..97f700d9abe1 100644 --- a/base_location/i18n/lv.po +++ b/base_location/i18n/lv.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 a5881c06335a..13c169f628b7 100644 --- a/base_location/i18n/mk.po +++ b/base_location/i18n/mk.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 4174bcd57573..2b95c1ea3088 100644 --- a/base_location/i18n/mn.po +++ b/base_location/i18n/mn.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 0679c855d551..53a93048778d 100644 --- a/base_location/i18n/nb.po +++ b/base_location/i18n/nb.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 30350279fe24..ae2e76ceba89 100644 --- a/base_location/i18n/nb_NO.po +++ b/base_location/i18n/nb_NO.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 0d4ec5ec2f16..928f12632759 100644 --- a/base_location/i18n/nl.po +++ b/base_location/i18n/nl.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 50f57afc21ee..8ac61c1f010c 100644 --- a/base_location/i18n/nl_BE.po +++ b/base_location/i18n/nl_BE.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 19616523da71..68c4d813d092 100644 --- a/base_location/i18n/nl_NL.po +++ b/base_location/i18n/nl_NL.po @@ -142,19 +142,19 @@ msgid "Search zip" msgstr "Zoek plaats" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 60756ef5a413..a5ce2d630480 100644 --- a/base_location/i18n/pl.po +++ b/base_location/i18n/pl.po @@ -140,19 +140,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 15b185794170..d9336918ca49 100644 --- a/base_location/i18n/pt.po +++ b/base_location/i18n/pt.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 dedc2dfa72a7..feab0e3ba44f 100644 --- a/base_location/i18n/pt_BR.po +++ b/base_location/i18n/pt_BR.po @@ -141,19 +141,19 @@ msgid "Search zip" msgstr "Buscar cidade" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 6457fd9d8216..25fda847de4a 100644 --- a/base_location/i18n/pt_PT.po +++ b/base_location/i18n/pt_PT.po @@ -141,19 +141,19 @@ msgid "Search zip" msgstr "Procurar cidade" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 151f63f769f9..d08619eae977 100644 --- a/base_location/i18n/ro.po +++ b/base_location/i18n/ro.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 a0ea4778da3b..78b9e8d7c6d3 100644 --- a/base_location/i18n/ru.po +++ b/base_location/i18n/ru.po @@ -140,19 +140,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 6b3f6a717056..f72fa49acad1 100644 --- a/base_location/i18n/sk.po +++ b/base_location/i18n/sk.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 21fd6894316f..1c5c89007bbe 100644 --- a/base_location/i18n/sl.po +++ b/base_location/i18n/sl.po @@ -141,19 +141,19 @@ msgid "Search zip" msgstr "Iskanje kraja" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 351e584c65b3..28d3fb011ca9 100644 --- a/base_location/i18n/sr.po +++ b/base_location/i18n/sr.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 3ad2c5939001..33da01a8b3d5 100644 --- a/base_location/i18n/sr@latin.po +++ b/base_location/i18n/sr@latin.po @@ -140,19 +140,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 ef64aba05cb7..5e157245a448 100644 --- a/base_location/i18n/sv.po +++ b/base_location/i18n/sv.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 69c67d282dd5..68ef870c2018 100644 --- a/base_location/i18n/th.po +++ b/base_location/i18n/th.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 472f08fe4a10..390a4ed73659 100644 --- a/base_location/i18n/tr.po +++ b/base_location/i18n/tr.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 fcb095a3268d..9f01dbb5c9cd 100644 --- a/base_location/i18n/tr_TR.po +++ b/base_location/i18n/tr_TR.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 e20665e7f217..2a575476b931 100644 --- a/base_location/i18n/uk.po +++ b/base_location/i18n/uk.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 6d5eacd07391..d5bf2e331208 100644 --- a/base_location/i18n/vi.po +++ b/base_location/i18n/vi.po @@ -138,19 +138,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 519c5f060e4c..77872d874147 100644 --- a/base_location/i18n/vi_VN.po +++ b/base_location/i18n/vi_VN.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 1bb4b0bb5909..24223e9b8679 100644 --- a/base_location/i18n/zh_CN.po +++ b/base_location/i18n/zh_CN.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, 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 d0deb62ed8ef..98d91e8ccef8 100644 --- a/base_location/i18n/zh_TW.po +++ b/base_location/i18n/zh_TW.po @@ -139,19 +139,19 @@ msgid "Search zip" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:67 +#: code:addons/base_location/models/res_partner.py:69 #, python-format msgid "The city of partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:63 +#: code:addons/base_location/models/res_partner.py:65 #, python-format msgid "The country of the partner %s differs from that in location %s" msgstr "" #. module: base_location -#: code:addons/base_location/models/res_partner.py:59 +#: code:addons/base_location/models/res_partner.py:61 #, python-format msgid "The state of the partner %s differs from that in location %s" msgstr "" 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 index 3f8ba212aeb6..aee54faf0085 100644 --- a/base_location/migrations/12.0.1.0.0/post-migration.py +++ b/base_location/migrations/12.0.1.0.0/post-migration.py @@ -9,6 +9,7 @@ def migrate(env, version): column_name = openupgrade.get_legacy_name('better_zip_id') openupgrade.logged_query( + env.cr, "ALTER TABLE res_city_zip ADD %s INTEGER", (AsIs(column_name), ), ) openupgrade.logged_query( diff --git a/base_location/models/res_company.py b/base_location/models/res_company.py index f78642aa98d4..49548920bee9 100644 --- a/base_location/models/res_company.py +++ b/base_location/models/res_company.py @@ -47,11 +47,21 @@ def _get_company_address_fields(self, partner): def _inverse_city_id(self): for company in self: - company.partner_id.city_id = company.city_id + company.with_context( + skip_check_zip=True).partner_id.city_id = company.city_id def _inverse_zip_id(self): for company in self: - company.partner_id.zip_id = company.zip_id + company.with_context( + skip_check_zip=True).partner_id.zip_id = company.zip_id + + def _inverse_state(self): + return super(ResCompany, self.with_context( + skip_check_zip=True))._inverse_state() + + def _inverse_country(self): + return super(ResCompany, self.with_context( + skip_check_zip=True))._inverse_country() @api.onchange('zip_id') def _onchange_zip_id(self): diff --git a/base_location/models/res_partner.py b/base_location/models/res_partner.py index 273dc3027d42..e4d38b07927e 100644 --- a/base_location/models/res_partner.py +++ b/base_location/models/res_partner.py @@ -52,6 +52,8 @@ def _onchange_zip_id(self): @api.constrains('zip_id', 'country_id', 'city_id', 'state_id') def _check_zip(self): + if self.env.context.get('skip_check_zip'): + return for rec in self: if not rec.zip_id: continue diff --git a/base_location/static/description/index.html b/base_location/static/description/index.html index 2ed60fbde03e..3cb399ec637c 100644 --- a/base_location/static/description/index.html +++ b/base_location/static/description/index.html @@ -3,7 +3,7 @@ - + Location management (aka Better ZIP)